diff --git a/client/src/app/gateways/repositories/point-of-order-category/point-of-order-category-repository.service.ts b/client/src/app/gateways/repositories/point-of-order-category/point-of-order-category-repository.service.ts index d1d23425dc..bb15957123 100644 --- a/client/src/app/gateways/repositories/point-of-order-category/point-of-order-category-repository.service.ts +++ b/client/src/app/gateways/repositories/point-of-order-category/point-of-order-category-repository.service.ts @@ -1,5 +1,4 @@ import { Injectable } from '@angular/core'; -import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'; import { Id } from 'src/app/domain/definitions/key-types'; import { Identifiable } from 'src/app/domain/interfaces'; import { PointOfOrderCategory } from 'src/app/domain/models/point-of-order-category/point-of-order-category'; @@ -24,7 +23,7 @@ export class PointOfOrderCategoryRepositoryService } public getVerboseName = (plural?: boolean): string => - plural ? _(`Point of order categories`) : _(`Point of order category`); + plural ? `Point of order categories` : `Point of order category`; public getTitle = (viewModel: PointOfOrderCategory): string => viewModel.text; public create(pointOfOrderCategory: any, meeting_id: Id = this.activeMeetingId): Action { diff --git a/client/src/app/site/pages/meetings/modules/list-of-speakers-content/modules/point-of-order-dialog/components/point-of-order-dialog/point-of-order-dialog.component.html b/client/src/app/site/pages/meetings/modules/list-of-speakers-content/modules/point-of-order-dialog/components/point-of-order-dialog/point-of-order-dialog.component.html index cfc2690f9d..3bfde9d722 100644 --- a/client/src/app/site/pages/meetings/modules/list-of-speakers-content/modules/point-of-order-dialog/components/point-of-order-dialog/point-of-order-dialog.component.html +++ b/client/src/app/site/pages/meetings/modules/list-of-speakers-content/modules/point-of-order-dialog/components/point-of-order-dialog/point-of-order-dialog.component.html @@ -5,7 +5,7 @@

- {{ 'Point of order category' | translate }} + {{ 'Possible points of order' | translate }} {{ category.getTitle() | translate }} diff --git a/client/src/app/site/pages/meetings/pages/motions/pages/motion-call-list/components/motion-call-list/motion-call-list.component.html b/client/src/app/site/pages/meetings/pages/motions/pages/motion-call-list/components/motion-call-list/motion-call-list.component.html index 4b7e7fd50a..09e6517268 100644 --- a/client/src/app/site/pages/meetings/pages/motions/pages/motion-call-list/components/motion-call-list/motion-call-list.component.html +++ b/client/src/app/site/pages/meetings/pages/motions/pages/motion-call-list/components/motion-call-list/motion-call-list.component.html @@ -101,7 +101,7 @@

{{ 'Call list' | translate }}

diff --git a/client/src/app/site/pages/meetings/pages/motions/pages/motion-detail/components/motion-meta-data/motion-meta-data.component.html b/client/src/app/site/pages/meetings/pages/motions/pages/motion-detail/components/motion-meta-data/motion-meta-data.component.html index 7e839572da..0b52633766 100644 --- a/client/src/app/site/pages/meetings/pages/motions/pages/motion-detail/components/motion-meta-data/motion-meta-data.component.html +++ b/client/src/app/site/pages/meetings/pages/motions/pages/motion-detail/components/motion-meta-data/motion-meta-data.component.html @@ -227,7 +227,7 @@

{{ 'Creation date' | translate }}

-

{{ 'Submit date' | translate }}

+

{{ 'Submission date' | translate }}

