diff --git a/client/src/app/core/marked-translations.ts b/client/src/app/core/marked-translations.ts index bc772cb2d..4aa0cc65e 100644 --- a/client/src/app/core/marked-translations.ts +++ b/client/src/app/core/marked-translations.ts @@ -95,6 +95,7 @@ _('Hidden item'); // subgroup general _('General'); _('Workflow of new motions'); +_('Workflow of new statute amendments'); _('Numbered per category'); _('Serially numbered'); _('Set it manually'); @@ -111,11 +112,13 @@ _('Stop submitting new motions by non-staff users'); _('Allow to disable versioning'); _('Name of recommender'); _('Will be displayed as label before selected recommendation. Use an empty value to disable the recommendation system.'); +_('Name of recommender for statute amendments'); +_('Will be displayed as label before selected recommendation for statute amendments. Use an empty value to disable the recommendation system.'); _('Default text version for change recommendations'); // subgroup Amendments _('Amendments'); +_('Activate statute amendments') _('Activate amendments'); -_('Activate statutes'); _('Show amendments together with motions'); _('Prefix for the identifier for amendments'); _('The title of the motion is always applied.'); @@ -156,6 +159,7 @@ _('Include the sequential number in PDF and DOCX'); _('needed'); _('Amendment'); _('Amendment to'); +_('Statute amendment for'); // motion workflow 1 _('Simple Workflow'); _('submitted'); @@ -196,6 +200,12 @@ _('Needs review'); _('rejected (not authorized)'); _('Reject (not authorized)'); _('Rejection (not authorized)'); +// misc for motions +_('Called'); +_('Called with'); +_('Recommendation'); +_('Motion block'); + // Assignment config strings _('Election method'); @@ -304,3 +314,10 @@ _('You can use {event_name} as a placeholder.'); _('Email body'); _('Dear {name},\n\nthis is your OpenSlides login for the event {event_name}:\n\n {url}\n username: {username}\n password: {password}\n\nThis email was generated automatically.'); _('Use these placeholders: {name}, {event_name}, {url}, {username}, {password}. The url referrs to the system url.'); + +// default groups +_('Default'); +_('Admin'); +_('Delegates'); +_('Staff'); +_('Committees'); diff --git a/client/src/app/core/services/http.service.ts b/client/src/app/core/services/http.service.ts index 79abaa0f3..2b311f0f4 100644 --- a/client/src/app/core/services/http.service.ts +++ b/client/src/app/core/services/http.service.ts @@ -115,7 +115,7 @@ export class HttpService { } else if (e.status === 500) { error += this.translate.instant('A server error occured. Please contact your system administrator.'); } else if (e.status > 500) { - error += this.translate.instant('The server cound not be reached') + ` (${e.status})`; + error += this.translate.instant('The server could not be reached.') + ` (${e.status})`; } else { error += e.message; } diff --git a/client/src/app/shared/components/prompt-dialog/prompt-dialog.component.html b/client/src/app/shared/components/prompt-dialog/prompt-dialog.component.html index 0c7be3b64..c0b1323bd 100644 --- a/client/src/app/shared/components/prompt-dialog/prompt-dialog.component.html +++ b/client/src/app/shared/components/prompt-dialog/prompt-dialog.component.html @@ -1,5 +1,5 @@

{{ data.title | translate }}

