Merge pull request #4218 from emanuelschuetze/translations

Updated translations
This commit is contained in:
Emanuel Schütze 2019-01-31 09:35:11 +01:00 committed by GitHub
commit d6ce448672
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 442 additions and 68 deletions

View File

@ -338,6 +338,7 @@ _('Staff');
_('Committees'); _('Committees');
// history strings // history strings
_('Motion created');
_('Motion deleted'); _('Motion deleted');
_('Motion updated'); _('Motion updated');
_('Submitters changed'); _('Submitters changed');

View File

@ -13,7 +13,7 @@
<div *ngFor="let option of filter.options"> <div *ngFor="let option of filter.options">
<div *ngIf="isFilter(option)"> <div *ngIf="isFilter(option)">
<mat-checkbox [checked]="option.isActive" (change)="service.toggleFilterOption(filter.property, option)"> <mat-checkbox [checked]="option.isActive" (change)="service.toggleFilterOption(filter.property, option)">
{{ option.label |translate }} {{ option.label | translate }}
</mat-checkbox> </mat-checkbox>
</div> </div>
<div class="filter-subtitle" *ngIf="!isFilter(option)"> <div class="filter-subtitle" *ngIf="!isFilter(option)">

View File

@ -1,34 +1,40 @@
<h2 mat-dialog-title translate>Project <h2 mat-dialog-title>
<span *ngIf="projectorElementBuildDescriptor.projectionDefaultName === 'motions'" translate>Motion</span> <span *ngIf="projectorElementBuildDescriptor.projectionDefaultName !== 'motions'" translate>Project {{ projectorElementBuildDescriptor.getTitle() }}?</span>
{{ projectorElementBuildDescriptor.getTitle() }}?</h2> <span *ngIf="projectorElementBuildDescriptor.projectionDefaultName === 'motions'" translate>Project motion {{ projectorElementBuildDescriptor.getTitle() }}?</span>
</h2>
<mat-dialog-content> <mat-dialog-content>
<div class="projectors" *ngFor="let projector of projectors" [ngClass]="isProjectedOn(projector) ? 'projected' : ''"> <div
class="projectors"
*ngFor="let projector of projectors"
[ngClass]="isProjectedOn(projector) ? 'projected' : ''"
>
<mat-checkbox [checked]="isProjectorSelected(projector)" (change)="toggleProjector(projector)"> <mat-checkbox [checked]="isProjectorSelected(projector)" (change)="toggleProjector(projector)">
{{ projector.name | translate }} {{ projector.name | translate }}
</mat-checkbox> </mat-checkbox>
<span *ngIf="isProjectedOn(projector)" class="right"> <span *ngIf="isProjectedOn(projector)" class="right"> <mat-icon>videocam</mat-icon> </span>
<mat-icon>videocam</mat-icon>
</span>
</div> </div>
<mat-divider></mat-divider> <mat-divider></mat-divider>
<div *ngIf="options.length > 0"> <div *ngIf="options.length > 0">
<div *ngFor="let option of options"> <div *ngFor="let option of options">
<div *ngIf="isDecisionOption(option)"> <div *ngIf="isDecisionOption(option)">
<mat-checkbox [checked]="projectorElement[option.key]" (change)="projectorElement[option.key] = !projectorElement[option.key]"> <mat-checkbox
{{ option.displayName | translate }} [checked]="projectorElement[option.key]"
</mat-checkbox> (change)="projectorElement[option.key] = !projectorElement[option.key]"
</div> >
<div *ngIf="isChoiceOption(option)"> {{ option.displayName | translate }}
<h3>{{ option.displayName | translate }}</h3> </mat-checkbox>
<mat-radio-group [name]="option.key" [(ngModel)]="projectorElement[option.key]">
<mat-radio-button *ngFor="let choice of option.choices" [value]="choice.value">
{{ choice.displayName | translate }}
</mat-radio-button>
</mat-radio-group>
</div>
</div> </div>
<div *ngIf="isChoiceOption(option)">
<h3>{{ option.displayName | translate }}</h3>
<mat-radio-group [name]="option.key" [(ngModel)]="projectorElement[option.key]">
<mat-radio-button *ngFor="let choice of option.choices" [value]="choice.value">
{{ choice.displayName | translate }}
</mat-radio-button>
</mat-radio-group>
</div>
</div>
</div> </div>
</mat-dialog-content> </mat-dialog-content>
<mat-dialog-actions> <mat-dialog-actions>

View File

@ -123,7 +123,7 @@ export class HistoryListComponent extends ListViewBaseComponent<ViewHistory> imp
if (information.length > 1) { if (information.length > 1) {
argument_string = this.translate.instant(information[1]); argument_string = this.translate.instant(information[1]);
} }
return base_string.replace(/\\{arg1\\}/g, argument_string); return base_string.replace(/{arg1}/g, argument_string);
} }
} }

View File

@ -1,17 +1,8 @@
<!-- A summary of all changes --> <!-- A summary of all changes -->
<section class="change-recommendation-overview"> <section class="change-recommendation-overview" *ngIf="changes.length > 0">
<strong> {{ 'Summary of changes' | translate }}: </strong> <strong> {{ 'Summary of changes' | translate }}: </strong>
<!-- <ul>
<button os-perms="motions.can_manage" class="btn btn-sm btn-default pull-right"
uib-tooltip="{{ 'Note: You have to reject all change recommendations if the plenum does not follow the recommendation. This does not affect amendments.' | translate }}"
ng-click="viewChangeRecommendations.rejectAllChangeRecommendations(motion)">
<i class="fa fa-thumbs-down"></i>
<translate>Reject all change recommendations</translate>
</button>
-->
<ul *ngIf="changes.length > 0">
<li *ngFor="let change of changes"> <li *ngFor="let change of changes">
<a <a
href="" href=""
@ -28,7 +19,7 @@
<span *ngIf="isChangeRecommendation(change)"> ({{ 'Change recommendation' | translate }})</span> <span *ngIf="isChangeRecommendation(change)"> ({{ 'Change recommendation' | translate }})</span>
<span *ngIf="isAmendment(change)"> ({{ 'Amendment' | translate }} {{ change.getIdentifier() }})</span> <span *ngIf="isAmendment(change)"> ({{ 'Amendment' | translate }} {{ change.getIdentifier() }})</span>
<span class="operation" *ngIf="isChangeRecommendation(change)" <span class="operation" *ngIf="isChangeRecommendation(change)"
> {{ getRecommendationTypeName(change) }} > {{ getRecommendationTypeName(change) | translate }}
<!-- <!--
@TODO @TODO
<span ng-if="change.original.getType(motion.getVersion(version).text) == 3"> <span ng-if="change.original.getType(motion.getVersion(version).text) == 3">

View File