{{ motion.workflow_timestamp | localizedDate }}
diff --git a/client/src/app/site/pages/meetings/pages/motions/pages/workflows/components/workflow-detail/workflow-detail.component.ts b/client/src/app/site/pages/meetings/pages/motions/pages/workflows/components/workflow-detail/workflow-detail.component.ts index a60c13967b..83fba103f1 100644 --- a/client/src/app/site/pages/meetings/pages/motions/pages/workflows/components/workflow-detail/workflow-detail.component.ts +++ b/client/src/app/site/pages/meetings/pages/motions/pages/workflows/components/workflow-detail/workflow-detail.component.ts @@ -190,7 +190,7 @@ Prerequisites: type: `check` }, { - name: _(`Set number`), + name: _(`Set identifier`), help_text: _( `Activates the automatic setting of a number for motions that reach this state. The scheme for numbering can be customized under > [Settings] > [Motions].` ), diff --git a/client/src/app/site/pages/meetings/services/meeting-settings-definition.service/meeting-settings-definitions.ts b/client/src/app/site/pages/meetings/services/meeting-settings-definition.service/meeting-settings-definitions.ts index cac745e3a7..eed8624686 100644 --- a/client/src/app/site/pages/meetings/services/meeting-settings-definition.service/meeting-settings-definitions.ts +++ b/client/src/app/site/pages/meetings/services/meeting-settings-definition.service/meeting-settings-definitions.ts @@ -391,12 +391,12 @@ export const meetingSettings: SettingsGroup[] = fillInSettingsDefaults([ }, { key: `list_of_speakers_enable_point_of_order_categories`, - label: _(`Enable point of order categories`), + label: _(`Enable specifications and ranking for possible motions`), type: `boolean` }, { key: `point_of_order_category_ids`, - label: _(`Point of order categories`), + label: `Point of order specifications`, type: `ranking`, useRelation: true, keyTransformationConfig: [ @@ -536,7 +536,7 @@ export const meetingSettings: SettingsGroup[] = fillInSettingsDefaults([ label: _(`Sort motions by`), type: `choice`, choices: { - number: _(`Number`), + number: _(`Identifier`), weight: _(`Call list`) } } @@ -547,7 +547,7 @@ export const meetingSettings: SettingsGroup[] = fillInSettingsDefaults([ settings: [ { key: `motions_number_type`, - label: _(`Motion number`), + label: _(`Motion identifier`), type: `choice`, choices: { per_category: _(`Numbered per category`), @@ -557,9 +557,9 @@ export const meetingSettings: SettingsGroup[] = fillInSettingsDefaults([ }, { key: `motions_number_min_digits`, - label: _(`Minimum number of digits for motion number`), + label: _(`Minimum number of digits for motion identifier`), type: `integer`, - helpText: _(`Uses leading zeros to sort motions correctly by number.`), + helpText: _(`Uses leading zeros to sort motions correctly by identifier.`), validators: [Validators.min(1)] }, { @@ -590,7 +590,7 @@ export const meetingSettings: SettingsGroup[] = fillInSettingsDefaults([ }, { key: `motions_amendments_prefix`, - label: _(`Prefix for the motion number for amendments`) + label: _(`Prefix for the motion identifier of amendments`) }, { key: `motions_amendments_text_mode`, diff --git a/client/src/assets/i18n/de.po b/client/src/assets/i18n/de.po index 0a2ccbe576..4c6868149b 100644 --- a/client/src/assets/i18n/de.po +++ b/client/src/assets/i18n/de.po @@ -124,6 +124,41 @@ msgstr "Stimmrechtsübertragung aktivieren" msgid "Activate vote weight" msgstr "Stimmgewichtung aktivieren" +msgid "" +"Activates the automatic logging of the date and time when this state was " +"first reached. A set time stamp cannot be removed." +msgstr "" +"Aktiviert das automatische Erfassen des Datums und der Uhrzeit, zu dem " +"dieser Status erstmalig erreicht wurde. Ein gesetzter Zeitstempel kann nicht" +" entfernt werden. " + +msgid "" +"Activates the automatic setting of a number for motions that reach this " +"state. The scheme for numbering can be customized under > [Settings] > " +"[Motions]." +msgstr "" +"Aktiviert für Anträge, die diesen Status erreichen, das automatische Setzen " +"eines Bezeichners. Das Schema für die Nummerierung kann unter > " +"[Einstellungen] > [Anträge] angepasst werden." + +msgid "" +"Activates the extension field for the selected state, which can be filled with free text as desired.\n" +"\n" +"Example: When activated, the state \"in progress\" can be expanded to e.g. \"in progress by the motion committee\"." +msgstr "" +"Aktiviert das Ergänzungsfeld für den ausgewählten Status, das nach Belieben mit Freitext versehen werden kann.\n" +"\n" +"Beispiel: Bei Aktivierung kann der Status \"in Bearbeitung\" beliebig ergänzt werden zu bspw. \"in Bearbeitung von der Antragskommission\"." + +msgid "" +"Activates the extension field of the recommendation in this state, which can" +" be filled with free text or extended with references to other motions or " +"committees as desired." +msgstr "" +"Aktiviert im ausgewählten Status das Ergänzungsfeld der Empfehlung, das nach" +" Belieben mit Freitext versehen oder mit Verweisen auf andere Anträge oder " +"Gremien erweitert werden kann." + msgid "Active" msgstr "Aktiv" @@ -154,6 +189,9 @@ msgstr "Mitteilung hinzufügen" msgid "Add new custom translation" msgstr "Neue benutzerdefinierte Übersetzung hinzufügen" +msgid "Add new entry" +msgstr "Neuen Eintrag hinzufügen" + msgid "Add option" msgstr "Option hinzufügen" @@ -570,9 +608,6 @@ msgstr "Nachfragen, voreingestellt ja" msgid "Assign" msgstr "Zuweisen" -msgid "Assigned accounts" -msgstr "Zugewiesene Accounts" - msgid "At least" msgstr "Mindestens" @@ -594,6 +629,9 @@ msgstr "" msgid "Attention: This action cannot be undone!" msgstr "Achtung: Diese Aktion kann nicht rückgängig gemacht werden!" +msgid "Attribute mapping (JSON)" +msgstr "Attribut-Zuordnung (JSON)" + msgid "Automatically open the microphone for new conference speakers" msgstr "Mikrofon automatisch öffnen beim Eintreten in die Livekonferenz" @@ -696,18 +734,131 @@ msgstr "Aufgerufen wird" msgid "Called with" msgstr "Mit aufgerufen werden" +msgid "Can activate and deactivate logos and fonts under > [Files]." +msgstr "" +"Darf Logos und Schriften unter > [Dateien] aktivieren und deaktivieren." + +msgid "" +"Can add or delete speakers to or from the list of speakers, mark, sort, " +"start/stop and open/close the list of speakers." +msgstr "" +"Darf Redner*innen auf die Redeliste setzen, von Redeliste löschen, " +"Redebeiträge markieren, sortieren, starten/stoppen und die Redeliste " +"öffnen/schließen." + +msgid "" +"Can add their name to the list of candidates in the [Search for candidates] " +"phase." +msgstr "" +"Darf sich in der Phase [Auf Kandidatensuche] in die Liste der Kandidierenden" +" eintragen." + +msgid "Can change the presence status of other participants." +msgstr "Darf den Anwesenheitsstatus anderer Teilnehmenden ändern." + msgid "Can create amendments" msgstr "Darf Änderungsanträge stellen" +msgid "" +"Can create amendments and modify them later, depending on the workflow, but " +"cannot delete them." +msgstr "" +"Darf Änderungsanträge erstellen und je nach Arbeitsablauf nachträglich " +"ändern, aber nicht löschen." + msgid "Can create motions" msgstr "Darf Anträge erstellen" +msgid "" +"Can create motions and modify them later, depending on the workflow, but " +"cannot delete them." +msgstr "" +"Darf Anträge erstellen und je nach Arbeitsablauf nachträglich ändern, aber " +"nicht löschen." + +msgid "Can create, change, delete tags for the agenda and for motions." +msgstr "" +"Darf Schlagwörter für die Tagesordnung und für Anträge erstellen, ändern und" +" löschen." + +msgid "Can create, change, start/stop and delete polls." +msgstr "Darf Abstimmungen erstellen, ändern, starten/stoppen und löschen." + +msgid "Can create, configure, control and delete projectors." +msgstr "Darf Projektoren erstellen, konfigurieren, steuern und löschen." + +msgid "" +"Can create, modify and delete elections and candidate lists, as well as " +"start/stop and reset ballots. " +msgstr "" +"Darf Wahlen und Kandidat*innen-Listen erstellen, ändern und löschen sowie " +"Wahlgänge starten/stoppen und zurücksetzen. " + +msgid "" +"Can create, modify and delete motions and votings, amendments and change " +"recommendations, and edit the metadata of a motion. Including the management" +" of categories, motion blocks, tags, workflows and comment fields." +msgstr "" +"Darf Anträge und Antragsabstimmungen, Änderungsanträge und " +"Änderungsempfehlungen erstellen, ändern und löschen sowie die Metadaten " +"eines Antrages bearbeiten. Inklusive der Verwaltung der Sachgebiete, " +"Antragsblöcke, Schlagwörter, Arbeitsabläufe und Kommentarfelder." + +msgid "" +"Can create, modify and delete topics, add motions and elections to the " +"agenda, sort, number and tag agenda items." +msgstr "" +"Darf Themen erstellen, ändern und löschen, Anträge und Wahlen zur " +"Tagesordnung hinzufügen, Tagesordnungspunkte sortieren, nummerieren und " +"verschlagworten." + +msgid "" +"Can create, modify, delete chat groups and define permissions.\n" +"\n" +"Note: The chat menu item becomes visible to all participants, except admins, as soon as a chat has been created." +msgstr "" +"Darf Chatgruppen erstellen, ändern, löschen und Berechtigungen definieren.\n" +"\n" +"Hinweis: Der Chat-Menüpunkt wird für alle Teilnehmenden, außer den Admins, erst dann sichtbar, wenn ein Chat erstellt wurde." + +msgid "" +"Can create, modify, delete participant datasets and administrate group " +"permissions." +msgstr "" +"Darf Teilnehmenden-Datensätze erstellen, ändern, löschen und die " +"Gruppenberechtigungen verwalten." + +msgid "Can create, modify, start/stop and delete votings." +msgstr "Darf Abstimmungen erstellen, ändern, starten/stoppen und löschen." + +msgid "" +"Can edit and assign the following motion metadata: Submitter, state, " +"recommendation, category, motion blocks and tags." +msgstr "" +"Darf folgende Antragsmetadaten bearbeiten und zuweisen: Antragsteller*in, " +"Status, Empfehlung, Sachgebiet, Antragsblock und Schlagwörter." + msgid "Can forward motions" msgstr "Darf Anträge weiterleiten" msgid "Can forward motions to committee" msgstr "Darf Anträge weiterleiten an Gremium" +msgid "" +"Can forward motions to other meetings within the OpenSlides instance. \n" +"\n" +"Further requirements:\n" +"1. forwarding hierarchy must be set at the organizational level in the committee. \n" +"2. target meeting must be created.\n" +"3. forwarding must be activated in the workflow in the state." +msgstr "" +"Darf Anträge an andere Veranstaltungen innerhalb der OpenSlides-Instanz weiterleiten. \n" +"\n" +"Weitere Voraussetzungen:\n" +"1. Weiterleitungshierarchie muss auf Organisationsebene im Gremium eingestellt sein. \n" +"2. Zielveranstaltung muss erstellt sein.\n" +"3. Weiterleitung muss im Arbeitsablauf im Status aktiviert sein." + msgid "Can manage agenda" msgstr "Darf die Tagesordung verwalten" @@ -736,7 +887,7 @@ msgid "Can manage participants" msgstr "Darf Teilnehmende verwalten" msgid "Can manage polls" -msgstr "Darf Umfragen verwalten" +msgstr "Darf Abstimmungen verwalten" msgid "Can manage presence of others" msgstr "Darf die Anwesenheit anderer verwalten" @@ -759,6 +910,15 @@ msgstr "Darf andere Teilnehmende für Wahlen vorschlagen" msgid "Can nominate oneself" msgstr "Darf selbst für Wahlen kandidieren" +msgid "" +"Can nominate other participants as candidates. \n" +"\n" +"Requires group permission: [Can see participants]" +msgstr "" +"Darf andere Teilnehmende als Kandidat*in vorschlagen. \n" +"\n" +"Benötigt Gruppenrecht: [Darf Teilnehmende sehen]" + msgid "Can put oneself on the list of speakers" msgstr "Darf sich selbst auf die Redeliste setzen" @@ -771,6 +931,12 @@ msgstr "Darf Anträge erhalten von Gremium" msgid "Can see agenda" msgstr "Darf die Tagesordnung sehen" +msgid "Can see all internal topics, schedules and comments." +msgstr "Darf alle internen Themen, Zeitpläne und Kommentare sehen." + +msgid "Can see all lists of speakers" +msgstr "Darf alle Redelisten sehen." + msgid "Can see elections" msgstr "Darf Wahlen sehen" @@ -789,9 +955,72 @@ msgstr "Darf Anträge sehen" msgid "Can see motions in internal state" msgstr "Darf Anträge im internen Status sehen" +msgid "" +"Can see motions in the internal state that are limited in the workflow under Restrictions with the same description.\n" +"\n" +"Tip: Cross-check desired visibility of motions with test delegate account. " +msgstr "" +"Darf Anträge im internen Status sehen, die im Arbeitsablauf unter Zugriffsbeschränkung mit gleichlautender Beschreibung limitiert sind.\n" +"\n" +"Tipp: Gewünschte Sichtbarkeit von Anträgen mit Testdelegierten-Account gegenprüfen. " + msgid "Can see participants" msgstr "Darf Teilnehmende sehen" +msgid "Can see the Agenda menu item and all public topics in the agenda." +msgstr "" +"Darf den Menüpunkt Tagesordnung sowie alle öffentlichen Themen in der " +"Tagesordnung sehen." + +msgid "" +"Can see the Autopilot menu item with all content for which appropriate " +"permissions are set." +msgstr "" +"Darf den Menüpunkt Autopilot mit allen Inhalten, für die entsprechende " +"Berechtigungen eingestellt sind, sehen." + +msgid "" +"Can see the Files menu item and all shared folders and files.\n" +"\n" +"Note: Sharing of folders and files may be restricted by group assignment." +msgstr "" +"Darf den Menüpunkt Dateien und alle freigegebenen Ordner und Dateien sehen.\n" +"\n" +"Hinweis: Freigabe von Ordnern und Dateien kann durch Gruppenzuweisung eingeschränkt sein." + +msgid "" +"Can see the History menu item with the history of processing timestamps for motions, elections and participants. \n" +"\n" +"Note: For privacy reasons, it is recommended to limit the rights to view the History significantly." +msgstr "" +"Darf den Menüpunkt Chronik mit Bearbeitungszeitstempeln für Anträge, Wahlen und Teilnehmende sehen.\n" +"\n" +"Hinweis: Aus Datenschutzgründen empfiehlt es sich die Rechte zur Chronik deutlich einzuschränken." + +msgid "Can see the Home menu item." +msgstr "Darf den Menüpunkt Startseite sehen." + +msgid "" +"Can see the Motions menu item and all motions unless they are limited by " +"access restrictions in the workflow." +msgstr "" +"Darf den Menüpunkt Anträge und alle Anträge sehen, sofern diese nicht durch " +"Zugriffsbeschränkungen im Arbeitsablauf limitiert sind." + +msgid "" +"Can see the Projector menu item and all projectors (in the Autopilot as well" +" as in the Projector menu item)" +msgstr "" +"Darf den Menüpunkt sowie alle Projektoren sehen (im Autopilot und Projektor-" +"Menü)." + +msgid "" +"Can see the Settings menu item and edit all settings as well as the start " +"page of the meeting." +msgstr "" +"Darf den Menüpunkt Einstellungen sehen und alle Einstellungen sowie die " +"Startseite der Veranstaltung bearbeiten." + msgid "Can see the autopilot" msgstr "Darf den Autopilot sehen" @@ -804,12 +1033,52 @@ msgstr "Darf die Dateiliste sehen" msgid "Can see the live stream" msgstr "Darf den Livestream sehen" +msgid "" +"Can see the livestream if there is a livestream URL entered in > [Settings] " +"> [Livestream]." +msgstr "" +"Darf den Livestream sehen, sofern unter > [Einstellungen] > [Livestream] " +"eine Livestream-URL eingetragen ist." + +msgid "" +"Can see the menu item Elections, including the list of candidates and results. \n" +"\n" +"Note: The right to vote is defined directly in the ballot." +msgstr "" +"Darf Menüpunkt Wahlen sehen, inklusive der Liste der Kandidat*innen und Ergebnisse.\n" +"\n" +"Hinweis: Die Stimmberechtigung wird direkt im Wahlgang definiert." + +msgid "" +"Can see the menu item Participants and therefore the following data from all participants: \n" +"Personal data: Name, pronoun, gender. \n" +"Meeting specific information: Structure level, Group, Participant number, About me, Presence status." +msgstr "" +"Darf Menüpunkt Teilnehmende und damit von allen Teilnehmenden folgende Daten sehen: \n" +"Persönliche Daten: Name, Pronomen, Geschlecht\n" +"Veranstaltungsspezifische Informationen: Gliederungsebene, Gruppe, Teilnehmendennummer, Über mich, Anwesenheitsstatus." + msgid "Can see the projector" msgstr "Darf den Projektor sehen" msgid "Can support motions" msgstr "Darf Anträge unterstützen" +msgid "" +"Can support motions. The support function must be enabled in > [Settings] > " +"[Motions] as well as for the corresponding state in > [Workflow]." +msgstr "" +"Darf Anträge unterstützen. Die Funktion für die Unterstützung muss sowohl " +"unter > [Einstellungen] > [Anträge] sowie für den entsprechenden Status im >" +" [Arbeitsablauf] aktiviert sein." + +msgid "" +"Can upload, modify and delete files, administrate folders and change access " +"restrictions." +msgstr "" +"Darf Dateien hochladen, ändern und löschen, Ordner verwalten und " +"Zugriffsbeschränkungen ändern." + msgid "Cancel" msgstr "Abbrechen" @@ -1246,6 +1515,18 @@ msgstr "Voreingestellte Dauer der Stimmabgabe" msgid "Default voting type" msgstr "Voreingestellte Art der Stimmabgabe" +msgid "" +"Defines for the selected state which groups have access:\n" +"- If no option is selected, the motions in the selected state are visible to all; The prerequisite for this is group permission: [Can see motions].\n" +"- Selecting one or more options restricts access to those groups for which the selected authorization option is defined under > [Participants] > [Groups]." +msgstr "" +"Definiert für den ausgewählten Status, welche Gruppen Zugriff haben:\n" +"- Wenn keine Option ausgewählt ist, sind die Anträge im ausgewählten Status für alle sichtbar; Voraussetzung hierfür ist Gruppenrecht: [Darf Anträge sehen].\n" +"- Die Auswahl einer oder mehrerer Optionen schränkt den Zugriff auf diejenigen Gruppen ein, für die unter > [Teilnehmende] > [Gruppen] die ausgewählte Berechtigungsoption definiert ist." + +msgid "Defines the colour for the state button." +msgstr "Definiert die Farbe für die Status-Schaltfläche." + msgid "" "Defines the maximum deflection. Entering zero will use the amount of present" " participants instead." @@ -1262,6 +1543,29 @@ msgstr "" msgid "Defines the time in which applause amounts are add up." msgstr "Definiert die Zeit in der Applauswerte aufsummiert werden." +msgid "" +"Defines the wording of the recommendation that belongs to this state.\n" +"Example: State = Accepted / Recommendation = Acceptance. \n" +"\n" +"To activate the recommendation system, a recommender (for example, a motion committee) must be defined under > [Settings] > [Motions] > [Name of recommender].\n" +"Example recommender: motion committee\n" +"\n" +"Additional information:\n" +"In combination with motion blocks, the recommendation of multiple motions can be followed simultaneously." +msgstr "" +"Definiert den Wortlaut der Beschlussempfehlung, die zum ausgewählten Status gehört. Beispiel: Status = Angenommen / Empfehlung = Annahme.\n" +"\n" +"Zur Aktivierung des Empfehlungssystems muss ein Empfehlungsgeber unter > [Einstellungen] > [Anträge] > [Name des Empfehlungsgebers] festgelegt sein.\n" +"Beispiel: \"Empfehlung der Antragskommission\"\n" +"\n" +"Weitere Information:\n" +"In Kombination mit Antragsblöcken kann der Empfehlung von mehreren Anträgen gleichzeitig gefolgt werden." + +msgid "Defines which states can be selected next in the workflow." +msgstr "" +"Definiert welche Status im Arbeitsablauf als Nächstes ausgewählt werden " +"können." + msgid "Delegates" msgstr "Delegierte" @@ -1477,6 +1781,9 @@ msgstr "Betreff" msgid "Empty text field" msgstr "Leeres Textfeld" +msgid "Enable SSO via SAML" +msgstr "SSO via SAML aktivieren" + msgid "Enable chat globally" msgstr "Chat global aktivieren" @@ -1495,6 +1802,9 @@ msgstr "Ansicht zur Teilnehmeranwesenheit aktivieren" msgid "Enable point of order" msgstr "Geschäftsordnungsanträge aktivieren" +msgid "Enable specifications and ranking for possible motions" +msgstr "Vorgaben und Reihung für mögliche GO-Anträge aktivieren" + msgid "Enable star icon usage by speakers" msgstr "Stern-Icon-Markierung darf auch von Redner*innen genutzt werden" @@ -1510,6 +1820,63 @@ msgstr "Account ein-/ausschalten ..." msgid "Enable/disable accounts" msgstr "Accounts ein-/ausschalten" +msgid "" +"Enables for the selected state the possibility for submitters to change the " +"state of the motion. Other administrative functions are excluded." +msgstr "" +"Aktiviert für den ausgewählten Status die Möglichkeit, dass " +"Antragsteller*innen den Status des Antrages verändern können. Weitere " +"Verwaltungsfunktionen sind ausgeschlossen." + +msgid "Enables the ability to create votings for motions in this state." +msgstr "" +"Aktiviert für Anträge im ausgewählten Status die Möglichkeit, Abstimmungen " +"zu erstellen." + +msgid "" +"Enables the editing of the motion text and reason by submitters in the " +"selected state after the motion has been created." +msgstr "" +"Ermöglicht den Antragsteller*innen nach Erstellung eines Antrags die " +"nachträgliche Bearbeitung von Antragstext und Begründung im ausgewählten " +"Status." + +msgid "" +"Enables the forwarding of motions to other meetings within the OpenSlides instance in the selected state. \n" +"\n" +"Prerequisites:\n" +"1. forwarding hierarchy must be set at the organizational level in the committee. \n" +"2. target meeting must be created.\n" +"3. user must have group permission for forwarding." +msgstr "" +"Aktiviert im ausgewählten Status die Möglichkeit zur Weiterleitung von Anträgen an andere Veranstaltungen innerhalb der OpenSlides-Instanz. \n" +"\n" +"Voraussetzungen:\n" +"1. Weiterleitungshierarchie muss auf Organisationsebene im Gremium eingestellt sein. \n" +"2. Zielveranstaltung muss erstellt sein.\n" +"3. Nutzer muss Gruppenrecht zur Weiterleitung haben." + +msgid "" +"Enables the support function for motions in the selected state. The support " +"function must be activated under > [Settings] > [Motions] as well as the " +"corresponding group permission in > [Participants] > [Groups] > [Motions] > " +"[Can support motions]." +msgstr "" +"Aktiviert im ausgewählten Status die Möglichkeit zur Unterstützung von " +"Anträgen. Die Unterstützungsfunktion muss unter > [Einstellungen] > " +"[Anträge] sowie für die entsprechenden Gruppen das Recht unter > " +"[Teilnehmende] > [Gruppen] > [Anträge] > [Darf Anträge unterstützen] " +"aktiviert sein." + +msgid "" +"Enables the visibility of amendments directly in the corresponding main motion. The text of amendments is embedded within the text of the motion.\n" +"\n" +"Note: Does not affect the visibility of change recommendations." +msgstr "" +"Aktiviert die Sichtbarkeit von Änderungen direkt im jeweiligen Hauptantrag. Der Text von Änderungsanträgen wird in den Fließtext eingebettet.\n" +"\n" +"Hinweis: Hat keine Auswirkung auf die Sichtbarkeit von Änderungsempfehlungen." + msgid "Encoding of the file" msgstr "Encoding der Datei" @@ -1632,6 +1999,9 @@ msgstr "Ausgewählte Anträge exportieren" msgid "Extension" msgstr "Erweiterung" +msgid "External ID" +msgstr "Externe ID" + msgid "Favorites" msgstr "Favoriten" @@ -1815,6 +2185,9 @@ msgstr "Gruppen mit Schreibberechtigungen" msgid "Guest" msgstr "Gast" +msgid "Has SSO identification" +msgstr "Hat SSO-Kennung" + msgid "Has amendments" msgstr "Hat Änderungsanträge" @@ -1830,6 +2203,9 @@ msgstr "Hat Weiterleitungen" msgid "Has logged in" msgstr "Hat sich angemeldet" +msgid "Has no SSO identification" +msgstr "Hat keine SSO-Kennung" + msgid "Has no email address" msgstr "Hat keine E-Mail-Adresse" @@ -1917,6 +2293,9 @@ msgstr "Erstellung von Änderungsanträgen" msgid "I know the risk" msgstr "Ich kenne das Risiko" +msgid "Identifier" +msgstr "Bezeichner" + msgid "If deactivated it is displayed below the title" msgstr "Wenn deaktiviert erfolgt die Anzeige unterhalb des Antragstitels" @@ -2002,6 +2381,9 @@ msgstr "Intern" msgid "Internal item" msgstr "Interner Eintrag" +msgid "Internal login" +msgstr "Interner Login" + msgid "Invalid line number" msgstr "Ungültige Zeilennummer" @@ -2023,6 +2405,17 @@ msgstr "Ist eine öffentliche Vorlage" msgid "Is active" msgstr "Ist aktiv" +msgid "" +"Is allowed to add himself/herself to the list of speakers. \n" +"\n" +"Note:\n" +"Optional combination of requests to speak with presence status is possible. ( > [Settings] > [List of speakers] > [General] )" +msgstr "" +"Darf sich selbst zur Redeliste hinzufügen.\n" +"\n" +"Hinweis:\n" +"Optionale Kopplung von Wortmeldungen an Anwesenheitsstatus ist möglich. ( > [Einstellungen] > [Redeliste] > [Allgemein] )" + msgid "Is already projected" msgstr "ist bereits projiziert" @@ -2242,6 +2635,9 @@ msgstr "Trotzdem anmelden" msgid "Login as guest" msgstr "Als Gast anmelden" +msgid "Login button text" +msgstr "Login-Button-Beschriftung" + msgid "Logout" msgstr "Abmelden" @@ -2315,6 +2711,12 @@ msgstr "Mitteilungen" msgid "Meta information" msgstr "Metainformationen" +msgid "Metadata of Identity Provider (IdP)" +msgstr "Metadaten des Identity Providers (IdP)" + +msgid "Metadata of Service Provider (SP)" +msgstr "Metadaten des Service Providers (SP)" + msgid "Min votes cannot be greater than max votes." msgstr "" "Die minimale Stimmenanzahl darf nicht größer als die maximale Stimmenanzahl " @@ -2329,8 +2731,8 @@ msgstr "Minimieren" msgid "Minimum amount of votes" msgstr "Minimale Stimmenanzahl" -msgid "Minimum number of digits for motion number" -msgstr "Minimale Anzahl an Ziffern in der Antragsnummer" +msgid "Minimum number of digits for motion identifier" +msgstr "Minimale Anzahl an Ziffern im Antragsbezeichner" msgid "Module" msgstr "Modul" @@ -2380,8 +2782,8 @@ msgstr "Antrag weitergeleitet an" msgid "Motion forwarding" msgstr "Antragsweiterleitung" -msgid "Motion number" -msgstr "Antragsnummer" +msgid "Motion identifier" +msgstr "Antragsbezeichner" msgid "Motion preamble" msgstr "Antragseinleitung" @@ -2422,6 +2824,9 @@ msgstr "Mehrere Benutzer mit denselben Anmeldedaten gefunden!" msgid "Multiselect" msgstr "Mehrfachauswahl" +msgid "Must be unique" +msgstr "Name muss eindeutig sein" + msgid "My account" msgstr "Mein Konto" @@ -3036,6 +3441,9 @@ msgstr "GO-Antrag" msgid "Polls" msgstr "Umfragen" +msgid "Possible points of order" +msgstr "Mögliche GO-Anträge" + msgid "Pre" msgstr "Pre" @@ -3051,8 +3459,8 @@ msgstr "Vorgegebene Sekunden für neue Countdowns" msgid "Prefix" msgstr "Präfix" -msgid "Prefix for the motion number for amendments" -msgstr "Präfix für die Antragsnummer bei Änderungsanträgen" +msgid "Prefix for the motion identifier of amendments" +msgstr "Präfix für den Antragsbezeichner von Änderungsanträgen" msgid "Presence" msgstr "Anwesenheit" @@ -3078,6 +3486,9 @@ msgstr "Datenschutzerklärung" msgid "Privacy policy" msgstr "Datenschutzerklärung" +msgid "Private key of Service Provider (SP)" +msgstr "Privater Schlüssel des Service Providers (SP)" + msgid "Process handling" msgstr "Prozessverarbeitung" @@ -3141,6 +3552,9 @@ msgstr "Alle Kandidaten auf die Redeliste setzen" msgid "Queue" msgstr "Warteliste" +msgid "Rank" +msgstr "Rang" + msgid "Re-add last speaker" msgstr "Letzte*n Redner*in zurückholen" @@ -3329,6 +3743,12 @@ msgstr "Rechts" msgid "Roman" msgstr "Römisch" +msgid "SSO" +msgstr "SSO" + +msgid "SSO Identification" +msgstr "SSO-Kennung" + msgid "Same email" msgstr "Gleiche E-Mail-Adresse" @@ -3453,6 +3873,9 @@ msgstr "Weiterleitung setzen" msgid "Set hidden" msgstr "Versteckt setzen" +msgid "Set identifier" +msgstr "Bezeichner setzen" + msgid "Set inactive" msgstr "Inaktiv gesetzt" @@ -3471,9 +3894,6 @@ msgstr "Natürliche Person setzen ..." msgid "Set not present in meeting {}" msgstr "Abwesend gesetzt in Veranstaltung {}" -msgid "Set number" -msgstr "Bezeichner setzen" - msgid "Set or remove motion forwarding from the selected committees to:" msgstr "Antragsweiterleitung für ausgewählte Gremien setzen oder entfernen" @@ -3504,8 +3924,8 @@ msgstr "Antragsteller/in setzen" msgid "Set tags" msgstr "Schlagwörter setzen" -msgid "Set timestamp of creation" -msgstr "Erstellungszeitstempel setzen" +msgid "Set timestamp" +msgstr "Zeitstempel setzen" msgid "Set workflow" msgstr "Arbeitsablauf setzen" @@ -3652,6 +4072,9 @@ msgstr "" msgid "Simple Workflow" msgstr "Einfacher Arbeitsablauf" +msgid "Single Sign-On settings" +msgstr "Single Sign-On-Einstellungen" + msgid "Single votes" msgstr "Einzelstimmen" @@ -3664,13 +4087,21 @@ msgstr "Folie" msgid "Some csv values could not be read correctly." msgstr "Einige CSV-Werte konnten nicht korrekt gelesen werden." +msgid "" +"Some mails could not be sent. There may be a problem communicating with the " +"mail server, please contact your admin." +msgstr "" +"Einige Mails konnten nicht gesendet werden. Möglicherweise gibt es ein " +"Problem bei der Kommunikation mit dem Mailserver. Bitte wenden Sie sich an " +"Ihren Administrator." + msgid "Sort" msgstr "Sortieren" msgid "Sort agenda" msgstr "Tagesordnung sortieren" -msgid "Sort by number" +msgid "Sort by identifier" msgstr "Nach Bezeichner sortieren" msgid "Sort categories" @@ -3763,6 +4194,9 @@ msgstr "Gliederungsebene" msgid "Subcategory" msgstr "Untersachgebiet" +msgid "Submission date" +msgstr "Einreichungsdatum" + msgid "Submit selection now?" msgstr "Auswahl jetzt senden?" @@ -3938,13 +4372,13 @@ msgid "The title is required" msgstr "Ein Titel ist erforderlich" msgid "" -"The user %user% has no email, so the invitation email could not be send." +"The user %user% has no email, so the invitation email could not be sent." 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." +"The users %user% have no email, so the invitation emails could not be sent." msgstr "" "%user% besitzen keine E-Mail-Adressen; E-Mails konnte daher nicht gesendet " "werden." @@ -4189,6 +4623,13 @@ msgstr "Dateien hochladen" msgid "Upload to" msgstr "Hochladen in" +msgid "" +"Use JSON key:value structure (key = OpenSlides attribute name, value = IdP " +"attribute name)." +msgstr "" +"JSON-key:value-Struktur erforderlich (key = OpenSlides-Attributename, value " +"= IdP-Attributename)" + msgid "Use the following custom number" msgstr "Verwende die folgende benutzerdefinierte Anzahl" @@ -4216,7 +4657,7 @@ msgstr "Benutzername" msgid "Username or password is incorrect." msgstr "Benutzername oder Passwort war nicht korrekt." -msgid "Uses leading zeros to sort motions correctly by number." +msgid "Uses leading zeros to sort motions correctly by identifier." msgstr "" "Es werden führende Nullen verwendet, um die Bezeichner korrekt zu sortieren." @@ -4806,7 +5247,7 @@ msgid "move ..." msgstr "verschieben ..." msgid "name" -msgstr "" +msgstr "Name" msgid "natural person" msgstr "natürliche Person" diff --git a/client/src/assets/i18n/template-en.pot b/client/src/assets/i18n/template-en.pot index fd98587406..96c4eb058f 100644 --- a/client/src/assets/i18n/template-en.pot +++ b/client/src/assets/i18n/template-en.pot @@ -108,6 +108,31 @@ msgstr "" msgid "Activate vote weight" msgstr "" +msgid "" +"Activates the automatic logging of the date and time when this state was " +"first reached. A set time stamp cannot be removed." +msgstr "" + +msgid "" +"Activates the automatic setting of a number for motions that reach this " +"state. The scheme for numbering can be customized under > [Settings] > " +"[Motions]." +msgstr "" + +msgid "" +"Activates the extension field for the selected state, which can be filled " +"with free text as desired.\n" +"\n" +"Example: When activated, the state \"in progress\" can be expanded to e.g. " +"\"in progress by the motion committee\"." +msgstr "" + +msgid "" +"Activates the extension field of the recommendation in this state, which " +"can be filled with free text or extended with references to other motions " +"or committees as desired." +msgstr "" + msgid "Active" msgstr "" @@ -138,6 +163,9 @@ msgstr "" msgid "Add new custom translation" msgstr "" +msgid "Add new entry" +msgstr "" + msgid "Add option" msgstr "" @@ -523,9 +551,6 @@ msgstr "" msgid "Assign" msgstr "" -msgid "Assigned accounts" -msgstr "" - msgid "At least" msgstr "" @@ -544,6 +569,9 @@ msgstr "" msgid "Attention: This action cannot be undone!" msgstr "" +msgid "Attribute mapping (JSON)" +msgstr "" + msgid "Automatically open the microphone for new conference speakers" msgstr "" @@ -646,18 +674,99 @@ msgstr "" msgid "Called with" msgstr "" +msgid "Can activate and deactivate logos and fonts under > [Files]." +msgstr "" + +msgid "" +"Can add or delete speakers to or from the list of speakers, mark, sort, " +"start/stop and open/close the list of speakers." +msgstr "" + +msgid "" +"Can add their name to the list of candidates in the [Search for candidates] " +"phase." +msgstr "" + +msgid "Can change the presence status of other participants." +msgstr "" + msgid "Can create amendments" msgstr "" +msgid "" +"Can create amendments and modify them later, depending on the workflow, but " +"cannot delete them." +msgstr "" + msgid "Can create motions" msgstr "" +msgid "" +"Can create motions and modify them later, depending on the workflow, but " +"cannot delete them." +msgstr "" + +msgid "Can create, change, delete tags for the agenda and for motions." +msgstr "" + +msgid "Can create, change, start/stop and delete polls." +msgstr "" + +msgid "Can create, configure, control and delete projectors." +msgstr "" + +msgid "" +"Can create, modify and delete elections and candidate lists, as well as " +"start/stop and reset ballots. " +msgstr "" + +msgid "" +"Can create, modify and delete motions and votings, amendments and change " +"recommendations, and edit the metadata of a motion. Including the " +"management of categories, motion blocks, tags, workflows and comment fields." +msgstr "" + +msgid "" +"Can create, modify and delete topics, add motions and elections to the " +"agenda, sort, number and tag agenda items." +msgstr "" + +msgid "" +"Can create, modify, delete chat groups and define permissions.\n" +"\n" +"Note: The chat menu item becomes visible to all participants, except " +"admins, as soon as a chat has been created." +msgstr "" + +msgid "" +"Can create, modify, delete participant datasets and administrate group " +"permissions." +msgstr "" + +msgid "Can create, modify, start/stop and delete votings." +msgstr "" + +msgid "" +"Can edit and assign the following motion metadata: Submitter, state, " +"recommendation, category, motion blocks and tags." +msgstr "" + msgid "Can forward motions" msgstr "" msgid "Can forward motions to committee" msgstr "" +msgid "" +"Can forward motions to other meetings within the OpenSlides instance. \n" +"\n" +"Further requirements:\n" +"1. forwarding hierarchy must be set at the organizational level in the " +"committee. \n" +"2. target meeting must be created.\n" +"3. forwarding must be activated in the workflow in the state." +msgstr "" + msgid "Can manage agenda" msgstr "" @@ -709,6 +818,12 @@ msgstr "" msgid "Can nominate oneself" msgstr "" +msgid "" +"Can nominate other participants as candidates. \n" +"\n" +"Requires group permission: [Can see participants]" +msgstr "" + msgid "Can put oneself on the list of speakers" msgstr "" @@ -721,6 +836,12 @@ msgstr "" msgid "Can see agenda" msgstr "" +msgid "Can see all internal topics, schedules and comments." +msgstr "" + +msgid "Can see all lists of speakers" +msgstr "" + msgid "Can see elections" msgstr "" @@ -739,9 +860,56 @@ msgstr "" msgid "Can see motions in internal state" msgstr "" +msgid "" +"Can see motions in the internal state that are limited in the workflow " +"under Restrictions with the same description.\n" +"\n" +"Tip: Cross-check desired visibility of motions with test delegate account. " +msgstr "" + msgid "Can see participants" msgstr "" +msgid "Can see the Agenda menu item and all public topics in the agenda." +msgstr "" + +msgid "" +"Can see the Autopilot menu item with all content for which appropriate " +"permissions are set." +msgstr "" + +msgid "" +"Can see the Files menu item and all shared folders and files.\n" +"\n" +"Note: Sharing of folders and files may be restricted by group assignment." +msgstr "" + +msgid "" +"Can see the History menu item with the history of processing timestamps for " +"motions, elections and participants. \n" +"\n" +"Note: For privacy reasons, it is recommended to limit the rights to view " +"the History significantly." +msgstr "" + +msgid "Can see the Home menu item." +msgstr "" + +msgid "" +"Can see the Motions menu item and all motions unless they are limited by " +"access restrictions in the workflow." +msgstr "" + +msgid "" +"Can see the Projector menu item and all projectors (in the Autopilot as " +"well as in the Projector menu item)" +msgstr "" + +msgid "" +"Can see the Settings menu item and edit all settings as well as the start " +"page of the meeting." +msgstr "" + msgid "Can see the autopilot" msgstr "" @@ -754,12 +922,42 @@ msgstr "" msgid "Can see the live stream" msgstr "" +msgid "" +"Can see the livestream if there is a livestream URL entered in > [Settings] " +"> [Livestream]." +msgstr "" + +msgid "" +"Can see the menu item Elections, including the list of candidates and " +"results. \n" +"\n" +"Note: The right to vote is defined directly in the ballot." +msgstr "" + +msgid "" +"Can see the menu item Participants and therefore the following data from " +"all participants: \n" +"Personal data: Name, pronoun, gender. \n" +"Meeting specific information: Structure level, Group, Participant number, " +"About me, Presence status." +msgstr "" + msgid "Can see the projector" msgstr "" msgid "Can support motions" msgstr "" +msgid "" +"Can support motions. The support function must be enabled in > [Settings] > " +"[Motions] as well as for the corresponding state in > [Workflow]." +msgstr "" + +msgid "" +"Can upload, modify and delete files, administrate folders and change access " +"restrictions." +msgstr "" + msgid "Cancel" msgstr "" @@ -1184,6 +1382,18 @@ msgstr "" msgid "Default voting type" msgstr "" +msgid "" +"Defines for the selected state which groups have access:\n" +"- If no option is selected, the motions in the selected state are visible " +"to all; The prerequisite for this is group permission: [Can see motions].\n" +"- Selecting one or more options restricts access to those groups for which " +"the selected authorization option is defined under > [Participants] > " +"[Groups]." +msgstr "" + +msgid "Defines the colour for the state button." +msgstr "" + msgid "" "Defines the maximum deflection. Entering zero will use the amount of " "present participants instead." @@ -1195,6 +1405,23 @@ msgstr "" msgid "Defines the time in which applause amounts are add up." msgstr "" +msgid "" +"Defines the wording of the recommendation that belongs to this state.\n" +"Example: State = Accepted / Recommendation = Acceptance. \n" +"\n" +"To activate the recommendation system, a recommender (for example, a motion " +"committee) must be defined under > [Settings] > [Motions] > [Name of " +"recommender].\n" +"Example recommender: motion committee\n" +"\n" +"Additional information:\n" +"In combination with motion blocks, the recommendation of multiple motions " +"can be followed simultaneously." +msgstr "" + +msgid "Defines which states can be selected next in the workflow." +msgstr "" + msgid "Delegates" msgstr "" @@ -1398,6 +1625,9 @@ msgstr "" msgid "Empty text field" msgstr "" +msgid "Enable SSO via SAML" +msgstr "" + msgid "Enable chat globally" msgstr "" @@ -1416,6 +1646,9 @@ msgstr "" msgid "Enable point of order" msgstr "" +msgid "Enable specifications and ranking for possible motions" +msgstr "" + msgid "Enable star icon usage by speakers" msgstr "" @@ -1431,6 +1664,44 @@ msgstr "" msgid "Enable/disable accounts" msgstr "" +msgid "" +"Enables for the selected state the possibility for submitters to change the " +"state of the motion. Other administrative functions are excluded." +msgstr "" + +msgid "Enables the ability to create votings for motions in this state." +msgstr "" + +msgid "" +"Enables the editing of the motion text and reason by submitters in the " +"selected state after the motion has been created." +msgstr "" + +msgid "" +"Enables the forwarding of motions to other meetings within the OpenSlides " +"instance in the selected state. \n" +"\n" +"Prerequisites:\n" +"1. forwarding hierarchy must be set at the organizational level in the " +"committee. \n" +"2. target meeting must be created.\n" +"3. user must have group permission for forwarding." +msgstr "" + +msgid "" +"Enables the support function for motions in the selected state. The support " +"function must be activated under > [Settings] > [Motions] as well as the " +"corresponding group permission in > [Participants] > [Groups] > [Motions] > " +"[Can support motions]." +msgstr "" + +msgid "" +"Enables the visibility of amendments directly in the corresponding main " +"motion. The text of amendments is embedded within the text of the motion.\n" +"\n" +"Note: Does not affect the visibility of change recommendations." +msgstr "" + msgid "Encoding of the file" msgstr "" @@ -1542,6 +1813,9 @@ msgstr "" msgid "Extension" msgstr "" +msgid "External ID" +msgstr "" + msgid "Favorites" msgstr "" @@ -1722,6 +1996,9 @@ msgstr "" msgid "Guest" msgstr "" +msgid "Has SSO identification" +msgstr "" + msgid "Has amendments" msgstr "" @@ -1737,6 +2014,9 @@ msgstr "" msgid "Has logged in" msgstr "" +msgid "Has no SSO identification" +msgstr "" + msgid "Has no email address" msgstr "" @@ -1824,6 +2104,9 @@ msgstr "" msgid "I know the risk" msgstr "" +msgid "Identifier" +msgstr "" + msgid "If deactivated it is displayed below the title" msgstr "" @@ -1907,6 +2190,9 @@ msgstr "" msgid "Internal item" msgstr "" +msgid "Internal login" +msgstr "" + msgid "Invalid line number" msgstr "" @@ -1928,6 +2214,14 @@ msgstr "" msgid "Is active" msgstr "" +msgid "" +"Is allowed to add himself/herself to the list of speakers. \n" +"\n" +"Note:\n" +"Optional combination of requests to speak with presence status is possible. " +"( > [Settings] > [List of speakers] > [General] )" +msgstr "" + msgid "Is already projected" msgstr "" @@ -2141,6 +2435,9 @@ msgstr "" msgid "Login as guest" msgstr "" +msgid "Login button text" +msgstr "" + msgid "Logout" msgstr "" @@ -2212,6 +2509,12 @@ msgstr "" msgid "Meta information" msgstr "" +msgid "Metadata of Identity Provider (IdP)" +msgstr "" + +msgid "Metadata of Service Provider (SP)" +msgstr "" + msgid "Min votes cannot be greater than max votes." msgstr "" @@ -2224,7 +2527,7 @@ msgstr "" msgid "Minimum amount of votes" msgstr "" -msgid "Minimum number of digits for motion number" +msgid "Minimum number of digits for motion identifier" msgstr "" msgid "Module" @@ -2275,7 +2578,7 @@ msgstr "" msgid "Motion forwarding" msgstr "" -msgid "Motion number" +msgid "Motion identifier" msgstr "" msgid "Motion preamble" @@ -2317,6 +2620,9 @@ msgstr "" msgid "Multiselect" msgstr "" +msgid "Must be unique" +msgstr "" + msgid "My account" msgstr "" @@ -2914,6 +3220,9 @@ msgstr "" msgid "Polls" msgstr "" +msgid "Possible points of order" +msgstr "" + msgid "Pre" msgstr "" @@ -2929,7 +3238,7 @@ msgstr "" msgid "Prefix" msgstr "" -msgid "Prefix for the motion number for amendments" +msgid "Prefix for the motion identifier of amendments" msgstr "" msgid "Presence" @@ -2956,6 +3265,9 @@ msgstr "" msgid "Privacy policy" msgstr "" +msgid "Private key of Service Provider (SP)" +msgstr "" + msgid "Process handling" msgstr "" @@ -3019,6 +3331,9 @@ msgstr "" msgid "Queue" msgstr "" +msgid "Rank" +msgstr "" + msgid "Re-add last speaker" msgstr "" @@ -3200,6 +3515,12 @@ msgstr "" msgid "Roman" msgstr "" +msgid "SSO" +msgstr "" + +msgid "SSO Identification" +msgstr "" + msgid "Same email" msgstr "" @@ -3323,6 +3644,9 @@ msgstr "" msgid "Set hidden" msgstr "" +msgid "Set identifier" +msgstr "" + msgid "Set inactive" msgstr "" @@ -3341,9 +3665,6 @@ msgstr "" msgid "Set not present in meeting {}" msgstr "" -msgid "Set number" -msgstr "" - msgid "Set or remove motion forwarding from the selected committees to:" msgstr "" @@ -3374,7 +3695,7 @@ msgstr "" msgid "Set tags" msgstr "" -msgid "Set timestamp of creation" +msgid "Set timestamp" msgstr "" msgid "Set workflow" @@ -3512,6 +3833,9 @@ msgstr "" msgid "Simple Workflow" msgstr "" +msgid "Single Sign-On settings" +msgstr "" + msgid "Single votes" msgstr "" @@ -3524,13 +3848,18 @@ msgstr "" msgid "Some csv values could not be read correctly." msgstr "" +msgid "" +"Some mails could not be sent. There may be a problem communicating with the " +"mail server, please contact your admin." +msgstr "" + msgid "Sort" msgstr "" msgid "Sort agenda" msgstr "" -msgid "Sort by number" +msgid "Sort by identifier" msgstr "" msgid "Sort categories" @@ -3623,6 +3952,9 @@ msgstr "" msgid "Subcategory" msgstr "" +msgid "Submission date" +msgstr "" + msgid "Submit selection now?" msgstr "" @@ -3785,10 +4117,10 @@ msgstr "" msgid "The title is required" msgstr "" -msgid "The user %user% has no email, so the invitation email could not be send." +msgid "The user %user% has no email, so the invitation email could not be sent." msgstr "" -msgid "The users %user% have no email, so the invitation emails could not be send." +msgid "The users %user% have no email, so the invitation emails could not be sent." msgstr "" msgid "There are not enough options." @@ -4001,6 +4333,11 @@ msgstr "" msgid "Upload to" msgstr "" +msgid "" +"Use JSON key:value structure (key = OpenSlides attribute name, value = IdP " +"attribute name)." +msgstr "" + msgid "Use the following custom number" msgstr "" @@ -4024,7 +4361,7 @@ msgstr "" msgid "Username or password is incorrect." msgstr "" -msgid "Uses leading zeros to sort motions correctly by number." +msgid "Uses leading zeros to sort motions correctly by identifier." msgstr "" msgid ""