-{{ data.content | translate }} + diff --git a/client/src/app/site/agenda/components/agenda-list/agenda-list.component.html b/client/src/app/site/agenda/components/agenda-list/agenda-list.component.html index b782337f2..d995cfaa0 100644 --- a/client/src/app/site/agenda/components/agenda-list/agenda-list.component.html +++ b/client/src/app/site/agenda/components/agenda-list/agenda-list.component.html @@ -68,14 +68,13 @@
- @@ -90,7 +89,7 @@
diff --git a/client/src/app/site/agenda/components/topic-detail/topic-detail.component.html b/client/src/app/site/agenda/components/topic-detail/topic-detail.component.html index f50589c54..07f291995 100644 --- a/client/src/app/site/agenda/components/topic-detail/topic-detail.component.html +++ b/client/src/app/site/agenda/components/topic-detail/topic-detail.component.html @@ -33,7 +33,6 @@
-
No description provided.
diff --git a/client/src/app/site/assignments/assignment-list/assignment-list.component.html b/client/src/app/site/assignments/assignment-list/assignment-list.component.html index e0935fd33..6b4f3b0f8 100644 --- a/client/src/app/site/assignments/assignment-list/assignment-list.component.html +++ b/client/src/app/site/assignments/assignment-list/assignment-list.component.html @@ -79,7 +79,7 @@ diff --git a/client/src/app/site/config/components/config-field/config-field.component.html b/client/src/app/site/config/components/config-field/config-field.component.html index 2e236996e..f211eb1c7 100644 --- a/client/src/app/site/config/components/config-field/config-field.component.html +++ b/client/src/app/site/config/components/config-field/config-field.component.html @@ -40,7 +40,7 @@ - diff --git a/client/src/app/site/config/components/config-field/config-field.component.ts b/client/src/app/site/config/components/config-field/config-field.component.ts index e14f84201..d9f99f604 100644 --- a/client/src/app/site/config/components/config-field/config-field.component.ts +++ b/client/src/app/site/config/components/config-field/config-field.component.ts @@ -44,6 +44,11 @@ export class ConfigFieldComponent extends BaseComponent implements OnInit { */ public error: string | null = null; + /** + * Translated config value for template + */ + public translatedValue: object; + /** * The config item for this component. Just accept components with already populated constants-info. */ @@ -95,8 +100,16 @@ export class ConfigFieldComponent extends BaseComponent implements OnInit { this.form = this.formBuilder.group({ value: [''] }); + + this.translatedValue = this.configItem.value; + if (this.configItem.inputType === 'string' || this.configItem.inputType === 'markupText') { + if (typeof this.configItem.value === 'string' && this.configItem.value !== '') { + this.translatedValue = this.translate.instant(this.configItem.value); + } + } + this.form.patchValue({ - value: this.configItem.value + value: this.translatedValue }); this.form.valueChanges // The editor fires changes whenever content was changed. Even by AutoUpdate. @@ -121,7 +134,7 @@ export class ConfigFieldComponent extends BaseComponent implements OnInit { } /** - * Updates the this config field. + * Updates the config field. * @param value The new value to set. */ private update(value: any): void { diff --git a/client/src/app/site/history/components/history-list/history-list.component.html b/client/src/app/site/history/components/history-list/history-list.component.html index 9d4ccc2b4..8a31e3617 100644 --- a/client/src/app/site/history/components/history-list/history-list.component.html +++ b/client/src/app/site/history/components/history-list/history-list.component.html @@ -1,6 +1,6 @@ -
History
+
History
diff --git a/client/src/app/site/users/components/user-list/user-list.component.ts b/client/src/app/site/users/components/user-list/user-list.component.ts index 7b0ce337d..bbaf7fa02 100644 --- a/client/src/app/site/users/components/user-list/user-list.component.ts +++ b/client/src/app/site/users/components/user-list/user-list.component.ts @@ -119,7 +119,7 @@ export class UserListComponent extends ListViewBaseComponent implement * Bulk deletes users. Needs multiSelect mode to fill selectedRows */ public async deleteSelected(): Promise { - const content = this.translate.instant('This will delete all selected assignments.'); + const content = this.translate.instant('This will delete all selected users.'); if (await this.promptService.open('Are you sure?', content)) { for (const user of this.selectedRows) { await this.repo.delete(user); diff --git a/client/src/assets/i18n/cs.json b/client/src/assets/i18n/cs.json index 798c7518b..1726b3982 100644 --- a/client/src/assets/i18n/cs.json +++ b/client/src/assets/i18n/cs.json @@ -1 +1 @@ -{"About me":"O mě","Accept":"Přijmout","Accepted":"Přijato","Agenda":"Pořad jednání","All your changes are saved immediately.":"Všechny vaše změny jsou okamžitě uloženy.","Cancel":"Zrušit","Categories":"Skupiny","Category":"Obor činnosti","Change password":"Změnit heslo","Change recommendation":"Změnit doporučení","Changed version":"Změněná verze","Comment":"Poznámka","Comments":"Poznámky","Content":"Obsah","Create new category":"Vytvořit nový obor činnosti","Create new comment field":"Vytvořit nové poznámkové pole","Create new statute paragraph":"Vytvořit nový odstavec předpisu","Delete":"Smazat","Delete all files":"Smazat všechny soubory","Designates whether this user is in the room.":"Určuje, zda je tento uživatel v místnosti.","Designates whether this user should be treated as a committee.":"Určuje, zda se s tímto uživatelem má zacházet jako s výborem.","Designates whether this user should be treated as active. Unselect this instead of deleting the account.":"Určuje, zda se má s tímto uživatelem zacházet jako s činným. Zrušte vybrání namísto smazání účtu.","Diff version":"Znázornění změn","Edit":"Upravit","Edit category:":"Upravit obor činnosti:","Edit comment field:":"Upravit poznámkové pole:","Edit profile":"Upravit profil","Edit statute paragraph:":"Upravit odstavec předpisu:","Elections":"Elections","Email":"E-mail","English":"Angličtina","Export ...":"Vyvést...","Export as CSV":"Vyvést jako CSV","FILTER":"FILTR","Files":"Soubory","Final version":"Konečná verze","French":"Francouzština","German":"Němčina","Given name":"Křestní jméno","Groups":"Skupiny","Groups with read permissions":"Skupiny s oprávněním pro čtení","Groups with write permissions":"Skupiny s oprávněním pro zápis","Home":"Domovská stránka","Identifier":"Identifikátor","Import ...":"Zavést...","Initial password":"Počáteční heslo","Installed plugins":"Nainstalované přídavné moduly","Is a committee":"Je výbor","Is active":"Je činná","Is present":"Je přítomná","Legal notice":"Právní upozornění","License":"Povolení","Line":"Řádek","Login":"Přihlášení","Login as Guest":"Přihlásit se jako host","Logout":"Odhlásit se","Meta information":"Popisné informace","Motion":"Návrh","Motions":"Návrhy","Name":"Název","New group name":"Název nové skupiny","New motion":"Nový návrh","New tag name":"Název nové značky","No change recommendations yet":"Dosud žádná doporučení změn","No comment":"Bez poznámky","No groups selected":"Nevybrány žádné skupiny","No personal note":"Bez osobní poznámky","No statute paragraphs":"Žádné odstavce předpisu","None":"Žádné","Note: You have to reject all change recommendations if the plenum does not follow the recommendation. This does not affect amendments.":"Poznámka: Musíte odmítnout všechna doporučení změn, pokud plenární zasedání nesleduje doporučení. Toto neovlivní dodatky.","OK":"OK","Offline mode: You can use OpenSlides but changes are not saved.":"Režim nepřipojen k internetu: Můžete OpenSlides používat, ale změny nejsou ukládány.","Only for internal notes.":"Jen pro vnitřní poznámky.","Origin":"Původ","Original version":"Původní verze","PDF":"PDF","Participant number":"Číslo účastníka","Participants":"Účastníci","Permissions":"Oprávnění","Personal note":"Osobní poznámka","Prefix":"Předpona","Present":"Přítomen","Privacy Policy":"Politika pro soukromí","Privacy policy":"Politika pro soukromí","Project":"Promítat","Projector":"Promítací přístroj","Public":"Veřejný","Reason":"Zdůvodnění","Reject":"Odmítnout","Rejected":"Odmítnuto","Required":"Požadováno","Reset recommendation":"Vynulovat doporučení","Reset state":"Obnovit stav","SORT":"TŘÍDIT","Save":"Uložit","Selected values":"Vybrané hodnoty","Settings":"Nastavení","Sort ...":"Třídit...","State":"Stav","Statute paragraph":"Odstavec předpisu","Statute paragraphs":"Odstavce předpisu","Structure level":"Úroveň rozčlenění","Submitters":"Navrhovatelé","Summary of changes":"Přehled změn","Supporters":"Podporovatel","Surname":"Příjmení","Tags":"Klíčová slova","The assembly may decide:":"Shromáždění se může usnést:","The event manager hasn't set up a privacy policy yet.":"Správce událostí ještě nenastavil politiku soukromí.","This change collides with another one.":"Tato změna se střetává s jinou.","Title":"Název","Username":"Uživatelské jméno","Welcome to OpenSlides":"Vítejte v OpenSlides","Yes":"Ano","by":"od","inline":"uvnitř","none":"žádné","outside":"vně"} +{"About me":"O mě","Accept":"Přijmout","Accepted":"Přijato","Agenda":"Pořad jednání","All your changes are saved immediately.":"Všechny vaše změny jsou okamžitě uloženy.","Cancel":"Zrušit","Categories":"Skupiny","Category":"Obor činnosti","Change password":"Změnit heslo","Change recommendation":"Změnit doporučení","Changed version":"Změněná verze","Comment":"Poznámka","Comments":"Poznámky","Content":"Obsah","Create new category":"Vytvořit nový obor činnosti","Create new comment field":"Vytvořit nové poznámkové pole","Create new statute paragraph":"Vytvořit nový odstavec předpisu","Delete":"Smazat","Delete all files":"Smazat všechny soubory","Designates whether this user is in the room.":"Určuje, zda je tento uživatel v místnosti.","Designates whether this user should be treated as a committee.":"Určuje, zda se s tímto uživatelem má zacházet jako s výborem.","Designates whether this user should be treated as active. Unselect this instead of deleting the account.":"Určuje, zda se má s tímto uživatelem zacházet jako s činným. Zrušte vybrání namísto smazání účtu.","Diff version":"Znázornění změn","Edit":"Upravit","Edit category:":"Upravit obor činnosti:","Edit comment field:":"Upravit poznámkové pole:","Edit profile":"Upravit profil","Edit statute paragraph:":"Upravit odstavec předpisu:","Elections":"Elections","Email":"E-mail","English":"Angličtina","Export ...":"Vyvést...","Export as CSV":"Vyvést jako CSV","FILTER":"FILTR","Files":"Soubory","Final version":"Konečná verze","French":"Francouzština","German":"Němčina","Given name":"Křestní jméno","Groups":"Skupiny","Groups with read permissions":"Skupiny s oprávněním pro čtení","Groups with write permissions":"Skupiny s oprávněním pro zápis","Home":"Domovská stránka","Identifier":"Identifikátor","Import ...":"Zavést...","Initial password":"Počáteční heslo","Installed plugins":"Nainstalované přídavné moduly","Is a committee":"Je výbor","Is active":"Je činná","Is present":"Je přítomná","Legal notice":"Právní upozornění","License":"Povolení","Line":"Řádek","Login":"Přihlášení","Login as Guest":"Přihlásit se jako host","Logout":"Odhlásit se","Meta information":"Popisné informace","Motion":"Návrh","Motions":"Návrhy","Name":"Název","New group name":"Název nové skupiny","New motion":"Nový návrh","New tag name":"Název nové značky","No change recommendations yet":"Dosud žádná doporučení změn","No comment":"Bez poznámky","No groups selected":"Nevybrány žádné skupiny","No personal note":"Bez osobní poznámky","No statute paragraphs":"Žádné odstavce předpisu","None":"Žádné","Note: You have to reject all change recommendations if the plenum does not follow the recommendation. This does not affect amendments.":"Poznámka: Musíte odmítnout všechna doporučení změn, pokud plenární zasedání nesleduje doporučení. Toto neovlivní dodatky.","OK":"OK","Offline mode: You can use OpenSlides but changes are not saved.":"Režim nepřipojen k internetu: Můžete OpenSlides používat, ale změny nejsou ukládány.","Only for internal notes.":"Jen pro vnitřní poznámky.","Origin":"Původ","Original version":"Původní verze","PDF":"PDF","Participant number":"Číslo účastníka","Participants":"Účastníci","Permissions":"Oprávnění","Personal note":"Osobní poznámka","Prefix":"Předpona","Present":"Přítomen","Privacy Policy":"Politika pro soukromí","Privacy policy":"Politika pro soukromí","Project":"Promítat","Projector":"Promítací přístroj","Public":"Veřejný","Reason":"Zdůvodnění","Reject":"Odmítnout","Rejected":"Odmítnuto","Required":"Požadováno","Reset recommendation":"Vynulovat doporučení","Reset state":"Obnovit stav","SORT":"TŘÍDIT","Save":"Uložit","Selected values":"Vybrané hodnoty","Settings":"Nastavení","Sort ...":"Třídit...","State":"Stav","Statute paragraph":"Odstavec předpisu","Statute paragraphs":"Odstavce předpisu","Structure level":"Úroveň rozčlenění","Submitters":"Navrhovatelé","Summary of changes":"Přehled změn","Supporters":"Podporovatel","Surname":"Příjmení","Tags":"Klíčová slova","The assembly may decide:":"Shromáždění se může usnést:","The event manager hasn't set up a privacy policy yet.":"Správce událostí ještě nenastavil politiku soukromí.","This change collides with another one.":"Tato změna se střetává s jinou.","Title":"Název","Username":"Uživatelské jméno","Welcome to OpenSlides":"Vítejte v OpenSlides","Yes":"Ano","by":"od","inline":"uvnitř","none":"žádné","outside":"vně"} \ No newline at end of file diff --git a/client/src/assets/i18n/de.json b/client/src/assets/i18n/de.json index e0f4cdc6e..223305df0 100644 --- a/client/src/assets/i18n/de.json +++ b/client/src/assets/i18n/de.json @@ -1 +1 @@ -{"A password is required":"Ein Passwort ist erforderlich","About me":"Über mich","Accept":"Annehmen","Acceptance":"Annahme","Accepted":"Angenommen","Activate amendments":"Änderungsanträge aktivieren","Adjourn":"Vertagen","Adjournment":"Vertagung","Agenda":"Tagesordnung","Agenda visibility":"Sichtbarkeit in der Tagesordnung","All casted ballots":"Alle abgegebenen Stimmzettel","All valid ballots":"Alle gültigen Stimmzettel","All your changes are saved immediately.":"Alle Änderungen werden sofort gespeichert.","Allow access for anonymous guest users":"Erlaube Zugriff für anonyme Gast-Nutzer","Allow to disable versioning":"Erlaubt Versionierung zu deaktiveren","Always Yes-No-Abstain per candidate":"Ja/Nein/Enthaltung pro Kandidat/in","Always Yes/No per candidate":"Ja/Nein pro Kandidat/in","Always one option per candidate":"Eine Stimme pro Kandidat/in","Amendment":"Änderungsantrag","Amendment to":"Änderungsantrag zu","Amendments":"Änderungsanträge","An email with a password reset link was send!":"Es wurde eine E-Mail mit einem Link zum Zurücksetzen des Passworts gesendet.","Arabic":"Arabisch","Automatic assign of method":"Automatische Zuordnung der Methode","Back to login":"Zurück zur Anmeldung","Background color of projector header and footer":"Hintergrundfarbe des Projektor-Kopf- und Fußbereichs","Ballot and ballot papers":"Wahlgang und Stimmzettel","Begin of event":"Beginn der Veranstaltung","Can create motions":"Darf Anträge erstellen","Can manage agenda":"Darf die Tagesordung verwalten","Can manage comments":"Darf Kommentare verwalten","Can manage configuration":"Darf die Konfiguration verwalten","Can manage elections":"Darf Wahlen verwalten","Can manage files":"Darf Dateien verwalten","Can manage list of speakers":"Darf Redelisten verwalten","Can manage logos and fonts":"Darf Logos und Schriften verwalten","Can manage motions":"Darf Anträge verwalten","Can manage tags":"Darf Schlagwörter verwalten","Can manage the chat":"Darf den Chat verwalten","Can manage the projector":"Darf den Projektor steuern","Can manage users":"Darf Benutzer verwalten","Can nominate another participant":"Darf andere Teilnehmende für Wahlen vorschlagen","Can nominate oneself":"Darf selbst für Wahlen kandidieren","Can put oneself on the list of speakers":"Darf sich selbst auf die Redeliste setzen","Can see agenda":"Darf die Tagesordnung sehen","Can see comments":"Darf Kommentare sehen","Can see elections":"Darf Wahlen sehen","Can see extra data of users (e.g. present and comment)":"Darf die zusätzlichen Daten der Benutzer sehen (z. B. anwesend und Kommentar)","Can see hidden files":"Darf versteckte Dateien sehen","Can see internal items and time scheduling of agenda":"Darf interne Einträge und Zeitplan der Tagesordnung sehen","Can see motions":"Darf Anträge sehen","Can see names of users":"Darf die Namen der Benutzer sehen","Can see the front page":"Darf die Startseite sehen","Can see the list of files":"Darf die Dateiliste sehen","Can see the projector":"Darf den Projektor sehen","Can support motions":"Darf Anträge unterstützen","Can upload files":"Darf Dateien hochladen","Can use the chat":"Darf den Chat benutzen","Cancel":"Abbrechen","Categories":"Sachgebiete","Category":"Sachgebiet","Center":"Mittig","Change password":"Passwort ändern","Change recommendation":"Änderungsempfehlung","Change recommendations":"Änderungsempfehlungen","Changed version":"Geänderte Fassung","Choose 0 to disable the supporting system.":"Zum Deaktivieren des Unterstützersystems '0' eingeben.","Color for blanked projector":"Farbe für ausgeblendeten Projektor","Comment":"Kommentar","Comments":"Kommentare","Complex Workflow":"Komplexer Arbeitsablauf","Content":"Inhalt","Couple countdown with the list of speakers":"Countdown mit der Redeliste verkoppeln","Create new category":"Neues Sachgebiet erstellen","Create new comment field":"Neues Kommentarfeld erstellen","Create new statute paragraph":"Neuen Satzungsparagraphen erstellen","Current browser language":"Aktuelle Browsersprache","Custom number of ballot papers":"Benutzerdefinierte Anzahl von Stimmzetteln","Custom translations":"Benutzerdefinierte Übersetzungen","Czech":"Tschechisch","Dear {name},\n\nthis is your OpenSlides login for the event {event_name}:\n\n {url}\n username: {username}\n password: {password}\n\nThis email was generated automatically.":"Hallo \\{name\\},\n\ndies ist Ihr OpenSlides-Zugang für die Veranstaltung \\{event_name\\}:\n\n \\{url\\}\n Benutzername: \\{username\\}\n Passwort: \\{password\\}\n\nDiese E-Mail wurde automatisch erstellt.","Default line numbering":"Voreingestellte Zeilennummerierung","Default method to check whether a candidate has reached the required majority.":"Voreingestellte Methode zur Überprüfung ob ein Kandidate die nötige Mehrheit erreicht hat.","Default method to check whether a motion has reached the required majority.":"Voreingestellte Methode zur Überprüfung ob ein Antrag die nötige Mehrheit erreicht hat.","Default projector":"Standardprojektor","Default text version for change recommendations":"Voreingestellte Fassung für Änderungsempfehlungen","Default visibility for new agenda items (except topics)":"Voreingestellte Sichtbarkeit für neue Tagesordnungspunkte (außer Themen)","Delete":"Löschen","Delete all files":"Alle Dateien löschen","Designates whether this user is in the room.":"Bestimmt, ob dieser Benutzer vor Ort ist.","Designates whether this user should be treated as a committee.":"Legt fest, ob dieser Benutzer als Gremium behandelt werden soll.","Designates whether this user should be treated as active. Unselect this instead of deleting the account.":"Bestimmt, ob dieser Benutzer als aktiv behandelt werden soll. Sie können ihn deaktivieren anstatt ihn zu löschen.","Diff version":"Änderungsdarstellung","Disabled":"Deaktiviert","Disabled (no percents)":"Deaktiviert (keine Prozente)","Display header and footer":"Kopf- und Fußzeile anzeigen","Do not concern":"Nicht befassen","Do not decide":"Nicht entscheiden","Edit":"Bearbeiten","Edit category:":"Sachgebiet bearbeiten:","Edit comment field:":"Kommentarfeld bearbeiten:","Edit profile":"Profil bearbeiten","Edit statute paragraph:":"Satzungsparagraph bearbeiten:","Edit the whole motion text":"Vollständigen Antragstext bearbeiten","Election method":"Wahlmethode","Elections":"Wahlen","Email":"E-Mail","Email body":"Nachrichtentext","Email sender":"Absender","Email subject":"Betreff","Empty text field":"Leeres Textfeld","Enable numbering for agenda items":"Nummerierung von Tagesordnungspunkten aktivieren","Enable participant presence view":"Ansicht zur Teilnehmeranwesenheit aktivieren","English":"Englisch","Enter duration in seconds. Choose 0 to disable warning color.":"Geben Sie die Dauer in Sekunden an. Zum Deaktivieren der Warn-Farbe 0 auswählen.","Enter your email to send the password reset link":"Geben Sie Ihre E-Mail-Adresse ein um eine Link zum Zurücksetzen des Passworts zu erhalten.","Event":"Veranstaltung","Event date":"Veranstaltungszeitraum","Event location":"Veranstaltungsort","Event name":"Veranstaltungsname","Event organizer":"Veranstalter","Export":"Export","Export ...":"Exportieren ...","Export as CSV":"Exportieren als CSV","FILTER":"FILTER","Files":"Dateien","Final version":"Beschlussfassung","Finished":"Abgeschlossen","Font color of projector header and footer":"Schriftfarbe des Projektor-Kopf- und Fußbereichs","Font color of projector headline":"Schriftfarbe der Projektor-Überschrift","Front page text":"Text der Startseite","Front page title":"Titel der Startseite","General":"Allgemein","German":"Deutsch","Given name":"Vorname","Groups":"Gruppen","Groups with read permissions":"Gruppen mit Leseberechtigungen","Groups with write permissions":"Gruppen mit Schreibberechtigungen","Help text for access data and welcome PDF":"Hilfetext für das Zugangsdaten- und Willkommens-PDF","Hide internal items when projecting subitems":"Interne Einträge ausblenden bei der Projektion von Untereinträgen","Hide meta information box on projector":"Meta-Informations-Box auf dem Projektor ausblenden","Hide reason on projector":"Begründung auf dem Projektor ausblenden","Hide recommendation on projector":"Empfehlung auf dem Projektor ausblenden","Home":"Startseite","How to create new amendments":"Erstellung von Änderungsanträgen","Identifier":"Bezeichner","Import ...":"Importieren ...","Include the sequential number in PDF and DOCX":"Laufende Nummer im PDF und DOCX anzeigen","Initial password":"Initiales Passwort","Input format: DD.MM.YYYY HH:MM":"Eingabeformat: TT.MM.JJJJ HH:MM","Installed plugins":"Installierte Plugins","Invalid input.":"Ungültige Eingabe.","Is a committee":"Ist ein Gremium","Is active":"Ist aktiv","Is present":"Ist anwesend","Left":"Links","Legal notice":"Impressum","License":"Lizenz","Line":"Zeile","Line length":"Zeilenlänge","Line numbering":"Zeilennummerierung","List of speakers":"Redeliste","List of speakers overlay":"Redelisten-Einblendung","Login":"Anmelden","Login as Guest":"Als Gast anmelden","Logout":"Abmelden","Meta information":"Metainformationen","Motion":"Antrag","Motion preamble":"Antragseinleitung","Motion text":"Antragstext","Motions":"Anträge","Name":"Name","Name of recommender":"Name des Empfehlungsgebers","Needs review":"Benötigt Review","New group name":"Neuer Gruppenname","New motion":"Neuer Antrag","New password":"Neues Passwort","New tag name":"Neues Schlagwort","No change recommendations yet":"Bisher keine Änderungsempfehlungen","No comment":"Kein Kommentar","No concernment":"Nichtbefassung","No decision":"Keine Entscheidung","No encryption":"Keine Verschlüsselung","No groups selected":"Keine Gruppen ausgewählt","No personal note":"Keine persönliche Notiz","No statute paragraphs":"Keine Satzungsparagraphen","None":"aus","Note: You have to reject all change recommendations if the plenum does not follow the recommendation. This does not affect amendments.":"Wichtig: Sie müssen alle Änderungsempfehlungen ablehnen, wenn das Plenum der Empfehlung nicht folgt. Dies betrifft jedoch nicht die Änderungsanträge.","Number of (minimum) required supporters for a motion":"Mindestanzahl erforderlicher Unterstützer/innen für einen Antrag","Number of all delegates":"Anzahl aller Delegierten","Number of all participants":"Anzahl aller Teilnehmenden","Number of ballot papers (selection)":"Anzahl der Stimmzettel (Vorauswahl)","Number of last speakers to be shown on the projector":"Anzahl der dargestellten letzten Redner/innen auf dem Projektor","Numbered per category":"Pro Sachgebiet nummerieren","Numbering prefix for agenda items":"Präfix für Nummerierung von Tagesordnungspunkten","Numeral system for agenda items":"Nummerierungssystem für Tagesordnungspunkte","OK":"OK","Offline mode: You can use OpenSlides but changes are not saved.":"Offlinemodus: Sie können OpenSlides weiter nutzen, aber Änderungen werden nicht gespeichert.","Only for internal notes.":"Nur für interne Notizen.","Origin":"Herkunft","Original version":"Originalfassung","PDF":"PDF","PDF ballot paper logo":"PDF-Stimmzettel-Logo","PDF footer logo (left)":"PDF-Logo Fußzeile (links)","PDF footer logo (right)":"PDF-Logo Fußzeile (rechts)","PDF header logo (left)":"PDF-Logo Kopfzeile (links)","PDF header logo (right)":"PDF-Logo Kopfzeile (rechts)","Page number alignment in PDF":"Seitenzahl-Ausrichtung im PDF","Paragraph-based, Diff-enabled":"Absatzbasiert mit Änderungsdarstellung","Participant number":"Teilnehmernummer","Participants":"Teilnehmende","Permission":"Zulassung","Permissions":"Berechtigungen","Permit":"Zulassen","Personal note":"Persönliche Notiz","Please enter a valid email address":"Bitte geben Sie einen neuen Namen ein für","Please enter your new password":"Bitte geben Sie Ihr neues Passwort ein","Preamble text for PDF and DOCX documents (all motions)":"Einleitungstext für PDF- und DOCX-Dokumente (alle Anträge) ","Preamble text for PDF document (all elections)":"Einleitungstext für PDF-Dokument (alle Wahlen) ","Predefined seconds of new countdowns":"Vorgegebene Sekunden für neue Countdowns","Prefix":"Präfix","Prefix for the identifier for amendments":"Präfix für den Bezeichner von Änderungsanträgen","Present":"Anwesend","Presentation and assembly system":"Präsentations- und Versammlungssystem","Privacy Policy":"Datenschutzerklärung","Privacy policy":"Datenschutzerklärung","Project":"Projizieren","Projector":"Projektor","Projector header image":"Projektor-Kopfgrafik","Projector language":"Projektorsprache","Projector logo":"Projektor-Logo","Public":"Öffentlich","Put all candidates on the list of speakers":"Alle Kandidaten auf die Redeliste setzen","Reason":"Begründung","Refer to committee":"In Ausschuss verweisen","Referral to committee":"Verweisung in Ausschuss","Reject":"Ablehnen","Reject (not authorized)":"Verwerfen (nicht zulässig)","Rejected":"Abgelehnt","Rejection":"Ablehnung","Rejection (not authorized)":"Verwerfung (nicht berechtigt)","Remove all supporters of a motion if a submitter edits his motion in early state":"Entferne alle Unterstützer/innen eines Antrags, wenn ein Antragsteller/in den Antrag im Anfangsstadium bearbeitet","Required":"Erforderlich","Required majority":"Erforderliche Mehrheit","Reset password":"Passwort zurücksetzen","Reset recommendation":"Empfehlung zurücksetzen","Reset state":"Status zurücksetzen","Right":"Rechts","Roman":"Römisch","SORT":"SORTIEREN","Save":"Speichern","Searching for candidates":"Auf Kandidatensuche","Selected values":"Ausgewählte Werte","Separator used for all csv exports and examples":"Feldtrenner für alle CSV-Exporte und -Beispiele","Serially numbered":"fortlaufend nummerieren","Set it manually":"manuell setzen","Settings":"Einstellungen","Short description of event":"Kurzbeschreibung der Veranstaltung","Show amendments together with motions":"Änderungsanträge zusätzlich in der Hauptantragsübersicht anzeigen","Show logo on projector":"Logo auf dem Projektor anzeigen","Show orange countdown in the last x seconds of speaking time":"Countdown in den letzten x Sekunden der Redezeit orange darstellen","Show the clock on projector":"Uhr auf dem Projektor anzeigen","Show this text on the login page":"Diesen Text auf der Login-Seite anzeigen","Show title and description of event on projector":"Titel und Kurzbeschreibung der Veranstaltung auf dem Projektor anzeigen","Simple Workflow":"Einfacher Arbeitsablauf","Simple majority":"Einfache Mehrheit","Sort ...":"Sortieren ...","Sort categories by":"Sachgebiete sortieren nach","Sort name of participants by":"Namen der Teilnehmenden sortieren nach","Standard font size in PDF":"Standard-Schriftgröße im PDF","State":"Status","Statute paragraph":"Satzungsparagraph","Statute paragraphs":"Satzungsparagraphen","Stop submitting new motions by non-staff users":"Einreichen von neuen Anträgen stoppen für Nutzer ohne Verwaltungsrechte","Structure level":"Gliederungsebene","Submitters":"Antragsteller/in","Summary of changes":"Zusammenfassung der Änderungen","Supporters":"Unterstützer/innen","Surname":"Nachname","System":"System","System URL":"System-URL","Tags":"Schlagwörter","The 100 % base of a voting result consists of":"Die 100%-Basis eines Abstimmungsergebnisses besteht aus","The 100-%-base of an election result consists of":"Die 100%-Basis eines Wahlergebnisses besteht aus","The assembly may decide:":"Die Versammlung möge beschließen:","The event manager hasn't set up a privacy policy yet.":"Der Veranstalter hat noch keine Datenschutzerklärung hinterlegt.","The link is broken. Please contact your system administrator.":"Der Link ist defekt. Bitte kontaktieren Sie den zuständigen Administrator.","The maximum number of characters per line. Relevant when line numbering is enabled. Min: 40":"Die maximale Zeichenanzahl pro Zeile. Relevant, wenn die Zeilennummerierung eingeschaltet ist. Minimum: 40.","The title of the motion is always applied.":"Der Antragstitel wird immer übernommen.","This change collides with another one.":"Diese Änderung kollidiert mit einer anderen.","This prefix will be set if you run the automatic agenda numbering.":"Dieses Präfix wird gesetzt, wenn die automatische Nummerierung der Tagesordnung durchgeführt wird.","Three-quarters majority":"Dreiviertelmehrheit","Title":"Titel","Title for PDF and DOCX documents (all motions)":"Titel für PDF- und DOCX-Dokumente (alle Anträge) ","Title for PDF document (all elections)":"Titel für PDF-Dokument (alle Wahlen)","Title for access data and welcome PDF":"Titel für das Zugangsdaten- und Begrüßungs-PDF","Two-thirds majority":"Zweidrittelmehrheit","Use the following custom number":"Verwende die folgende benutzerdefinierte Anzahl","Use these placeholders: {name}, {event_name}, {url}, {username}, {password}. The url referrs to the system url.":"Verwendbare Platzhalter: \\{name\\}, \\{event_name\\}, \\{url\\}, \\{username\\}, \\{password\\}. Die URL bezieht sich auf die System-URL.","Used for QRCode in PDF of access data.":"Wird für QR-Code im Zugangsdaten-PDF verwendet.","Used for WLAN QRCode in PDF of access data.":"Wird für WLAN-QR-Code im Zugangsdaten-PDF verwendet.","Username":"Benutzername","Voting":"Im Wahlvorgang","Voting and ballot papers":"Abstimmung und Stimmzettel","WEP":"WEP","WLAN encryption":"WLAN-Verschlüsselung","WLAN name (SSID)":"WLAN-Name (SSID)","WLAN password":"WLAN-Passwort","WPA/WPA2":"WPA/WPA2","Web interface header logo":"Web-Interface-Kopfzeilen-Logo","Welcome to OpenSlides":"Willkommen bei OpenSlides","Will be displayed as label before selected recommendation. Use an empty value to disable the recommendation system.":"Wird als Beschriftung vor der ausgewählten Empfehlung angezeigt. Verwenden Sie eine leere Eingabe, um das Empfehlungssystem zu deaktivieren.","Withdraw":"Zurückziehen","Workflow of new motions":"Arbeitsablauf von neuen Anträgen","Yes":"Ja","Yes/No":"Ja/Nein","Yes/No per candidate":"Ja/Nein pro Kandidat","Yes/No/Abstain":"Ja/Nein/Enthaltung","Yes/No/Abstain per candidate":"Ja/Nein/Enthaltung pro Kandidat","You can replace the logo by uploading an image and set it as the \"Projector logo\" in \"files\".":"Sie können das Logo austauschen indem Sie ein Bild unter \"Dateien\" hochladen und es als \"Projektor-Logo\" festlegen.","You can use {event_name} as a placeholder.":"Sie können \\{event_name\\} als Platzhalter verwenden.","Your login for {event_name}":"Zugangsdaten für \\{event_name\\}","Your password was resetted successfully!":"Ihr Passwort wurde erfolgreich zurückgesetzt!","[Begin speech] starts the countdown, [End speech] stops the countdown.":"[Rede beginnen] startet den Countdown, [Rede beenden] stoppt den Countdown.","[Place for your welcome and help text.]":"[Platz für Ihren Begrüßungs- und Hilfetext.]","[Space for your welcome text.]":"[Platz für Ihren Begrüßungstext.]","accepted":"angenommen","adjourned":"vertagt","by":"von","disabled":"deaktiviert","inline":"innerhalb","needed":"erforderlich","needs review":"benötigt Überprüfung","none":"aus","not concerned":"nicht befasst","not decided":"nicht entschieden","outside":"außerhalb","permitted":"zugelassen","published":"veröffentlicht","refered to committee":"in Ausschuss verwiesen","rejected":"abgelehnt","rejected (not authorized)":"verworfen (nicht zulässig)","submitted":"eingereicht","withdrawed":"zurückgezogen"} +{"%num% emails were send sucessfully.":"{0}um% E-Mails wurden erfolgreich versandt.","A name is required":"Ein Name ist erforderlich","A password is required":"Ein Passwort ist erforderlich","A server error occured. Please contact your system administrator.":"Ein Serverfehler ist aufgetreten. Bitte kontaktieren Sie den Administrator.","About me":"Über mich","Accept":"Annehmen","Acceptance":"Annahme","Accepted":"Angenommen","Activate amendments":"Änderungsanträge aktivieren","Activate statute amendments":"Satzungsänderungsanträge","Add groups":"Gruppen hinzufügen","Add me":"Füge mich hinzu","Add submitters":"Antragsteller hinzufügen","Add tags":"Schlagwörter hinzufügen","Adjourn":"Vertagen","Adjournment":"Vertagung","Admin":"Admin","Agenda":"Tagesordnung","Agenda visibility":"Sichtbarkeit in der Tagesordnung","All casted ballots":"Alle abgegebenen Stimmzettel","All selected files will be deleted!":"Alle ausgewählten Dateien werden gelöscht!","All valid ballots":"Alle gültigen Stimmzettel","All your changes are saved immediately.":"Alle Änderungen werden sofort gespeichert.","Allow access for anonymous guest users":"Erlaube Zugriff für anonyme Gast-Nutzer","Allow to disable versioning":"Erlaubt Versionierung zu deaktiveren","Always Yes-No-Abstain per candidate":"Ja/Nein/Enthaltung pro Kandidat/in","Always Yes/No per candidate":"Ja/Nein pro Kandidat/in","Always one option per candidate":"Eine Stimme pro Kandidat/in","Amendment":"Änderungsantrag","Amendment text":"Änderungsantragstext","Amendment to":"Änderungsantrag zu","Amendments":"Änderungsanträge","An email with a password reset link was send!":"Es wurde eine E-Mail mit einem Link zum Zurücksetzen des Passworts gesendet.","An unknown error occurred.":"Ein unbekannter Fehler ist aufgetreten.","Arabic":"Arabisch","Attachments":"Anhänge","Automatic assign of method":"Automatische Zuordnung der Methode","Back":"Zurück","Back to login":"Zurück zur Anmeldung","Background color of projector header and footer":"Hintergrundfarbe des Projektor-Kopf- und Fußbereichs","Ballot and ballot papers":"Wahlgang und Stimmzettel","Begin of event":"Beginn der Veranstaltung","Begin speech":"Rede beginnen","Call list":"Aufrufliste","Called":"Aufgerufen wird","Called with":"Mit aufgerufen werden","Can create motions":"Darf Anträge erstellen","Can manage agenda":"Darf die Tagesordung verwalten","Can manage comments":"Darf Kommentare verwalten","Can manage configuration":"Darf die Konfiguration verwalten","Can manage elections":"Darf Wahlen verwalten","Can manage files":"Darf Dateien verwalten","Can manage list of speakers":"Darf Redelisten verwalten","Can manage logos and fonts":"Darf Logos und Schriften verwalten","Can manage motions":"Darf Anträge verwalten","Can manage tags":"Darf Schlagwörter verwalten","Can manage the chat":"Darf den Chat verwalten","Can manage the projector":"Darf den Projektor steuern","Can manage users":"Darf Benutzer verwalten","Can nominate another participant":"Darf andere Teilnehmende für Wahlen vorschlagen","Can nominate oneself":"Darf selbst für Wahlen kandidieren","Can put oneself on the list of speakers":"Darf sich selbst auf die Redeliste setzen","Can see agenda":"Darf die Tagesordnung sehen","Can see comments":"Darf Kommentare sehen","Can see elections":"Darf Wahlen sehen","Can see extra data of users (e.g. present and comment)":"Darf die zusätzlichen Daten der Benutzer sehen (z. B. anwesend und Kommentar)","Can see hidden files":"Darf versteckte Dateien sehen","Can see internal items and time scheduling of agenda":"Darf interne Einträge und Zeitplan der Tagesordnung sehen","Can see motions":"Darf Anträge sehen","Can see names of users":"Darf die Namen der Benutzer sehen","Can see the front page":"Darf die Startseite sehen","Can see the list of files":"Darf die Dateiliste sehen","Can see the projector":"Darf den Projektor sehen","Can support motions":"Darf Anträge unterstützen","Can upload files":"Darf Dateien hochladen","Can use the chat":"Darf den Chat benutzen","Cancel":"Abbrechen","Categories":"Sachgebiete","Category":"Sachgebiet","Center":"Mittig","Change paragraph":"Absatz ändern","Change password":"Passwort ändern","Change recommendation":"Änderungsempfehlung","Change recommendations":"Änderungsempfehlungen","Changed version":"Geänderte Fassung","Choose 0 to disable the supporting system.":"Zum Deaktivieren des Unterstützersystems '0' eingeben.","Clear list":"Liste leeren","Close":"Schließen","Collapse all":"Alle zusammenklappen","Color for blanked projector":"Farbe für ausgeblendeten Projektor","Comment":"Kommentar","Comment fields":"Kommentarfelder","Committees":"Gremien","Complex Workflow":"Komplexer Arbeitsablauf","Content":"Inhalt","Couple countdown with the list of speakers":"Countdown mit der Redeliste verkoppeln","Create":"Erstellen","Create new category":"Neues Sachgebiet erstellen","Current browser language":"Aktuelle Browsersprache","Custom number of ballot papers":"Benutzerdefinierte Anzahl von Stimmzetteln","Custom translations":"Benutzerdefinierte Übersetzungen","Czech":"Tschechisch","Dear {name},\n\nthis is your OpenSlides login for the event {event_name}:\n\n {url}\n username: {username}\n password: {password}\n\nThis email was generated automatically.":"Hallo \\{name\\},\n\ndies ist Ihr OpenSlides-Zugang für die Veranstaltung \\{event_name\\}:\n\n \\{url\\}\n Benutzername: \\{username\\}\n Passwort: \\{password\\}\n\nDiese E-Mail wurde automatisch erstellt.","Default":"Standard","Default line numbering":"Voreingestellte Zeilennummerierung","Default method to check whether a candidate has reached the required majority.":"Voreingestellte Methode zur Überprüfung ob ein Kandidate die nötige Mehrheit erreicht hat.","Default method to check whether a motion has reached the required majority.":"Voreingestellte Methode zur Überprüfung ob ein Antrag die nötige Mehrheit erreicht hat.","Default projector":"Standardprojektor","Default text version for change recommendations":"Voreingestellte Fassung für Änderungsempfehlungen","Default visibility for new agenda items (except topics)":"Voreingestellte Sichtbarkeit für neue Tagesordnungspunkte (außer Themen)","Delegates":"Delegierte","Delete":"Löschen","Delete whole history":"Chronik löschen","Designates whether this user is in the room.":"Bestimmt, ob dieser Benutzer vor Ort ist.","Designates whether this user should be treated as a committee.":"Legt fest, ob dieser Benutzer als Gremium behandelt werden soll.","Designates whether this user should be treated as active. Unselect this instead of deleting the account.":"Bestimmt, ob dieser Benutzer als aktiv behandelt werden soll. Sie können ihn deaktivieren anstatt ihn zu löschen.","Diff version":"Änderungsdarstellung","Disabled":"Deaktiviert","Disabled (no percents)":"Deaktiviert (keine Prozente)","Display header and footer":"Kopf- und Fußzeile anzeigen","Do not concern":"Nicht befassen","Do not decide":"Nicht entscheiden","Do you want to delete this file?":"Soll diese Datei wirklich gelöscht werden?","Drop files into this area OR select files":"Dateien auf diesen Bereich ziehen ODER Dateien auswählen","Edit":"Bearbeiten","Edit category:":"Sachgebiet bearbeiten:","Edit comment field:":"Kommentarfeld bearbeiten:","Edit profile":"Profil bearbeiten","Edit statute paragraph:":"Satzungsabschnitt bearbeiten:","Edit the whole motion text":"Vollständigen Antragstext bearbeiten","Election method":"Wahlmethode","Elections":"Wahlen","Email":"E-Mail","Email body":"Nachrichtentext","Email sender":"Absender","Email subject":"Betreff","Empty text field":"Leeres Textfeld","Enable numbering for agenda items":"Nummerierung von Tagesordnungspunkten aktivieren","Enable participant presence view":"Ansicht zur Teilnehmeranwesenheit aktivieren","End speech":"Rede beenden","English":"Englisch","Enter duration in seconds. Choose 0 to disable warning color.":"Geben Sie die Dauer in Sekunden an. Zum Deaktivieren der Warn-Farbe 0 auswählen.","Enter your email to send the password reset link":"Geben Sie Ihre E-Mail-Adresse ein um eine Link zum Zurücksetzen des Passworts zu erhalten.","Error":"Fehler","Event":"Veranstaltung","Event date":"Veranstaltungszeitraum","Event location":"Veranstaltungsort","Event name":"Veranstaltungsname","Event organizer":"Veranstalter","Exit":"Beenden","Exit multiselect":"Mehrfachauswahl beenden","Expand all":"Alle ausklappen","Export":"Export","Export ...":"Exportieren ...","Export as CSV":"Exportieren als CSV","FILTER":"FILTER","File information":"Dateiinformationen","File name":"Dateiname","Files":"Dateien","Final version":"Beschlussfassung","Finished":"Abgeschlossen","Font color of projector header and footer":"Schriftfarbe des Projektor-Kopf- und Fußbereichs","Font color of projector headline":"Schriftfarbe der Projektor-Überschrift","Front page text":"Text der Startseite","Front page title":"Titel der Startseite","General":"Allgemein","Generate new passwords":"Neue Passwörter generieren","German":"Deutsch","Given name":"Vorname","Groups":"Gruppen","Groups with read permissions":"Gruppen mit Leseberechtigungen","Groups with write permissions":"Gruppen mit Schreibberechtigungen","Help text for access data and welcome PDF":"Hilfetext für das Zugangsdaten- und Willkommens-PDF","Hidden":"Versteckt","Hidden item":"Versteckter Eintrag","Hide internal items when projecting subitems":"Interne Einträge ausblenden bei der Projektion von Untereinträgen","Hide meta information box on projector":"Meta-Informations-Box auf dem Projektor ausblenden","Hide reason on projector":"Begründung auf dem Projektor ausblenden","Hide recommendation on projector":"Empfehlung auf dem Projektor ausblenden","History":"Chronik","Home":"Startseite","How to create new amendments":"Erstellung von Änderungsanträgen","Identifier":"Bezeichner","Import ...":"Importieren ...","Include the sequential number in PDF and DOCX":"Laufende Nummer im PDF und DOCX anzeigen","Initial password":"Initiales Passwort","Input format: DD.MM.YYYY HH:MM":"Eingabeformat: TT.MM.JJJJ HH:MM","Installed plugins":"Installierte Plugins","Internal item":"Interner Eintrag","Invalid input.":"Ungültige Eingabe.","Is a committee":"Ist ein Gremium","Is active":"Ist aktiv","Is committee":"Ist Gremium","Is inactive":"Ist inaktiv","Is no committee":"Ist kein Gremium","Is not present":"Ist nicht anwesend","Is present":"Ist anwesend","Last speakers":"Letzte Redner","Left":"Links","Legal notice":"Impressum","License":"Lizenz","Line":"Zeile","Line length":"Zeilenlänge","Line numbering":"Zeilennummerierung","List of speakers":"Redeliste","List of speakers overlay":"Redelisten-Einblendung","Login":"Anmelden","Login as Guest":"Als Gast anmelden","Logout":"Abmelden","Mark speaker":"Redner/in markieren","Meta information":"Metainformationen","Motion":"Antrag","Motion block":"Antragsblock","Motion preamble":"Antragseinleitung","Motions":"Anträge","Move to agenda item":"Zu TOP verschieben","Multiselect":"Mehrfachauswahl","Name":"Name","Name of recommender":"Name des Empfehlungsgebers","Name of recommender for statute amendments":"Name des Empfehlungsgebers für Satzungsänderungsanträge","Needs review":"Benötigt Review","New":"Neu","New amendment":"Neuer Änderungsantrag","New comment field":"Neues Kommentarfeld","New file name":"Neuer Dateiname","New group name":"Neuer Gruppenname","New motion":"Neuer Antrag","New password":"Neues Passwort","New statute paragraph":"Neuer Satzungsabschnitt","New tag name":"Neues Schlagwort","Next":"Weiter","No change recommendations yet":"Bisher keine Änderungsempfehlungen","No changes at the text.":"Keine Änderung am Text.","No choices available":"Keine Auswahl vorhanden","No comment":"Kein Kommentar","No concernment":"Nichtbefassung","No decision":"Keine Entscheidung","No emails were send.":"Es wurden keine E-Mails versandt.","No encryption":"Keine Verschlüsselung","No groups selected":"Keine Gruppen ausgewählt","No information available":"Keine Informationen verfügbar","No personal note":"Keine persönliche Notiz","No statute paragraphs":"Keine Satzungsabschnitte vorhanden","None":"aus","Note: You have to reject all change recommendations if the plenum does not follow the recommendation. This does not affect amendments.":"Wichtig: Sie müssen alle Änderungsempfehlungen ablehnen, wenn das Plenum der Empfehlung nicht folgt. Dies betrifft jedoch nicht die Änderungsanträge.","Number of (minimum) required supporters for a motion":"Mindestanzahl erforderlicher Unterstützer/innen für einen Antrag","Number of all delegates":"Anzahl aller Delegierten","Number of all participants":"Anzahl aller Teilnehmenden","Number of ballot papers (selection)":"Anzahl der Stimmzettel (Vorauswahl)","Number of last speakers to be shown on the projector":"Anzahl der dargestellten letzten Redner/innen auf dem Projektor","Numbered per category":"Pro Sachgebiet nummerieren","Numbering prefix for agenda items":"Präfix für Nummerierung von Tagesordnungspunkten","Numeral system for agenda items":"Nummerierungssystem für Tagesordnungspunkte","OK":"OK","Offline mode: You can use OpenSlides but changes are not saved.":"Offlinemodus: Sie können OpenSlides weiter nutzen, aber Änderungen werden nicht gespeichert.","Ok":"Ok","One email was send sucessfully.":"Eine E-Mail wurde erfolgreich versandt.","Only for internal notes.":"Nur für interne Notizen.","Open":"Öffnen","Origin":"Herkunft","Original version":"Originalfassung","PDF":"PDF","PDF ballot paper logo":"PDF-Stimmzettel-Logo","PDF footer logo (left)":"PDF-Logo Fußzeile (links)","PDF footer logo (right)":"PDF-Logo Fußzeile (rechts)","PDF header logo (left)":"PDF-Logo Kopfzeile (links)","PDF header logo (right)":"PDF-Logo Kopfzeile (rechts)","Page number alignment in PDF":"Seitenzahl-Ausrichtung im PDF","Paragraph-based, Diff-enabled":"Absatzbasiert mit Änderungsdarstellung","Parallel upload":"Parallel hochladen","Participant number":"Teilnehmernummer","Participants":"Teilnehmende","Permission":"Zulassung","Permissions":"Berechtigungen","Permit":"Zulassen","Personal note":"Persönliche Notiz","Please enter a valid email address":"Bitte geben Sie einen neuen Namen ein für","Please enter your new password":"Bitte geben Sie Ihr neues Passwort ein","Preamble text for PDF and DOCX documents (all motions)":"Einleitungstext für PDF- und DOCX-Dokumente (alle Anträge) ","Preamble text for PDF document (all elections)":"Einleitungstext für PDF-Dokument (alle Wahlen) ","Predefined seconds of new countdowns":"Vorgegebene Sekunden für neue Countdowns","Prefix":"Präfix","Prefix for the identifier for amendments":"Präfix für den Bezeichner von Änderungsanträgen","Present":"Anwesend","Presentation and assembly system":"Präsentations- und Versammlungssystem","Privacy Policy":"Datenschutzerklärung","Privacy policy":"Datenschutzerklärung","Project":"Projizieren","Projector":"Projektor","Projector header image":"Projektor-Kopfgrafik","Projector language":"Projektorsprache","Projector logo":"Projektor-Logo","Public":"Öffentlich","Public item":"Öffentlicher Eintrag","Put all candidates on the list of speakers":"Alle Kandidaten auf die Redeliste setzen","Reason":"Begründung","Recommendation":"Empfehlung","Refer to committee":"In Ausschuss verweisen","Referral to committee":"Verweisung in Ausschuss","Reject":"Ablehnen","Reject (not authorized)":"Verwerfen (nicht zulässig)","Rejected":"Abgelehnt","Rejection":"Ablehnung","Rejection (not authorized)":"Verwerfung (nicht berechtigt)","Remove":"Entfernen","Remove all supporters of a motion if a submitter edits his motion in early state":"Entferne alle Unterstützer/innen eines Antrags, wenn ein Antragsteller/in den Antrag im Anfangsstadium bearbeitet","Remove groups":"Gruppen entfernen","Remove me":"Entferne mich","Remove tags":"Schlagwörter entfernen","Required":"Erforderlich","Required majority":"Erforderliche Mehrheit","Reset password":"Passwort zurücksetzen","Reset recommendation":"Empfehlung zurücksetzen","Reset state":"Status zurücksetzen","Right":"Rechts","Roman":"Römisch","SORT":"SORTIEREN","Save":"Speichern","Searching for candidates":"Auf Kandidatensuche","Select or search new speaker ...":"Redner/in auswählen oder suchen ...","Select paragraph":"Absatz auswählen","Selected values":"Ausgewählte Werte","Send invitation email":"Einladungs-E-Mail senden","Separator used for all csv exports and examples":"Feldtrenner für alle CSV-Exporte und -Beispiele","Serially numbered":"fortlaufend nummerieren","Set category":"Sachgebiet setzen","Set invisible":"Set invisible","Set it manually":"manuell setzen","Set recommendation":"Empfehlung setzen","Set status":"Status setzen","Set visible":"Set visible","Settings":"Einstellungen","Short description of event":"Kurzbeschreibung der Veranstaltung","Show amendments together with motions":"Änderungsanträge zusätzlich in der Hauptantragsübersicht anzeigen","Show entire motion text":"Vollständigen Antragstext anzeigen","Show logo on projector":"Logo auf dem Projektor anzeigen","Show orange countdown in the last x seconds of speaking time":"Countdown in den letzten x Sekunden der Redezeit orange darstellen","Show the clock on projector":"Uhr auf dem Projektor anzeigen","Show this text on the login page":"Diesen Text auf der Login-Seite anzeigen","Show title and description of event on projector":"Titel und Kurzbeschreibung der Veranstaltung auf dem Projektor anzeigen","Simple Workflow":"Einfacher Arbeitsablauf","Simple majority":"Einfache Mehrheit","Sort ...":"Sortieren ...","Sort categories by":"Sachgebiete sortieren nach","Sort name of participants by":"Namen der Teilnehmenden sortieren nach","Staff":"Mitarbeitende","Standard font size in PDF":"Standard-Schriftgröße im PDF","Start":"Start","Start time":"Startzeit","State":"Status","Statute":"Satzung","Statute amendment":"Satzungsänderungsantrag","Statute amendment for":"Satzungsänderungsantrag zu","Statute paragraph":"Satzungsabschnitt","Stop":"Stopp","Stop submitting new motions by non-staff users":"Einreichen von neuen Anträgen stoppen für Nutzer ohne Verwaltungsrechte","Structure level":"Gliederungsebene","Submitters":"Antragsteller/in","Summary of changes":"Zusammenfassung der Änderungen","Support":"Unterstützen","Supporters":"Unterstützer/innen","Surname":"Nachname","System":"System","System URL":"System-URL","Tags":"Schlagwörter","The 100 % base of a voting result consists of":"Die 100%-Basis eines Abstimmungsergebnisses besteht aus","The 100-%-base of an election result consists of":"Die 100%-Basis eines Wahlergebnisses besteht aus","The assembly may decide:":"Die Versammlung möge beschließen:","The event manager hasn't set up a privacy policy yet.":"Der Veranstalter hat noch keine Datenschutzerklärung hinterlegt.","The link is broken. Please contact your system administrator.":"Der Link ist defekt. Bitte kontaktieren Sie den zuständigen Administrator.","The maximum number of characters per line. Relevant when line numbering is enabled. Min: 40":"Die maximale Zeichenanzahl pro Zeile. Relevant, wenn die Zeilennummerierung eingeschaltet ist. Minimum: 40.","The server could not be reached.":"Der Server konnte nicht erreicht werden.","The server didn't respond.":"Der Server antwortet nicht.","The title of the motion is always applied.":"Der Antragstitel wird immer übernommen.","The user %user% has no email, so the invitation email could not be send.":"{0}ser% besitzt keine E-Mail-Adresse; eine E-Mail konnte daher nicht gesendet werden.","The users %user% have no email, so the invitation emails could not be send.":"{0}ser% besitzen keine E-Mail-Adressen; E-Mails konnte daher nicht gesendet werden.","This change collides with another one.":"Diese Änderung kollidiert mit einer anderen.","This element does not exist at this time.":"Dieses Element existiert nicht zu diesem Zeitpunkt.","This prefix will be set if you run the automatic agenda numbering.":"Dieses Präfix wird gesetzt, wenn die automatische Nummerierung der Tagesordnung durchgeführt wird.","This will add the following submitters of all selected motions:":"Folgende Antragsteller werden den ausgewählten Anträgen hinzugefügt:","This will add the following tags to all selected motions:":"Folgende Schlagwörter werden den ausgewählten Anträgen hinzugefügt:","This will delete all selected motions.":"Alle ausgewählten Anträge werden gelöscht.","This will move all selected motions as childs to:":"Alle ausgewählten Anträge werden unterhalb des folgenden Tagesordnungspunktes verschoben:","This will remove the following submitters from all selected motions:":"Folgende Antragsteller werden aus den ausgewählten Anträge entfernt:","This will remove the following tags from all selected motions:":"Folgende Schlagwörter werden aus den ausgewählten Anträgen entfernt:","This will set the category of all selected motions to:":"Folgendes Sachgebiet wird für alle ausgewählten Anträge gesetzt:","This will set the recommendation for all selected motions to:":"Folgende Empfehlung wird für alle ausgewählten Anträge gesetzt:","This will set the state of all selected motions to:":"Folgender Status wird für alle ausgewählten Anträge gesetzt:","Three-quarters majority":"Dreiviertelmehrheit","Title":"Titel","Title for PDF and DOCX documents (all motions)":"Titel für PDF- und DOCX-Dokumente (alle Anträge) ","Title for PDF document (all elections)":"Titel für PDF-Dokument (alle Wahlen)","Title for access data and welcome PDF":"Titel für das Zugangsdaten- und Begrüßungs-PDF","Topic":"Thema","Two-thirds majority":"Zweidrittelmehrheit","Unsupport":"Unterstützung zurückziehen","Upload":"Hochladen","Upload files":"Dateien hochladen","Use the following custom number":"Verwende die folgende benutzerdefinierte Anzahl","Use these placeholders: {name}, {event_name}, {url}, {username}, {password}. The url referrs to the system url.":"Verwendbare Platzhalter: \\{name\\}, \\{event_name\\}, \\{url\\}, \\{username\\}, \\{password\\}. Die URL bezieht sich auf die System-URL.","Used for QRCode in PDF of access data.":"Wird für QR-Code im Zugangsdaten-PDF verwendet.","Used for WLAN QRCode in PDF of access data.":"Wird für WLAN-QR-Code im Zugangsdaten-PDF verwendet.","Username":"Benutzername","Visibility":"Sichtbarkeit","Visible":"Sichtbar","Voting":"Im Wahlvorgang","Voting and ballot papers":"Abstimmung und Stimmzettel","WEP":"WEP","WLAN encryption":"WLAN-Verschlüsselung","WLAN name (SSID)":"WLAN-Name (SSID)","WLAN password":"WLAN-Passwort","WPA/WPA2":"WPA/WPA2","Web interface header logo":"Web-Interface-Kopfzeilen-Logo","Welcome to OpenSlides":"Willkommen bei OpenSlides","Will be displayed as label before selected recommendation for statute amendments. Use an empty value to disable the recommendation system.":"Wird als Beschriftung vor der ausgewählten Empfehlung von Satzungsänderungsanträgen angezeigt. Verwenden Sie eine leere Eingabe, um das Empfehlungssystem zu deaktivieren.","Will be displayed as label before selected recommendation. Use an empty value to disable the recommendation system.":"Wird als Beschriftung vor der ausgewählten Empfehlung angezeigt. Verwenden Sie eine leere Eingabe, um das Empfehlungssystem zu deaktivieren.","Withdraw":"Zurückziehen","Workflow":"Arbeitsablauf","Workflow of new motions":"Arbeitsablauf für neue Anträge","Workflow of new statute amendments":"Arbeitsablauf für neue Satzungsänderungsanträge","Yes":"Ja","Yes/No":"Ja/Nein","Yes/No per candidate":"Ja/Nein pro Kandidat","Yes/No/Abstain":"Ja/Nein/Enthaltung","Yes/No/Abstain per candidate":"Ja/Nein/Enthaltung pro Kandidat","You are using the history mode of OpenSlides. Changes will not be saved.":"Der Chronik-Modus ist aktiv. Änderungen werden nicht gespeichert.","You can replace the logo by uploading an image and set it as the \"Projector logo\" in \"files\".":"Sie können das Logo austauschen indem Sie ein Bild unter \"Dateien\" hochladen und es als \"Projektor-Logo\" festlegen.","You can use {event_name} as a placeholder.":"Sie können \\{event_name\\} als Platzhalter verwenden.","Your login for {event_name}":"Zugangsdaten für \\{event_name\\}","Your password was resetted successfully!":"Ihr Passwort wurde erfolgreich zurückgesetzt!","[Begin speech] starts the countdown, [End speech] stops the countdown.":"[Rede beginnen] startet den Countdown, [Rede beenden] stoppt den Countdown.","[Place for your welcome and help text.]":"[Platz für Ihren Begrüßungs- und Hilfetext.]","[Space for your welcome text.]":"[Platz für Ihren Begrüßungstext.]","accepted":"angenommen","adjourned":"vertagt","and":"und","by":"von","disabled":"deaktiviert","inline":"innerhalb","needed":"erforderlich","needs review":"benötigt Überprüfung","none":"aus","not concerned":"nicht befasst","not decided":"nicht entschieden","not set":"nicht gesetzt","outside":"außerhalb","permitted":"zugelassen","published":"veröffentlicht","refered to committee":"in Ausschuss verwiesen","rejected":"abgelehnt","rejected (not authorized)":"verworfen (nicht zulässig)","remove submitters":"Antragsteller entfernen","selected":"ausgewählt","submitted":"eingereicht","supporters":"Unterstützer/innen","withdrawed":"zurückgezogen"} \ No newline at end of file diff --git a/client/src/assets/i18n/de.po b/client/src/assets/i18n/de.po index a67d982cb..255e89ac8 100644 --- a/client/src/assets/i18n/de.po +++ b/client/src/assets/i18n/de.po @@ -1,6 +1,6 @@ # Translators: # Emanuel Schütze , 2018 -# +# msgid "" msgstr "" "Last-Translator: Emanuel Schütze , 2018\n" @@ -11,9 +11,19 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "%num% emails were send sucessfully." +msgstr "%num% E-Mails wurden erfolgreich versandt." + +msgid "A name is required" +msgstr "Ein Name ist erforderlich" + msgid "A password is required" msgstr "Ein Passwort ist erforderlich" +msgid "A server error occured. Please contact your system administrator." +msgstr "" +"Ein Serverfehler ist aufgetreten. Bitte kontaktieren Sie den Administrator." + msgid "About me" msgstr "Über mich" @@ -29,12 +39,30 @@ msgstr "Angenommen" msgid "Activate amendments" msgstr "Änderungsanträge aktivieren" +msgid "Activate statute amendments" +msgstr "Satzungsänderungsanträge" + +msgid "Add groups" +msgstr "Gruppen hinzufügen" + +msgid "Add me" +msgstr "Füge mich hinzu" + +msgid "Add submitters" +msgstr "Antragsteller hinzufügen" + +msgid "Add tags" +msgstr "Schlagwörter hinzufügen" + msgid "Adjourn" msgstr "Vertagen" msgid "Adjournment" msgstr "Vertagung" +msgid "Admin" +msgstr "Admin" + msgid "Agenda" msgstr "Tagesordnung" @@ -44,6 +72,9 @@ msgstr "Sichtbarkeit in der Tagesordnung" msgid "All casted ballots" msgstr "Alle abgegebenen Stimmzettel" +msgid "All selected files will be deleted!" +msgstr "Alle ausgewählten Dateien werden gelöscht!" + msgid "All valid ballots" msgstr "Alle gültigen Stimmzettel" @@ -68,6 +99,9 @@ msgstr "Eine Stimme pro Kandidat/in" msgid "Amendment" msgstr "Änderungsantrag" +msgid "Amendment text" +msgstr "Änderungsantragstext" + msgid "Amendment to" msgstr "Änderungsantrag zu" @@ -78,12 +112,21 @@ msgid "An email with a password reset link was send!" msgstr "" "Es wurde eine E-Mail mit einem Link zum Zurücksetzen des Passworts gesendet." +msgid "An unknown error occurred." +msgstr "Ein unbekannter Fehler ist aufgetreten." + msgid "Arabic" msgstr "Arabisch" +msgid "Attachments" +msgstr "Anhänge" + msgid "Automatic assign of method" msgstr "Automatische Zuordnung der Methode" +msgid "Back" +msgstr "Zurück" + msgid "Back to login" msgstr "Zurück zur Anmeldung" @@ -96,6 +139,18 @@ msgstr "Wahlgang und Stimmzettel" msgid "Begin of event" msgstr "Beginn der Veranstaltung" +msgid "Begin speech" +msgstr "Rede beginnen" + +msgid "Call list" +msgstr "Aufrufliste" + +msgid "Called" +msgstr "Aufgerufen wird" + +msgid "Called with" +msgstr "Mit aufgerufen werden" + msgid "Can create motions" msgstr "Darf Anträge erstellen" @@ -200,6 +255,9 @@ msgstr "Sachgebiet" msgid "Center" msgstr "Mittig" +msgid "Change paragraph" +msgstr "Absatz ändern" + msgid "Change password" msgstr "Passwort ändern" @@ -215,14 +273,26 @@ msgstr "Geänderte Fassung" msgid "Choose 0 to disable the supporting system." msgstr "Zum Deaktivieren des Unterstützersystems '0' eingeben." +msgid "Clear list" +msgstr "Liste leeren" + +msgid "Close" +msgstr "Schließen" + +msgid "Collapse all" +msgstr "Alle zusammenklappen" + msgid "Color for blanked projector" msgstr "Farbe für ausgeblendeten Projektor" msgid "Comment" msgstr "Kommentar" -msgid "Comments" -msgstr "Kommentare" +msgid "Comment fields" +msgstr "Kommentarfelder" + +msgid "Committees" +msgstr "Gremien" msgid "Complex Workflow" msgstr "Komplexer Arbeitsablauf" @@ -233,15 +303,12 @@ msgstr "Inhalt" msgid "Couple countdown with the list of speakers" msgstr "Countdown mit der Redeliste verkoppeln" +msgid "Create" +msgstr "Erstellen" + msgid "Create new category" msgstr "Neues Sachgebiet erstellen" -msgid "Create new comment field" -msgstr "Neues Kommentarfeld erstellen" - -msgid "Create new statute paragraph" -msgstr "Neuen Satzungsparagraphen erstellen" - msgid "Current browser language" msgstr "Aktuelle Browsersprache" @@ -275,6 +342,9 @@ msgstr "" "\n" "Diese E-Mail wurde automatisch erstellt." +msgid "Default" +msgstr "Standard" + msgid "Default line numbering" msgstr "Voreingestellte Zeilennummerierung" @@ -301,11 +371,14 @@ msgid "Default visibility for new agenda items (except topics)" msgstr "" "Voreingestellte Sichtbarkeit für neue Tagesordnungspunkte (außer Themen)" +msgid "Delegates" +msgstr "Delegierte" + msgid "Delete" msgstr "Löschen" -msgid "Delete all files" -msgstr "Alle Dateien löschen" +msgid "Delete whole history" +msgstr "Chronik löschen" msgid "Designates whether this user is in the room." msgstr "Bestimmt, ob dieser Benutzer vor Ort ist." @@ -338,6 +411,12 @@ msgstr "Nicht befassen" msgid "Do not decide" msgstr "Nicht entscheiden" +msgid "Do you want to delete this file?" +msgstr "Soll diese Datei wirklich gelöscht werden?" + +msgid "Drop files into this area OR select files" +msgstr "Dateien auf diesen Bereich ziehen ODER Dateien auswählen" + msgid "Edit" msgstr "Bearbeiten" @@ -351,7 +430,7 @@ msgid "Edit profile" msgstr "Profil bearbeiten" msgid "Edit statute paragraph:" -msgstr "Satzungsparagraph bearbeiten:" +msgstr "Satzungsabschnitt bearbeiten:" msgid "Edit the whole motion text" msgstr "Vollständigen Antragstext bearbeiten" @@ -383,6 +462,9 @@ msgstr "Nummerierung von Tagesordnungspunkten aktivieren" msgid "Enable participant presence view" msgstr "Ansicht zur Teilnehmeranwesenheit aktivieren" +msgid "End speech" +msgstr "Rede beenden" + msgid "English" msgstr "Englisch" @@ -396,6 +478,9 @@ msgstr "" "Geben Sie Ihre E-Mail-Adresse ein um eine Link zum Zurücksetzen des " "Passworts zu erhalten." +msgid "Error" +msgstr "Fehler" + msgid "Event" msgstr "Veranstaltung" @@ -411,6 +496,15 @@ msgstr "Veranstaltungsname" msgid "Event organizer" msgstr "Veranstalter" +msgid "Exit" +msgstr "Beenden" + +msgid "Exit multiselect" +msgstr "Mehrfachauswahl beenden" + +msgid "Expand all" +msgstr "Alle ausklappen" + msgid "Export" msgstr "Export" @@ -423,6 +517,12 @@ msgstr "Exportieren als CSV" msgid "FILTER" msgstr "FILTER" +msgid "File information" +msgstr "Dateiinformationen" + +msgid "File name" +msgstr "Dateiname" + msgid "Files" msgstr "Dateien" @@ -447,6 +547,9 @@ msgstr "Titel der Startseite" msgid "General" msgstr "Allgemein" +msgid "Generate new passwords" +msgstr "Neue Passwörter generieren" + msgid "German" msgstr "Deutsch" @@ -465,6 +568,12 @@ msgstr "Gruppen mit Schreibberechtigungen" msgid "Help text for access data and welcome PDF" msgstr "Hilfetext für das Zugangsdaten- und Willkommens-PDF" +msgid "Hidden" +msgstr "Versteckt" + +msgid "Hidden item" +msgstr "Versteckter Eintrag" + msgid "Hide internal items when projecting subitems" msgstr "Interne Einträge ausblenden bei der Projektion von Untereinträgen" @@ -477,6 +586,9 @@ msgstr "Begründung auf dem Projektor ausblenden" msgid "Hide recommendation on projector" msgstr "Empfehlung auf dem Projektor ausblenden" +msgid "History" +msgstr "Chronik" + msgid "Home" msgstr "Startseite" @@ -501,6 +613,9 @@ msgstr "Eingabeformat: TT.MM.JJJJ HH:MM" msgid "Installed plugins" msgstr "Installierte Plugins" +msgid "Internal item" +msgstr "Interner Eintrag" + msgid "Invalid input." msgstr "Ungültige Eingabe." @@ -510,9 +625,24 @@ msgstr "Ist ein Gremium" msgid "Is active" msgstr "Ist aktiv" +msgid "Is committee" +msgstr "Ist Gremium" + +msgid "Is inactive" +msgstr "Ist inaktiv" + +msgid "Is no committee" +msgstr "Ist kein Gremium" + +msgid "Is not present" +msgstr "Ist nicht anwesend" + msgid "Is present" msgstr "Ist anwesend" +msgid "Last speakers" +msgstr "Letzte Redner" + msgid "Left" msgstr "Links" @@ -546,30 +676,54 @@ msgstr "Als Gast anmelden" msgid "Logout" msgstr "Abmelden" +msgid "Mark speaker" +msgstr "Redner/in markieren" + msgid "Meta information" msgstr "Metainformationen" msgid "Motion" msgstr "Antrag" +msgid "Motion block" +msgstr "Antragsblock" + msgid "Motion preamble" msgstr "Antragseinleitung" -msgid "Motion text" -msgstr "Antragstext" - msgid "Motions" msgstr "Anträge" +msgid "Move to agenda item" +msgstr "Zu TOP verschieben" + +msgid "Multiselect" +msgstr "Mehrfachauswahl" + msgid "Name" msgstr "Name" msgid "Name of recommender" msgstr "Name des Empfehlungsgebers" +msgid "Name of recommender for statute amendments" +msgstr "Name des Empfehlungsgebers für Satzungsänderungsanträge" + msgid "Needs review" msgstr "Benötigt Review" +msgid "New" +msgstr "Neu" + +msgid "New amendment" +msgstr "Neuer Änderungsantrag" + +msgid "New comment field" +msgstr "Neues Kommentarfeld" + +msgid "New file name" +msgstr "Neuer Dateiname" + msgid "New group name" msgstr "Neuer Gruppenname" @@ -579,12 +733,24 @@ msgstr "Neuer Antrag" msgid "New password" msgstr "Neues Passwort" +msgid "New statute paragraph" +msgstr "Neuer Satzungsabschnitt" + msgid "New tag name" msgstr "Neues Schlagwort" +msgid "Next" +msgstr "Weiter" + msgid "No change recommendations yet" msgstr "Bisher keine Änderungsempfehlungen" +msgid "No changes at the text." +msgstr "Keine Änderung am Text." + +msgid "No choices available" +msgstr "Keine Auswahl vorhanden" + msgid "No comment" msgstr "Kein Kommentar" @@ -594,17 +760,23 @@ msgstr "Nichtbefassung" msgid "No decision" msgstr "Keine Entscheidung" +msgid "No emails were send." +msgstr "Es wurden keine E-Mails versandt." + msgid "No encryption" msgstr "Keine Verschlüsselung" msgid "No groups selected" msgstr "Keine Gruppen ausgewählt" +msgid "No information available" +msgstr "Keine Informationen verfügbar" + msgid "No personal note" msgstr "Keine persönliche Notiz" msgid "No statute paragraphs" -msgstr "Keine Satzungsparagraphen" +msgstr "Keine Satzungsabschnitte vorhanden" msgid "None" msgstr "aus" @@ -648,9 +820,18 @@ msgstr "" "Offlinemodus: Sie können OpenSlides weiter nutzen, aber Änderungen werden " "nicht gespeichert." +msgid "Ok" +msgstr "Ok" + +msgid "One email was send sucessfully." +msgstr "Eine E-Mail wurde erfolgreich versandt." + msgid "Only for internal notes." msgstr "Nur für interne Notizen." +msgid "Open" +msgstr "Öffnen" + msgid "Origin" msgstr "Herkunft" @@ -681,6 +862,9 @@ msgstr "Seitenzahl-Ausrichtung im PDF" msgid "Paragraph-based, Diff-enabled" msgstr "Absatzbasiert mit Änderungsdarstellung" +msgid "Parallel upload" +msgstr "Parallel hochladen" + msgid "Participant number" msgstr "Teilnehmernummer" @@ -750,12 +934,18 @@ msgstr "Projektor-Logo" msgid "Public" msgstr "Öffentlich" +msgid "Public item" +msgstr "Öffentlicher Eintrag" + msgid "Put all candidates on the list of speakers" msgstr "Alle Kandidaten auf die Redeliste setzen" msgid "Reason" msgstr "Begründung" +msgid "Recommendation" +msgstr "Empfehlung" + msgid "Refer to committee" msgstr "In Ausschuss verweisen" @@ -777,6 +967,9 @@ msgstr "Ablehnung" msgid "Rejection (not authorized)" msgstr "Verwerfung (nicht berechtigt)" +msgid "Remove" +msgstr "Entfernen" + msgid "" "Remove all supporters of a motion if a submitter edits his motion in early " "state" @@ -784,6 +977,15 @@ msgstr "" "Entferne alle Unterstützer/innen eines Antrags, wenn ein Antragsteller/in " "den Antrag im Anfangsstadium bearbeitet" +msgid "Remove groups" +msgstr "Gruppen entfernen" + +msgid "Remove me" +msgstr "Entferne mich" + +msgid "Remove tags" +msgstr "Schlagwörter entfernen" + msgid "Required" msgstr "Erforderlich" @@ -814,18 +1016,42 @@ msgstr "Speichern" msgid "Searching for candidates" msgstr "Auf Kandidatensuche" +msgid "Select or search new speaker ..." +msgstr "Redner/in auswählen oder suchen ..." + +msgid "Select paragraph" +msgstr "Absatz auswählen" + msgid "Selected values" msgstr "Ausgewählte Werte" +msgid "Send invitation email" +msgstr "Einladungs-E-Mail senden" + msgid "Separator used for all csv exports and examples" msgstr "Feldtrenner für alle CSV-Exporte und -Beispiele" msgid "Serially numbered" msgstr "fortlaufend nummerieren" +msgid "Set category" +msgstr "Sachgebiet setzen" + +msgid "Set invisible" +msgstr "" + msgid "Set it manually" msgstr "manuell setzen" +msgid "Set recommendation" +msgstr "Empfehlung setzen" + +msgid "Set status" +msgstr "Status setzen" + +msgid "Set visible" +msgstr "" + msgid "Settings" msgstr "Einstellungen" @@ -835,6 +1061,9 @@ msgstr "Kurzbeschreibung der Veranstaltung" msgid "Show amendments together with motions" msgstr "Änderungsanträge zusätzlich in der Hauptantragsübersicht anzeigen" +msgid "Show entire motion text" +msgstr "Vollständigen Antragstext anzeigen" + msgid "Show logo on projector" msgstr "Logo auf dem Projektor anzeigen" @@ -866,17 +1095,35 @@ msgstr "Sachgebiete sortieren nach" msgid "Sort name of participants by" msgstr "Namen der Teilnehmenden sortieren nach" +msgid "Staff" +msgstr "Mitarbeitende" + msgid "Standard font size in PDF" msgstr "Standard-Schriftgröße im PDF" +msgid "Start" +msgstr "Start" + +msgid "Start time" +msgstr "Startzeit" + msgid "State" msgstr "Status" -msgid "Statute paragraph" -msgstr "Satzungsparagraph" +msgid "Statute" +msgstr "Satzung" -msgid "Statute paragraphs" -msgstr "Satzungsparagraphen" +msgid "Statute amendment" +msgstr "Satzungsänderungsantrag" + +msgid "Statute amendment for" +msgstr "Satzungsänderungsantrag zu" + +msgid "Statute paragraph" +msgstr "Satzungsabschnitt" + +msgid "Stop" +msgstr "Stopp" msgid "Stop submitting new motions by non-staff users" msgstr "" @@ -891,6 +1138,9 @@ msgstr "Antragsteller/in" msgid "Summary of changes" msgstr "Zusammenfassung der Änderungen" +msgid "Support" +msgstr "Unterstützen" + msgid "Supporters" msgstr "Unterstützer/innen" @@ -929,17 +1179,67 @@ msgstr "" "Die maximale Zeichenanzahl pro Zeile. Relevant, wenn die Zeilennummerierung " "eingeschaltet ist. Minimum: 40." +msgid "The server could not be reached." +msgstr "Der Server konnte nicht erreicht werden." + +msgid "The server didn't respond." +msgstr "Der Server antwortet nicht." + msgid "The title of the motion is always applied." msgstr "Der Antragstitel wird immer übernommen." +msgid "" +"The user %user% has no email, so the invitation email could not be send." +msgstr "" +"%user% besitzt keine E-Mail-Adresse; eine E-Mail konnte daher nicht gesendet" +" werden." + +msgid "" +"The users %user% have no email, so the invitation emails could not be send." +msgstr "" +"%user% besitzen keine E-Mail-Adressen; E-Mails konnte daher nicht gesendet " +"werden." + msgid "This change collides with another one." msgstr "Diese Änderung kollidiert mit einer anderen." +msgid "This element does not exist at this time." +msgstr "Dieses Element existiert nicht zu diesem Zeitpunkt." + msgid "This prefix will be set if you run the automatic agenda numbering." msgstr "" "Dieses Präfix wird gesetzt, wenn die automatische Nummerierung der " "Tagesordnung durchgeführt wird." +msgid "This will add the following submitters of all selected motions:" +msgstr "Folgende Antragsteller werden den ausgewählten Anträgen hinzugefügt:" + +msgid "This will add the following tags to all selected motions:" +msgstr "Folgende Schlagwörter werden den ausgewählten Anträgen hinzugefügt:" + +msgid "This will delete all selected motions." +msgstr "Alle ausgewählten Anträge werden gelöscht." + +msgid "This will move all selected motions as childs to:" +msgstr "" +"Alle ausgewählten Anträge werden unterhalb des folgenden " +"Tagesordnungspunktes verschoben:" + +msgid "This will remove the following submitters from all selected motions:" +msgstr "Folgende Antragsteller werden aus den ausgewählten Anträge entfernt:" + +msgid "This will remove the following tags from all selected motions:" +msgstr "Folgende Schlagwörter werden aus den ausgewählten Anträgen entfernt:" + +msgid "This will set the category of all selected motions to:" +msgstr "Folgendes Sachgebiet wird für alle ausgewählten Anträge gesetzt:" + +msgid "This will set the recommendation for all selected motions to:" +msgstr "Folgende Empfehlung wird für alle ausgewählten Anträge gesetzt:" + +msgid "This will set the state of all selected motions to:" +msgstr "Folgender Status wird für alle ausgewählten Anträge gesetzt:" + msgid "Three-quarters majority" msgstr "Dreiviertelmehrheit" @@ -955,9 +1255,21 @@ msgstr "Titel für PDF-Dokument (alle Wahlen)" msgid "Title for access data and welcome PDF" msgstr "Titel für das Zugangsdaten- und Begrüßungs-PDF" +msgid "Topic" +msgstr "Thema" + msgid "Two-thirds majority" msgstr "Zweidrittelmehrheit" +msgid "Unsupport" +msgstr "Unterstützung zurückziehen" + +msgid "Upload" +msgstr "Hochladen" + +msgid "Upload files" +msgstr "Dateien hochladen" + msgid "Use the following custom number" msgstr "Verwende die folgende benutzerdefinierte Anzahl" @@ -977,6 +1289,12 @@ msgstr "Wird für WLAN-QR-Code im Zugangsdaten-PDF verwendet." msgid "Username" msgstr "Benutzername" +msgid "Visibility" +msgstr "Sichtbarkeit" + +msgid "Visible" +msgstr "Sichtbar" + msgid "Voting" msgstr "Im Wahlvorgang" @@ -1004,6 +1322,14 @@ msgstr "Web-Interface-Kopfzeilen-Logo" msgid "Welcome to OpenSlides" msgstr "Willkommen bei OpenSlides" +msgid "" +"Will be displayed as label before selected recommendation for statute " +"amendments. Use an empty value to disable the recommendation system." +msgstr "" +"Wird als Beschriftung vor der ausgewählten Empfehlung von " +"Satzungsänderungsanträgen angezeigt. Verwenden Sie eine leere Eingabe, um " +"das Empfehlungssystem zu deaktivieren." + msgid "" "Will be displayed as label before selected recommendation. Use an empty " "value to disable the recommendation system." @@ -1014,8 +1340,14 @@ msgstr "" msgid "Withdraw" msgstr "Zurückziehen" +msgid "Workflow" +msgstr "Arbeitsablauf" + msgid "Workflow of new motions" -msgstr "Arbeitsablauf von neuen Anträgen" +msgstr "Arbeitsablauf für neue Anträge" + +msgid "Workflow of new statute amendments" +msgstr "Arbeitsablauf für neue Satzungsänderungsanträge" msgid "Yes" msgstr "Ja" @@ -1032,6 +1364,10 @@ msgstr "Ja/Nein/Enthaltung" msgid "Yes/No/Abstain per candidate" msgstr "Ja/Nein/Enthaltung pro Kandidat" +msgid "" +"You are using the history mode of OpenSlides. Changes will not be saved." +msgstr "Der Chronik-Modus ist aktiv. Änderungen werden nicht gespeichert." + msgid "" "You can replace the logo by uploading an image and set it as the \"Projector" " logo\" in \"files\"." @@ -1064,6 +1400,9 @@ msgstr "angenommen" msgid "adjourned" msgstr "vertagt" +msgid "and" +msgstr "und" + msgid "by" msgstr "von" @@ -1088,6 +1427,9 @@ msgstr "nicht befasst" msgid "not decided" msgstr "nicht entschieden" +msgid "not set" +msgstr "nicht gesetzt" + msgid "outside" msgstr "außerhalb" @@ -1106,8 +1448,17 @@ msgstr "abgelehnt" msgid "rejected (not authorized)" msgstr "verworfen (nicht zulässig)" +msgid "remove submitters" +msgstr "Antragsteller entfernen" + +msgid "selected" +msgstr "ausgewählt" + msgid "submitted" msgstr "eingereicht" +msgid "supporters" +msgstr "Unterstützer/innen" + msgid "withdrawed" msgstr "zurückgezogen" diff --git a/client/src/assets/i18n/template-en.pot b/client/src/assets/i18n/template-en.pot index a39620761..649c3c5d4 100644 --- a/client/src/assets/i18n/template-en.pot +++ b/client/src/assets/i18n/template-en.pot @@ -4,9 +4,18 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +msgid "%num% emails were send sucessfully." +msgstr "" + +msgid "A name is required" +msgstr "" + msgid "A password is required" msgstr "" +msgid "A server error occured. Please contact your system administrator." +msgstr "" + msgid "About me" msgstr "" @@ -22,12 +31,30 @@ msgstr "" msgid "Activate amendments" msgstr "" +msgid "Activate statute amendments" +msgstr "" + +msgid "Add groups" +msgstr "" + +msgid "Add me" +msgstr "" + +msgid "Add submitters" +msgstr "" + +msgid "Add tags" +msgstr "" + msgid "Adjourn" msgstr "" msgid "Adjournment" msgstr "" +msgid "Admin" +msgstr "" + msgid "Agenda" msgstr "" @@ -37,6 +64,9 @@ msgstr "" msgid "All casted ballots" msgstr "" +msgid "All selected files will be deleted!" +msgstr "" + msgid "All valid ballots" msgstr "" @@ -61,6 +91,9 @@ msgstr "" msgid "Amendment" msgstr "" +msgid "Amendment text" +msgstr "" + msgid "Amendment to" msgstr "" @@ -70,12 +103,21 @@ msgstr "" msgid "An email with a password reset link was send!" msgstr "" +msgid "An unknown error occurred." +msgstr "" + msgid "Arabic" msgstr "" +msgid "Attachments" +msgstr "" + msgid "Automatic assign of method" msgstr "" +msgid "Back" +msgstr "" + msgid "Back to login" msgstr "" @@ -88,6 +130,18 @@ msgstr "" msgid "Begin of event" msgstr "" +msgid "Begin speech" +msgstr "" + +msgid "Call list" +msgstr "" + +msgid "Called" +msgstr "" + +msgid "Called with" +msgstr "" + msgid "Can create motions" msgstr "" @@ -190,6 +244,9 @@ msgstr "" msgid "Center" msgstr "" +msgid "Change paragraph" +msgstr "" + msgid "Change password" msgstr "" @@ -205,13 +262,25 @@ msgstr "" msgid "Choose 0 to disable the supporting system." msgstr "" +msgid "Clear list" +msgstr "" + +msgid "Close" +msgstr "" + +msgid "Collapse all" +msgstr "" + msgid "Color for blanked projector" msgstr "" msgid "Comment" msgstr "" -msgid "Comments" +msgid "Comment fields" +msgstr "" + +msgid "Committees" msgstr "" msgid "Complex Workflow" @@ -223,15 +292,12 @@ msgstr "" msgid "Couple countdown with the list of speakers" msgstr "" +msgid "Create" +msgstr "" + msgid "Create new category" msgstr "" -msgid "Create new comment field" -msgstr "" - -msgid "Create new statute paragraph" -msgstr "" - msgid "Current browser language" msgstr "" @@ -256,6 +322,9 @@ msgid "" "This email was generated automatically." msgstr "" +msgid "Default" +msgstr "" + msgid "Default line numbering" msgstr "" @@ -276,10 +345,13 @@ msgstr "" msgid "Default visibility for new agenda items (except topics)" msgstr "" +msgid "Delegates" +msgstr "" + msgid "Delete" msgstr "" -msgid "Delete all files" +msgid "Delete whole history" msgstr "" msgid "Designates whether this user is in the room." @@ -311,6 +383,12 @@ msgstr "" msgid "Do not decide" msgstr "" +msgid "Do you want to delete this file?" +msgstr "" + +msgid "Drop files into this area OR select files" +msgstr "" + msgid "Edit" msgstr "" @@ -356,6 +434,9 @@ msgstr "" msgid "Enable participant presence view" msgstr "" +msgid "End speech" +msgstr "" + msgid "English" msgstr "" @@ -365,6 +446,9 @@ msgstr "" msgid "Enter your email to send the password reset link" msgstr "" +msgid "Error" +msgstr "" + msgid "Event" msgstr "" @@ -380,6 +464,15 @@ msgstr "" msgid "Event organizer" msgstr "" +msgid "Exit" +msgstr "" + +msgid "Exit multiselect" +msgstr "" + +msgid "Expand all" +msgstr "" + msgid "Export" msgstr "" @@ -392,6 +485,12 @@ msgstr "" msgid "FILTER" msgstr "" +msgid "File information" +msgstr "" + +msgid "File name" +msgstr "" + msgid "Files" msgstr "" @@ -416,6 +515,9 @@ msgstr "" msgid "General" msgstr "" +msgid "Generate new passwords" +msgstr "" + msgid "German" msgstr "" @@ -434,6 +536,12 @@ msgstr "" msgid "Help text for access data and welcome PDF" msgstr "" +msgid "Hidden" +msgstr "" + +msgid "Hidden item" +msgstr "" + msgid "Hide internal items when projecting subitems" msgstr "" @@ -446,6 +554,9 @@ msgstr "" msgid "Hide recommendation on projector" msgstr "" +msgid "History" +msgstr "" + msgid "Home" msgstr "" @@ -470,6 +581,9 @@ msgstr "" msgid "Installed plugins" msgstr "" +msgid "Internal item" +msgstr "" + msgid "Invalid input." msgstr "" @@ -479,9 +593,24 @@ msgstr "" msgid "Is active" msgstr "" +msgid "Is committee" +msgstr "" + +msgid "Is inactive" +msgstr "" + +msgid "Is no committee" +msgstr "" + +msgid "Is not present" +msgstr "" + msgid "Is present" msgstr "" +msgid "Last speakers" +msgstr "" + msgid "Left" msgstr "" @@ -515,19 +644,28 @@ msgstr "" msgid "Logout" msgstr "" +msgid "Mark speaker" +msgstr "" + msgid "Meta information" msgstr "" msgid "Motion" msgstr "" +msgid "Motion block" +msgstr "" + msgid "Motion preamble" msgstr "" -msgid "Motion text" +msgid "Motions" msgstr "" -msgid "Motions" +msgid "Move to agenda item" +msgstr "" + +msgid "Multiselect" msgstr "" msgid "Name" @@ -536,9 +674,24 @@ msgstr "" msgid "Name of recommender" msgstr "" +msgid "Name of recommender for statute amendments" +msgstr "" + msgid "Needs review" msgstr "" +msgid "New" +msgstr "" + +msgid "New amendment" +msgstr "" + +msgid "New comment field" +msgstr "" + +msgid "New file name" +msgstr "" + msgid "New group name" msgstr "" @@ -548,12 +701,24 @@ msgstr "" msgid "New password" msgstr "" +msgid "New statute paragraph" +msgstr "" + msgid "New tag name" msgstr "" +msgid "Next" +msgstr "" + msgid "No change recommendations yet" msgstr "" +msgid "No changes at the text." +msgstr "" + +msgid "No choices available" +msgstr "" + msgid "No comment" msgstr "" @@ -563,12 +728,18 @@ msgstr "" msgid "No decision" msgstr "" +msgid "No emails were send." +msgstr "" + msgid "No encryption" msgstr "" msgid "No groups selected" msgstr "" +msgid "No information available" +msgstr "" + msgid "No personal note" msgstr "" @@ -613,9 +784,18 @@ msgstr "" msgid "Offline mode: You can use OpenSlides but changes are not saved." msgstr "" +msgid "Ok" +msgstr "" + +msgid "One email was send sucessfully." +msgstr "" + msgid "Only for internal notes." msgstr "" +msgid "Open" +msgstr "" + msgid "Origin" msgstr "" @@ -646,6 +826,9 @@ msgstr "" msgid "Paragraph-based, Diff-enabled" msgstr "" +msgid "Parallel upload" +msgstr "" + msgid "Participant number" msgstr "" @@ -715,12 +898,18 @@ msgstr "" msgid "Public" msgstr "" +msgid "Public item" +msgstr "" + msgid "Put all candidates on the list of speakers" msgstr "" msgid "Reason" msgstr "" +msgid "Recommendation" +msgstr "" + msgid "Refer to committee" msgstr "" @@ -742,11 +931,23 @@ msgstr "" msgid "Rejection (not authorized)" msgstr "" +msgid "Remove" +msgstr "" + msgid "" "Remove all supporters of a motion if a submitter edits his motion in early " "state" msgstr "" +msgid "Remove groups" +msgstr "" + +msgid "Remove me" +msgstr "" + +msgid "Remove tags" +msgstr "" + msgid "Required" msgstr "" @@ -777,18 +978,42 @@ msgstr "" msgid "Searching for candidates" msgstr "" +msgid "Select or search new speaker ..." +msgstr "" + +msgid "Select paragraph" +msgstr "" + msgid "Selected values" msgstr "" +msgid "Send invitation email" +msgstr "" + msgid "Separator used for all csv exports and examples" msgstr "" msgid "Serially numbered" msgstr "" +msgid "Set category" +msgstr "" + +msgid "Set invisible" +msgstr "" + msgid "Set it manually" msgstr "" +msgid "Set recommendation" +msgstr "" + +msgid "Set status" +msgstr "" + +msgid "Set visible" +msgstr "" + msgid "Settings" msgstr "" @@ -798,6 +1023,9 @@ msgstr "" msgid "Show amendments together with motions" msgstr "" +msgid "Show entire motion text" +msgstr "" + msgid "Show logo on projector" msgstr "" @@ -828,16 +1056,34 @@ msgstr "" msgid "Sort name of participants by" msgstr "" +msgid "Staff" +msgstr "" + msgid "Standard font size in PDF" msgstr "" +msgid "Start" +msgstr "" + +msgid "Start time" +msgstr "" + msgid "State" msgstr "" +msgid "Statute" +msgstr "" + +msgid "Statute amendment" +msgstr "" + +msgid "Statute amendment for" +msgstr "" + msgid "Statute paragraph" msgstr "" -msgid "Statute paragraphs" +msgid "Stop" msgstr "" msgid "Stop submitting new motions by non-staff users" @@ -852,6 +1098,9 @@ msgstr "" msgid "Summary of changes" msgstr "" +msgid "Support" +msgstr "" + msgid "Supporters" msgstr "" @@ -887,15 +1136,57 @@ msgid "" "enabled. Min: 40" msgstr "" +msgid "The server could not be reached." +msgstr "" + +msgid "The server didn't respond." +msgstr "" + msgid "The title of the motion is always applied." msgstr "" +msgid "The user %user% has no email, so the invitation email could not be send." +msgstr "" + +msgid "The users %user% have no email, so the invitation emails could not be send." +msgstr "" + msgid "This change collides with another one." msgstr "" +msgid "This element does not exist at this time." +msgstr "" + msgid "This prefix will be set if you run the automatic agenda numbering." msgstr "" +msgid "This will add the following submitters of all selected motions:" +msgstr "" + +msgid "This will add the following tags to all selected motions:" +msgstr "" + +msgid "This will delete all selected motions." +msgstr "" + +msgid "This will move all selected motions as childs to:" +msgstr "" + +msgid "This will remove the following submitters from all selected motions:" +msgstr "" + +msgid "This will remove the following tags from all selected motions:" +msgstr "" + +msgid "This will set the category of all selected motions to:" +msgstr "" + +msgid "This will set the recommendation for all selected motions to:" +msgstr "" + +msgid "This will set the state of all selected motions to:" +msgstr "" + msgid "Three-quarters majority" msgstr "" @@ -911,9 +1202,21 @@ msgstr "" msgid "Title for access data and welcome PDF" msgstr "" +msgid "Topic" +msgstr "" + msgid "Two-thirds majority" msgstr "" +msgid "Unsupport" +msgstr "" + +msgid "Upload" +msgstr "" + +msgid "Upload files" +msgstr "" + msgid "Use the following custom number" msgstr "" @@ -931,6 +1234,12 @@ msgstr "" msgid "Username" msgstr "" +msgid "Visibility" +msgstr "" + +msgid "Visible" +msgstr "" + msgid "Voting" msgstr "" @@ -958,6 +1267,11 @@ msgstr "" msgid "Welcome to OpenSlides" msgstr "" +msgid "" +"Will be displayed as label before selected recommendation for statute " +"amendments. Use an empty value to disable the recommendation system." +msgstr "" + msgid "" "Will be displayed as label before selected recommendation. Use an empty " "value to disable the recommendation system." @@ -966,9 +1280,15 @@ msgstr "" msgid "Withdraw" msgstr "" +msgid "Workflow" +msgstr "" + msgid "Workflow of new motions" msgstr "" +msgid "Workflow of new statute amendments" +msgstr "" + msgid "Yes" msgstr "" @@ -984,6 +1304,9 @@ msgstr "" msgid "Yes/No/Abstain per candidate" msgstr "" +msgid "You are using the history mode of OpenSlides. Changes will not be saved." +msgstr "" + msgid "" "You can replace the logo by uploading an image and set it as the " "\"Projector logo\" in \"files\"." @@ -1013,6 +1336,9 @@ msgstr "" msgid "adjourned" msgstr "" +msgid "and" +msgstr "" + msgid "by" msgstr "" @@ -1037,6 +1363,9 @@ msgstr "" msgid "not decided" msgstr "" +msgid "not set" +msgstr "" + msgid "outside" msgstr "" @@ -1055,8 +1384,17 @@ msgstr "" msgid "rejected (not authorized)" msgstr "" +msgid "remove submitters" +msgstr "" + +msgid "selected" +msgstr "" + msgid "submitted" msgstr "" -msgid "withdrawed" +msgid "supporters" msgstr "" + +msgid "withdrawed" +msgstr "" \ No newline at end of file diff --git a/openslides/motions/config_variables.py b/openslides/motions/config_variables.py index 4a539fd7c..289e4add6 100644 --- a/openslides/motions/config_variables.py +++ b/openslides/motions/config_variables.py @@ -138,9 +138,9 @@ def get_config_variables(): yield ConfigVariable( name='motions_statute_recommendations_by', default_value='', - label='Name of statute recommender', - help_text='Will be displayed as label before selected statute recommendation. ' + - 'Use an empty value to disable the statute recommendation system.', + label='Name of recommender for statute amendments', + help_text='Will be displayed as label before selected recommendation in statute amendments. ' + + 'Use an empty value to disable the recommendation system for statute amendments.', weight=333, group='Motions', subgroup='General') @@ -159,18 +159,17 @@ def get_config_variables(): group='Motions', subgroup='General') - # Statutes + # Amendments yield ConfigVariable( name='motions_statutes_enabled', default_value=False, input_type='boolean', - label='Activate statutes', + label='Activate statute amendments', weight=335, group='Motions', - subgroup='General') + subgroup='Amendments') - # Amendments yield ConfigVariable( name='motions_amendments_enabled', default_value=False,