@ -51,7 +51,7 @@
<mat-button-toggle value="category"> <span translate>Category</span> </mat-button-toggle> <mat-button-toggle value="category"> <span translate>Category</span> </mat-button-toggle>
<mat-button-toggle value="origin"> <span translate>Origin</span> </mat-button-toggle> <mat-button-toggle value="origin"> <span translate>Origin</span> </mat-button-toggle>
<mat-button-toggle value="block"> <span translate>Motion block</span> </mat-button-toggle> <mat-button-toggle value="block"> <span translate>Motion block</span> </mat-button-toggle>
<mat-button-toggle value="votingResult" #votingResultButton> <span translate>Voting Result</span> </mat-button-toggle> <mat-button-toggle value="votingResult" #votingResultButton> <span translate>Voting result</span> </mat-button-toggle>
</mat-button-toggle-group> </mat-button-toggle-group>
</div> </div>

View File

@ -78,7 +78,9 @@ export class LocalPermissionsService {
motion.state.allow_create_poll motion.state.allow_create_poll
); );
case 'update': case 'update':
if (!motion) { // check also for empty ViewMotion object (e.g. if motion.id is null)
// important for creating new motion as normal user
if (!motion || !motion.id) {
return false; return false;
} }
return ( return (

View File

@ -9,12 +9,14 @@ import { StorageService } from '../../../core/services/storage.service';
import { MotionRepositoryService } from './motion-repository.service'; import { MotionRepositoryService } from './motion-repository.service';
import { MotionBlockRepositoryService } from './motion-block-repository.service'; import { MotionBlockRepositoryService } from './motion-block-repository.service';
import { MotionCommentSectionRepositoryService } from './motion-comment-section-repository.service'; import { MotionCommentSectionRepositoryService } from './motion-comment-section-repository.service';
import { TranslateService } from '@ngx-translate/core';
@Injectable({ @Injectable({
providedIn: 'root' providedIn: 'root'
}) })
export class MotionFilterListService extends FilterListService<Motion, ViewMotion> { export class MotionFilterListService extends FilterListService<Motion, ViewMotion> {
protected name = 'Motion'; protected name = 'Motion';
/** /**
* getter for the filterOptions. Note that in this case, the options are * getter for the filterOptions. Note that in this case, the options are
* generated dynamically, as the options change with the datastore * generated dynamically, as the options change with the datastore
@ -69,31 +71,31 @@ export class MotionFilterListService extends FilterListService<Motion, ViewMotio
public staticFilterOptions = [ public staticFilterOptions = [
{ {
property: 'star', property: 'star',
label: 'Favorites', label: this.translate.instant('Favorites'),
isActive: false, isActive: false,
options: [ options: [
{ {
condition: true, condition: true,
label: 'Is favorite' label: this.translate.instant('Is favorite')
}, },
{ {
condition: false, condition: false,
label: 'Is not favorite' label: this.translate.instant('Is not favorite')
} }
] ]
}, },
{ {
property: 'hasNotes', property: 'hasNotes',
label: 'Personal notes', label: this.translate.instant('Personal notes'),
isActive: false, isActive: false,
options: [ options: [
{ {
condition: true, condition: true,
label: 'Has notes' label: this.translate.instant('Has notes')
}, },
{ {
condition: false, condition: false,
label: 'Does not have notes' label: this.translate.instant('Does not have notes')
} }
] ]
} }
@ -108,6 +110,7 @@ export class MotionFilterListService extends FilterListService<Motion, ViewMotio
* @param categoryRepo Subscribing to filters by Categories * @param categoryRepo Subscribing to filters by Categories
* @param motionBlockRepo Subscribing to filters by MotionBlock * @param motionBlockRepo Subscribing to filters by MotionBlock
* @param commentRepo subycribing filter by presense of comment * @param commentRepo subycribing filter by presense of comment
* @param translate Translation service
* @param motionRepo the motion's own repository, required by the parent * @param motionRepo the motion's own repository, required by the parent
*/ */
public constructor( public constructor(
@ -116,6 +119,7 @@ export class MotionFilterListService extends FilterListService<Motion, ViewMotio
private categoryRepo: CategoryRepositoryService, private categoryRepo: CategoryRepositoryService,
private motionBlockRepo: MotionBlockRepositoryService, private motionBlockRepo: MotionBlockRepositoryService,
private commentRepo: MotionCommentSectionRepositoryService, private commentRepo: MotionCommentSectionRepositoryService,
private translate: TranslateService,
motionRepo: MotionRepositoryService motionRepo: MotionRepositoryService
) { ) {
super(store, motionRepo); super(store, motionRepo);

View File

@ -144,7 +144,7 @@
<!-- Groups --> <!-- Groups -->
<mat-form-field *ngIf="(user.groups && user.groups.length > 0) || editUser"> <mat-form-field *ngIf="(user.groups && user.groups.length > 0) || editUser">
<mat-select placeholder="{{ 'Groups' | translate }}" formControlName="groups_id" multiple> <mat-select placeholder="{{ 'Groups' | translate }}" formControlName="groups_id" multiple>
<mat-option *ngFor="let group of groups" [value]="group.id">{{ group }}</mat-option> <mat-option *ngFor="let group of groups" [value]="group.id">{{ group.getTitle() | translate }}</mat-option>
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
</div> </div>

View File

@ -98,6 +98,13 @@
<span translate>Groups</span> <span translate>Groups</span>
</button> </button>
<div *ngIf="presenceViewConfigured">
<button mat-menu-item *osPerms="'users.can_manage'" routerLink="presence">
<mat-icon>transfer_within_a_station</mat-icon>
<span translate>Presence</span>
</button>
</div>
<button mat-menu-item (click)="pdfExportUserList()"> <button mat-menu-item (click)="pdfExportUserList()">
<mat-icon>picture_as_pdf</mat-icon> <mat-icon>picture_as_pdf</mat-icon>
<span translate>List of participants (PDF)</span> <span translate>List of participants (PDF)</span>

View File

@ -4,9 +4,8 @@
</os-head-bar> </os-head-bar>
<mat-card *ngIf="permission"> <mat-card *ngIf="permission">
<span translate> Check in or check out participants based on their participant numbers </span> <p translate>Check in or check out participants based on their participant numbers:</p>
<br />
<mat-form-field [formGroup]="userForm"> <mat-form-field [formGroup]="userForm">
<input osAutofocus <input osAutofocus
matInput matInput
@ -15,9 +14,9 @@
(keyup)="onKeyUp($event)" (keyup)="onKeyUp($event)"
/> />
</mat-form-field> </mat-form-field>
<button mat-button (click)="changePresence()">Change presence</button> <button mat-button (click)="changePresence()" translate>Change presence</button>
<mat-card *ngIf="lastChangedUser" [ngClass]="lastChangedUser.is_present ? 'success' : 'warning'"> <mat-card *ngIf="lastChangedUser" [ngClass]="lastChangedUser.is_present ? 'success' : 'warning'">
<span>{{ lastChangedUser.full_name }}&nbsp;</span> <span translate> is now</span> <span>{{ lastChangedUser.full_name }}&nbsp;</span> <span translate>is now</span>
<span>&nbsp;{{ lastChangedUser.is_present ? 'present' : ('not present' | translate) }}</span> <span>&nbsp;{{ lastChangedUser.is_present ? 'present' : ('not present' | translate) }}</span>
</mat-card> </mat-card>
<mat-card *ngIf="errorMsg" class="error"> {{ errorMsg | translate }} </mat-card> <mat-card *ngIf="errorMsg" class="error"> {{ errorMsg | translate }} </mat-card>

View File

@ -6,6 +6,7 @@ import { ConfigService } from 'app/core/services/config.service';
import { OperatorService } from 'app/core/services/operator.service'; import { OperatorService } from 'app/core/services/operator.service';
import { UserRepositoryService } from '../services/user-repository.service'; import { UserRepositoryService } from '../services/user-repository.service';
import { ViewUser } from '../models/view-user'; import { ViewUser } from '../models/view-user';
import { TranslateService } from '@ngx-translate/core';
/** /**
* This component offers an input field for user numbers, and sets/unsets the * This component offers an input field for user numbers, and sets/unsets the
@ -58,12 +59,14 @@ export class PresenceDetailComponent implements OnInit {
* @param userRepo: UserRepositoryService for querying the users * @param userRepo: UserRepositoryService for querying the users
* @param formBuilder FormBuilder input form * @param formBuilder FormBuilder input form
* @param operator OperatorService fetch the current user for a permission check * @param operator OperatorService fetch the current user for a permission check
* @param translate Translation service
* @param config ConfigService checking if the feature is enabled * @param config ConfigService checking if the feature is enabled
*/ */
public constructor( public constructor(
private userRepo: UserRepositoryService, private userRepo: UserRepositoryService,
private formBuilder: FormBuilder, private formBuilder: FormBuilder,
private operator: OperatorService, private operator: OperatorService,
private translate: TranslateService,
config: ConfigService config: ConfigService
) { ) {
config.get('users_enable_presence_view').subscribe(conf => (this._enabledInConfig = conf)); config.get('users_enable_presence_view').subscribe(conf => (this._enabledInConfig = conf));
@ -91,10 +94,10 @@ export class PresenceDetailComponent implements OnInit {
this.subscribeUser(users[0].id); this.subscribeUser(users[0].id);
} else if (!users.length) { } else if (!users.length) {
this.clearSubscription(); this.clearSubscription();
this.errorMsg = 'Participant cannot be found'; this.errorMsg = this.translate.instant('Participant cannot be found');
} else if (users.length > 1) { } else if (users.length > 1) {
this.clearSubscription(); this.clearSubscription();
this.errorMsg = 'Participant number is not unique'; this.errorMsg = this.translate.instant('Participant number is not unique');
} }
} }

View File

@ -33,7 +33,7 @@ export class UserPdfExportService {
*/ */
public exportSingleUserAccessPDF(user: ViewUser): void { public exportSingleUserAccessPDF(user: ViewUser): void {
const doc = this.userPdfService.userAccessToDocDef(user); const doc = this.userPdfService.userAccessToDocDef(user);
const filename = `${this.translate.instant('User')} ${user.short_name}`; const filename = `${this.translate.instant('Access-data')} ${user.short_name}`;
const metadata = { const metadata = {
title: filename title: filename
}; };
@ -51,7 +51,7 @@ export class UserPdfExportService {
doc.push(this.userPdfService.userAccessToDocDef(user)); doc.push(this.userPdfService.userAccessToDocDef(user));
doc.push({ text: '', pageBreak: 'after' }); doc.push({ text: '', pageBreak: 'after' });
}); });
const filename = this.translate.instant('User'); const filename = this.translate.instant('Access-data');
const metadata = { const metadata = {
title: filename title: filename
}; };

File diff suppressed because one or more lines are too long

View File

@ -27,6 +27,9 @@ msgstr ""
msgid "About me" msgid "About me"
msgstr "Über mich" msgstr "Über mich"
msgid "Abstain"
msgstr "Enthaltung"
msgid "Accept" msgid "Accept"
msgstr "Annehmen" msgstr "Annehmen"
@ -36,6 +39,12 @@ msgstr "Annahme"
msgid "Accepted" msgid "Accepted"
msgstr "Angenommen" msgstr "Angenommen"
msgid "Access data (PDF)"
msgstr "Zugangsdaten (PDF)"
msgid "Access-data"
msgstr "Zugangsdaten"
msgid "Activate amendments" msgid "Activate amendments"
msgstr "Änderungsanträge aktivieren" msgstr "Änderungsanträge aktivieren"
@ -179,6 +188,12 @@ msgstr "Aufgerufen wird"
msgid "Called with" msgid "Called with"
msgstr "Mit aufgerufen werden" msgstr "Mit aufgerufen werden"
msgid "Can change its own password"
msgstr "Darf eigenes Passwort ändern"
msgid "Can create amendments"
msgstr "Darf Änderungsanträge stellen"
msgid "Can create motions" msgid "Can create motions"
msgstr "Darf Anträge erstellen" msgstr "Darf Anträge erstellen"
@ -203,6 +218,9 @@ msgstr "Darf Redelisten verwalten"
msgid "Can manage logos and fonts" msgid "Can manage logos and fonts"
msgstr "Darf Logos und Schriften verwalten" msgstr "Darf Logos und Schriften verwalten"
msgid "Can manage motion metadata"
msgstr "Darf Antragsmetadaten verwalten"
msgid "Can manage motions" msgid "Can manage motions"
msgstr "Darf Anträge verwalten" msgstr "Darf Anträge verwalten"
@ -292,6 +310,9 @@ msgstr "Passwort ändern"
msgid "Change password for" msgid "Change password for"
msgstr "Passwort ändern für" msgstr "Passwort ändern für"
msgid "Change presence"
msgstr "Anwesenheit ändern"
msgid "Change recommendation" msgid "Change recommendation"
msgstr "Änderungsempfehlung" msgstr "Änderungsempfehlung"
@ -304,6 +325,10 @@ msgstr "Bearbeitet von"
msgid "Changed version" msgid "Changed version"
msgstr "Geänderte Fassung" msgstr "Geänderte Fassung"
msgid "Check in or check out participants based on their participant numbers:"
msgstr ""
"An- oder Abmeldung von Teilnehmenden basierend auf ihren Teilnehmernummern:"
msgid "Choose 0 to disable the supporting system." msgid "Choose 0 to disable the supporting system."
msgstr "Zum Deaktivieren des Unterstützersystems '0' eingeben." msgstr "Zum Deaktivieren des Unterstützersystems '0' eingeben."
@ -347,6 +372,9 @@ msgstr "Komplexer Arbeitsablauf"
msgid "Confirm new password" msgid "Confirm new password"
msgstr "Neues Passwort bestätigen" msgstr "Neues Passwort bestätigen"
msgid "Content"
msgstr "Inhalt"
msgid "Copy and paste your participant names in this textbox." msgid "Copy and paste your participant names in this textbox."
msgstr "Kopieren Sie die Name Ihrer Teilnehmer/innen in diese Textbox." msgstr "Kopieren Sie die Name Ihrer Teilnehmer/innen in diese Textbox."
@ -359,12 +387,24 @@ msgstr "Countdown mit der Redeliste verkoppeln"
msgid "Create" msgid "Create"
msgstr "Erstellen" msgstr "Erstellen"
msgid "Create final print template"
msgstr "Beschluss-Druckvorlage erstellen"
msgid "Create new category" msgid "Create new category"
msgstr "Neues Sachgebiet erstellen" msgstr "Neues Sachgebiet erstellen"
msgid "Current"
msgstr "Aktuell"
msgid "Current browser language" msgid "Current browser language"
msgstr "Aktuelle Browsersprache" msgstr "Aktuelle Browsersprache"
msgid "Current list of speakers overlay"
msgstr "Aktuelle Redeliste (Einblendung)"
msgid "Current list of speakers slide"
msgstr "Aktuelle Redeliste (Folie)"
msgid "Custom number of ballot papers" msgid "Custom number of ballot papers"
msgstr "Benutzerdefinierte Anzahl von Stimmzetteln" msgstr "Benutzerdefinierte Anzahl von Stimmzetteln"
@ -430,12 +470,18 @@ msgstr "Delegierte"
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
msgid "Delete final print template"
msgstr "Beschluss-Druckvorlage löschen"
msgid "Delete whole history" msgid "Delete whole history"
msgstr "Chronik löschen" msgstr "Chronik löschen"
msgid "Deletion" msgid "Deletion"
msgstr "Streichung" msgstr "Streichung"
msgid "Description"
msgstr "Beschreibung"
msgid "Deselect all" msgid "Deselect all"
msgstr "Alle abwählen" msgstr "Alle abwählen"
@ -473,12 +519,22 @@ msgstr "Nicht entscheiden"
msgid "Do you want to delete this file?" msgid "Do you want to delete this file?"
msgstr "Soll diese Datei wirklich gelöscht werden?" msgstr "Soll diese Datei wirklich gelöscht werden?"
msgid "Does not have notes"
msgstr "Hat keine Notizen"
msgid "Done" msgid "Done"
msgstr "Erledigt" msgstr "Erledigt"
msgid "Download CSV example file" msgid "Download CSV example file"
msgstr "CSV-Beispiel-Datei herunterladen" msgstr "CSV-Beispiel-Datei herunterladen"
msgid ""
"Drag and drop items to change the order of the agenda. Your modification "
"will be saved immediately."
msgstr ""
"Verschieben Sie Einträge, um die Reihenfolge der Tagesordnung zu ändern. "
"Ihre Änderungen werden sofort gespeichert."
msgid "Drop files into this area OR select files" msgid "Drop files into this area OR select files"
msgstr "Dateien auf diesen Bereich ziehen ODER Dateien auswählen" msgstr "Dateien auf diesen Bereich ziehen ODER Dateien auswählen"
@ -494,6 +550,9 @@ msgstr "Sachgebiet bearbeiten"
msgid "Edit comment field:" msgid "Edit comment field:"
msgstr "Kommentarfeld bearbeiten:" msgstr "Kommentarfeld bearbeiten:"
msgid "Edit countdown"
msgstr "Countdown bearbeiten"
msgid "Edit details" msgid "Edit details"
msgstr "Details bearbeiten" msgstr "Details bearbeiten"
@ -562,6 +621,9 @@ msgstr ""
"Geben Sie die Dauer in Sekunden an. Zum Deaktivieren der Warn-Farbe 0 " "Geben Sie die Dauer in Sekunden an. Zum Deaktivieren der Warn-Farbe 0 "
"auswählen." "auswählen."
msgid "Enter participant number"
msgstr "Teilnehmernummer eingeben"
msgid "Enter your email to send the password reset link" msgid "Enter your email to send the password reset link"
msgstr "" msgstr ""
"Geben Sie Ihre E-Mail-Adresse ein um eine Link zum Zurücksetzen des " "Geben Sie Ihre E-Mail-Adresse ein um eine Link zum Zurücksetzen des "
@ -600,6 +662,18 @@ msgstr "Exportieren ..."
msgid "Export as CSV" msgid "Export as CSV"
msgstr "Exportieren als CSV" msgstr "Exportieren als CSV"
msgid "Export as PDF"
msgstr "Als PDF exportieren"
msgid "Export motions"
msgstr "Anträge exportieren"
msgid "Extension"
msgstr "Erweiterung"
msgid "Favorites"
msgstr "Favoriten"
msgid "File information" msgid "File information"
msgstr "Dateiinformationen" msgstr "Dateiinformationen"
@ -618,6 +692,9 @@ msgstr "Filtermöglichkeiten"
msgid "Filters" msgid "Filters"
msgstr "Filter" msgstr "Filter"
msgid "Final print template"
msgstr "Beschluss-Druckvorlage"
msgid "Final version" msgid "Final version"
msgstr "Beschlussfassung" msgstr "Beschlussfassung"
@ -636,12 +713,18 @@ msgstr "Schriftfarbe des Projektor-Kopf- und Fußbereichs"
msgid "Font color of projector headline" msgid "Font color of projector headline"
msgstr "Schriftfarbe der Projektor-Überschrift" msgstr "Schriftfarbe der Projektor-Überschrift"
msgid "Format"
msgstr "Format"
msgid "Front page text" msgid "Front page text"
msgstr "Text der Startseite" msgstr "Text der Startseite"
msgid "Front page title" msgid "Front page title"
msgstr "Titel der Startseite" msgstr "Titel der Startseite"
msgid "Gender"
msgstr "Geschlecht"
msgid "General" msgid "General"
msgstr "Allgemein" msgstr "Allgemein"
@ -663,6 +746,9 @@ msgstr "Gruppen mit Leseberechtigungen"
msgid "Groups with write permissions" msgid "Groups with write permissions"
msgstr "Gruppen mit Schreibberechtigungen" msgstr "Gruppen mit Schreibberechtigungen"
msgid "Has notes"
msgstr "Hat Notizen"
msgid "Help text for access data and welcome PDF" msgid "Help text for access data and welcome PDF"
msgstr "Hilfetext für das Zugangsdaten- und Willkommens-PDF" msgstr "Hilfetext für das Zugangsdaten- und Willkommens-PDF"
@ -721,6 +807,9 @@ msgstr "Laufende Nummer im PDF und DOCX anzeigen"
msgid "Initial password" msgid "Initial password"
msgstr "Initiales Passwort" msgstr "Initiales Passwort"
msgid "Inline"
msgstr "innerhalb"
msgid "Input format: DD.MM.YYYY HH:MM" msgid "Input format: DD.MM.YYYY HH:MM"
msgstr "Eingabeformat: TT.MM.JJJJ HH:MM" msgstr "Eingabeformat: TT.MM.JJJJ HH:MM"
@ -751,6 +840,12 @@ msgstr "Ist aktiv"
msgid "Is committee" msgid "Is committee"
msgstr "Ist Gremium" msgstr "Ist Gremium"
msgid "Is favorite"
msgstr "Ist Favorit"
msgid "Is not favorite"
msgstr "Ist kein Favorit"
msgid "Is present" msgid "Is present"
msgstr "Ist anwesend" msgstr "Ist anwesend"
@ -784,6 +879,12 @@ msgstr "Zeilenlänge"
msgid "Line numbering" msgid "Line numbering"
msgstr "Zeilennummerierung" msgstr "Zeilennummerierung"
msgid "List of participants"
msgstr "Teilnehmendenliste"
msgid "List of participants (PDF)"
msgstr "Teilnehmendenliste (PDF)"
msgid "List of speakers" msgid "List of speakers"
msgstr "Redeliste" msgstr "Redeliste"
@ -802,6 +903,15 @@ msgstr "Abmelden"
msgid "Mark speaker" msgid "Mark speaker"
msgstr "Redner/in markieren" msgstr "Redner/in markieren"
msgid "Message"
msgstr "Mitteilung"
msgid "Messages"
msgstr "Mitteilungen"
msgid "Meta information"
msgstr "Metainformationen"
msgid "Motion" msgid "Motion"
msgstr "Antrag" msgstr "Antrag"
@ -811,15 +921,15 @@ msgstr "Antragsblock"
msgid "Motion blocks" msgid "Motion blocks"
msgstr "Antragsblöcke" msgstr "Antragsblöcke"
msgid "Motion created"
msgstr "Antrag erstellt"
msgid "Motion deleted" msgid "Motion deleted"
msgstr "Antrag gelöscht" msgstr "Antrag gelöscht"
msgid "Motion has been imported" msgid "Motion has been imported"
msgstr "Antrag wurde importiert" msgstr "Antrag wurde importiert"
msgid "Motion log"
msgstr "Antragsverlauf"
msgid "Motion preamble" msgid "Motion preamble"
msgstr "Antragseinleitung" msgstr "Antragseinleitung"
@ -868,6 +978,9 @@ msgstr "Neuer Änderungsantrag"
msgid "New comment field" msgid "New comment field"
msgstr "Neues Kommentarfeld" msgstr "Neues Kommentarfeld"
msgid "New countdown"
msgstr "Neuer Countdown"
msgid "New file name" msgid "New file name"
msgstr "Neuer Dateiname" msgstr "Neuer Dateiname"
@ -901,6 +1014,9 @@ msgstr "Neue Abstimmung"
msgid "Next" msgid "Next"
msgstr "Weiter" msgstr "Weiter"
msgid "No"
msgstr "Nein"
msgid "No change recommendations yet" msgid "No change recommendations yet"
msgstr "Bisher keine Änderungsempfehlungen" msgstr "Bisher keine Änderungsempfehlungen"
@ -913,6 +1029,9 @@ msgstr "Kein Kommentar"
msgid "No concernment" msgid "No concernment"
msgstr "Nichtbefassung" msgstr "Nichtbefassung"
msgid "No countdowns"
msgstr "Keine Countdowns"
msgid "No decision" msgid "No decision"
msgstr "Keine Entscheidung" msgstr "Keine Entscheidung"
@ -1000,12 +1119,18 @@ msgstr "Öffnen"
msgid "Open list of speakers" msgid "Open list of speakers"
msgstr "Redeliste öffnen" msgstr "Redeliste öffnen"
msgid "OpenSlides access data"
msgstr "OpenSlides-Zugangsdaten"
msgid "Origin" msgid "Origin"
msgstr "Herkunft" msgstr "Herkunft"
msgid "Original version" msgid "Original version"
msgstr "Originalfassung" msgstr "Originalfassung"
msgid "Outside"
msgstr "außerhalb"
msgid "PDF" msgid "PDF"
msgstr "PDF" msgstr "PDF"
@ -1036,12 +1161,18 @@ msgstr "Parallel hochladen"
msgid "Parent item" msgid "Parent item"
msgstr "Elternelement" msgstr "Elternelement"
msgid "Participant cannot be found"
msgstr "Teilnehmende wurde nicht gefunden"
msgid "Participant has been imported" msgid "Participant has been imported"
msgstr "Teilnehmer/in wurde importiert" msgstr "Teilnehmer/in wurde importiert"
msgid "Participant number" msgid "Participant number"
msgstr "Teilnehmernummer" msgstr "Teilnehmernummer"
msgid "Participant number is not unique"
msgstr "Teilnehmernummer ist nicht eindeutig"
msgid "Participant will be imported" msgid "Participant will be imported"
msgstr "Teilnehmer/in wird importiert" msgstr "Teilnehmer/in wird importiert"
@ -1070,6 +1201,9 @@ msgstr "Zulassen"
msgid "Personal note" msgid "Personal note"
msgstr "Persönliche Notiz" msgstr "Persönliche Notiz"
msgid "Personal notes"
msgstr "Persönliche Notizen"
msgid "Please enter a valid email address" msgid "Please enter a valid email address"
msgstr "Bitte geben Sie einen neuen Namen ein für" msgstr "Bitte geben Sie einen neuen Namen ein für"
@ -1094,6 +1228,9 @@ msgstr "Präfix"
msgid "Prefix for the identifier for amendments" msgid "Prefix for the identifier for amendments"
msgstr "Präfix für den Bezeichner von Änderungsanträgen" msgstr "Präfix für den Bezeichner von Änderungsanträgen"
msgid "Presence"
msgstr "Anwesenheit"
msgid "Present" msgid "Present"
msgstr "Anwesend" msgstr "Anwesend"
@ -1103,6 +1240,9 @@ msgstr "Präsentations- und Versammlungssystem"
msgid "Preview" msgid "Preview"
msgstr "Vorschau" msgstr "Vorschau"
msgid "Previous"
msgstr "Zurück"
msgid "Print ballot papers" msgid "Print ballot papers"
msgstr "Stimmzettel drucken" msgstr "Stimmzettel drucken"
@ -1115,6 +1255,15 @@ msgstr "Datenschutzerklärung"
msgid "Project" msgid "Project"
msgstr "Projizieren" msgstr "Projizieren"
msgid "Project motion {{ projectorElementBuildDescriptor.getTitle() }}?"
msgstr "Antrag {{ projectorElementBuildDescriptor.getTitle() }} projizieren?"
msgid "Project now"
msgstr "Jetzt projizieren"
msgid "Project {{ projectorElementBuildDescriptor.getTitle() }}?"
msgstr "{{ projectorElementBuildDescriptor.getTitle() }} projizieren?"
msgid "Projector" msgid "Projector"
msgstr "Projektor" msgstr "Projektor"
@ -1142,6 +1291,9 @@ msgstr "Öffentlicher Eintrag"
msgid "Put all candidates on the list of speakers" msgid "Put all candidates on the list of speakers"
msgstr "Alle Kandidaten auf die Redeliste setzen" msgstr "Alle Kandidaten auf die Redeliste setzen"
msgid "Queue"
msgstr "Warteliste"
msgid "Reason" msgid "Reason"
msgstr "Begründung" msgstr "Begründung"
@ -1216,6 +1368,9 @@ msgstr "Empfehlung zurücksetzen"
msgid "Reset state" msgid "Reset state"
msgstr "Status zurücksetzen" msgstr "Status zurücksetzen"
msgid "Resolution and size"
msgstr "Auflösung und Größe"
msgid "Right" msgid "Right"
msgstr "Rechts" msgstr "Rechts"
@ -1225,6 +1380,12 @@ msgstr "Römisch"
msgid "Save" msgid "Save"
msgstr "Speichern" msgstr "Speichern"
msgid "Scan this QR code to connect to WLAN."
msgstr "QR-Code scannen um sich mit dem WLAN zu verbinden."
msgid "Scan this QR code to open URL."
msgstr "QR-Code scannen um die URL zu öffnen."
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
@ -1309,6 +1470,9 @@ msgstr "Alle anzeigen"
msgid "Show amendments together with motions" msgid "Show amendments together with motions"
msgstr "Änderungsanträge zusätzlich in der Hauptantragsübersicht anzeigen" msgstr "Änderungsanträge zusätzlich in der Hauptantragsübersicht anzeigen"
msgid "Show clock"
msgstr "Uhr anzeigen"
msgid "Show correct entries" msgid "Show correct entries"
msgstr "Korrekte Einträge anzeigen" msgstr "Korrekte Einträge anzeigen"
@ -1324,9 +1488,6 @@ msgstr "Nur fehlerhafte Einträge anzeigen"
msgid "Show logo on projector" msgid "Show logo on projector"
msgstr "Logo auf dem Projektor anzeigen" msgstr "Logo auf dem Projektor anzeigen"
msgid "Show motion log"
msgstr "Antragsverlauf anzeigen"
msgid "Show orange countdown in the last x seconds of speaking time" msgid "Show orange countdown in the last x seconds of speaking time"
msgstr "Countdown in den letzten x Sekunden der Redezeit orange darstellen" msgstr "Countdown in den letzten x Sekunden der Redezeit orange darstellen"
@ -1349,8 +1510,8 @@ msgstr "Einfacher Arbeitsablauf"
msgid "Simple majority" msgid "Simple majority"
msgstr "Einfache Mehrheit" msgstr "Einfache Mehrheit"
msgid "Slide options" msgid "Slides"
msgstr "Folienoptionen" msgstr "Folien"
msgid "Sort" msgid "Sort"
msgstr "Sortieren" msgstr "Sortieren"
@ -1358,6 +1519,9 @@ msgstr "Sortieren"
msgid "Sort ..." msgid "Sort ..."
msgstr "Sortieren ..." msgstr "Sortieren ..."
msgid "Sort agenda"
msgstr "Tagesordnung sortieren"
msgid "Sort categories by" msgid "Sort categories by"
msgstr "Sachgebiete sortieren nach" msgstr "Sachgebiete sortieren nach"
@ -1437,6 +1601,9 @@ msgstr "System"
msgid "System URL" msgid "System URL"
msgstr "System-URL" msgstr "System-URL"
msgid "Table of contents"
msgstr "Inhaltsverzeichnis"
msgid "Tags" msgid "Tags"
msgstr "Schlagwörter" msgstr "Schlagwörter"
@ -1626,6 +1793,9 @@ msgstr "Sichtbarkeit"
msgid "Visible" msgid "Visible"
msgstr "Sichtbar" msgstr "Sichtbar"
msgid "Vote"
msgstr "Abstimmung"
msgid "Vote created" msgid "Vote created"
msgstr "Abstimmung erstellt" msgstr "Abstimmung erstellt"
@ -1647,6 +1817,9 @@ msgstr "Abstimmungsergebnis"
msgid "WEP" msgid "WEP"
msgstr "WEP" msgstr "WEP"
msgid "WLAN access data"
msgstr "WLAN-Zugangsdaten"
msgid "WLAN encryption" msgid "WLAN encryption"
msgstr "WLAN-Verschlüsselung" msgstr "WLAN-Verschlüsselung"
@ -1755,6 +1928,9 @@ msgstr "vertagt"
msgid "and" msgid "and"
msgstr "und" msgstr "und"
msgid "ballot-paper"
msgstr "stimmzettel"
msgid "by" msgid "by"
msgstr "von" msgstr "von"
@ -1773,6 +1949,9 @@ msgstr "Fehler"
msgid "inline" msgid "inline"
msgstr "innerhalb" msgstr "innerhalb"
msgid "is now"
msgstr "ist jetzt"
msgid "majority" msgid "majority"
msgstr "Mehrheit" msgstr "Mehrheit"
@ -1794,6 +1973,9 @@ msgstr "nicht befasst"
msgid "not decided" msgid "not decided"
msgstr "nicht entschieden" msgstr "nicht entschieden"
msgid "not present"
msgstr "abwesend"
msgid "not reached." msgid "not reached."
msgstr "nicht erreicht." msgstr "nicht erreicht."

View File

@ -19,6 +19,9 @@ msgstr ""
msgid "About me" msgid "About me"
msgstr "" msgstr ""
msgid "Abstain"
msgstr ""
msgid "Accept" msgid "Accept"
msgstr "" msgstr ""
@ -28,6 +31,12 @@ msgstr ""
msgid "Accepted" msgid "Accepted"
msgstr "" msgstr ""
msgid "Access data (PDF)"
msgstr ""
msgid "Access-data"
msgstr ""
msgid "Activate amendments" msgid "Activate amendments"
msgstr "" msgstr ""
@ -164,6 +173,12 @@ msgstr ""
msgid "Called with" msgid "Called with"
msgstr "" msgstr ""
msgid "Can change its own password"
msgstr ""
msgid "Can create amendments"
msgstr ""
msgid "Can create motions" msgid "Can create motions"
msgstr "" msgstr ""
@ -188,6 +203,9 @@ msgstr ""
msgid "Can manage logos and fonts" msgid "Can manage logos and fonts"
msgstr "" msgstr ""
msgid "Can manage motion metadata"
msgstr ""
msgid "Can manage motions" msgid "Can manage motions"
msgstr "" msgstr ""
@ -275,6 +293,9 @@ msgstr ""
msgid "Change password for" msgid "Change password for"
msgstr "" msgstr ""
msgid "Change presence"
msgstr ""
msgid "Change recommendation" msgid "Change recommendation"
msgstr "" msgstr ""
@ -287,6 +308,9 @@ msgstr ""
msgid "Changed version" msgid "Changed version"
msgstr "" msgstr ""
msgid "Check in or check out participants based on their participant numbers:"
msgstr ""
msgid "Choose 0 to disable the supporting system." msgid "Choose 0 to disable the supporting system."
msgstr "" msgstr ""
@ -329,6 +353,9 @@ msgstr ""
msgid "Confirm new password" msgid "Confirm new password"
msgstr "" msgstr ""
msgid "Content"
msgstr ""
msgid "Copy and paste your participant names in this textbox." msgid "Copy and paste your participant names in this textbox."
msgstr "" msgstr ""
@ -341,12 +368,24 @@ msgstr ""
msgid "Create" msgid "Create"
msgstr "" msgstr ""
msgid "Create final print template"
msgstr ""
msgid "Create new category" msgid "Create new category"
msgstr "" msgstr ""
msgid "Current"
msgstr ""
msgid "Current browser language" msgid "Current browser language"
msgstr "" msgstr ""
msgid "Current list of speakers overlay"
msgstr ""
msgid "Current list of speakers slide"
msgstr ""
msgid "Custom number of ballot papers" msgid "Custom number of ballot papers"
msgstr "" msgstr ""
@ -397,12 +436,18 @@ msgstr ""
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
msgid "Delete final print template"
msgstr ""
msgid "Delete whole history" msgid "Delete whole history"
msgstr "" msgstr ""
msgid "Deletion" msgid "Deletion"
msgstr "" msgstr ""
msgid "Description"
msgstr ""
msgid "Deselect all" msgid "Deselect all"
msgstr "" msgstr ""
@ -438,12 +483,20 @@ msgstr ""
msgid "Do you want to delete this file?" msgid "Do you want to delete this file?"
msgstr "" msgstr ""
msgid "Does not have notes"
msgstr ""
msgid "Done" msgid "Done"
msgstr "" msgstr ""
msgid "Download CSV example file" msgid "Download CSV example file"
msgstr "" msgstr ""
msgid ""
"Drag and drop items to change the order of the agenda. Your modification "
"will be saved immediately."
msgstr ""
msgid "Drop files into this area OR select files" msgid "Drop files into this area OR select files"
msgstr "" msgstr ""
@ -459,6 +512,9 @@ msgstr ""
msgid "Edit comment field:" msgid "Edit comment field:"
msgstr "" msgstr ""
msgid "Edit countdown"
msgstr ""
msgid "Edit details" msgid "Edit details"
msgstr "" msgstr ""
@ -525,6 +581,9 @@ msgstr ""
msgid "Enter duration in seconds. Choose 0 to disable warning color." msgid "Enter duration in seconds. Choose 0 to disable warning color."
msgstr "" msgstr ""
msgid "Enter participant number"
msgstr ""
msgid "Enter your email to send the password reset link" msgid "Enter your email to send the password reset link"
msgstr "" msgstr ""
@ -561,6 +620,18 @@ msgstr ""
msgid "Export as CSV" msgid "Export as CSV"
msgstr "" msgstr ""
msgid "Export as PDF"
msgstr ""
msgid "Export motions"
msgstr ""
msgid "Extension"
msgstr ""
msgid "Favorites"
msgstr ""
msgid "File information" msgid "File information"
msgstr "" msgstr ""
@ -579,6 +650,9 @@ msgstr ""
msgid "Filters" msgid "Filters"
msgstr "" msgstr ""
msgid "Final print template"
msgstr ""
msgid "Final version" msgid "Final version"
msgstr "" msgstr ""
@ -597,12 +671,18 @@ msgstr ""
msgid "Font color of projector headline" msgid "Font color of projector headline"
msgstr "" msgstr ""
msgid "Format"
msgstr ""
msgid "Front page text" msgid "Front page text"
msgstr "" msgstr ""
msgid "Front page title" msgid "Front page title"
msgstr "" msgstr ""
msgid "Gender"
msgstr ""
msgid "General" msgid "General"
msgstr "" msgstr ""
@ -624,6 +704,9 @@ msgstr ""
msgid "Groups with write permissions" msgid "Groups with write permissions"
msgstr "" msgstr ""
msgid "Has notes"
msgstr ""
msgid "Help text for access data and welcome PDF" msgid "Help text for access data and welcome PDF"
msgstr "" msgstr ""
@ -680,6 +763,9 @@ msgstr ""
msgid "Initial password" msgid "Initial password"
msgstr "" msgstr ""
msgid "Inline"
msgstr ""
msgid "Input format: DD.MM.YYYY HH:MM" msgid "Input format: DD.MM.YYYY HH:MM"
msgstr "" msgstr ""
@ -710,6 +796,12 @@ msgstr ""
msgid "Is committee" msgid "Is committee"
msgstr "" msgstr ""
msgid "Is favorite"
msgstr ""
msgid "Is not favorite"
msgstr ""
msgid "Is present" msgid "Is present"
msgstr "" msgstr ""
@ -743,6 +835,12 @@ msgstr ""
msgid "Line numbering" msgid "Line numbering"
msgstr "" msgstr ""
msgid "List of participants"
msgstr ""
msgid "List of participants (PDF)"
msgstr ""
msgid "List of speakers" msgid "List of speakers"
msgstr "" msgstr ""
@ -761,6 +859,15 @@ msgstr ""
msgid "Mark speaker" msgid "Mark speaker"
msgstr "" msgstr ""
msgid "Message"
msgstr ""
msgid "Messages"
msgstr ""
msgid "Meta information"
msgstr ""
msgid "Motion" msgid "Motion"
msgstr "" msgstr ""
@ -770,15 +877,15 @@ msgstr ""
msgid "Motion blocks" msgid "Motion blocks"
msgstr "" msgstr ""
msgid "Motion created"
msgstr ""
msgid "Motion deleted" msgid "Motion deleted"
msgstr "" msgstr ""
msgid "Motion has been imported" msgid "Motion has been imported"
msgstr "" msgstr ""
msgid "Motion log"
msgstr ""
msgid "Motion preamble" msgid "Motion preamble"
msgstr "" msgstr ""
@ -827,6 +934,9 @@ msgstr ""
msgid "New comment field" msgid "New comment field"
msgstr "" msgstr ""
msgid "New countdown"
msgstr ""
msgid "New file name" msgid "New file name"
msgstr "" msgstr ""
@ -860,6 +970,9 @@ msgstr ""
msgid "Next" msgid "Next"
msgstr "" msgstr ""
msgid "No"
msgstr ""
msgid "No change recommendations yet" msgid "No change recommendations yet"
msgstr "" msgstr ""
@ -872,6 +985,9 @@ msgstr ""
msgid "No concernment" msgid "No concernment"
msgstr "" msgstr ""
msgid "No countdowns"
msgstr ""
msgid "No decision" msgid "No decision"
msgstr "" msgstr ""
@ -955,12 +1071,18 @@ msgstr ""
msgid "Open list of speakers" msgid "Open list of speakers"
msgstr "" msgstr ""
msgid "OpenSlides access data"
msgstr ""
msgid "Origin" msgid "Origin"
msgstr "" msgstr ""
msgid "Original version" msgid "Original version"
msgstr "" msgstr ""
msgid "Outside"
msgstr ""
msgid "PDF" msgid "PDF"
msgstr "" msgstr ""
@ -991,12 +1113,18 @@ msgstr ""
msgid "Parent item" msgid "Parent item"
msgstr "" msgstr ""
msgid "Participant cannot be found"
msgstr ""
msgid "Participant has been imported" msgid "Participant has been imported"
msgstr "" msgstr ""
msgid "Participant number" msgid "Participant number"
msgstr "" msgstr ""
msgid "Participant number is not unique"
msgstr ""
msgid "Participant will be imported" msgid "Participant will be imported"
msgstr "" msgstr ""
@ -1024,6 +1152,9 @@ msgstr ""
msgid "Personal note" msgid "Personal note"
msgstr "" msgstr ""
msgid "Personal notes"
msgstr ""
msgid "Please enter a valid email address" msgid "Please enter a valid email address"
msgstr "" msgstr ""
@ -1048,6 +1179,9 @@ msgstr ""
msgid "Prefix for the identifier for amendments" msgid "Prefix for the identifier for amendments"
msgstr "" msgstr ""
msgid "Presence"
msgstr ""
msgid "Present" msgid "Present"
msgstr "" msgstr ""
@ -1057,6 +1191,9 @@ msgstr ""
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
msgid "Previous"
msgstr ""
msgid "Print ballot papers" msgid "Print ballot papers"
msgstr "" msgstr ""
@ -1069,6 +1206,15 @@ msgstr ""
msgid "Project" msgid "Project"
msgstr "" msgstr ""
msgid "Project motion {{ projectorElementBuildDescriptor.getTitle() }}?"
msgstr ""
msgid "Project now"
msgstr ""
msgid "Project {{ projectorElementBuildDescriptor.getTitle() }}?"
msgstr ""
msgid "Projector" msgid "Projector"
msgstr "" msgstr ""
@ -1096,6 +1242,9 @@ msgstr ""
msgid "Put all candidates on the list of speakers" msgid "Put all candidates on the list of speakers"
msgstr "" msgstr ""
msgid "Queue"
msgstr ""
msgid "Reason" msgid "Reason"
msgstr "" msgstr ""
@ -1166,6 +1315,9 @@ msgstr ""
msgid "Reset state" msgid "Reset state"
msgstr "" msgstr ""
msgid "Resolution and size"
msgstr ""
msgid "Right" msgid "Right"
msgstr "" msgstr ""
@ -1175,6 +1327,12 @@ msgstr ""
msgid "Save" msgid "Save"
msgstr "" msgstr ""
msgid "Scan this QR code to connect to WLAN."
msgstr ""
msgid "Scan this QR code to open URL."
msgstr ""
msgid "Search" msgid "Search"
msgstr "" msgstr ""
@ -1259,6 +1417,9 @@ msgstr ""
msgid "Show amendments together with motions" msgid "Show amendments together with motions"
msgstr "" msgstr ""
msgid "Show clock"
msgstr ""
msgid "Show correct entries" msgid "Show correct entries"
msgstr "" msgstr ""
@ -1274,9 +1435,6 @@ msgstr ""
msgid "Show logo on projector" msgid "Show logo on projector"
msgstr "" msgstr ""
msgid "Show motion log"
msgstr ""
msgid "Show orange countdown in the last x seconds of speaking time" msgid "Show orange countdown in the last x seconds of speaking time"
msgstr "" msgstr ""
@ -1298,7 +1456,7 @@ msgstr ""
msgid "Simple majority" msgid "Simple majority"
msgstr "" msgstr ""
msgid "Slide options" msgid "Slides"
msgstr "" msgstr ""
msgid "Sort" msgid "Sort"
@ -1307,6 +1465,9 @@ msgstr ""
msgid "Sort ..." msgid "Sort ..."
msgstr "" msgstr ""
msgid "Sort agenda"
msgstr ""
msgid "Sort categories by" msgid "Sort categories by"
msgstr "" msgstr ""
@ -1385,6 +1546,9 @@ msgstr ""
msgid "System URL" msgid "System URL"
msgstr "" msgstr ""
msgid "Table of contents"
msgstr ""
msgid "Tags" msgid "Tags"
msgstr "" msgstr ""
@ -1548,6 +1712,9 @@ msgstr ""
msgid "Visible" msgid "Visible"
msgstr "" msgstr ""
msgid "Vote"
msgstr ""
msgid "Vote created" msgid "Vote created"
msgstr "" msgstr ""
@ -1569,6 +1736,9 @@ msgstr ""
msgid "WEP" msgid "WEP"
msgstr "" msgstr ""
msgid "WLAN access data"
msgstr ""
msgid "WLAN encryption" msgid "WLAN encryption"
msgstr "" msgstr ""
@ -1668,6 +1838,9 @@ msgstr ""
msgid "and" msgid "and"
msgstr "" msgstr ""
msgid "ballot-paper"
msgstr ""
msgid "by" msgid "by"
msgstr "" msgstr ""
@ -1686,6 +1859,9 @@ msgstr ""
msgid "inline" msgid "inline"
msgstr "" msgstr ""
msgid "is now"
msgstr ""
msgid "majority" msgid "majority"
msgstr "" msgstr ""
@ -1707,6 +1883,9 @@ msgstr ""
msgid "not decided" msgid "not decided"
msgstr "" msgstr ""
msgid "not present"
msgstr ""
msgid "not reached." msgid "not reached."
msgstr "" msgstr ""