From b329115007cdfb1a0607751275c04b677b675b3d Mon Sep 17 00:00:00 2001 From: Oskar Hahn Date: Sat, 12 Jan 2019 23:01:42 +0100 Subject: [PATCH] use f-string syntax for strings --- make/commands.py | 4 +- openslides/__main__.py | 7 +- openslides/agenda/models.py | 26 +- openslides/agenda/projector.py | 10 +- openslides/agenda/views.py | 101 +- openslides/assignments/models.py | 20 +- openslides/assignments/serializers.py | 13 +- openslides/assignments/views.py | 61 +- openslides/core/config.py | 52 +- .../core/management/commands/backupdb.py | 2 +- .../core/management/commands/changeconfig.py | 4 +- .../migrations/0008_changed_logo_fields.py | 4 +- openslides/core/models.py | 4 +- openslides/core/projector.py | 4 +- openslides/core/views.py | 62 +- openslides/locale/README.txt | 35 - openslides/locale/angular-gettext/cs.po | 4414 ---------------- openslides/locale/angular-gettext/de.po | 4414 ---------------- openslides/locale/angular-gettext/es.po | 4409 ---------------- openslides/locale/angular-gettext/fr.po | 4409 ---------------- openslides/locale/angular-gettext/pt.po | 4409 ---------------- openslides/locale/angular-gettext/ru.po | 4409 ---------------- .../locale/angular-gettext/template-en.pot | 4465 ----------------- openslides/locale/cs/LC_MESSAGES/django.mo | Bin 13814 -> 0 bytes openslides/locale/cs/LC_MESSAGES/django.po | 677 --- openslides/locale/de/LC_MESSAGES/django.mo | Bin 15545 -> 0 bytes openslides/locale/de/LC_MESSAGES/django.po | 673 --- openslides/locale/en/LC_MESSAGES/django.po | 665 --- openslides/locale/es/LC_MESSAGES/django.mo | Bin 12590 -> 0 bytes openslides/locale/es/LC_MESSAGES/django.po | 673 --- openslides/locale/fr/LC_MESSAGES/django.mo | Bin 13153 -> 0 bytes openslides/locale/fr/LC_MESSAGES/django.po | 673 --- openslides/locale/pt/LC_MESSAGES/django.mo | Bin 12491 -> 0 bytes openslides/locale/pt/LC_MESSAGES/django.po | 672 --- openslides/locale/ru/LC_MESSAGES/django.mo | Bin 17547 -> 0 bytes openslides/locale/ru/LC_MESSAGES/django.po | 672 --- openslides/mediafiles/models.py | 3 +- openslides/motions/models.py | 79 +- openslides/motions/serializers.py | 26 +- openslides/motions/signals.py | 29 +- openslides/motions/views.py | 223 +- openslides/poll/models.py | 18 +- openslides/poll/serializers.py | 4 +- openslides/users/models.py | 4 +- openslides/users/serializers.py | 17 +- openslides/users/views.py | 56 +- openslides/utils/arguments.py | 2 +- openslides/utils/auth.py | 11 +- openslides/utils/cache.py | 14 +- openslides/utils/cache_providers.py | 10 +- openslides/utils/consumers.py | 2 +- openslides/utils/main.py | 8 +- openslides/utils/utils.py | 6 +- .../commands/create-example-data.py | 44 +- tests/integration/agenda/test_models.py | 2 +- tests/integration/agenda/test_viewset.py | 11 +- tests/integration/assignments/test_viewset.py | 2 +- tests/integration/core/test_viewset.py | 4 +- tests/integration/helpers.py | 14 +- tests/integration/mediafiles/test_viewset.py | 4 +- tests/integration/motions/test_viewset.py | 14 +- tests/integration/topics/test_viewset.py | 2 +- tests/integration/users/test_viewset.py | 4 +- tests/integration/utils/test_consumers.py | 6 +- tests/unit/utils/cache_provider.py | 2 +- 65 files changed, 370 insertions(+), 36294 deletions(-) delete mode 100644 openslides/locale/README.txt delete mode 100644 openslides/locale/angular-gettext/cs.po delete mode 100644 openslides/locale/angular-gettext/de.po delete mode 100644 openslides/locale/angular-gettext/es.po delete mode 100644 openslides/locale/angular-gettext/fr.po delete mode 100644 openslides/locale/angular-gettext/pt.po delete mode 100644 openslides/locale/angular-gettext/ru.po delete mode 100644 openslides/locale/angular-gettext/template-en.pot delete mode 100644 openslides/locale/cs/LC_MESSAGES/django.mo delete mode 100644 openslides/locale/cs/LC_MESSAGES/django.po delete mode 100644 openslides/locale/de/LC_MESSAGES/django.mo delete mode 100644 openslides/locale/de/LC_MESSAGES/django.po delete mode 100644 openslides/locale/en/LC_MESSAGES/django.po delete mode 100644 openslides/locale/es/LC_MESSAGES/django.mo delete mode 100644 openslides/locale/es/LC_MESSAGES/django.po delete mode 100644 openslides/locale/fr/LC_MESSAGES/django.mo delete mode 100644 openslides/locale/fr/LC_MESSAGES/django.po delete mode 100644 openslides/locale/pt/LC_MESSAGES/django.mo delete mode 100644 openslides/locale/pt/LC_MESSAGES/django.po delete mode 100644 openslides/locale/ru/LC_MESSAGES/django.mo delete mode 100644 openslides/locale/ru/LC_MESSAGES/django.po diff --git a/make/commands.py b/make/commands.py index 880f7c52a..698676f1b 100644 --- a/make/commands.py +++ b/make/commands.py @@ -26,7 +26,7 @@ def travis(args=None): with open(".travis.yml") as f: travis = yaml.load(f) for line in travis["script"]: - print("Run: {}".format(line)) + print(f"Run: {line}") return_code = call(line) return_codes.append(return_code) if return_code: @@ -62,7 +62,7 @@ def min_requirements(args=None): if req.specifier: for spec, version in req.specs: if spec == ">=": - yield "{}=={}".format(req.name, version) + yield f"{req.name}=={version}" print(" ".join(get_lowest_versions(args.requirements))) diff --git a/openslides/__main__.py b/openslides/__main__.py index 9cda91fe5..b7a78f21e 100644 --- a/openslides/__main__.py +++ b/openslides/__main__.py @@ -42,7 +42,8 @@ def main(): else: # Check for unknown_args. if unknown_args: - parser.error("Unknown arguments {}".format(" ".join(unknown_args))) + joined_unknown_args = " ".join(unknown_args) + parser.error(f"Unknown arguments {joined_unknown_args}") # Save arguments, if one wants to access them later. arguments.set_arguments(known_args) @@ -239,7 +240,7 @@ def start(args): # Use flag --insecure to serve static files even if DEBUG is False. call_command( "runserver", - "{}:{}".format(args.host, args.port), + f"{args.host}:{args.port}", noreload=False, # Means True, see above. insecure=True, ) @@ -264,7 +265,7 @@ def createsettings(args): } settings_path = write_settings(settings_dir, args.settings_filename, **context) - print("Settings created at %s" % settings_path) + print(f"Settings created at {settings_path}") if __name__ == "__main__": diff --git a/openslides/agenda/models.py b/openslides/agenda/models.py index 89c78cce2..42b655eeb 100644 --- a/openslides/agenda/models.py +++ b/openslides/agenda/models.py @@ -7,7 +7,6 @@ from django.contrib.contenttypes.fields import GenericForeignKey from django.contrib.contenttypes.models import ContentType from django.db import models, transaction from django.utils import timezone -from django.utils.translation import ugettext as _, ugettext_lazy from openslides.core.config import config from openslides.core.models import Countdown @@ -135,15 +134,13 @@ class ItemManager(models.Manager): for item_id, parent_id, weight in walk_items(tree): # Check that the item is only once in the tree to prevent invalid trees if item_id in touched_items: - raise ValueError( - "Item {} is more then once in the tree.".format(item_id) - ) + raise ValueError(f"Item {item_id} is more then once in the tree.") touched_items.add(item_id) try: db_item = db_items[item_id] except KeyError: - raise ValueError("Item {} is not in the database.".format(item_id)) + raise ValueError(f"Item {item_id} is not in the database.") # Check if the item has changed and update it # Note: Do not use Item.objects.update, so that the items are sent @@ -171,10 +168,7 @@ class ItemManager(models.Manager): item_number = ".".join((number, item_number)) # Add prefix. if config["agenda_number_prefix"]: - item_number_tmp = "%s %s" % ( - config["agenda_number_prefix"], - item_number, - ) + item_number_tmp = f"{config['agenda_number_prefix']} {item_number}" else: item_number_tmp = item_number # Save the new value and go down the tree. @@ -205,9 +199,9 @@ class Item(RESTModelMixin, models.Model): HIDDEN_ITEM = 3 ITEM_TYPE = ( - (AGENDA_ITEM, ugettext_lazy("Agenda item")), - (INTERNAL_ITEM, ugettext_lazy("Internal item")), - (HIDDEN_ITEM, ugettext_lazy("Hidden item")), + (AGENDA_ITEM, "Agenda item"), + (INTERNAL_ITEM, "Internal item"), + (HIDDEN_ITEM, "Hidden item"), ) item_number = models.CharField(blank=True, max_length=255) @@ -362,13 +356,9 @@ class SpeakerManager(models.Manager): speakers). Cares also initial sorting of the coming speakers. """ if self.filter(user=user, item=item, begin_time=None).exists(): - raise OpenSlidesError( - _("{user} is already on the list of speakers.").format(user=user) - ) + raise OpenSlidesError(f"{user} is already on the list of speakers.") if isinstance(user, AnonymousUser): - raise OpenSlidesError( - _("An anonymous user can not be on lists of speakers.") - ) + raise OpenSlidesError("An anonymous user can not be on lists of speakers.") weight = ( self.filter(item=item).aggregate(models.Max("weight"))["weight__max"] or 0 ) diff --git a/openslides/agenda/projector.py b/openslides/agenda/projector.py index 83ef74f29..547dde6c8 100644 --- a/openslides/agenda/projector.py +++ b/openslides/agenda/projector.py @@ -51,16 +51,16 @@ def items(config: Dict[str, Any], all_data: AllData) -> Dict[str, Any]: show_tree = config.get("tree") or False if show_tree: - items = get_tree(all_data, root_item_id or 0) + agenda_items = get_tree(all_data, root_item_id or 0) else: - items = [] + agenda_items = [] for item in sorted( all_data["agenda/item"].values(), key=lambda item: item["weight"] ): if item["parent_id"] == root_item_id and item["type"] == 1: - items.append(item["title"]) + agenda_items.append(item["title"]) - return {"items": items} + return {"items": agenda_items} def list_of_speakers(config: Dict[str, Any], all_data: AllData) -> Dict[str, Any]: @@ -76,7 +76,7 @@ def list_of_speakers(config: Dict[str, Any], all_data: AllData) -> Dict[str, Any try: item = all_data["agenda/item"][item_id] except KeyError: - return {"error": "Item {} does not exist".format(item_id)} + return {"error": f"Item {item_id} does not exist"} user_ids = [] for speaker in item["speakers"]: diff --git a/openslides/agenda/views.py b/openslides/agenda/views.py index 93b1028f2..308b1decd 100644 --- a/openslides/agenda/views.py +++ b/openslides/agenda/views.py @@ -1,7 +1,6 @@ import jsonschema from django.contrib.auth import get_user_model from django.db import transaction -from django.utils.translation import ugettext as _ from openslides.core.config import config from openslides.utils.autoupdate import inform_changed_data @@ -119,9 +118,7 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV if not has_perm(self.request.user, "agenda.can_be_speaker"): self.permission_denied(request) if item.speaker_list_closed: - raise ValidationError( - {"detail": _("The list of speakers is closed.")} - ) + raise ValidationError({"detail": "The list of speakers is closed."}) user = self.request.user else: # Add someone else. @@ -132,7 +129,7 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV try: user = get_user_model().objects.get(pk=int(user_id)) except (ValueError, get_user_model().DoesNotExist): - raise ValidationError({"detail": _("User does not exist.")}) + raise ValidationError({"detail": "User does not exist."}) # Try to add the user. This ensurse that a user is not twice in the # list of coming speakers. @@ -140,9 +137,6 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV Speaker.objects.add(user, item) except OpenSlidesError as e: raise ValidationError({"detail": str(e)}) - message = ( - _("User %s was successfully added to the list of speakers.") % user - ) # Send new speaker via autoupdate because users without permission # to see users may not have it but can get it now. @@ -159,11 +153,11 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV try: user = get_user_model().objects.get(pk=int(user_id)) except (ValueError, get_user_model().DoesNotExist): - raise ValidationError({"detail": _("User does not exist.")}) + raise ValidationError({"detail": "User does not exist."}) marked = request.data.get("marked") if not isinstance(marked, bool): - raise ValidationError({"detail": _("Marked has to be a bool.")}) + raise ValidationError({"detail": "Marked has to be a bool."}) queryset = Speaker.objects.filter(item=item, user=user) try: @@ -173,15 +167,11 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV speaker = queryset.get() except Speaker.DoesNotExist: raise ValidationError( - {"detail": _("The user is not in the list of speakers.")} + {"detail": "The user is not in the list of speakers."} ) else: speaker.marked = marked speaker.save() - if speaker.marked: - message = _("You are successfully marked the speaker.") - else: - message = _("You are successfully unmarked the speaker.") else: # request.method == 'DELETE' @@ -200,20 +190,17 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV speaker = queryset.get() except Speaker.DoesNotExist: raise ValidationError( - {"detail": _("You are not on the list of speakers.")} + {"detail": "You are not on the list of speakers."} ) else: speaker.delete() - message = _( - "You are successfully removed from the list of speakers." - ) else: # Remove someone else. if not has_perm( self.request.user, "agenda.can_manage_list_of_speakers" ): self.permission_denied(request) - if type(speaker_ids) is int: + if isinstance(speaker_ids, int): speaker_ids = [speaker_ids] deleted_speaker_count = 0 for speaker_id in speaker_ids: @@ -223,29 +210,12 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV pass else: speaker.delete(skip_autoupdate=True) - deleted_speaker_name = speaker deleted_speaker_count += 1 # send autoupdate if speakers are deleted - if deleted_speaker_count > 0: + if deleted_speaker_count: inform_changed_data(item) - if deleted_speaker_count > 1: - message = ( - str(deleted_speaker_count) - + " " - + _("speakers have been removed from the list of speakers.") - ) - elif deleted_speaker_count == 1: - message = ( - _("User %s has been removed from the list of speakers.") - % deleted_speaker_name - ) - else: - message = _( - "No speakers have been removed from the list of speakers." - ) - # Initiate response. - return Response({"detail": message}) + return Response() @detail_route(methods=["PUT", "DELETE"]) def speak(self, request, pk=None): @@ -263,16 +233,14 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV if speaker_id is None: speaker = item.get_next_speaker() if speaker is None: - raise ValidationError( - {"detail": _("The list of speakers is empty.")} - ) + raise ValidationError({"detail": "The list of speakers is empty."}) else: try: speaker = Speaker.objects.get(pk=int(speaker_id)) except (ValueError, Speaker.DoesNotExist): - raise ValidationError({"detail": _("Speaker does not exist.")}) + raise ValidationError({"detail": "Speaker does not exist."}) speaker.begin_speech() - message = _("User is now speaking.") + message = "User is now speaking." else: # request.method == 'DELETE' @@ -288,14 +256,11 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV except Speaker.DoesNotExist: raise ValidationError( { - "detail": _( - "There is no one speaking at the moment according to %(item)s." - ) - % {"item": item} + "detail": f"There is no one speaking at the moment according to {item}." } ) current_speaker.end_speech() - message = _("The speech is finished now.") + message = "The speech is finished now." # Initiate response. return Response({"detail": message}) @@ -313,7 +278,7 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV # Check data speaker_ids = request.data.get("speakers") if not isinstance(speaker_ids, list): - raise ValidationError({"detail": _("Invalid data.")}) + raise ValidationError({"detail": "Invalid data."}) # Get all speakers speakers = {} @@ -324,7 +289,7 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV valid_speakers = [] for speaker_id in speaker_ids: if not isinstance(speaker_id, int) or speakers.get(speaker_id) is None: - raise ValidationError({"detail": _("Invalid data.")}) + raise ValidationError({"detail": "Invalid data."}) valid_speakers.append(speakers[speaker_id]) weight = 0 with transaction.atomic(): @@ -337,7 +302,7 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV inform_changed_data(item) # Initiate response. - return Response({"detail": _("List of speakers successfully sorted.")}) + return Response({"detail": "List of speakers successfully sorted."}) @list_route(methods=["post"]) def numbering(self, request): @@ -347,11 +312,11 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV """ if not config["agenda_enable_numbering"]: raise ValidationError( - {"detail": _("Numbering of agenda items is deactivated.")} + {"detail": "Numbering of agenda items is deactivated."} ) Item.objects.number_all(numeral_system=config["agenda_numeral_system"]) - return Response({"detail": _("The agenda has been numbered.")}) + return Response({"detail": "The agenda has been numbered."}) @list_route(methods=["post"]) def sort(self, request): @@ -377,15 +342,13 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV if ancestor == item: raise ValidationError( { - "detail": _( - "There must not be a hierarchical loop. Please reload the page." - ) + "detail": "There must not be a hierarchical loop. Please reload the page." } ) ancestor = ancestor.parent inform_changed_data(items) - return Response({"detail": _("The agenda has been sorted.")}) + return Response({"detail": "The agenda has been sorted."}) @list_route(methods=["post"]) @transaction.atomic @@ -429,11 +392,7 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV parent = Item.objects.get(pk=request.data["parent_id"]) except Item.DoesNotExist: raise ValidationError( - { - "detail": "Parent item {} does not exist".format( - request.data["parent_id"] - ) - } + {"detail": f"Parent item {request.data['parent_id']} does not exist"} ) # Collect ancestors @@ -450,9 +409,7 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV if item_id in ancestors: raise ValidationError( { - "detail": "Assigning item {} to one of its children is not possible.".format( - item_id - ) + "detail": f"Assigning item {item_id} to one of its children is not possible." } ) @@ -460,9 +417,7 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV try: items.append(Item.objects.get(pk=item_id)) except Item.DoesNotExist: - raise ValidationError( - {"detail": "Item {} does not exist".format(item_id)} - ) + raise ValidationError({"detail": f"Item {item_id} does not exist"}) # OK, assign new parents. for item in items: @@ -474,10 +429,4 @@ class ItemViewSet(ListModelMixin, RetrieveModelMixin, UpdateModelMixin, GenericV inform_changed_data(items) # Send response. - return Response( - { - "detail": _("{number} items successfully assigned.").format( - number=len(items) - ) - } - ) + return Response({"detail": f"{len(items)} items successfully assigned."}) diff --git a/openslides/assignments/models.py b/openslides/assignments/models.py index 4e2465b25..fbcc8f01e 100644 --- a/openslides/assignments/models.py +++ b/openslides/assignments/models.py @@ -6,7 +6,6 @@ from django.conf import settings from django.contrib.contenttypes.fields import GenericRelation from django.core.validators import MinValueValidator from django.db import models -from django.utils.translation import ugettext as _, ugettext_noop from openslides.agenda.models import Item, Speaker from openslides.core.config import config @@ -57,7 +56,7 @@ class AssignmentRelatedUser(RESTModelMixin, models.Model): unique_together = ("assignment", "user") def __str__(self): - return "%s <-> %s" % (self.assignment, self.user) + return f"{self.assignment} <-> {self.user}" def get_root_rest_element(self): """ @@ -154,7 +153,7 @@ class Assignment(RESTModelMixin, models.Model): ("can_manage", "Can manage elections"), ) ordering = ("title",) - verbose_name = ugettext_noop("Election") + verbose_name = "Election" def __str__(self): return self.title @@ -198,15 +197,13 @@ class Assignment(RESTModelMixin, models.Model): or 0 ) defaults = {"elected": False, "weight": weight + 1} - related_user, __ = self.assignment_related_users.update_or_create( - user=user, defaults=defaults - ) + self.assignment_related_users.update_or_create(user=user, defaults=defaults) def set_elected(self, user): """ Makes user an elected user for this assignment. """ - related_user, __ = self.assignment_related_users.update_or_create( + self.assignment_related_users.update_or_create( user=user, defaults={"elected": True} ) @@ -224,7 +221,7 @@ class Assignment(RESTModelMixin, models.Model): Raises a ValueError if the phase is not valide. """ if phase not in dict(self.PHASES): - raise ValueError("Invalid phase %s" % phase) + raise ValueError(f"Invalid phase {phase}") self.phase = phase @@ -331,7 +328,7 @@ class Assignment(RESTModelMixin, models.Model): Return a title for the agenda with the appended assignment verbose name. Note: It has to be the same return value like in JavaScript. """ - return "%s (%s)" % (self.get_agenda_title(), _(self._meta.verbose_name)) + return f"{self.get_agenda_title()} (self._meta.verbose_name)" @property def agenda_item(self): @@ -426,10 +423,9 @@ class AssignmentPoll( # type: ignore def get_vote_values(self): if self.pollmethod == "yna": return ["Yes", "No", "Abstain"] - elif self.pollmethod == "yn": + if self.pollmethod == "yn": return ["Yes", "No"] - else: - return ["Votes"] + return ["Votes"] def get_ballot(self): return self.assignment.polls.filter(id__lte=self.pk).count() diff --git a/openslides/assignments/serializers.py b/openslides/assignments/serializers.py index 7188062ae..02cd0d945 100644 --- a/openslides/assignments/serializers.py +++ b/openslides/assignments/serializers.py @@ -1,5 +1,4 @@ from django.db import transaction -from django.utils.translation import ugettext as _ from openslides.poll.serializers import default_votes_validator from openslides.utils.rest_api import ( @@ -30,7 +29,7 @@ def posts_validator(data): """ if data["open_posts"] and data["open_posts"] is not None and data["open_posts"] < 1: raise ValidationError( - {"detail": _("Value for {} must be greater than 0").format("open_posts")} + {"detail": "Value for 'open_posts' must be greater than 0"} ) return data @@ -163,22 +162,20 @@ class AssignmentAllPollSerializer(ModelSerializer): if len(votes) != len(options): raise ValidationError( { - "detail": _("You have to submit data for %d candidates.") - % len(options) + "detail": f"You have to submit data for {len(options)} candidates." } ) for index, option in enumerate(options): if len(votes[index]) != len(instance.get_vote_values()): raise ValidationError( { - "detail": _("You have to submit data for %d vote values.") - % len(instance.get_vote_values()) + "detail": f"You have to submit data for {len(instance.get_vote_values())} vote values." } ) - for vote_value, vote_weight in votes[index].items(): + for vote_value, __ in votes[index].items(): if vote_value not in instance.get_vote_values(): raise ValidationError( - {"detail": _("Vote value %s is invalid.") % vote_value} + {"detail": f"Vote value {vote_value} is invalid."} ) instance.set_vote_objects_with_values( option, votes[index], skip_autoupdate=True diff --git a/openslides/assignments/views.py b/openslides/assignments/views.py index 6f07b7f0a..c12b1506f 100644 --- a/openslides/assignments/views.py +++ b/openslides/assignments/views.py @@ -1,6 +1,5 @@ from django.contrib.auth import get_user_model from django.db import transaction -from django.utils.translation import ugettext as _ from openslides.utils.autoupdate import inform_changed_data from openslides.utils.rest_api import ( @@ -75,7 +74,7 @@ class AssignmentViewSet(ModelViewSet): """ assignment = self.get_object() if assignment.is_elected(request.user): - raise ValidationError({"detail": _("You are already elected.")}) + raise ValidationError({"detail": "You are already elected."}) if request.method == "POST": message = self.nominate_self(request, assignment) else: @@ -87,9 +86,7 @@ class AssignmentViewSet(ModelViewSet): if assignment.phase == assignment.PHASE_FINISHED: raise ValidationError( { - "detail": _( - "You can not candidate to this election because it is finished." - ) + "detail": "You can not candidate to this election because it is finished." } ) if assignment.phase == assignment.PHASE_VOTING and not has_perm( @@ -102,16 +99,14 @@ class AssignmentViewSet(ModelViewSet): # Send new candidate via autoupdate because users without permission # to see users may not have it but can get it now. inform_changed_data([request.user]) - return _("You were nominated successfully.") + return "You were nominated successfully." def withdraw_self(self, request, assignment): # Withdraw candidature. if assignment.phase == assignment.PHASE_FINISHED: raise ValidationError( { - "detail": _( - "You can not withdraw your candidature to this election because it is finished." - ) + "detail": "You can not withdraw your candidature to this election because it is finished." } ) if assignment.phase == assignment.PHASE_VOTING and not has_perm( @@ -121,10 +116,10 @@ class AssignmentViewSet(ModelViewSet): self.permission_denied(request) if not assignment.is_candidate(request.user): raise ValidationError( - {"detail": _("You are not a candidate of this election.")} + {"detail": "You are not a candidate of this election."} ) assignment.delete_related_user(request.user) - return _("You have withdrawn your candidature successfully.") + return "You have withdrawn your candidature successfully." def get_user_from_request_data(self, request): """ @@ -133,22 +128,20 @@ class AssignmentViewSet(ModelViewSet): self.mark_elected can play with it. """ if not isinstance(request.data, dict): - detail = _("Invalid data. Expected dictionary, got %s.") % type( - request.data - ) + detail = f"Invalid data. Expected dictionary, got {type(request.data)}." raise ValidationError({"detail": detail}) user_str = request.data.get("user", "") try: user_pk = int(user_str) except ValueError: raise ValidationError( - {"detail": _('Invalid data. Expected something like {"user": }.')} + {"detail": 'Invalid data. Expected something like {"user": }.'} ) try: user = get_user_model().objects.get(pk=user_pk) except get_user_model().DoesNotExist: raise ValidationError( - {"detail": _("Invalid data. User %d does not exist.") % user_pk} + {"detail": f"Invalid data. User {user_pk} does not exist."} ) return user @@ -169,9 +162,9 @@ class AssignmentViewSet(ModelViewSet): def nominate_other(self, request, user, assignment): if assignment.is_elected(user): - raise ValidationError({"detail": _("User %s is already elected.") % user}) + raise ValidationError({"detail": f"User {user} is already elected."}) if assignment.phase == assignment.PHASE_FINISHED: - detail = _( + detail = ( "You can not nominate someone to this election because it is finished." ) raise ValidationError({"detail": detail}) @@ -181,28 +174,26 @@ class AssignmentViewSet(ModelViewSet): # To nominate another user during voting you have to be a manager. self.permission_denied(request) if assignment.is_candidate(user): - raise ValidationError({"detail": _("User %s is already nominated.") % user}) + raise ValidationError({"detail": f"User {user} is already nominated."}) assignment.set_candidate(user) # Send new candidate via autoupdate because users without permission # to see users may not have it but can get it now. inform_changed_data(user) - return _("User %s was nominated successfully.") % user + return f"User {user} was nominated successfully." def delete_other(self, request, user, assignment): # To delete candidature status you have to be a manager. if not has_perm(request.user, "assignments.can_manage"): self.permission_denied(request) if assignment.phase == assignment.PHASE_FINISHED: - detail = _( - "You can not delete someone's candidature to this election because it is finished." - ) + detail = "You can not delete someone's candidature to this election because it is finished." raise ValidationError({"detail": detail}) if not assignment.is_candidate(user) and not assignment.is_elected(user): raise ValidationError( - {"detail": _("User %s has no status in this election.") % user} + {"detail": f"User {user} has no status in this election."} ) assignment.delete_related_user(user) - return _("Candidate %s was withdrawn successfully.") % user + return f"Candidate {user} was withdrawn successfully." @detail_route(methods=["post", "delete"]) def mark_elected(self, request, pk=None): @@ -215,19 +206,17 @@ class AssignmentViewSet(ModelViewSet): if request.method == "POST": if not assignment.is_candidate(user): raise ValidationError( - {"detail": _("User %s is not a candidate of this election.") % user} + {"detail": f"User {user} is not a candidate of this election."} ) assignment.set_elected(user) - message = _("User %s was successfully elected.") % user + message = f"User {user} was successfully elected." else: # request.method == 'DELETE' if not assignment.is_elected(user): - detail = ( - _("User %s is not an elected candidate of this election.") % user - ) + detail = f"User {user} is not an elected candidate of this election." raise ValidationError({"detail": detail}) assignment.set_candidate(user) - message = _("User %s was successfully unelected.") % user + message = f"User {user} was successfully unelected." return Response({"detail": message}) @detail_route(methods=["post"]) @@ -238,12 +227,12 @@ class AssignmentViewSet(ModelViewSet): assignment = self.get_object() if not assignment.candidates.exists(): raise ValidationError( - {"detail": _("Can not create ballot because there are no candidates.")} + {"detail": "Can not create ballot because there are no candidates."} ) with transaction.atomic(): poll = assignment.create_poll() return Response( - {"detail": _("Ballot created successfully."), "createdPollId": poll.pk} + {"detail": "Ballot created successfully.", "createdPollId": poll.pk} ) @detail_route(methods=["post"]) @@ -258,7 +247,7 @@ class AssignmentViewSet(ModelViewSet): # Check data related_user_ids = request.data.get("related_users") if not isinstance(related_user_ids, list): - raise ValidationError({"detail": _("users has to be a list of IDs.")}) + raise ValidationError({"detail": "users has to be a list of IDs."}) # Get all related users from AssignmentRelatedUser. related_users = {} @@ -274,7 +263,7 @@ class AssignmentViewSet(ModelViewSet): not isinstance(related_user_id, int) or related_users.get(related_user_id) is None ): - raise ValidationError({"detail": _("Invalid data.")}) + raise ValidationError({"detail": "Invalid data."}) valid_related_users.append(related_users[related_user_id]) # Sort the related users @@ -289,7 +278,7 @@ class AssignmentViewSet(ModelViewSet): inform_changed_data(assignment) # Initiate response. - return Response({"detail": _("Assignment related users successfully sorted.")}) + return Response({"detail": "Assignment related users successfully sorted."}) class AssignmentPollViewSet(UpdateModelMixin, DestroyModelMixin, GenericViewSet): diff --git a/openslides/core/config.py b/openslides/core/config.py index e7a1950b4..7f4cfbd6d 100644 --- a/openslides/core/config.py +++ b/openslides/core/config.py @@ -3,7 +3,6 @@ from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast from asgiref.sync import async_to_sync from django.apps import apps from django.core.exceptions import ValidationError as DjangoValidationError -from django.utils.translation import ugettext as _ from mypy_extensions import TypedDict from ..utils.cache import element_cache @@ -45,7 +44,7 @@ class ConfigHandler: Returns the value of the config variable. """ if not self.exists(key): - raise ConfigNotFound(_("The config variable {} was not found.").format(key)) + raise ConfigNotFound(f"The config variable {key} was not found.") return async_to_sync(element_cache.get_element_full_data)( self.get_collection_string(), self.get_key_to_id()[key] @@ -95,7 +94,7 @@ class ConfigHandler: try: config_variable = self.config_variables[key] except KeyError: - raise ConfigNotFound(_("The config variable {} was not found.").format(key)) + raise ConfigNotFound(f"The config variable {key} was not found.") # Validate datatype and run validators. expected_type = INPUT_TYPE_MAPPING[config_variable.input_type] @@ -105,8 +104,7 @@ class ConfigHandler: value = expected_type(value) except ValueError: raise ConfigError( - _("Wrong datatype. Expected %(expected_type)s, got %(got_type)s.") - % {"expected_type": expected_type, "got_type": type(value)} + f"Wrong datatype. Expected {expected_type}, got {type(value)}." ) if config_variable.input_type == "choice": @@ -118,44 +116,38 @@ class ConfigHandler: if choices is None or value not in map( lambda choice: choice["value"], choices ): - raise ConfigError(_("Invalid input. Choice does not match.")) + raise ConfigError("Invalid input. Choice does not match.") for validator in config_variable.validators: try: validator(value) - except DjangoValidationError as e: - raise ConfigError(e.messages[0]) + except DjangoValidationError as err: + raise ConfigError(err.messages[0]) if config_variable.input_type == "static": if not isinstance(value, dict): - raise ConfigError(_("This has to be a dict.")) + raise ConfigError("This has to be a dict.") whitelist = ("path", "display_name") for required_entry in whitelist: if required_entry not in value: - raise ConfigError(_("{} has to be given.".format(required_entry))) + raise ConfigError(f"{required_entry} has to be given.") if not isinstance(value[required_entry], str): - raise ConfigError( - _("{} has to be a string.".format(required_entry)) - ) + raise ConfigError(f"{required_entry} has to be a string.") if config_variable.input_type == "translations": if not isinstance(value, list): - raise ConfigError(_("Translations has to be a list.")) + raise ConfigError("Translations has to be a list.") for entry in value: if not isinstance(entry, dict): raise ConfigError( - _("Every value has to be a dict, not {}.".format(type(entry))) + f"Every value has to be a dict, not {type(entry)}." ) whitelist = ("original", "translation") for required_entry in whitelist: if required_entry not in entry: - raise ConfigError( - _("{} has to be given.".format(required_entry)) - ) + raise ConfigError(f"{required_entry} has to be given.") if not isinstance(entry[required_entry], str): - raise ConfigError( - _("{} has to be a string.".format(required_entry)) - ) + raise ConfigError(f"{required_entry} has to be a string.") # Save the new value to the database. db_value = ConfigStore.objects.get(key=key) @@ -189,7 +181,7 @@ class ConfigHandler: intersection = set(item_index.keys()).intersection(self.config_variables.keys()) if intersection: raise ConfigError( - _("Too many values for config variables {} found.").format(intersection) + f"Too many values for config variables {intersection} found." ) self.config_variables.update(item_index) @@ -286,20 +278,16 @@ class ConfigVariable: on_change: OnChangeType = None, ) -> None: if input_type not in INPUT_TYPE_MAPPING: - raise ValueError(_("Invalid value for config attribute input_type.")) + raise ValueError("Invalid value for config attribute input_type.") if input_type == "choice" and choices is None: raise ConfigError( - _( - "Either config attribute 'choices' must not be None or " - "'input_type' must not be 'choice'." - ) + "Either config attribute 'choices' must not be None or " + "'input_type' must not be 'choice'." ) elif input_type != "choice" and choices is not None: raise ConfigError( - _( - "Either config attribute 'choices' must be None or " - "'input_type' must be 'choice'." - ) + "Either config attribute 'choices' must be None or " + "'input_type' must be 'choice'." ) self.name = name self.default_value = default_value @@ -309,7 +297,7 @@ class ConfigVariable: self.choices = choices self.hidden = hidden self.weight = weight - self.group = group or _("General") + self.group = group or "General" self.subgroup = subgroup self.validators = validators or () self.on_change = on_change diff --git a/openslides/core/management/commands/backupdb.py b/openslides/core/management/commands/backupdb.py index d3d821982..3bacba02c 100644 --- a/openslides/core/management/commands/backupdb.py +++ b/openslides/core/management/commands/backupdb.py @@ -41,7 +41,7 @@ class Command(BaseCommand): if database_path: do_backup(database_path, path) self.stdout.write( - "Database %s successfully stored at %s." % (database_path, path) + f"Database {database_path} successfully stored at {path}." ) else: raise CommandError( diff --git a/openslides/core/management/commands/changeconfig.py b/openslides/core/management/commands/changeconfig.py index 9a8f1ce07..fb4b0a713 100644 --- a/openslides/core/management/commands/changeconfig.py +++ b/openslides/core/management/commands/changeconfig.py @@ -28,8 +28,6 @@ class Command(BaseCommand): raise CommandError(str(e)) self.stdout.write( self.style.SUCCESS( - "Config {key} successfully changed to {value}.".format( - key=options["key"], value=config[options["key"]] - ) + f"Config {options['key']} successfully changed to {config[options['key']]}." ) ) diff --git a/openslides/core/migrations/0008_changed_logo_fields.py b/openslides/core/migrations/0008_changed_logo_fields.py index 82b5db719..9b478ceea 100644 --- a/openslides/core/migrations/0008_changed_logo_fields.py +++ b/openslides/core/migrations/0008_changed_logo_fields.py @@ -32,12 +32,12 @@ def move_old_logo_settings(apps, schema_editor): for place in ("header", "footer"): try: - logo_pdf = ConfigStore.objects.get(key="logo_pdf_{}".format(place)) + logo_pdf = ConfigStore.objects.get(key=f"logo_pdf_{place}") except ConfigStore.DoesNotExist: continue # The old entry is not in the database, nothing to change here # The key of the new entry - new_value_key = "logo_pdf_{}_L".format(place) + new_value_key = f"logo_pdf_{place}_L" try: logo_pdf_L = ConfigStore.objects.get(key=new_value_key) except ConfigStore.DoesNotExist: diff --git a/openslides/core/models.py b/openslides/core/models.py index 46f014b3e..e9693581e 100644 --- a/openslides/core/models.py +++ b/openslides/core/models.py @@ -199,7 +199,7 @@ class ChatMessage(RESTModelMixin, models.Model): ) def __str__(self): - return "Message {}".format(self.timestamp) + return f"Message {self.timestamp}" class ProjectorMessage(RESTModelMixin, models.Model): @@ -236,7 +236,7 @@ class Countdown(RESTModelMixin, models.Model): def control(self, action, skip_autoupdate=False): if action not in ("start", "stop", "reset"): raise ValueError( - "Action must be 'start', 'stop' or 'reset', not {}.".format(action) + f"Action must be 'start', 'stop' or 'reset', not {action}." ) if action == "start": diff --git a/openslides/core/projector.py b/openslides/core/projector.py index fa9b29a97..6e0b5ccbd 100644 --- a/openslides/core/projector.py +++ b/openslides/core/projector.py @@ -27,7 +27,7 @@ def countdown( try: return all_data["core/countdown"][countdown_id] except KeyError: - return {"error": "Countdown {} does not exist".format(countdown_id)} + return {"error": f"Countdown {countdown_id} does not exist"} def message( @@ -48,7 +48,7 @@ def message( try: return all_data["core/projector-message"][message_id] except KeyError: - return {"error": "Message {} does not exist".format(message_id)} + return {"error": f"Message {message_id} does not exist"} def register_projector_elements() -> None: diff --git a/openslides/core/views.py b/openslides/core/views.py index 29de363b1..10bc9621c 100644 --- a/openslides/core/views.py +++ b/openslides/core/views.py @@ -9,7 +9,6 @@ from django.contrib.staticfiles.views import serve from django.db.models import F from django.http import Http404, HttpResponse from django.utils.timezone import now -from django.utils.translation import ugettext as _ from django.views import static from django.views.generic.base import View from mypy_extensions import TypedDict @@ -204,10 +203,10 @@ class ProjectorViewSet(ModelViewSet): projector = self.get_object() elements = request.data if not isinstance(elements, list): - raise ValidationError({"detail": _("The data has to be a list.")}) + raise ValidationError({"detail": "The data has to be a list."}) for element in elements: if not isinstance(element, dict): - raise ValidationError({"detail": _("All elements have to be dicts.")}) + raise ValidationError({"detail": "All elements have to be dicts."}) if element.get("name") is None: raise ValidationError( {"detail": "Invalid projector element. Name is missing."} @@ -361,41 +360,37 @@ class ProjectorViewSet(ModelViewSet): """ # The data has to be a dict. if not isinstance(request.data, dict): - raise ValidationError({"detail": _("The data has to be a dict.")}) + raise ValidationError({"detail": "The data has to be a dict."}) # Get projector ids to clear clear_projector_ids = request.data.get("clear_ids", []) for id in clear_projector_ids: if not isinstance(id, int): - raise ValidationError( - {"detail": _('The id "{}" has to be int.').format(id)} - ) + raise ValidationError({"detail": f'The id "{id}" has to be int.'}) # Get the projector id and validate element to prune. This is optional. prune = request.data.get("prune") if prune is not None: if not isinstance(prune, dict): - raise ValidationError({"detail": _("Prune has to be an object.")}) + raise ValidationError({"detail": "Prune has to be an object."}) prune_projector_id = prune.get("id") if not isinstance(prune_projector_id, int): raise ValidationError( - {"detail": _("The prune projector id has to be int.")} + {"detail": "The prune projector id has to be int."} ) # Get the projector after all clear operations, but check, if it exist. if not Projector.objects.filter(pk=prune_projector_id).exists(): raise ValidationError( { - "detail": _('The projector with id "{}" does not exist').format( - prune_projector_id - ) + "detail": f'The projector with id "{prune_projector_id}" does not exist' } ) prune_element = prune.get("element", {}) if not isinstance(prune_element, dict): raise ValidationError( - {"detail": _("Prune element has to be a dict or not given.")} + {"detail": "Prune element has to be a dict or not given."} ) if prune_element.get("name") is None: raise ValidationError( @@ -457,9 +452,7 @@ class ProjectorViewSet(ModelViewSet): projector_instance.height = request.data["height"] projector_instance.save() - message = "Changing resolution to {width}x{height} was successful.".format( - width=request.data["width"], height=request.data["height"] - ) + message = f"Changing resolution to {request.data['width']}x{request.data['height']} was successful." return Response({"detail": message}) @detail_route(methods=["post"]) @@ -514,10 +507,9 @@ class ProjectorViewSet(ModelViewSet): projector_instance.save(skip_autoupdate=True) projector_instance.refresh_from_db() inform_changed_data(projector_instance) - message = "{action} {direction} was successful.".format( - action=request.data["action"].capitalize(), - direction=request.data["direction"], - ) + action = (request.data["action"].capitalize(),) + direction = (request.data["direction"],) + message = f"{action} {direction} was successful." return Response({"detail": message}) @detail_route(methods=["post"]) @@ -535,9 +527,7 @@ class ProjectorViewSet(ModelViewSet): projector_instance.scroll = request.data projector_instance.save() - message = "Setting scroll to {scroll} was successful.".format( - scroll=request.data - ) + message = f"Setting scroll to {request.data} was successful." return Response({"detail": message}) @detail_route(methods=["post"]) @@ -554,9 +544,7 @@ class ProjectorViewSet(ModelViewSet): projector_instance = self.get_object() projector_instance.blank = request.data projector_instance.save() - message = "Setting 'blank' to {blank} was successful.".format( - blank=request.data - ) + message = f"Setting 'blank' to {request.data} was successful." return Response({"detail": message}) @detail_route(methods=["post"]) @@ -570,9 +558,7 @@ class ProjectorViewSet(ModelViewSet): """ if config["projector_broadcast"] == 0: config["projector_broadcast"] = pk - message = "Setting projector {id} as broadcast projector was successful.".format( - id=pk - ) + message = f"Setting projector {pk} as broadcast projector was successful." else: config["projector_broadcast"] = 0 message = "Disabling broadcast was successful." @@ -595,9 +581,7 @@ class ProjectorViewSet(ModelViewSet): except ProjectionDefault.DoesNotExist: raise ValidationError( { - "detail": "The projectiondefault with pk={pk} was not found.".format( - pk=request.data - ) + "detail": f"The projectiondefault with pk={request.data} was not found." } ) else: @@ -606,9 +590,7 @@ class ProjectorViewSet(ModelViewSet): projectiondefault.save() return Response( - 'Setting projectiondefault "{name}" to projector {projector_id} was successful.'.format( - name=projectiondefault.display_name, projector_id=projector_instance.pk - ) + f'Setting projectiondefault "{projectiondefault.display_name}" to projector {projector_instance.pk} was successful.' ) @@ -751,9 +733,9 @@ class ChatMessageViewSet(ModelViewSet): args.append((chatmessage.get_collection_string(), chatmessage.pk)) chatmessages.delete() # Trigger autoupdate and setup response. - if len(args) > 0: + if args: inform_deleted_data(args) - return Response({"detail": _("All chat messages deleted successfully.")}) + return Response({"detail": "All chat messages deleted successfully."}) class ProjectorMessageViewSet(ModelViewSet): @@ -838,7 +820,7 @@ class HistoryViewSet(ListModelMixin, RetrieveModelMixin, GenericViewSet): HistoryData.objects.all().delete() # Trigger autoupdate. - if len(args) > 0: + if args: inform_deleted_data(args) # Rebuild history. @@ -846,7 +828,7 @@ class HistoryViewSet(ListModelMixin, RetrieveModelMixin, GenericViewSet): inform_changed_data(history_instances) # Setup response. - return Response({"detail": _("History was deleted successfully.")}) + return Response({"detail": "History was deleted successfully."}) # Special API views @@ -920,7 +902,7 @@ class HistoryView(utils_views.APIView): self.permission_denied(self.request) try: timestamp = int(self.request.query_params.get("timestamp", 0)) - except (ValueError): + except ValueError: raise ValidationError( {"detail": "Invalid input. Timestamp should be an integer."} ) diff --git a/openslides/locale/README.txt b/openslides/locale/README.txt deleted file mode 100644 index eda53dfe2..000000000 --- a/openslides/locale/README.txt +++ /dev/null @@ -1,35 +0,0 @@ -Instruction to update translations for OpenSlides (JavaScipt and Django): -------------------------------------------------------------------------- - -1. Update English resource files: - - a) for JavaScript run: - $ ./node_modules/.bin/gulp pot - -> updates 'openslides/locale/angular-gettext/template-en.pot' - - b) for Django: - $ cd openslides - $ django-admin.py makemessages -l en - -> updates 'openslides/locale/en/LC_MESSAGES/django.po' - -2. Commit and merge the following files into OpenSlides master repo: - a) openslides/locale/angular-gettext/template-en.pot - b) openslides/locale/en/LC_MESSAGES/django.po - - Transifex will update both resource files once a day by pulling from GitHub. - -3. Translate both files in transifex into desired languages. - https://www.transifex.com/openslides/ - -4. Download translated po files for each language and override it: - a) openslides/locale/angular-gettext/{LANG-CODE}.po - b) openslides/locale/{LANG-CODE}/LC_MESSAGES/django.po - -5. Create mo file for each language (only for django po files required) - $ cd openslides - $ django-admin.py compilemessages - -6. Commit and merge for each language the following files: - a) openslides/locale/angular-gettext/{LANG-CODE}.po - b) openslides/locale/{LANG-CODE}/LC_MESSAGES/django.po - openslides/locale/{LANG-CODE}/LC_MESSAGES/django.mo diff --git a/openslides/locale/angular-gettext/cs.po b/openslides/locale/angular-gettext/cs.po deleted file mode 100644 index 700f0f199..000000000 --- a/openslides/locale/angular-gettext/cs.po +++ /dev/null @@ -1,4414 +0,0 @@ -# -# Translators: -# emanuel , 2013 -# emanuelschuetze , 2013 -# Emanuel Schütze , 2013,2017 -# fri, 2013 -# Norman Jäckel , 2013-2014 -# Oskar Hahn , 2012 -# fri, 2016-2018 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"PO-Revision-Date: 2018-08-30 12:47+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: Czech (http://www.transifex.com/openslides/openslides/language/cs/)\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: motions/static/templates/motions/motion-detail.html:47 -msgctxt "resolution" -msgid "Final version" -msgstr "Konečná verze" - -#: core/static/templates/csv-import.html:16 -msgctxt "special filetypes in a file open dialog" -msgid "Accepted file types" -msgstr "Přijaté souborové typy" - -#: motions/static/js/motions/base.js:1483 -msgid "%TYPE% from line %FROM% to %TO%" -msgstr "%TYPE% od řádku %FROM% po %TO%" - -#: motions/static/js/motions/base.js:1485 -msgid "%TYPE% in line %FROM%" -msgstr "%TYPE% v řádku %FROM%" - -#: users/static/js/users/site.js:822 -msgid "%num% emails were send sucessfully." -msgstr "%num% elektronických dopisů bylo úspěšně odesláno." - -#: agenda/static/templates/agenda/item-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:115 -#: motions/static/templates/motions/motion-list.html:77 -#: users/static/templates/users/user-list.html:81 -msgid "--- Select action ---" -msgstr "--- Vybrat činnost ---" - -#: motions/static/templates/motions/motion-amendment-list.html:135 -#: motions/static/templates/motions/motion-list.html:97 -msgid "--- Select category ---" -msgstr "--- Vybrat obor činnosti ---" - -#: users/static/templates/users/user-list.html:102 -msgid "--- Select group ---" -msgstr "--- Vybrat skupinu ---" - -#: motions/static/templates/motions/motion-amendment-list.html:149 -#: motions/static/templates/motions/motion-list.html:111 -msgid "--- Select motion block ---" -msgstr "--- Vybrat návrhový blok ---" - -#: assignments/static/templates/assignments/assignment-list.html:45 -msgid "--- Select phase ---" -msgstr "--- Vybrat fázi ---" - -#: motions/static/templates/motions/motion-amendment-list.html:123 -#: motions/static/templates/motions/motion-list.html:85 -msgid "--- Select state ---" -msgstr "--- Vybrat stav ---" - -#: agenda/static/templates/agenda/item-list.html:152 -msgid "--- Select visibility ---" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:70 -msgid "--- Set phase ---" -msgstr "--- Nastavit fázi ---" - -#: core/static/js/core/site.js:2081 -msgid "" -"OpenSlides is a free web based " -"presentation and assembly system for visualizing and controlling agenda, " -"motions and elections of an assembly." -msgstr "OpenSlides je svobodný na internetu založený promítací a schůzovací systém k znázornění a řízení pořadu jednání, návrhů a voleb ve shromáždění." - -#: motions/static/js/motions/base.js:239 -msgid "" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:38 -msgid "A comment has been changed." -msgstr "Poznámka byla změněna." - -#: core/static/js/core/base.js:798 -msgid "A server error occurred (%%code%%). Please check the system logs." -msgstr "Došlo k chybě serveru (%%kód%%). Prověřte, prosím, zápis systému." - -#: users/static/js/users/site.js:426 users/static/js/users/site.js:478 -#: users/static/templates/users/user-detail.html:40 -msgid "About me" -msgstr "O mě" - -#: assignments/static/js/assignments/pdf.js:332 -#: assignments/static/js/assignments/site.js:613 -#: assignments/static/js/assignments/site.js:758 -#: assignments/static/js/assignments/site.js:799 -#: assignments/static/templates/assignments/assignment-detail.html:256 -#: assignments/static/templates/assignments/slide_assignment.html:72 -#: motions/static/js/motions/pdf.js:203 motions/static/js/motions/pdf.js:741 -#: motions/static/js/motions/site.js:780 -#: motions/static/templates/motions/motion-detail.html:429 -#: motions/static/templates/motions/slide_motion.html:56 -msgid "Abstain" -msgstr "Zdržení se" - -#: motions/static/js/motions/base.js:1607 -#: motions/static/js/motions/base.js:1622 -msgid "Accept" -msgstr "Přijmout" - -#: motions/static/js/motions/base.js:1608 -#: motions/static/js/motions/base.js:1623 -msgid "Acceptance" -msgstr "Souhlas" - -#: motions/static/templates/motions/motion-detail/change-summary.html:46 -msgid "Accepted" -msgstr "" - -#: motions/static/templates/motions/state-edit.html:14 -#: motions/static/templates/motions/workflow-detail.html:70 -msgid "Action word" -msgstr "" - -#: motions/static/js/motions/site.js:3270 -msgid "Activate amendments" -msgstr "Zapnout pozměňovací návrhy" - -#: users/static/js/users/site.js:598 users/static/js/users/site.js:640 -msgid "Active" -msgstr "Činný" - -#: assignments/static/templates/assignments/assignment-list.html:285 -#: motions/static/templates/motions/motion-list.html:373 -msgid "Add a tag" -msgstr "Přidat klíčové slovo" - -#: core/static/templates/core/projector-controls.html:208 -msgid "Add countdown" -msgstr "Přidat odpočítávání" - -#: users/static/templates/users/user-list.html:109 -#: users/static/templates/users/user-list.html:83 -msgid "Add group" -msgstr "Přidat skupinu" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:125 -#: assignments/static/templates/assignments/assignment-detail.html:118 -msgid "Add me" -msgstr "Přidat mě" - -#: core/static/templates/core/projector-controls.html:248 -msgid "Add message" -msgstr "Přidat oznámení" - -#: core/static/templates/config-form-field.html:50 -msgid "Add new comment field" -msgstr "Přidat nové poznámkové pole" - -#: core/static/templates/core/projector-controls.html:209 -msgid "Add new countdown" -msgstr "Přidat nové odpočítávání" - -#: core/static/templates/config-form-field.html:131 -msgid "Add new custom translation" -msgstr "Přidat nový vlastní překlad" - -#: core/static/templates/core/projector-controls.html:249 -msgid "Add new message" -msgstr "Přidat nové oznámení" - -#: motions/static/templates/motions/motion-import.html:32 -msgid "" -"Additional columns after the required ones may be present and won't affect " -"the import." -msgstr "Za požadovanými mohou být přítomny dodatečné sloupce. Zavedení tím nebude ovlivněno." - -#: motions/static/js/motions/base.js:1630 -msgid "Adjourn" -msgstr "Odložit" - -#: motions/static/js/motions/base.js:1631 -msgid "Adjournment" -msgstr "Odložení" - -#: users/static/templates/users/user-detail.html:45 -msgid "Administrative data" -msgstr "Administrativní data" - -#: agenda/static/js/agenda/base.js:41 agenda/static/js/agenda/csv.js:35 -#: agenda/static/js/agenda/docx.js:56 agenda/static/js/agenda/docx.js:64 -#: agenda/static/js/agenda/pdf.js:15 agenda/static/js/agenda/pdf.js:81 -#: agenda/static/js/agenda/site.js:20 agenda/static/js/agenda/site.js:32 -#: agenda/static/js/agenda/site.js:50 agenda/static/js/agenda/site.js:870 -#: agenda/static/templates/agenda/item-detail.html:6 -#: agenda/static/templates/agenda/item-list.html:35 -#: agenda/static/templates/agenda/item-list.html:61 -#: agenda/static/templates/agenda/slide-item-list.html:2 -msgid "Agenda" -msgstr "Pořad jednání" - -#: agenda/static/js/agenda/site.js:885 agenda/static/js/agenda/site.js:98 -msgid "Agenda visibility" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:247 -msgid "All Filters" -msgstr "Všechny filtry" - -#: assignments/static/js/assignments/site.js:918 -#: motions/static/js/motions/site.js:3300 -msgid "All casted ballots" -msgstr "Všechny odevzdané hlasovací lístky" - -#: motions/static/templates/motions/motion-amendment-list.html:28 -#: motions/static/templates/motions/motion-amendment-list.html:35 -msgid "All motions" -msgstr "" - -#: assignments/static/js/assignments/site.js:917 -#: motions/static/js/motions/site.js:3299 -msgid "All valid ballots" -msgstr "Všechn platné hlasovací lístky" - -#: users/static/templates/users/group-list.html:19 -msgid "" -"All your changes are saved immediately. Changes you make are only effective " -"once you (or the users concerned) reload the page." -msgstr "Všechny změny jsou uloženy okamžitě. Provedené změny jsou účinné teprve tehdy, když vy (nebo zúčastnění uživatelé) znovu nahrajete stránku." - -#: core/static/js/core/site.js:2097 -msgid "Allow access for anonymous guest users" -msgstr "Povolit přístup anonymním hostům-uživatelům" - -#: motions/static/js/motions/workflow.js:64 -msgid "Allow create poll" -msgstr "" - -#: motions/static/js/motions/workflow.js:66 -msgid "Allow submitter edit" -msgstr "" - -#: motions/static/js/motions/workflow.js:62 -msgid "Allow support" -msgstr "" - -#: motions/static/js/motions/site.js:3262 -msgid "Allow to disable versioning" -msgstr "Povolit vypnutí tvorby nových verzí" - -#: assignments/static/js/assignments/site.js:906 -msgid "Always Yes-No-Abstain per candidate" -msgstr "Ano, Ne, Zdržení se pro uchazeče" - -#: assignments/static/js/assignments/site.js:907 -msgid "Always Yes/No per candidate" -msgstr "Ano, Ne pro uchazeče" - -#: assignments/static/js/assignments/site.js:905 -msgid "Always one option per candidate" -msgstr "Jeden hlas pro uchazeče" - -#: motions/static/js/motions/site.js:3322 -msgid "Amendment" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:96 -msgid "Amendment list PDF" -msgstr "" - -#: motions/static/js/motions/site.js:2282 -#: motions/static/js/motions/site.js:3275 -#: motions/static/templates/motions/motion-detail.html:104 -msgid "Amendment to" -msgstr "" - -#: motions/static/js/motions/pdf.js:544 motions/static/js/motions/pdf.js:77 -#: motions/static/js/motions/site.js:2285 -msgid "Amendment to motion" -msgstr "" - -#: motions/static/js/motions/site.js:2824 -#: motions/static/js/motions/site.js:3269 -#: motions/static/js/motions/site.js:915 -#: motions/static/templates/motions/motion-amendment-list.html:18 -#: motions/static/templates/motions/motion-detail.html:17 -#: motions/static/templates/motions/motion-detail.html:175 -#: motions/static/templates/motions/motion-list.html:11 -msgid "Amendments" -msgstr "Pozměňovací návrhy" - -#: motions/static/js/motions/site.js:2821 -msgid "Amendments to" -msgstr "" - -#: motions/static/js/motions/pdf.js:1136 -msgid "Amendments to motion" -msgstr "" - -#: motions/static/js/motions/site.js:3273 -msgid "Apply text for new amendments" -msgstr "Použít text pro nové pozměňovací návrhy" - -#: agenda/static/js/agenda/site.js:873 -msgid "Arabic" -msgstr "Arabský" - -#: core/static/templates/index.html:79 -msgid "Are you sure to delete the chat history?" -msgstr "Opravdu má být smazána historie rozhovoru?" - -#: agenda/static/templates/agenda/item-list.html:181 -msgid "Are you sure you want to delete all selected agenda items?" -msgstr "Opravdu mají být smazány všechny vybrané body pořadu jednání?" - -#: motions/static/templates/motions/motion-amendment-list.html:162 -msgid "Are you sure you want to delete all selected amendments?" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:54 -msgid "Are you sure you want to delete all selected elections?" -msgstr "Opravdu mají být smazány všechny vybrané volby?" - -#: motions/static/templates/motions/motion-list.html:124 -msgid "Are you sure you want to delete all selected motions?" -msgstr "Opravdu mají být smazány všechny vybrané návrhy?" - -#: users/static/templates/users/user-list.html:93 -msgid "Are you sure you want to delete all selected users?" -msgstr "Opravdu mají být smazáni všichni vybraní uživatelé?" - -#: assignments/static/templates/assignments/assignment-detail.html:151 -msgid "Are you sure you want to delete this ballot?" -msgstr "Opravdu má být smazáno toto hlasování?" - -#: motions/static/templates/motions/motion-detail/view-diff.html:25 -#: motions/static/templates/motions/motion-detail/view-diff.html:79 -#: motions/static/templates/motions/motion-detail/view-original.html:34 -msgid "Are you sure you want to delete this change recommendation?" -msgstr "Opravdu má být smazáno toto doporučení změny?" - -#: agenda/static/templates/agenda/item-list.html:406 -#: assignments/static/templates/assignments/assignment-list.html:267 -#: core/static/templates/core/manage-projectors.html:52 -#: core/static/templates/core/tag-list.html:46 -#: motions/static/templates/motions/category-list.html:49 -#: motions/static/templates/motions/motion-amendment-list.html:338 -#: motions/static/templates/motions/motion-block-list.html:45 -#: motions/static/templates/motions/motion-list.html:287 -#: motions/static/templates/motions/workflow-detail.html:58 -#: motions/static/templates/motions/workflow-list.html:38 -#: users/static/templates/users/group-list.html:45 -#: users/static/templates/users/user-list.html:364 -msgid "Are you sure you want to delete this entry?" -msgstr "Opravdu má být smazán tento záznam?" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:320 -msgid "Are you sure you want to delete this file?" -msgstr "Opravdu má být smazán tento soubor?" - -#: motions/static/templates/motions/motion-detail.html:382 -msgid "Are you sure you want to delete this poll?" -msgstr "Opravdu má být smazáno toto hlasování?" - -#: motions/static/templates/motions/motion-detail.html:630 -msgid "Are you sure you want to delete this version?" -msgstr "Opravdu má být smazána tato verze?" - -#: agenda/static/templates/agenda/item-list.html:85 -msgid "Are you sure you want to number all agenda items?" -msgstr "" - -#: motions/static/templates/motions/motion-block-detail.html:31 -msgid "" -"Are you sure you want to override the state of all motions of this motion " -"block?" -msgstr "Opravdu má být přepsán stav všech návrhů z tohoto návrhového bloku?" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:16 -msgid "Are you sure you want to remove all speakers from this list?" -msgstr "Opravdu mají být odstraněni všichni řečníci z tohoto seznamu?" - -#: motions/static/templates/motions/motion-block-detail.html:63 -msgid "Are you sure you want to remove this motion from motion block?" -msgstr "Opravdu má být odstraněn tento návrh z návrhového bloku?" - -#: core/static/templates/core/manage-projectors.html:87 -msgid "Aspect ratio" -msgstr "Poměr stran" - -#: users/static/templates/users/user-import.html:63 -msgid "" -"At least given name or surname have to be filled in. All\n" -" other fields are optional and may be empty." -msgstr "Musí být vyplněny alespoň křestní jméno nebo příjmení.\nVšechna zbývající pole jsou nepovinná a smějí být prázdná." - -#: motions/static/templates/motions/motion-detail.html:551 -msgid "" -"At least two amendments or change recommendations affecting the same line are to be integrated.\n" -" This leads to undeterministic results.\n" -" Please resolve this conflict by not accepting multiple changes affecting the same line." -msgstr "" - -#: motions/static/js/motions/site.js:586 topics/static/js/topics/site.js:115 -msgid "Attachment" -msgstr "Příloha" - -#: motions/static/templates/motions/motion-detail.html:601 -#: topics/static/templates/topics/topic-detail.html:31 -msgid "Attachments" -msgstr "Přílohy" - -#: core/static/templates/csv-import.html:30 -msgid "Autodetection" -msgstr "Automatické rozpoznání" - -#: assignments/static/js/assignments/site.js:904 -msgid "Automatic assign of method" -msgstr "Automatické určení způsobu" - -#: motions/static/templates/motions/motion-submitters.html:6 -msgid "Back" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:130 -#: topics/static/templates/topics/topic-import.html:35 -msgid "Back to agenda" -msgstr "Zpět na pořad jednání" - -#: motions/static/templates/motions/category-sort.html:6 -msgid "Back to categories" -msgstr "Zpět do skupin" - -#: motions/static/templates/motions/motion-amendment-list.html:8 -#: motions/static/templates/motions/motion-import.html:139 -msgid "Back to motions overview" -msgstr "Zpět na přehled návrhů" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:6 -#: agenda/static/templates/agenda/item-sort.html:6 -#: assignments/static/templates/assignments/assignment-detail.html:6 -#: core/static/templates/core/tag-list.html:6 -#: motions/static/templates/motions/category-list.html:6 -#: motions/static/templates/motions/motion-block-detail.html:6 -#: motions/static/templates/motions/motion-block-list.html:6 -#: motions/static/templates/motions/motion-detail.html:12 -#: motions/static/templates/motions/motion-detail.html:7 -#: motions/static/templates/motions/motion-import.html:6 -#: motions/static/templates/motions/workflow-detail.html:6 -#: motions/static/templates/motions/workflow-list.html:6 -#: topics/static/templates/topics/topic-detail.html:6 -#: topics/static/templates/topics/topic-import.html:6 -#: users/static/templates/users/group-list.html:6 -#: users/static/templates/users/user-change-password.html:6 -#: users/static/templates/users/user-detail.html:6 -#: users/static/templates/users/user-import.html:6 -#: users/static/templates/users/user-presence.html:6 -msgid "Back to overview" -msgstr "Zpět do přehledu" - -#: users/static/templates/users/user-import.html:244 -#: users/static/templates/users/user-import.html:35 -msgid "Back to users overview" -msgstr "Zpět na přehled uživatelů" - -#: core/static/js/core/site.js:2114 -msgid "Background color of projector header and footer" -msgstr "Barva pozadí záhlaví a zápatí promítacího přístroje" - -#: assignments/static/js/assignments/pdf.js:142 -#: assignments/static/js/assignments/pdf.js:306 -#: assignments/static/js/assignments/pdf.js:654 -#: assignments/static/templates/assignments/assignment-detail.html:139 -#: assignments/static/templates/assignments/assignmentpoll-form.html:1 -msgid "Ballot" -msgstr "Hlasování" - -#: assignments/static/js/assignments/site.js:909 -msgid "Ballot and ballot papers" -msgstr "Volba a hlasovací lístky" - -#: agenda/static/js/agenda/site.js:875 -msgid "Begin of event" -msgstr "Začátek události" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:91 -msgid "Begin speech" -msgstr "Začít projev" - -#: core/static/templates/core/manage-projectors.html:165 -#: core/static/templates/core/projector-controls.html:89 -msgid "Bigger" -msgstr "Větší" - -#: core/static/templates/core/manage-projectors.html:212 -#: core/static/templates/core/projector-controls.html:54 -msgid "Blank" -msgstr "Vyprázdnit" - -#: motions/static/js/motions/workflow.js:84 -msgid "Blue" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:206 -msgid "Broadcast" -msgstr "Vysílat" - -#: core/static/templates/core/manage-projectors.html:203 -msgid "Broadcast the content of this projector to all other projectors." -msgstr "Vysílat obsah tohoto promítacího přístroje do všech ostatních promítacích přístrojů." - -#: mediafiles/static/js/mediafiles/image-plugin.js:154 -#: mediafiles/static/js/mediafiles/image-plugin.js:161 -#: mediafiles/static/js/mediafiles/image-plugin.js:199 -msgid "Browse for images" -msgstr "Procházet kvůli obrázkům" - -#: core/static/templates/csv-import.html:2 -msgid "CSV file" -msgstr "Soubor CSV" - -#: users/static/js/users/site.js:1836 -msgid "Can create motions" -msgstr "Smí vytvářet návrhy" - -#: users/static/js/users/site.js:1811 -msgid "Can manage agenda" -msgstr "Smí spravovat pořad jednání" - -#: users/static/js/users/site.js:1840 -msgid "Can manage comments" -msgstr "Smí spravovat poznámky" - -#: users/static/js/users/site.js:1825 -msgid "Can manage configuration" -msgstr "Smí spravovat nastavení" - -#: users/static/js/users/site.js:1819 -msgid "Can manage elections" -msgstr "Smí spravovat volby" - -#: users/static/js/users/site.js:1832 -msgid "Can manage files" -msgstr "Smí spravovat soubory" - -#: users/static/js/users/site.js:1812 -msgid "Can manage list of speakers" -msgstr "Smí spravovat seznam řečníků" - -#: users/static/js/users/site.js:1828 -msgid "Can manage logos and fonts" -msgstr "Smí spravovat emblémy a písma" - -#: users/static/js/users/site.js:1838 -msgid "Can manage motions" -msgstr "Smí spravovat návrhy" - -#: users/static/js/users/site.js:1824 -msgid "Can manage tags" -msgstr "Smí spravovat klíčová slova" - -#: users/static/js/users/site.js:1827 -msgid "Can manage the chat" -msgstr "Smí spravovat rozhovor" - -#: users/static/js/users/site.js:1822 -msgid "Can manage the projector" -msgstr "Smí spravovat promítací přístroj" - -#: users/static/js/users/site.js:1844 -msgid "Can manage users" -msgstr "Smí spravovat uživatele" - -#: users/static/js/users/site.js:1817 -msgid "Can nominate another participant" -msgstr "Může navrhnout jiného účastníka" - -#: users/static/js/users/site.js:1818 -msgid "Can nominate oneself" -msgstr "Smí se sám ucházet ve volbách" - -#: core/static/js/core/projector.js:154 -msgid "Can not open the projector." -msgstr "Nesmí otevřít promítací přístroj" - -#: users/static/js/users/site.js:1814 -msgid "Can put oneself on the list of speakers" -msgstr "Smí se sám umístit na seznamu řečníků" - -#: users/static/js/users/site.js:1810 -msgid "Can see agenda" -msgstr "Smí vidět pořad jednání" - -#: users/static/js/users/site.js:1839 -msgid "Can see comments" -msgstr "Smí vidět poznámky" - -#: users/static/js/users/site.js:1816 -msgid "Can see elections" -msgstr "Smí vidět volby" - -#: users/static/js/users/site.js:1843 -msgid "Can see extra data of users (e.g. present and comment)" -msgstr "Může vidět další údaje o uživatelích (například přítomný a poznámka)" - -#: users/static/js/users/site.js:1833 -msgid "Can see hidden files" -msgstr "Smí vidět skryté soubory" - -#: users/static/js/users/site.js:1813 -msgid "Can see internal items and time scheduling of agenda" -msgstr "" - -#: users/static/js/users/site.js:1835 -msgid "Can see motions" -msgstr "Smí vidět návrhy" - -#: users/static/js/users/site.js:1842 -msgid "Can see names of users" -msgstr "Smí vidět jména uživatelů" - -#: users/static/js/users/site.js:1823 -msgid "Can see the front page" -msgstr "Smí vidět přední stranu" - -#: users/static/js/users/site.js:1830 -msgid "Can see the list of files" -msgstr "Smí vidět seznam souborů" - -#: users/static/js/users/site.js:1821 -msgid "Can see the projector" -msgstr "Smí vidět promítací přístroj" - -#: users/static/js/users/site.js:1837 -msgid "Can support motions" -msgstr "Smí podporovat návrhy" - -#: users/static/js/users/site.js:1831 -msgid "Can upload files" -msgstr "Smí nahrávat soubory" - -#: users/static/js/users/site.js:1826 -msgid "Can use the chat" -msgstr "Smí použít rozhovor" - -#: assignments/static/templates/assignments/assignment-form.html:18 -#: assignments/static/templates/assignments/assignmentpoll-form.html:18 -#: core/static/js/core/base.js:264 core/static/js/core/site.js:128 -#: core/static/js/core/site.js:129 -#: core/static/templates/core/projector-controls.html:198 -#: core/static/templates/core/projector-message-form.html:8 -#: core/static/templates/core/tag-form.html:13 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:19 -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:24 -#: motions/static/templates/motions/category-form.html:13 -#: motions/static/templates/motions/change-recommendation-form.html:13 -#: motions/static/templates/motions/motion-block-form.html:13 -#: motions/static/templates/motions/motion-comment-form.html:12 -#: motions/static/templates/motions/motion-export-form.html:10 -#: motions/static/templates/motions/motion-form.html:19 -#: motions/static/templates/motions/motion-poll-form.html:18 -#: motions/static/templates/motions/state-edit.html:24 -#: motions/static/templates/motions/workflow-edit.html:24 -#: topics/static/templates/topics/topic-form.html:13 -#: users/static/templates/users/group-edit.html:24 -#: users/static/templates/users/profile-password-form.html:12 -#: users/static/templates/users/user-change-password.html:51 -#: users/static/templates/users/user-form.html:13 -msgid "Cancel" -msgstr "Zrušit" - -#: assignments/static/js/assignments/pdf.js:150 -#: assignments/static/js/assignments/pdf.js:68 -#: assignments/static/templates/assignments/assignment-detail.html:192 -#: assignments/static/templates/assignments/assignment-detail.html:213 -#: assignments/static/templates/assignments/assignment-detail.html:86 -#: assignments/static/templates/assignments/assignment-list.html:322 -#: assignments/static/templates/assignments/slide_assignment.html:19 -#: assignments/static/templates/assignments/slide_assignment.html:36 -msgid "Candidates" -msgstr "Uchazeči" - -#: users/static/js/users/site.js:1119 -msgid "Cannot find the participant with the participant number" -msgstr "Nelze nalézt účastníka pomocí čísla účastníka" - -#: core/static/js/core/pdf.js:100 -msgid "Cannot load image" -msgstr "" - -#: assignments/static/js/assignments/site.js:846 -#: assignments/static/templates/assignments/assignment-detail.html:280 -#: assignments/static/templates/assignments/slide_assignment.html:94 -msgid "Casted ballots" -msgstr "Odevzdané hlasovací lístky" - -#: motions/static/js/motions/docx.js:46 motions/static/js/motions/site.js:136 -#: motions/static/templates/motions/category-list.html:13 -#: motions/static/templates/motions/motion-list.html:15 -msgid "Categories" -msgstr "Skupiny" - -#: motions/static/templates/motions/motion-import.html:124 -msgid "Categories created" -msgstr "Vytvořené skupiny" - -#: motions/static/js/motions/pdf.js:142 motions/static/js/motions/pdf.js:602 -#: motions/static/js/motions/site.js:1425 -#: motions/static/js/motions/site.js:600 motions/static/js/motions/site.js:867 -#: motions/static/templates/motions/category-sort.html:9 -#: motions/static/templates/motions/motion-detail.html:296 -#: motions/static/templates/motions/motion-detail.html:300 -#: motions/static/templates/motions/motion-import.html:27 -#: motions/static/templates/motions/motion-import.html:50 -#: motions/static/templates/motions/motion-table-filters.html:69 -msgid "Category" -msgstr "Obor činnosti" - -#: core/static/js/core/site.js:2102 -msgid "Center" -msgstr "Na střed" - -#: agenda/static/templates/agenda/item-list.html:513 -msgid "Change item number ..." -msgstr "Změnit číslo bodu..." - -#: core/static/templates/index.html:106 -#: users/static/templates/users/user-change-password.html:48 -#: users/static/templates/users/user-list.html:362 -msgid "Change password" -msgstr "Změnit heslo" - -#: users/static/templates/users/user-change-password.html:9 -msgid "Change password for {{ user.get_short_name() }}" -msgstr "Změnit heslo pro {{ user.get_short_name() }}" - -#: users/static/templates/users/user-presence.html:26 -msgid "Change presence" -msgstr "Změnit účast" - -#: motions/static/templates/motions/motion-detail/change-summary.html:34 -msgid "Change recommendation" -msgstr "" - -#: motions/static/js/motions/site.js:955 motions/static/js/motions/site.js:969 -#: motions/static/templates/motions/motion-detail/toolbar.html:121 -#: motions/static/templates/motions/motion-detail/toolbar.html:76 -msgid "Change recommendations" -msgstr "Změnit doporučení" - -#: agenda/static/templates/agenda/item-list.html:424 -msgid "Change visibility" -msgstr "" - -#: motions/static/js/motions/site.js:958 motions/static/js/motions/site.js:972 -#: motions/static/templates/motions/motion-detail/toolbar.html:133 -#: motions/static/templates/motions/motion-detail/toolbar.html:91 -msgid "Changed version" -msgstr "Změněná verze" - -#: core/static/templates/index.html:50 -msgid "Chat" -msgstr "Rozhovor" - -#: motions/static/js/motions/site.js:3284 -msgid "Choose 0 to disable the supporting system." -msgstr "Zadejte 0 pro vypnutí podpůrného systému." - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:1 -msgid "Choose the paragraph to amend!" -msgstr "" - -#: core/static/js/core/site.js:130 core/static/js/core/site.js:131 -msgid "Clear" -msgstr "Smazat" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:90 -msgid "Clear list" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:129 -#: topics/static/templates/topics/topic-import.html:120 -#: users/static/templates/users/user-import.html:231 -msgid "Clear preview" -msgstr "Vyprázdnit náhled" - -#: core/static/templates/privacypolicydialog.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:93 -msgid "Close" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:11 -msgid "Close list of speakers" -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:53 -#: agenda/static/templates/agenda/item-detail.html:48 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:10 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:11 -msgid "Closed" -msgstr "Zavřeno" - -#: agenda/static/js/agenda/site.js:176 agenda/static/js/agenda/site.js:177 -msgid "Closed items" -msgstr "Vyřízené body" - -#: agenda/static/templates/agenda/item-list.html:208 -msgid "Collapse all" -msgstr "Sbalit vše" - -#: core/static/js/core/site.js:2118 -msgid "Color for blanked projector" -msgstr "Barva ztlumeného promítacího přístroje" - -#: motions/static/templates/motions/motion-table-filters.html:117 -#: topics/static/templates/topics/topic-import.html:53 -#: topics/static/templates/topics/topic-import.html:72 -#: users/static/js/users/site.js:374 users/static/js/users/site.js:648 -#: users/static/templates/users/user-detail.html:48 -#: users/static/templates/users/user-import.html:56 -#: users/static/templates/users/user-import.html:89 -#: users/static/templates/users/user-list.html:441 -msgid "Comment" -msgstr "Poznámka" - -#: motions/static/js/motions/site.js:3290 -msgid "Comment fields for motions" -msgstr "Poznámková pole pro návrhy" - -#: motions/static/js/motions/docx.js:97 motions/static/js/motions/site.js:1014 -#: motions/static/js/motions/site.js:2051 -#: motions/static/js/motions/site.js:3289 -msgid "Comments" -msgstr "Poznámky" - -#: users/static/js/users/site.js:605 users/static/js/users/site.js:642 -msgid "Committee" -msgstr "Výbor" - -#: users/static/js/users/base.js:174 -msgid "Committees" -msgstr "Výbory" - -#: motions/static/js/motions/base.js:1616 -msgid "Complex Workflow" -msgstr "Složitý pracovní postup" - -#: users/static/js/users/site.js:527 -msgid "Confirm new password" -msgstr "Potvrdit nové heslo" - -#: motions/static/js/motions/site.js:983 -msgid "Content" -msgstr "Obsah" - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:21 -msgid "Continue" -msgstr "" - -#: core/static/templates/core/login-form.html:23 -msgid "Continue as guest" -msgstr "Pokračovat jako host" - -#: users/static/templates/users/user-import.html:19 -msgid "" -"Copy and paste your participant names in this textbox.\n" -" Keep each person in a single line." -msgstr "Kopírujte a vložte jména účastníků do tohoto textového pole.\nPro každou osobu je určen jeden řádek." - -#: topics/static/templates/topics/topic-import.html:15 -msgid "" -"Copy and paste your topic titles in this textbox. Keep each item in a single" -" line." -msgstr "Kopírujte a vložte názvy bodů námětů do tohoto textového pole.\nPro každý bod je určen jeden řádek." - -#: core/static/js/core/base.js:1444 core/static/js/core/site.js:422 -msgid "Countdown" -msgstr "Odpočítávání" - -#: core/static/js/core/base.js:1445 -#: core/static/templates/core/projector-controls.html:127 -msgid "Countdowns" -msgstr "Odpočítávání" - -#: agenda/static/js/agenda/site.js:882 -msgid "Couple countdown with the list of speakers" -msgstr "Sdružit odpočítávání se seznamem řečníků" - -#: motions/static/templates/motions/motion-detail.html:563 -msgid "Create final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:378 -msgid "Create modified amendment" -msgstr "" - -#: users/static/templates/users/group-edit.html:2 -msgid "Create new group" -msgstr "Vytvořit novou skupinu" - -#: motions/static/templates/motions/state-edit.html:2 -msgid "Create new state" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:2 -msgid "Create new workflow" -msgstr "" - -#: motions/static/js/motions/site.js:1431 -msgid "Creation date" -msgstr "Doba vytvoření" - -#: core/static/js/core/site.js:2110 -msgid "Current browser language" -msgstr "Nynější jazyk prohlížeče" - -#: agenda/static/js/agenda/site.js:74 agenda/static/js/agenda/site.js:835 -#: agenda/static/js/agenda/site.js:838 -#: agenda/static/templates/agenda/current-list-of-speakers.html:17 -#: agenda/static/templates/agenda/current-list-of-speakers.html:51 -#: agenda/static/templates/agenda/item-list.html:23 -#: core/static/templates/core/projector-controls.html:269 -msgid "Current list of speakers" -msgstr "Nynější seznam řečníků" - -#: assignments/static/js/assignments/site.js:924 -#: motions/static/js/motions/site.js:3312 -msgid "Custom number of ballot papers" -msgstr "Uživatelsky stanovený počet hlasovacích lístků" - -#: core/static/js/core/site.js:2128 -msgid "Custom translations" -msgstr "Vlastní překlady" - -#: users/static/js/users/site.js:1875 -msgid "" -"Dear {name},\n" -"\n" -"this is your OpenSlides login for the event {event_name}:\n" -"\n" -" {url}\n" -" username: {username}\n" -" password: {password}\n" -"\n" -"This email was generated automatically." -msgstr "Vážený {name},\n\ntoto jsou Vaše přihlašovací údaje OpenSlides pro událost {event_name}:\n {url}\n uživatelské jméno: {username}\n heslo: {password}\n\nTento elektronický dopis byl vytvořen automaticky." - -#: agenda/static/templates/agenda/current-list-of-speakers.html:44 -#: agenda/static/templates/agenda/item-detail.html:35 -#: agenda/static/templates/agenda/item-list.html:372 -#: agenda/static/templates/agenda/item-list.html:55 -#: core/static/templates/core/projector-controls.html:296 -#: core/static/templates/projector-button.html:23 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:292 -#: motions/static/templates/motions/motion-detail.html:56 -#: users/static/js/users/base.js:171 -msgid "Default" -msgstr "Výchozí" - -#: assignments/static/js/assignments/site.js:157 -msgid "Default comment on the ballot paper" -msgstr "Výchozí poznámka na hlasovacím lístku" - -#: motions/static/js/motions/site.js:3249 -msgid "Default line numbering" -msgstr "Výchozí číslování řádků" - -#: assignments/static/js/assignments/site.js:926 -msgid "" -"Default method to check whether a candidate has reached the required " -"majority." -msgstr "Výchozí postup pro přezkoušení, zda uchazeč dosáhl požadovanou většinu." - -#: motions/static/js/motions/site.js:3303 -msgid "" -"Default method to check whether a motion has reached the required majority." -msgstr "Výchozí postup pro přezkoušení, zda návrh dosáhl požadovanou většinu." - -#: core/static/js/core/site.js:2131 -msgid "Default projector" -msgstr "Výchozí promítací přístroj" - -#: motions/static/js/motions/site.js:3264 -msgid "Default text version for change recommendations" -msgstr "Výchozí verze textu pro doporučení změn" - -#: agenda/static/js/agenda/site.js:886 -msgid "Default visibility for new agenda items (except topics)" -msgstr "" - -#: users/static/js/users/base.js:172 -msgid "Delegates" -msgstr "Zástupci" - -#: agenda/static/templates/agenda/item-list.html:146 -#: agenda/static/templates/agenda/item-list.html:405 -#: assignments/static/templates/assignments/assignment-detail.html:154 -#: assignments/static/templates/assignments/assignment-list.html:266 -#: core/static/templates/core/tag-list.html:45 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:319 -#: motions/static/templates/motions/category-list.html:48 -#: motions/static/templates/motions/motion-amendment-list.html:116 -#: motions/static/templates/motions/motion-amendment-list.html:337 -#: motions/static/templates/motions/motion-block-list.html:44 -#: motions/static/templates/motions/motion-detail.html:384 -#: motions/static/templates/motions/motion-detail.html:633 -#: motions/static/templates/motions/motion-detail/view-diff.html:27 -#: motions/static/templates/motions/motion-detail/view-diff.html:81 -#: motions/static/templates/motions/motion-detail/view-original.html:36 -#: motions/static/templates/motions/motion-list.html:286 -#: motions/static/templates/motions/motion-list.html:78 -#: motions/static/templates/motions/workflow-list.html:37 -#: users/static/templates/users/user-list.html:363 -#: users/static/templates/users/user-list.html:82 -msgid "Delete" -msgstr "Smazat" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:8 -msgid "Delete final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:166 -msgid "Delete selected amendments" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:58 -msgid "Delete selected elections" -msgstr "Smazat vybrané volby" - -#: agenda/static/templates/agenda/item-list.html:185 -msgid "Delete selected items" -msgstr "Smazat vybrané body" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:136 -msgid "Delete selected mediafiles" -msgstr "Smazat vybrané multimediální soubory" - -#: motions/static/templates/motions/motion-list.html:128 -msgid "Delete selected motions" -msgstr "Smazat vybrané návrhy" - -#: users/static/templates/users/user-list.html:97 -msgid "Delete selected participants" -msgstr "Smazat vybrané účastníky" - -#: motions/static/js/motions/base.js:1492 motions/static/js/motions/pdf.js:284 -#: motions/static/js/motions/site.js:372 -#: motions/static/templates/motions/motion-detail/change-summary.html:39 -msgid "Deletion" -msgstr "Smazání" - -#: assignments/static/js/assignments/pdf.js:45 -#: assignments/static/js/assignments/site.js:137 -#: assignments/static/templates/assignments/assignment-detail.html:81 -#: core/static/templates/core/projector-controls.html:183 -#: motions/static/js/motions/site.js:381 -msgid "Description" -msgstr "Popis" - -#: core/static/templates/csv-import.html:11 -msgid "Deselect file" -msgstr "Zrušit výběr souboru" - -#: users/static/js/users/site.js:394 -msgid "Designates whether this user is in the room or not." -msgstr "Určuje, zda je tento uživatel v místnosti, anebo není." - -#: users/static/js/users/site.js:416 -msgid "Designates whether this user should be treated as a committee." -msgstr "Určuje, zda se s tímto uživatelem má zacházet jako s výborem." - -#: users/static/js/users/site.js:404 -msgid "" -"Designates whether this user should be treated as active. Unselect this " -"instead of deleting the account." -msgstr "Určuje, zda se má s tímto uživatelem zacházet jako s činným. Zrušte vybrání namísto smazání účtu." - -#: users/static/js/users/site.js:613 -msgid "Didn't get an email" -msgstr "Nedostal elektronický dopis" - -#: motions/static/js/motions/site.js:959 motions/static/js/motions/site.js:973 -#: motions/static/templates/motions/motion-detail/toolbar.html:138 -#: motions/static/templates/motions/motion-detail/toolbar.html:97 -msgid "Diff version" -msgstr "Znázornění změn" - -#: assignments/static/js/assignments/site.js:930 -#: motions/static/js/motions/site.js:3307 -msgid "Disabled" -msgstr "Vypnuto" - -#: assignments/static/js/assignments/site.js:919 -#: motions/static/js/motions/site.js:3301 -msgid "Disabled (no percents)" -msgstr "Vypnuto (žádná procenta)" - -#: core/static/templates/core/manage-projectors.html:30 -msgid "" -"Display an identifier message on all projectors with the id and the name." -msgstr "Zobrazit oznámení o identifikaci na všech promítacích přístrojích se jménem a ID." - -#: core/static/js/core/site.js:2112 -msgid "Display header and footer" -msgstr "Zobrazit záhlaví a zápatí" - -#: motions/static/js/motions/base.js:1633 -msgid "Do not concern" -msgstr "Nezaobírat se" - -#: motions/static/js/motions/base.js:1613 -msgid "Do not decide" -msgstr "Nerozhodovat" - -#: motions/static/templates/motions/motion-detail.html:560 -msgid "Do you want to copy the final version to the final print template?" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:539 -#: motions/static/templates/motions/motion-detail.html:569 -msgid "" -"Do you want to create a new version of this motion based on this changes?" -msgstr "Chcete vytvořit novou verzi tohoto návrhu založenou na těchto změnách?" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:5 -msgid "Do you want to delete the final print template?" -msgstr "" - -#: motions/static/js/motions/site.js:540 -msgid "Don't create a new version." -msgstr "Nevytvářet novou verzi." - -#: agenda/static/templates/agenda/item-list.html:172 -#: agenda/static/templates/agenda/item-list.html:524 -#: agenda/static/templates/agenda/item-list.html:530 -msgid "Done" -msgstr "Hotovo" - -#: motions/static/templates/motions/motion-import.html:34 -#: topics/static/templates/topics/topic-import.html:58 -#: users/static/templates/users/user-import.html:66 -msgid "Download CSV example file" -msgstr "Stáhnout soubor s příkladem CSV" - -#: agenda/static/templates/agenda/item-sort.html:14 -msgid "" -"Drag and drop items to change the order of the agenda. Your modification " -"will be saved immediately." -msgstr "Přetáhněte body pro změnu pořadí pořadu jednání. Změny budou okamžitě uloženy." - -#: motions/static/templates/motions/category-sort.html:15 -msgid "" -"Drag and drop motions to reorder the category. Then click the button to " -"renumber." -msgstr "Přesuňte návrhy (přetáhněte je) pro přeuspořádání oboru činnosti. Na závěr pak klepněte na tlačítko pro jejich přečíslování." - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:10 -msgid "Drop files into this area OR" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:197 -#: topics/static/templates/topics/topic-import.html:52 -#: topics/static/templates/topics/topic-import.html:71 -msgid "Duration" -msgstr "Doba trvání" - -#: agenda/static/templates/agenda/item-list.html:404 -#: assignments/static/templates/assignments/assignment-detail.html:21 -#: assignments/static/templates/assignments/assignment-list.html:265 -#: core/static/templates/core/tag-list.html:44 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:318 -#: motions/static/templates/motions/category-list.html:46 -#: motions/static/templates/motions/motion-amendment-list.html:330 -#: motions/static/templates/motions/motion-block-detail.html:20 -#: motions/static/templates/motions/motion-block-list.html:42 -#: motions/static/templates/motions/motion-detail.html:376 -#: motions/static/templates/motions/motion-detail.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:33 -#: motions/static/templates/motions/motion-detail/view-diff.html:87 -#: motions/static/templates/motions/motion-list.html:278 -#: motions/static/templates/motions/workflow-list.html:35 -#: topics/static/templates/topics/topic-detail.html:20 -#: users/static/templates/users/user-detail.html:15 -#: users/static/templates/users/user-list.html:359 -msgid "Edit" -msgstr "Upravit" - -#: mediafiles/static/templates/mediafiles/mediafile-form.html:1 -msgid "Edit File" -msgstr "" - -#: motions/static/templates/motions/category-form.html:1 -msgid "Edit category" -msgstr "Upravit obor činnosti" - -#: motions/static/templates/motions/change-recommendation-form.html:1 -msgid "Edit change recommendation" -msgstr "Upravit doporučení změny" - -#: motions/static/js/motions/site.js:2494 -#: motions/static/js/motions/site.js:3266 -msgid "Edit comment %%comment%% of motion %%motion%%" -msgstr "" - -#: core/static/templates/core/projector-controls.html:143 -msgid "Edit countdown" -msgstr "Upravit odpočítávání" - -#: core/static/templates/core/manage-projectors.html:152 -#: core/static/templates/core/projector-controls.html:76 -msgid "Edit current slide" -msgstr "Upravit nynější snímek" - -#: assignments/static/templates/assignments/assignment-form.html:1 -msgid "Edit election" -msgstr "Upravit volbu" - -#: core/static/templates/core/projector-controls.html:233 -#: core/static/templates/core/projector-message-form.html:1 -msgid "Edit message" -msgstr "Upravit oznámení" - -#: motions/static/templates/motions/motion-form.html:1 -msgid "Edit motion" -msgstr "Upravit návrh" - -#: motions/static/templates/motions/motion-block-form.html:1 -msgid "Edit motion block" -msgstr "Upravit návrhový blok" - -#: motions/static/templates/motions/workflow-edit.html:1 -#: users/static/templates/users/group-edit.html:1 -msgid "Edit name" -msgstr "Upravit název" - -#: users/static/templates/users/user-form.html:1 -msgid "Edit participant" -msgstr "Upravit účastníka" - -#: core/static/templates/index.html:101 users/static/js/users/site.js:982 -msgid "Edit profile" -msgstr "Upravit profil" - -#: motions/static/templates/motions/state-edit.html:1 -msgid "Edit state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:332 -#: motions/static/templates/motions/motion-list.html:281 -msgid "Edit submitters" -msgstr "" - -#: core/static/templates/core/tag-form.html:1 -msgid "Edit tag" -msgstr "Upravit klíčové slovo" - -#: motions/static/js/motions/site.js:3278 -msgid "Edit the whole motion text" -msgstr "" - -#: topics/static/templates/topics/topic-form.html:1 -msgid "Edit topic" -msgstr "Upravit námět" - -#: motions/static/templates/motions/motion-detail/toolbar.html:16 -msgid "" -"Editing the text is not possible anymore once there are change " -"recommendations." -msgstr "Upravení textu není už možné, jakmile jsou předložena doporučení změn." - -#: assignments/static/js/assignments/base.js:375 -#: assignments/static/js/assignments/pdf.js:617 -#: assignments/static/js/assignments/site.js:453 -#: assignments/static/templates/assignments/assignment-detail.html:33 -#: assignments/static/templates/assignments/slide_assignment.html:7 -msgid "Election" -msgstr "Volba" - -#: assignments/static/js/assignments/site.js:903 -#: assignments/static/templates/assignments/assignment-detail.html:286 -msgid "Election method" -msgstr "Způsob volby" - -#: assignments/static/templates/assignments/assignment-detail.html:127 -msgid "Election result" -msgstr "Výsledek volby" - -#: assignments/static/js/assignments/base.js:376 -#: assignments/static/js/assignments/pdf.js:618 -#: assignments/static/js/assignments/site.js:19 -#: assignments/static/js/assignments/site.js:31 -#: assignments/static/js/assignments/site.js:49 -#: assignments/static/js/assignments/site.js:908 -#: assignments/static/templates/assignments/assignment-list.html:14 -msgid "Elections" -msgstr "Volby" - -#: users/static/js/users/site.js:1869 users/static/js/users/site.js:313 -#: users/static/js/users/site.js:471 -#: users/static/templates/users/user-detail.html:36 -#: users/static/templates/users/user-import.html:61 -#: users/static/templates/users/user-import.html:94 -msgid "Email" -msgstr "E-mail" - -#: users/static/js/users/site.js:1874 -msgid "Email body" -msgstr "Tělo elektronického dopisu" - -#: users/static/js/users/site.js:1870 -msgid "Email sender" -msgstr "Odesílatel elektronického dopisu" - -#: users/static/js/users/site.js:1871 -msgid "Email subject" -msgstr "Předmět elektronického dopisu" - -#: motions/static/js/motions/site.js:3277 -msgid "Empty text field" -msgstr "" - -#: agenda/static/js/agenda/site.js:867 -msgid "Enable numbering for agenda items" -msgstr "" - -#: users/static/js/users/site.js:1849 -msgid "Enable participant presence view" -msgstr "Povolit pohled na přítomnost účastníka" - -#: core/static/templates/csv-import.html:22 -msgid "Encoding" -msgstr "Kódování" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:334 -msgid "Encrypted" -msgstr "Zašifrováno" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:65 -msgid "End speech" -msgstr "Ukončit projev" - -#: agenda/static/js/agenda/site.js:881 -msgid "Enter duration in seconds. Choose 0 to disable warning color." -msgstr "Zadejte dobu trvání v sekundách. Zvolte 0 pro vypnutí upozorňující barvy." - -#: users/static/templates/users/user-presence.html:22 -msgid "Enter participant number" -msgstr "Zadat číslo účastníka" - -#: assignments/static/templates/assignments/assignment-detail.html:170 -msgid "Enter votes" -msgstr "Zadat hlasy" - -#: core/static/js/core/base.js:791 -msgid "Error" -msgstr "Chyba" - -#: core/static/js/core/pdf.js:1335 core/static/js/core/pdf.js:99 -msgid "Error while generating PDF file" -msgstr "Chyba při vytváření souboru PDF" - -#: motions/static/js/motions/pdf.js:1382 -msgid "Error while generating ZIP file" -msgstr "Chyba při vytváření souboru ZIP" - -#: users/static/js/users/site.js:1212 -msgid "Error: Given name or surname is required." -msgstr "Chyba: Je požadováno křestní jméno nebo příjmení." - -#: motions/static/js/motions/site.js:2880 -msgid "Error: Identifier already exists." -msgstr "Chyba: Identifikátor již existuje." - -#: motions/static/js/motions/site.js:2891 -msgid "Error: Text is required." -msgstr "Chyba: Je požadován text." - -#: motions/static/js/motions/site.js:2886 topics/static/js/topics/site.js:297 -msgid "Error: Title is required." -msgstr "Chyba: Je požadován název." - -#: agenda/static/templates/agenda/item-list.html:200 -msgid "Estimated end:" -msgstr "Odhadovaný konec:" - -#: core/static/js/core/site.js:2086 -msgid "Event" -msgstr "Událost" - -#: core/static/js/core/site.js:2088 -msgid "Event date" -msgstr "Časový úsek události" - -#: core/static/js/core/site.js:2089 -msgid "Event location" -msgstr "Místo události" - -#: core/static/js/core/site.js:2080 -msgid "Event name" -msgstr "Název události" - -#: core/static/js/core/site.js:2090 -msgid "Event organizer" -msgstr "Pořadatel události" - -#: motions/static/js/motions/site.js:918 -msgid "Exclude" -msgstr "" - -#: users/static/templates/users/user-import.html:234 -msgid "Exclude already imported users" -msgstr "Vyloučit již zavedené uživatele" - -#: motions/static/templates/motions/motion-amendment-list.html:14 -#: motions/static/templates/motions/workflow-detail.html:17 -msgid "Expand" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:207 -msgid "Expand all" -msgstr "Rozbalit vše" - -#: agenda/static/templates/agenda/item-list.html:132 -#: agenda/static/templates/agenda/item-list.html:95 -#: assignments/static/templates/assignments/assignment-list.html:31 -#: motions/static/templates/motions/motion-amendment-list.html:70 -#: motions/static/templates/motions/motion-list.html:53 -#: motions/static/templates/motions/motion-list.html:63 -#: users/static/templates/users/user-list.html:47 -msgid "Export all" -msgstr "Vyvést vše" - -#: assignments/static/templates/assignments/assignment-detail.html:26 -#: motions/static/templates/motions/motion-detail.html:69 -msgid "Export as PDF" -msgstr "" - -#: motions/static/templates/motions/motion-export-form.html:7 -msgid "Export as {{ params.format.toUpperCase() | translate }}" -msgstr "Vyvést jako {{ params.format.toUpperCase() | translate }}" - -#: motions/static/templates/motions/motion-detail/comments.html:7 -msgid "Export comments only" -msgstr "Vyvést pouze poznámky" - -#: motions/static/templates/motions/motion-amendment-list.html:83 -msgid "Export dialog" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:135 -#: agenda/static/templates/agenda/item-list.html:98 -#: assignments/static/templates/assignments/assignment-list.html:34 -#: motions/static/templates/motions/motion-amendment-list.html:73 -#: motions/static/templates/motions/motion-list.html:56 -#: motions/static/templates/motions/motion-list.html:66 -#: users/static/templates/users/user-list.html:50 -msgid "Export filtered" -msgstr "Vyvést výběr" - -#: motions/static/templates/motions/motion-export-form.html:2 -#: motions/static/templates/motions/motion-export-form.html:3 -msgid "Export motion" -msgstr "Vyvést návrh" - -#: motions/static/templates/motions/motion-export-form.html:1 -msgid "Export motions" -msgstr "Vyvést návrhy" - -#: motions/static/templates/motions/motion-detail/personal-note.html:7 -msgid "Export personal note only" -msgstr "Vyvést pouze osobní poznámku" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:21 -msgid "File information" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:104 -msgid "File size" -msgstr "Velikost souboru" - -#: mediafiles/static/js/mediafiles/resources.js:22 -#: mediafiles/static/js/mediafiles/resources.js:23 -#: mediafiles/static/js/mediafiles/states.js:18 -#: mediafiles/static/js/mediafiles/states.js:30 -#: mediafiles/static/js/mediafiles/states.js:48 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:9 -msgid "Files" -msgstr "Soubory" - -#: agenda/static/templates/agenda/item-list.html:241 -#: assignments/static/templates/assignments/assignment-list.html:98 -#: core/static/templates/core/tag-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:176 -#: motions/static/templates/motions/category-list.html:21 -#: motions/static/templates/motions/motion-block-detail.html:40 -#: motions/static/templates/motions/motion-block-list.html:21 -#: users/static/templates/users/user-list.html:202 -msgid "Filter" -msgstr "Filtr" - -#: motions/static/templates/motions/motion-detail/toolbar.html:113 -#: motions/static/templates/motions/motion-detail/toolbar.html:148 -msgid "Final print template" -msgstr "" - -#: motions/static/js/motions/site.js:960 motions/static/js/motions/site.js:974 -#: motions/static/templates/motions/motion-detail/toolbar.html:104 -#: motions/static/templates/motions/motion-detail/toolbar.html:143 -msgid "Final version" -msgstr "Konečná verze" - -#: assignments/static/js/assignments/site.js:937 -msgid "Finished" -msgstr "Dokončeno" - -#: motions/static/templates/motions/workflow-detail.html:28 -msgid "First state" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:291 -msgid "Follow recommendation" -msgstr "Sledovat doporučení" - -#: motions/static/templates/motions/motion-block-detail.html:34 -msgid "Follow recommendations for all motions" -msgstr "Sledovat doporučení pro všechny návrhy" - -#: core/static/js/core/site.js:2115 -msgid "Font color of projector header and footer" -msgstr "Barva písma záhlaví a zápatí promítacího přístroje" - -#: core/static/js/core/site.js:2116 -msgid "Font color of projector headline" -msgstr "Barva písma nadpisu promítacího přístroje" - -#: assignments/static/js/assignments/site.js:911 -msgid "" -"For Yes/No/Abstain per candidate and Yes/No per candidate the 100-%-base " -"depends on the election method: If there is only one option per candidate, " -"the sum of all votes of all candidates is 100 %. Otherwise for each " -"candidate the sum of all votes is 100 %." -msgstr "Při Ano/Ne/Zdržení se na uchazeče a Ano/Ne na uchazeče 100 % základ závisí na způsobu hlasování: Pokud je jen jedna volba na uchazeče, je součet všech hlasů všech uchazečů 100 %. Jinak je pro každého uchazeče součet všech hlasů 100 %" - -#: motions/static/js/motions/site.js:899 -msgid "Format" -msgstr "Formát" - -#: motions/static/js/motions/site.js:352 -msgid "From Line" -msgstr "Od řádku" - -#: core/static/js/core/site.js:2095 -msgid "Front page text" -msgstr "Text na první straně" - -#: core/static/js/core/site.js:2093 -msgid "Front page title" -msgstr "Název první strany" - -#: core/static/js/core/site.js:2085 motions/static/js/motions/site.js:3241 -#: users/static/js/users/site.js:1498 users/static/js/users/site.js:1847 -msgid "General" -msgstr "Obecné" - -#: users/static/js/users/site.js:361 -#: users/static/templates/users/user-change-password.html:33 -msgid "Generate" -msgstr "Vytvořit" - -#: users/static/templates/users/user-list.html:121 -#: users/static/templates/users/user-list.html:85 -msgid "Generate new passwords" -msgstr "Vytvořit nové heslo" - -#: core/static/js/core/pdf.js:1326 -msgid "Generating PDF file" -msgstr "Vytváří se soubor PDF" - -#: motions/static/js/motions/pdf.js:1337 -msgid "Generating PDFs and ZIP archive" -msgstr "Vytváří se soubory PDF a ZIP" - -#: users/static/js/users/site.js:1851 users/static/js/users/site.js:296 -#: users/static/js/users/site.js:634 -#: users/static/templates/users/user-import.html:51 -#: users/static/templates/users/user-import.html:84 -msgid "Given name" -msgstr "Křestní jméno" - -#: users/static/js/users/site.js:612 -msgid "Got an email" -msgstr "Dostal elektronický dopis" - -#: motions/static/js/motions/workflow.js:81 -msgid "Green" -msgstr "" - -#: motions/static/js/motions/workflow.js:83 -msgid "Grey" -msgstr "" - -#: users/static/js/users/pdf.js:73 users/static/js/users/site.js:348 -#: users/static/js/users/site.js:89 -#: users/static/templates/users/group-list.html:14 -#: users/static/templates/users/user-detail.html:30 -#: users/static/templates/users/user-import.html:55 -#: users/static/templates/users/user-import.html:88 -#: users/static/templates/users/user-list.html:16 -#: users/static/templates/users/user-list.html:209 -#: users/static/templates/users/user-list.html:378 -#: users/static/templates/users/user-list.html:407 -msgid "Groups" -msgstr "Skupiny" - -#: users/static/templates/users/user-import.html:226 -msgid "Groups created" -msgstr "Skupiny vytvořeny" - -#: users/static/js/users/site.js:1857 -msgid "Help text for access data and welcome PDF" -msgstr "Nápomocný text k přístupovým údajům a pozdravné PDF" - -#: agenda/static/templates/agenda/item-list.html:159 -#: agenda/static/templates/agenda/item-list.html:436 -#: agenda/static/templates/agenda/item-list.html:472 -#: mediafiles/static/js/mediafiles/forms.js:51 -#: mediafiles/static/js/mediafiles/list.js:74 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:27 -msgid "Hidden" -msgstr "Skryto" - -#: agenda/static/js/agenda/site.js:102 -#: agenda/static/templates/agenda/item-list.html:452 -msgid "Hidden item" -msgstr "" - -#: agenda/static/js/agenda/site.js:197 -#: agenda/static/templates/agenda/item-list.html:293 -msgid "Hidden items" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:37 -msgid "Hide" -msgstr "Skrýt" - -#: agenda/static/templates/agenda/item-sort.html:18 -msgid "Hide internal items" -msgstr "Skrýt vnitřní body" - -#: agenda/static/js/agenda/site.js:877 -msgid "Hide internal items when projecting subitems" -msgstr "" - -#: motions/static/js/motions/site.js:3259 -msgid "Hide meta information box on projector" -msgstr "" - -#: motions/static/js/motions/site.js:3258 -msgid "Hide reason on projector" -msgstr "Skrýt důvod na promítacím přístrojí" - -#: motions/static/js/motions/site.js:3260 -msgid "Hide recommendation on projector" -msgstr "Skrýt doporučení na promítacím přístrojí" - -#: assignments/static/templates/assignments/assignment-detail.html:144 -msgid "Hint on the ballot paper." -msgstr "Rada na hlasovacím lístku." - -#: core/static/js/core/site.js:189 core/static/js/core/site.js:331 -msgid "Home" -msgstr "Domovská stránka" - -#: motions/static/js/motions/site.js:3276 -msgid "How to create new amendments" -msgstr "" - -#: motions/static/js/motions/site.js:1419 -#: motions/static/js/motions/site.js:259 -#: motions/static/js/motions/site.js:3243 -#: motions/static/js/motions/site.js:336 motions/static/js/motions/site.js:482 -#: motions/static/templates/motions/motion-import.html:22 -#: motions/static/templates/motions/motion-import.html:45 -msgid "Identifier" -msgstr "Identifikátor" - -#: motions/static/templates/motions/motion-import.html:31 -msgid "" -"Identifier, reason, submitter, category, origin and motion block are " -"optional and may be empty." -msgstr "Identifikátor (označení dat), zdůvodnění, navrhovatel/navrhovatel/ka, původ a návrhový blok jsou nepovinné a mohou zůstat prázdné" - -#: core/static/templates/core/manage-projectors.html:32 -msgid "Identify" -msgstr "Rozpoznat" - -#: mediafiles/static/js/mediafiles/image-plugin.js:148 -#: mediafiles/static/js/mediafiles/image-plugin.js:198 -msgid "Image browser" -msgstr "Prohlížeč obrázků" - -#: agenda/static/templates/agenda/item-list.html:16 -#: motions/static/templates/motions/motion-list.html:31 -#: topics/static/templates/topics/topic-import.html:24 -#: users/static/templates/users/user-import.html:29 -#: users/static/templates/users/user-list.html:20 -msgid "Import" -msgstr "Zavést" - -#: topics/static/templates/topics/topic-import.html:41 -#: users/static/templates/users/user-import.html:41 -msgid "Import by CSV file" -msgstr "Zavést pomocí souboru CSV" - -#: topics/static/templates/topics/topic-import.html:14 -#: users/static/templates/users/user-import.html:18 -msgid "Import by copy/paste" -msgstr "Zavést pomocí kopírovat/vložit" - -#: motions/static/templates/motions/motion-import.html:9 -msgid "Import motions" -msgstr "Zavést návrhy" - -#: users/static/templates/users/user-import.html:9 -msgid "Import participants" -msgstr "Zavést účastníky" - -#: topics/static/templates/topics/topic-import.html:9 -msgid "Import topics" -msgstr "Zavést náměty" - -#: topics/static/templates/topics/topic-import.html:123 -msgid "Import {{ itemsWillBeImported }} topics" -msgstr "Zavést {{ itemsWillBeImported }} námětů" - -#: motions/static/templates/motions/motion-import.html:132 -msgid "Import {{ motionsWillBeImported }} motions" -msgstr "Zavést {{ motionsWillBeImported }} návrhů" - -#: users/static/templates/users/user-import.html:237 -msgid "Import {{ usersWillBeImported }} participants" -msgstr "Zavést {{ usersWillBeImported }} účastníků" - -#: motions/static/js/motions/site.js:917 -msgid "Include" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:363 -msgid "Include all sub items" -msgstr "Zahrnout všechny podbody" - -#: motions/static/js/motions/site.js:3318 -msgid "Include the sequential number in PDF and DOCX" -msgstr "Zahrnout postupné číslo v PDF a DOCX" - -#: users/static/js/users/pdf.js:201 users/static/js/users/site.js:358 -#: users/static/templates/users/user-change-password.html:37 -#: users/static/templates/users/user-import.html:60 -#: users/static/templates/users/user-import.html:93 -msgid "Initial password" -msgstr "Počáteční heslo" - -#: users/static/js/users/site.js:359 -#: users/static/templates/users/user-change-password.html:38 -msgid "Initial password can not be changed." -msgstr "Počáteční heslo nesmí být změněno." - -#. Line numbering: Inline -#: motions/static/js/motions/site.js:3253 -msgid "Inline" -msgstr "Uvnitř" - -#: motions/static/templates/motions/motion-detail/comments.html:15 -#: motions/static/templates/motions/motion-detail/comments.html:20 -#: motions/static/templates/motions/motion-detail/personal-note.html:14 -#: motions/static/templates/motions/motion-detail/personal-note.html:19 -#: motions/static/templates/motions/motion-detail/toolbar.html:13 -#: motions/static/templates/motions/motion-detail/toolbar.html:18 -#: motions/static/templates/motions/motion-detail/toolbar.html:29 -#: motions/static/templates/motions/motion-detail/toolbar.html:35 -#: motions/static/templates/motions/motion-detail/toolbar.html:8 -msgid "Inline editing" -msgstr "Úpravy uvnitř" - -#: agenda/static/js/agenda/site.js:876 -msgid "Input format: DD.MM.YYYY HH:MM" -msgstr "Zadávací formát: DD.MM.RRRR HH:MM" - -#: motions/static/js/motions/base.js:1489 motions/static/js/motions/pdf.js:282 -#: motions/static/js/motions/site.js:371 -#: motions/static/templates/motions/motion-detail/change-summary.html:38 -msgid "Insertion" -msgstr "Vložení" - -#: core/static/templates/legalnotice.html:17 -msgid "Installed plugins:" -msgstr "Nainstalované přídavné moduly:" - -#: agenda/static/templates/agenda/item-list.html:156 -#: agenda/static/templates/agenda/item-list.html:432 -#: agenda/static/templates/agenda/item-list.html:468 -msgid "Internal" -msgstr "" - -#: agenda/static/js/agenda/site.js:101 -#: agenda/static/templates/agenda/item-list.html:447 -#: topics/static/templates/topics/topic-import.html:54 -#: topics/static/templates/topics/topic-import.html:73 -msgid "Internal item" -msgstr "Vnitřní bod" - -#: agenda/static/js/agenda/site.js:190 -#: agenda/static/templates/agenda/item-list.html:287 -msgid "Internal items" -msgstr "Vnitřní body" - -#: assignments/static/js/assignments/site.js:836 -#: assignments/static/templates/assignments/assignment-detail.html:274 -#: assignments/static/templates/assignments/slide_assignment.html:88 -msgid "Invalid ballots" -msgstr "Neplatné hlasovací lístky" - -#: agenda/static/js/agenda/site.js:871 -msgid "Invalid input." -msgstr "Neplatné zadání." - -#: motions/static/js/motions/pdf.js:216 motions/static/js/motions/site.js:799 -#: motions/static/templates/motions/motion-detail.html:450 -msgid "Invalid votes" -msgstr "Neplatné hlasy" - -#: mediafiles/static/js/mediafiles/list.js:81 -msgid "Is PDF" -msgstr "Je PDF" - -#: mediafiles/static/js/mediafiles/list.js:82 -msgid "Is PDF file" -msgstr "Je soubor PDF" - -#: users/static/js/users/site.js:415 users/static/js/users/site.js:606 -#: users/static/templates/users/user-list.html:341 -msgid "Is a committee" -msgstr "Je výbor" - -#: users/static/js/users/site.js:403 users/static/js/users/site.js:599 -#: users/static/templates/users/user-import.html:57 -#: users/static/templates/users/user-import.html:90 -#: users/static/templates/users/user-list.html:127 -msgid "Is active" -msgstr "Je činná" - -#: users/static/templates/users/user-import.html:59 -#: users/static/templates/users/user-import.html:92 -#: users/static/templates/users/user-list.html:129 -msgid "Is committee" -msgstr "Je výbor" - -#: mediafiles/static/js/mediafiles/list.js:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:303 -msgid "Is hidden" -msgstr "Je skrytá" - -#: users/static/templates/users/user-list.html:339 -msgid "Is inactive" -msgstr "Je nečinný" - -#: mediafiles/static/js/mediafiles/list.js:83 -msgid "Is no PDF file" -msgstr "Není soubor PDF" - -#: users/static/js/users/site.js:607 -#: users/static/templates/users/user-list.html:137 -msgid "Is not a committee" -msgstr "Není výbor" - -#: users/static/js/users/site.js:600 -#: users/static/templates/users/user-list.html:135 -msgid "Is not active" -msgstr "Není činný" - -#: mediafiles/static/js/mediafiles/list.js:76 -msgid "Is not hidden" -msgstr "Není skryt" - -#: users/static/js/users/site.js:593 -#: users/static/templates/users/user-list.html:136 -msgid "Is not present" -msgstr "Není přítomen" - -#: users/static/js/users/site.js:393 users/static/js/users/site.js:592 -#: users/static/templates/users/user-import.html:58 -#: users/static/templates/users/user-import.html:91 -#: users/static/templates/users/user-list.html:128 -msgid "Is present" -msgstr "Je přítomná" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:308 -msgid "Is used as a font" -msgstr "Používá se jako písmo" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:306 -msgid "Is used as a logo" -msgstr "Používá se jako emblém" - -#. short form of agenda item -#: assignments/static/js/assignments/site.js:333 -#: motions/static/templates/motions/motion-table-filters.html:209 -msgid "Item" -msgstr "Bod" - -#: motions/static/templates/motions/workflow-detail.html:119 -msgid "Label color" -msgstr "" - -#: users/static/js/users/site.js:611 users/static/js/users/site.js:650 -#: users/static/templates/users/user-detail.html:38 -msgid "Last email send" -msgstr "Poslední elektronický dopis odeslán" - -#: users/static/templates/users/user-list.html:448 -msgid "Last email send to the user" -msgstr "Poslední elektronický dopis odeslán uživateli" - -#: motions/static/js/motions/site.js:1433 -#: motions/static/templates/motions/motion-detail.html:636 -msgid "Last modified" -msgstr "Naposledy změněno" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:36 -msgid "Last speakers" -msgstr "Poslední řečník" - -#: core/static/templates/csv-import.html:33 -msgid "Leave empty for autodetection of the separator." -msgstr "Ponechat prázdné pro automatické rozpoznání oddělovače." - -#: motions/static/js/motions/workflow.js:70 -msgid "Leave old version active" -msgstr "" - -#: core/static/js/core/site.js:2101 -msgid "Left" -msgstr "Vlevo" - -#: core/static/js/core/site.js:2091 core/static/js/core/site.js:371 -#: core/static/templates/index.html:227 -#: core/static/templates/legalnotice.html:3 -msgid "Legal notice" -msgstr "Soudní oznámení" - -#: core/static/templates/legalnotice.html:14 -#: core/static/templates/legalnotice.html:27 -msgid "License" -msgstr "Povolení" - -#: motions/static/js/motions/pdf.js:1083 motions/static/js/motions/pdf.js:275 -#: motions/static/templates/motions/motion-amendment-list.html:238 -#: motions/static/templates/motions/motion-amendment-list.html:241 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:28 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:31 -#: motions/static/templates/motions/motion-detail/change-summary.html:28 -#: motions/static/templates/motions/motion-detail/change-summary.html:31 -#: motions/static/templates/motions/motion-detail/toolbar.html:46 -#: motions/static/templates/motions/slide_motion.html:80 -#: motions/static/templates/motions/slide_motion.html:83 -msgid "Line" -msgstr "Řádek" - -#: motions/static/js/motions/site.js:3256 -msgid "Line length" -msgstr "Délka řádku" - -#: motions/static/js/motions/site.js:929 motions/static/js/motions/site.js:942 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:30 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:5 -msgid "Line numbering" -msgstr "Číslování řádků" - -#: users/static/js/users/pdf.js:313 -#: users/static/templates/users/user-list.html:64 -msgid "List of access data" -msgstr "Seznam přístupových dat" - -#: users/static/js/users/pdf.js:17 users/static/js/users/pdf.js:302 -#: users/static/templates/users/user-list.html:59 -msgid "List of participants" -msgstr "Seznam účastníků" - -#: agenda/static/js/agenda/site.js:562 agenda/static/js/agenda/site.js:879 -#: agenda/static/templates/agenda/item-detail.html:21 -#: agenda/static/templates/agenda/item-detail.html:47 -#: agenda/static/templates/agenda/item-list.html:402 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:2 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:5 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:5 -#: assignments/static/templates/assignments/assignment-detail.html:12 -#: core/static/templates/core/projector-controls.html:257 -#: motions/static/templates/motions/motion-block-detail.html:11 -#: motions/static/templates/motions/motion-detail.html:23 -#: topics/static/templates/topics/topic-detail.html:11 -msgid "List of speakers" -msgstr "Seznam řečníků" - -#: core/static/js/core/site.js:2119 -msgid "List of speakers overlay" -msgstr "Přidání seznamu řečníků" - -#: core/static/templates/core/projector-controls.html:8 -msgid "Live view" -msgstr "Živé zobrazení" - -#: core/static/templates/core/login-form.html:20 -#: core/static/templates/index.html:121 -msgid "Login" -msgstr "Přihlášení" - -#: core/static/templates/index.html:112 -msgid "Logout" -msgstr "Odhlásit se" - -#: core/static/templates/core/projector-controls.html:59 -msgid "Manage" -msgstr "Spravovat" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:386 -msgid "Manage fonts" -msgstr "Spravovat písma" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:348 -msgid "Manage logos" -msgstr "Spravovat emblémy" - -#: core/static/js/core/site.js:356 -#: core/static/templates/core/manage-projectors.html:35 -msgid "Manage projectors" -msgstr "Spravovat promítací přístroje" - -#: core/static/templates/core/projector-controls.html:305 -msgid "Manage the current list of speakers" -msgstr "Spravovat nynější seznam řečníků" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:69 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:95 -msgid "Mark speaker" -msgstr "Označit řečníka" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:43 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:62 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:87 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:10 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:19 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:21 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:39 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:20 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:27 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:33 -msgid "Marked" -msgstr "Označeno" - -#: motions/static/js/motions/site.js:1360 -msgid "Marked as favorite" -msgstr "Označeno jako oblíbené" - -#: core/static/js/core/base.js:1393 core/static/js/core/site.js:463 -#: core/static/templates/core/projector-controls.html:224 -msgid "Message" -msgstr "Oznámení" - -#: core/static/js/core/base.js:1394 -#: core/static/templates/core/projector-controls.html:218 -msgid "Messages" -msgstr "Oznámení" - -#: assignments/static/templates/assignments/assignment-detail.html:42 -#: motions/static/js/motions/site.js:1003 -#: motions/static/js/motions/site.js:994 -#: motions/static/templates/motions/motion-detail.html:133 -msgid "Meta information" -msgstr "Popisné informace" - -#: motions/static/templates/motions/motion-table-filters.html:166 -msgid "Misc" -msgstr "Různé" - -#: motions/static/js/motions/base.js:293 motions/static/js/motions/base.js:328 -#: motions/static/js/motions/base.js:337 motions/static/js/motions/docx.js:92 -#: motions/static/js/motions/pdf.js:1076 motions/static/js/motions/pdf.js:1346 -#: motions/static/js/motions/pdf.js:1392 motions/static/js/motions/pdf.js:536 -#: motions/static/js/motions/pdf.js:70 motions/static/js/motions/pdf.js:732 -#: motions/static/js/motions/site.js:1627 -#: motions/static/js/motions/site.js:2039 -#: motions/static/js/motions/site.js:2052 -#: motions/static/js/motions/site.js:2058 -#: motions/static/js/motions/site.js:267 motions/static/js/motions/site.js:344 -#: motions/static/templates/motions/motion-block-detail.html:51 -#: motions/static/templates/motions/motion-detail.html:116 -#: motions/static/templates/motions/motion-detail.html:120 -#: motions/static/templates/motions/motion-detail.html:271 -#: motions/static/templates/motions/motion-detail.html:92 -#: motions/static/templates/motions/slide_motion.html:74 -msgid "Motion" -msgstr "Návrh" - -#: motions/static/js/motions/motion-block.js:156 -#: motions/static/js/motions/motion-block.js:19 -#: motions/static/js/motions/pdf.js:155 motions/static/js/motions/site.js:1427 -#: motions/static/js/motions/site.js:614 motions/static/js/motions/site.js:874 -#: motions/static/templates/motions/motion-block-detail.html:25 -#: motions/static/templates/motions/motion-detail.html:318 -#: motions/static/templates/motions/motion-detail.html:322 -#: motions/static/templates/motions/motion-import.html:29 -#: motions/static/templates/motions/motion-import.html:52 -#: motions/static/templates/motions/motion-table-filters.html:93 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motion block" -msgstr "Návrhový blok" - -#: motions/static/js/motions/site.js:156 -#: motions/static/templates/motions/motion-block-list.html:13 -#: motions/static/templates/motions/motion-list.html:19 -msgid "Motion blocks" -msgstr "Návrhové bloky" - -#: motions/static/templates/motions/motion-import.html:125 -msgid "Motion blocks created" -msgstr "Návrhové bloky vytvořeny" - -#: motions/static/js/motions/site.js:3247 -msgid "Motion preamble" -msgstr "Úvod návrhu" - -#: motions/static/js/motions/base.js:294 motions/static/js/motions/site.js:23 -#: motions/static/js/motions/site.js:3238 motions/static/js/motions/site.js:35 -#: motions/static/js/motions/site.js:53 -#: motions/static/templates/motions/motion-block-list.html:30 -#: motions/static/templates/motions/motion-list.html:35 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motions" -msgstr "Návrhy" - -#: motions/static/js/motions/site.js:1034 -msgid "Multiple PDFs in a zip arcive" -msgstr "Více PDF v archivu ZIP" - -#: core/static/js/core/site.js:497 -#: core/static/templates/core/manage-projectors.html:62 -#: core/static/templates/core/tag-list.html:34 -#: motions/static/js/motions/site.js:739 -#: motions/static/templates/motions/category-list.html:29 -#: motions/static/templates/motions/motion-block-list.html:29 -#: motions/static/templates/motions/state-edit.html:8 -#: motions/static/templates/motions/workflow-list.html:25 -#: users/static/js/users/pdf.js:65 -msgid "Name" -msgstr "Název" - -#: motions/static/js/motions/site.js:3263 -msgid "Name of recommender" -msgstr "Jméno dárce doporučení" - -#: motions/static/js/motions/base.js:1639 -msgid "Needs review" -msgstr "Potřebuje posoudit" - -#: agenda/static/templates/agenda/item-list.html:8 -#: assignments/static/templates/assignments/assignment-list.html:6 -#: core/static/js/core/site.js:1288 core/static/js/core/site.js:1301 -#: core/static/js/core/site.js:1302 -#: core/static/templates/core/manage-projectors.html:8 -#: core/static/templates/core/tag-list.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:6 -#: motions/static/templates/motions/category-list.html:10 -#: motions/static/templates/motions/motion-block-list.html:10 -#: motions/static/templates/motions/motion-list.html:6 -#: motions/static/templates/motions/workflow-detail.html:11 -#: motions/static/templates/motions/workflow-list.html:10 -#: users/static/templates/users/group-list.html:11 -#: users/static/templates/users/user-list.html:6 -msgid "New" -msgstr "Nový" - -#: motions/static/templates/motions/motion-detail.html:181 -msgid "New amendment" -msgstr "Nový pozměňovací návrh" - -#: motions/static/templates/motions/motion-form.html:3 -msgid "New amendment to motion" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:133 -msgid "New ballot" -msgstr "Nové hlasování" - -#: motions/static/templates/motions/category-form.html:2 -msgid "New category" -msgstr "Nový obor činnosti" - -#: motions/static/js/motions/site.js:2922 -msgid "New category will be created." -msgstr "Bude vytvořen nový obor činnosti." - -#: motions/static/templates/motions/change-recommendation-form.html:2 -msgid "New change recommendation" -msgstr "Nové doporučení změny" - -#: assignments/static/templates/assignments/assignment-form.html:2 -msgid "New election" -msgstr "Nová volba" - -#: motions/static/templates/motions/motion-form.html:2 -msgid "New motion" -msgstr "Nový návrh" - -#: motions/static/templates/motions/motion-block-form.html:2 -msgid "New motion block" -msgstr "Nový návrhový blok" - -#: motions/static/js/motions/site.js:2935 -msgid "New motion block will be created." -msgstr "Bude vytvořen nový návrhový blok." - -#: users/static/templates/users/user-form.html:2 -msgid "New participant" -msgstr "Nový účastník" - -#: motions/static/js/motions/site.js:2909 -msgid "New participant will be created." -msgstr "Bude vytvořen nový účastník." - -#: users/static/js/users/site.js:519 -#: users/static/templates/users/user-change-password.html:23 -msgid "New password" -msgstr "Nové heslo" - -#: core/static/templates/core/tag-form.html:2 -msgid "New tag" -msgstr "Nové klíčové slovo" - -#: motions/static/js/motions/pdf.js:377 motions/static/js/motions/site.js:275 -#: motions/static/templates/motions/motion-detail/view-diff.html:42 -#: motions/static/templates/motions/slide_motion.html:107 -msgid "New title" -msgstr "" - -#: topics/static/templates/topics/topic-form.html:2 -msgid "New topic" -msgstr "Nový námět" - -#: motions/static/templates/motions/motion-detail.html:542 -#: motions/static/templates/motions/motion-detail.html:572 -msgid "New version on these changes" -msgstr "Nová verze s těmito změnami" - -#: motions/static/templates/motions/motion-detail.html:495 -msgid "New vote" -msgstr "Nové hlasování" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:39 -msgid "Next page" -msgstr "Další strana" - -#: motions/static/templates/motions/workflow-detail.html:170 -msgid "Next states" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:323 -#: assignments/static/js/assignments/pdf.js:358 -#: assignments/static/js/assignments/site.js:612 -#: assignments/static/js/assignments/site.js:743 -#: assignments/static/js/assignments/site.js:809 -#: assignments/static/templates/assignments/assignment-detail.html:262 -#: assignments/static/templates/assignments/slide_assignment.html:77 -#: motions/static/js/motions/pdf.js:198 motions/static/js/motions/pdf.js:740 -#: motions/static/js/motions/site.js:770 -#: motions/static/templates/motions/motion-detail.html:417 -#: motions/static/templates/motions/slide_motion.html:44 -msgid "No" -msgstr "Ne" - -#: motions/static/js/motions/docx.js:48 -msgid "No categories available." -msgstr "Nejsou dostupné žádné skupiny." - -#: motions/static/templates/motions/motion-amendment-list.html:140 -#: motions/static/templates/motions/motion-list.html:102 -msgid "No category" -msgstr "Žádný obor činnosti" - -#: motions/static/templates/motions/motion-table-filters.html:286 -#: motions/static/templates/motions/motion-table-filters.html:83 -msgid "No category set" -msgstr "Nestanoven žádný obor činnosti" - -#: motions/static/templates/motions/motion-detail/change-summary.html:53 -msgid "No change recommendations yet" -msgstr "Dosud žádná doporučení změn" - -#: motions/static/js/motions/pdf.js:1094 motions/static/js/motions/pdf.js:370 -#: motions/static/templates/motions/motion-amendment-list.html:349 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:17 -msgid "No changes at the text." -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:131 -#: motions/static/templates/motions/motion-table-filters.html:312 -msgid "No comments set" -msgstr "Neučiněny žádné poznámky" - -#: motions/static/js/motions/base.js:1634 -msgid "No concernment" -msgstr "Neprobíráno" - -#: motions/static/js/motions/base.js:1614 -msgid "No decision" -msgstr "Žádné rozhodnutí" - -#: users/static/js/users/site.js:818 -msgid "No emails were send." -msgstr "Nebyly odeslány žádné elektronický dopisy" - -#: users/static/js/users/site.js:1868 -msgid "No encryption" -msgstr "Žádné šifrování" - -#: users/static/templates/users/user-list.html:223 -#: users/static/templates/users/user-list.html:300 -msgid "No group set" -msgstr "Nestanovena žádná skupina" - -#: agenda/static/js/agenda/site.js:198 -msgid "No hidden items" -msgstr "" - -#: agenda/static/js/agenda/site.js:191 -msgid "No internal items" -msgstr "Žádné vnitřní body" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:107 -msgid "No media file projected." -msgstr "Nepromítnut žádný soubor s obrazovým či zvukovým záznamem." - -#: motions/static/templates/motions/motion-amendment-list.html:153 -#: motions/static/templates/motions/motion-list.html:115 -msgid "No motion block" -msgstr "Žádný návrhový blok" - -#: motions/static/templates/motions/motion-table-filters.html:107 -#: motions/static/templates/motions/motion-table-filters.html:328 -msgid "No motion block set" -msgstr "Nestanoven žádný návrhový blok" - -#: motions/static/js/motions/docx.js:54 -msgid "No motions available." -msgstr "Žádné dostupné návrhy." - -#: agenda/static/js/agenda/site.js:185 -msgid "No public items" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:285 -#: motions/static/templates/motions/motion-amendment-list.html:296 -msgid "No recomendation set" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:59 -msgid "No recommendation set" -msgstr "Neučiněno žádné doporučení" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: core/static/templates/core/select-multiple.html:2 -#: core/static/templates/core/select-single.html:2 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "No results available ..." -msgstr "Nejsou dostupné žádné výsledky..." - -#: core/static/templates/search.html:41 -msgid "No results." -msgstr "Žádné výsledky." - -#: assignments/static/templates/assignments/assignment-list.html:120 -#: assignments/static/templates/assignments/assignment-list.html:192 -#: motions/static/templates/motions/motion-table-filters.html:155 -#: motions/static/templates/motions/motion-table-filters.html:344 -msgid "No tag set" -msgstr "Nenastaveno žádné klíčové slovo" - -#: motions/static/js/motions/site.js:2304 -msgid "No workflows exists. You will not be able to create a motion." -msgstr "" - -#. abbreviation for number -#: users/static/js/users/base.js:82 -#: users/static/templates/users/user-list.html:349 -#: users/static/templates/users/user-list.html:353 -msgid "No." -msgstr "Č." - -#. Line numbering: None -#: motions/static/js/motions/site.js:3255 -#: motions/static/js/motions/site.js:931 motions/static/js/motions/site.js:944 -msgid "None" -msgstr "Žádné" - -#: motions/static/js/motions/site.js:1361 -msgid "Not marked as favorite" -msgstr "Neoznačeno jako oblíbené" - -#: motions/static/templates/motions/motion-detail/view-diff.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:8 -msgid "Not rejected" -msgstr "Neodmítnuto" - -#: motions/static/templates/motions/motion-detail/change-summary.html:8 -msgid "" -"Note: You have to reject all change recommendations if the plenum does not " -"follow the recommendation. This does not affect amendments." -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-original.html:45 -msgid "Now choose the last line to be changed" -msgstr "Nyní klepněte na poslední řádek k změnění" - -#: users/static/js/users/site.js:1280 users/static/js/users/site.js:644 -msgid "Number" -msgstr "Číslo" - -#: motions/static/js/motions/site.js:3283 -msgid "Number of (minimum) required supporters for a motion" -msgstr "Nejnižší počet podporovatelů potřebných pro návrh" - -#: assignments/static/js/assignments/site.js:921 -#: motions/static/js/motions/site.js:3309 -msgid "Number of all delegates" -msgstr "Počet všech zástupců" - -#: assignments/static/js/assignments/site.js:922 -#: motions/static/js/motions/site.js:3310 -msgid "Number of all participants" -msgstr "Počet všech účastníků" - -#: assignments/static/js/assignments/site.js:920 -#: motions/static/js/motions/site.js:3308 -msgid "Number of ballot papers (selection)" -msgstr "Počet hlasovacích lístků (předběžná volba)" - -#: assignments/static/js/assignments/site.js:339 -msgid "Number of candidates" -msgstr "Počet uchazečů" - -#: agenda/static/js/agenda/site.js:878 -msgid "Number of last speakers to be shown on the projector" -msgstr "Počet posledních na promítacím přístroji zobrazených řečníků" - -#: assignments/static/js/assignments/pdf.js:23 -#: assignments/static/js/assignments/site.js:147 -#: assignments/static/templates/assignments/assignment-detail.html:52 -msgid "Number of persons to be elected" -msgstr "Počet osob ke zvolení" - -#: motions/static/js/motions/site.js:3244 -msgid "Numbered per category" -msgstr "Číslovat na základě oborů činnosti" - -#: agenda/static/templates/agenda/item-list.html:88 -#: motions/static/templates/motions/category-sort.html:20 -msgid "Numbering" -msgstr "Číslování" - -#: agenda/static/js/agenda/site.js:868 -msgid "Numbering prefix for agenda items" -msgstr "Předpona pro číslování bodů pořadu jednání" - -#: agenda/static/js/agenda/site.js:872 -msgid "Numeral system for agenda items" -msgstr "Číselný systém pro body pořadu jednání" - -#: core/static/js/core/base.js:263 core/static/js/core/base.js:265 -msgid "OK" -msgstr "Ok" - -#: core/static/js/core/base.js:811 -msgid "Offline mode: You can use OpenSlides but changes are not saved." -msgstr "Režim nepřipojen k internetu: Můžete OpenSlides používat, ale změny nejsou ukládány." - -#: users/static/js/users/site.js:511 -msgid "Old password" -msgstr "Staré heslo" - -#: motions/static/js/motions/site.js:1033 -msgid "One PDF" -msgstr "Jedno PDF" - -#: core/static/js/core/site.js:751 -msgid "One anonymous users is also editing this." -msgstr "Toto upravuje i jeden anonymní uživatel." - -#: users/static/js/users/site.js:820 -msgid "One email was send sucessfully." -msgstr "Byl úspěšně odeslán jeden elektronický dopis." - -#: assignments/static/templates/assignments/assignment-detail.html:287 -msgid "One vote per candidate" -msgstr "Jeden hlas pro uchazeče" - -#: motions/static/templates/motions/motion-import.html:33 -#: topics/static/templates/topics/topic-import.html:57 -#: users/static/templates/users/user-import.html:65 -msgid "Only double quotes are accepted as text delimiter (no single quotes)." -msgstr "Jako oddělovač textu jsou přípustné pouze dvojité uvozovky (jednoduché uvozovky se nepoužívají)" - -#: users/static/js/users/site.js:375 -msgid "Only for internal notes." -msgstr "Jen pro vnitřní poznámky." - -#: agenda/static/templates/agenda/item-list.html:46 -msgid "Only main agenda items" -msgstr "Pouze hlavní body pořadu jednání" - -#: agenda/static/templates/agenda/item-list.html:177 -msgid "Open" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:93 -msgid "Open amendment" -msgstr "" - -#: core/static/templates/core/projector-controls.html:147 -msgid "Open countdown in fullscreen" -msgstr "Otevřít zpětné odpočítávání na celou obrazovku" - -#: assignments/static/templates/assignments/assignment-form.html:13 -msgid "Open election detail view after save." -msgstr "Otevřít pohled na podrobnosti voleb po uložení." - -#: mediafiles/static/js/mediafiles/image-plugin.js:138 -msgid "Open image browser" -msgstr "Otevřít prohlížeč obrázků" - -#: agenda/static/js/agenda/site.js:178 -msgid "Open items" -msgstr "Otevřené body" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:7 -msgid "Open list of speakers" -msgstr "" - -#: motions/static/templates/motions/motion-form.html:14 -msgid "Open motion detail view after save." -msgstr "Otevřít pohled na podrobnosti návrhu po uložení." - -#: users/static/js/users/pdf.js:189 -msgid "OpenSlides access data" -msgstr "Přístupová data k OpenSlides" - -#: motions/static/js/motions/pdf.js:168 motions/static/js/motions/site.js:627 -#: motions/static/js/motions/site.js:881 -#: motions/static/templates/motions/motion-detail.html:362 -#: motions/static/templates/motions/motion-import.html:28 -#: motions/static/templates/motions/motion-import.html:51 -#: motions/static/templates/motions/motion-list.html:407 -msgid "Origin" -msgstr "Původ" - -#: mediafiles/static/js/mediafiles/image-plugin.js:196 -#: mediafiles/static/js/mediafiles/image-plugin.js:94 -msgid "Original size" -msgstr "Původní velikost" - -#: motions/static/js/motions/site.js:957 motions/static/js/motions/site.js:971 -#: motions/static/templates/motions/motion-detail/toolbar.html:128 -#: motions/static/templates/motions/motion-detail/toolbar.html:83 -msgid "Original version" -msgstr "Původní verze" - -#: motions/static/js/motions/site.js:373 -msgid "Other" -msgstr "Jiné" - -#. Line numbering: Outside -#: motions/static/js/motions/site.js:3251 -msgid "Outside" -msgstr "Vně" - -#: assignments/static/templates/assignments/assignment-detail.html:28 -#: motions/static/templates/motions/motion-detail.html:71 -#: motions/static/templates/motions/motion-detail/comments.html:9 -#: motions/static/templates/motions/motion-detail/personal-note.html:9 -#: users/static/js/users/site.js:1853 -msgid "PDF" -msgstr "PDF" - -#: core/static/js/core/site.js:2127 -msgid "PDF ballot paper logo" -msgstr "Emblém na hlasovacích lístcích v PDF" - -#: core/static/js/core/site.js:2124 -msgid "PDF footer logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2125 -msgid "PDF footer logo (right)" -msgstr "" - -#: motions/static/js/motions/site.js:1031 -msgid "PDF format" -msgstr "Formát PDF" - -#: core/static/js/core/site.js:2122 -msgid "PDF header logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2123 -msgid "PDF header logo (right)" -msgstr "" - -#: core/static/js/core/pdf.js:1330 -msgid "PDF successfully generated." -msgstr "PDF úspěšně vytvořeno." - -#: agenda/static/templates/agenda/item-list.html:218 -#: assignments/static/templates/assignments/assignment-list.html:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:153 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:44 -#: motions/static/templates/motions/motion-amendment-list.html:180 -#: motions/static/templates/motions/motion-list.html:146 -#: users/static/templates/users/user-import.html:73 -#: users/static/templates/users/user-list.html:160 -msgid "Page" -msgstr "Strana" - -#: core/static/js/core/site.js:2100 -msgid "Page number alignment in PDF" -msgstr "Zarovnání čísel stran v PDF" - -#: motions/static/js/motions/site.js:3279 -msgid "Paragraph-based, Diff-enabled" -msgstr "" - -#: assignments/static/js/assignments/site.js:168 -#: motions/static/js/motions/motion-block.js:91 -#: motions/static/js/motions/site.js:553 topics/static/js/topics/site.js:130 -msgid "Parent item" -msgstr "Rodičovský bod" - -#: motions/static/js/motions/site.js:2780 -msgid "Parent motion and line number" -msgstr "" - -#: users/static/js/users/site.js:887 -#: users/static/templates/users/user-detail.html:20 -msgid "Participant" -msgstr "Účastník" - -#: users/static/js/users/site.js:331 -#: users/static/templates/users/user-detail.html:34 -#: users/static/templates/users/user-import.html:54 -#: users/static/templates/users/user-import.html:87 -msgid "Participant number" -msgstr "Číslo účastníka" - -#: users/static/js/users/base.js:19 users/static/js/users/base.js:20 -#: users/static/js/users/site.js:1850 users/static/js/users/site.js:19 -#: users/static/js/users/site.js:30 users/static/js/users/site.js:48 -#: users/static/templates/users/user-list.html:24 -msgid "Participants" -msgstr "Účastníci" - -#: core/static/templates/core/login-form.html:17 -msgid "Password" -msgstr "Heslo" - -#: users/static/js/users/site.js:1064 -msgid "Password confirmation does not match." -msgstr "Potvrzení hesla se neshoduje." - -#: core/static/templates/core/projector-controls.html:170 -msgid "Pause" -msgstr "Pozastavit" - -#: motions/static/js/motions/base.js:1620 -msgid "Permission" -msgstr "Oprávnění" - -#: motions/static/templates/motions/workflow-detail.html:42 -#: users/static/templates/users/group-list.html:26 -msgid "Permissions" -msgstr "Oprávnění" - -#: motions/static/js/motions/base.js:1619 -msgid "Permit" -msgstr "Schválit" - -#: motions/static/templates/motions/motion-detail.html:624 -msgid "Permit and activate" -msgstr "Povolit a zapnout" - -#: users/static/templates/users/user-detail.html:27 -msgid "Personal data" -msgstr "Osobní údaje" - -#: motions/static/js/motions/pdf.js:1403 -#: motions/static/templates/motions/motion-detail.html:500 -#: motions/static/templates/motions/motion-detail/personal-note.html:25 -msgid "Personal note" -msgstr "Osobní poznámka" - -#: motions/static/js/motions/site.js:1366 -msgid "Personal note not set" -msgstr "Osobní poznámka nenastavena" - -#: motions/static/js/motions/site.js:1365 -msgid "Personal note set" -msgstr "Osobní poznámka nastavena" - -#: assignments/static/js/assignments/site.js:337 -#: assignments/static/templates/assignments/assignment-detail.html:62 -#: assignments/static/templates/assignments/assignment-list.html:130 -msgid "Phase" -msgstr "Fáze" - -#: users/static/templates/users/group-edit.html:12 -msgid "Please enter a name for the new group:" -msgstr "Zadejte, prosím, jméno pro novou skupinu:" - -#: core/static/templates/core/manage-projectors.html:5 -msgid "Please enter a name for the new projector" -msgstr "Zadejte, prosím, jméno pro nový promítací přístroj" - -#: motions/static/templates/motions/workflow-edit.html:12 -msgid "Please enter a name for the new workflow:" -msgstr "" - -#: users/static/templates/users/group-edit.html:10 -msgid "Please enter a new group name:" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:9 -msgid "Please enter a new workflow name:" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:18 -#: topics/static/templates/topics/topic-import.html:46 -#: users/static/templates/users/user-import.html:46 -msgid "Please note:" -msgstr "Vezměte, prosím, na vědomí" - -#: core/static/templates/core/manage-projectors.html:72 -msgid "Please select" -msgstr "" - -#: motions/static/js/motions/site.js:3316 -msgid "Preamble text for PDF and DOCX documents (all motions)" -msgstr "Text úvodu dokumentů PDF a DOCX (všechny návrhy)" - -#: assignments/static/js/assignments/site.js:933 -msgid "Preamble text for PDF document (all elections)" -msgstr "Text úvodu dokumentu PDF (všechny volby)" - -#: core/static/js/core/site.js:2117 -msgid "Predefined seconds of new countdowns" -msgstr "Předem stanovené sekundy pro nová odpočítávání" - -#: motions/static/js/motions/site.js:732 -#: motions/static/templates/motions/category-list.html:34 -msgid "Prefix" -msgstr "Předpona" - -#: motions/static/js/motions/site.js:3272 -msgid "Prefix for the identifier for amendments" -msgstr "Předpona identifikátoru pro pozměňovací návrhy" - -#: users/static/templates/users/user-list.html:11 -#: users/static/templates/users/user-presence.html:9 -msgid "Presence" -msgstr "Účast" - -#: users/static/js/users/site.js:591 users/static/js/users/site.js:638 -#: users/static/templates/users/user-list.html:460 -#: users/static/templates/users/user-list.html:466 -msgid "Present" -msgstr "Přítomen" - -#: core/static/js/core/site.js:2079 -msgid "Presentation and assembly system" -msgstr "Předváděcí a schůzovací systém" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:17 -msgid "Presentation control elements" -msgstr "Řídicí prvky promítání" - -#: motions/static/templates/motions/motion-import.html:38 -#: topics/static/templates/topics/topic-import.html:62 -#: users/static/templates/users/user-import.html:70 -msgid "Preview" -msgstr "Náhled" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:34 -msgid "Previous page" -msgstr "Předchozí strana" - -#: assignments/static/templates/assignments/assignment-detail.html:163 -#: motions/static/templates/motions/motion-detail.html:390 -msgid "Print ballot paper" -msgstr "Tisk hlasovacích lístků" - -#: core/static/js/core/site.js:2092 core/static/js/core/site.js:380 -#: core/static/templates/core/login-form.html:28 -#: core/static/templates/index.html:228 -#: core/static/templates/privacypolicy.html:3 -#: core/static/templates/privacypolicydialog.html:1 -msgid "Privacy policy" -msgstr "" - -#: motions/static/js/motions/site.js:3292 -msgid "Private" -msgstr "Soukromý" - -#: assignments/static/templates/assignments/assignment-detail.html:16 -#: assignments/static/templates/assignments/assignment-detail.html:181 -#: motions/static/templates/motions/motion-detail.html:31 -#: topics/static/templates/topics/topic-detail.html:15 -#: users/static/templates/users/user-detail.html:10 -msgid "Project" -msgstr "Promítat" - -#: agenda/static/templates/agenda/item-list.html:31 -msgid "Project agenda" -msgstr "Promítnout pořad jednání" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:35 -#: core/static/templates/core/projector-controls.html:287 -msgid "Project as overlay" -msgstr "Promítnout jako překrytí" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:29 -#: core/static/templates/core/projector-controls.html:281 -msgid "Project as slide" -msgstr "Promítnout jako snímek" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:13 -msgid "Project current list of speakers" -msgstr "Promítnout nynější seznam řečníků" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:10 -#: core/static/templates/core/projector-controls.html:263 -msgid "Project the current list of speakers" -msgstr "Promítnout nynější seznam řečníků" - -#: core/static/templates/core/manage-projectors.html:69 -msgid "Projection defaults" -msgstr "Výchozí pro promítání" - -#: agenda/static/templates/agenda/item-detail.html:14 -#: agenda/static/templates/agenda/item-list.html:27 -#: agenda/static/templates/agenda/item-list.html:345 -#: core/static/js/core/projector.js:401 core/static/js/core/site.js:2108 -#: core/static/templates/index.html:194 core/static/templates/index.html:207 -#: core/static/templates/index.html:244 -#: core/static/templates/projector-button.html:2 -#: core/static/templates/projector-container.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:273 -#: motions/static/templates/motions/motion-detail.html:27 -#: users/static/js/users/site.js:1496 -msgid "Projector" -msgstr "Promítací přístroj" - -#: core/static/js/core/site.js:2121 -msgid "Projector header image" -msgstr "Obrázek promítacího přístroje pro záhlaví" - -#: core/static/js/core/site.js:2109 -msgid "Projector language" -msgstr "Jazyk promítacího přístroje" - -#: core/static/js/core/site.js:2120 -msgid "Projector logo" -msgstr "Emblém promítacího přístroje" - -#: agenda/static/templates/agenda/item-list.html:153 -#: agenda/static/templates/agenda/item-list.html:428 -#: agenda/static/templates/agenda/item-list.html:464 -#: motions/static/js/motions/site.js:3291 -msgid "Public" -msgstr "Veřejný" - -#: agenda/static/js/agenda/site.js:100 -#: agenda/static/templates/agenda/item-list.html:442 -msgid "Public item" -msgstr "" - -#: agenda/static/js/agenda/site.js:184 -#: agenda/static/templates/agenda/item-list.html:281 -msgid "Public items" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:177 -msgid "Publish" -msgstr "Zveřejnit" - -#: assignments/static/js/assignments/site.js:931 -msgid "Put all candidates on the list of speakers" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:215 -msgid "Quorum" -msgstr "Usnášeníschopný počet" - -#: assignments/static/templates/assignments/assignment-detail.html:249 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) not reached." -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:246 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:484 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) not " -"reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:481 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) " -"reached." -msgstr "" - -#: motions/static/js/motions/docx.js:96 motions/static/js/motions/pdf.js:393 -#: motions/static/js/motions/site.js:529 motions/static/js/motions/site.js:986 -#: motions/static/templates/motions/motion-detail.html:594 -#: motions/static/templates/motions/motion-import.html:25 -#: motions/static/templates/motions/motion-import.html:48 -#: motions/static/templates/motions/slide_motion.html:151 -#: motions/static/templates/motions/slide_motion.html:166 -msgid "Reason" -msgstr "Zdůvodnění" - -#: motions/static/js/motions/site.js:860 -#: motions/static/templates/motions/motion-block-detail.html:53 -#: motions/static/templates/motions/motion-table-filters.html:41 -msgid "Recommendation" -msgstr "Doporučení" - -#: motions/static/templates/motions/workflow-detail.html:89 -msgid "Recommendation label" -msgstr "" - -#: motions/static/js/motions/workflow.js:80 -msgid "Red" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:15 -#: motions/static/templates/motions/workflow-detail.html:18 -msgid "Reduce" -msgstr "" - -#: motions/static/js/motions/base.js:1636 -msgid "Refer to committee" -msgstr "Předat do výboru" - -#: core/static/templates/core/manage-projectors.html:16 -msgid "Reference for current list of speakers" -msgstr "Odkaz pro nynější seznam řečníků" - -#: motions/static/js/motions/base.js:1637 -msgid "Referral to committee" -msgstr "Předání do výboru" - -#: motions/static/js/motions/base.js:1610 -#: motions/static/js/motions/base.js:1625 -msgid "Reject" -msgstr "Odmítnout" - -#: motions/static/js/motions/base.js:1641 -msgid "Reject (not authorized)" -msgstr "Odmítnout (není schváleno)" - -#: motions/static/templates/motions/motion-detail/change-summary.html:11 -msgid "Reject all change recommendations" -msgstr "Odmítnout všechna doporučení změn" - -#: motions/static/templates/motions/motion-detail/change-summary.html:20 -#: motions/static/templates/motions/motion-detail/change-summary.html:45 -#: motions/static/templates/motions/motion-detail/view-diff.html:100 -#: motions/static/templates/motions/motion-detail/view-diff.html:16 -#: motions/static/templates/motions/motion-detail/view-diff.html:38 -#: motions/static/templates/motions/motion-detail/view-diff.html:71 -msgid "Rejected" -msgstr "Odmítnuto" - -#: motions/static/js/motions/base.js:1611 -#: motions/static/js/motions/base.js:1626 -msgid "Rejection" -msgstr "Odmítnutí" - -#: motions/static/js/motions/base.js:1642 -msgid "Rejection (not authorized)" -msgstr "Odmítnutí (není schváleno)" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:50 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:73 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:99 -#: core/static/templates/config-form-field.html:123 -#: core/static/templates/config-form-field.html:42 -#: motions/static/templates/motions/motion-submitters.html:23 -msgid "Remove" -msgstr "Odstranit" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:19 -msgid "Remove all speakers" -msgstr "Odstranit všechny řečníky" - -#: motions/static/js/motions/site.js:3285 -msgid "" -"Remove all supporters of a motion if a submitter edits his motion in early " -"state" -msgstr "Odstranit všechny podporovatele návrhu, pokud navrhovatel svůj návrh v počátečním stavu upravuje" - -#: core/static/templates/core/projector-controls.html:137 -msgid "Remove countdown" -msgstr "Odstranit odpočítávání" - -#: motions/static/templates/motions/motion-block-detail.html:62 -msgid "Remove from motion block" -msgstr "Odstranit z návrhového bloku" - -#: users/static/templates/users/user-list.html:115 -#: users/static/templates/users/user-list.html:84 -msgid "Remove group" -msgstr "Odstranit skupinu" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:129 -#: assignments/static/templates/assignments/assignment-detail.html:122 -msgid "Remove me" -msgstr "Odstranit mě" - -#: core/static/templates/core/projector-controls.html:228 -msgid "Remove message" -msgstr "Odstranit oznámení" - -#: motions/static/js/motions/base.js:1495 motions/static/js/motions/pdf.js:280 -#: motions/static/js/motions/site.js:370 -#: motions/static/templates/motions/motion-detail/change-summary.html:18 -#: motions/static/templates/motions/motion-detail/change-summary.html:37 -msgid "Replacement" -msgstr "Nahrazení" - -#: motions/static/templates/motions/motion-import.html:20 -#: topics/static/templates/topics/topic-import.html:48 -#: users/static/templates/users/user-import.html:48 -msgid "" -"Required comma or semicolon separated values with these column header names " -"in the first row" -msgstr "Požadovány hodnoty oddělené čárkou nebo středníkem s těmito názvy sloupců v prvním řádku" - -#: assignments/static/js/assignments/site.js:925 -#: assignments/static/templates/assignments/assignment-detail.html:204 -#: motions/static/js/motions/site.js:3302 -#: motions/static/templates/motions/motion-detail.html:472 -msgid "Required majority" -msgstr "Požadovaná většina" - -#: motions/static/templates/motions/workflow-detail.html:142 -msgid "Required permission to see" -msgstr "" - -#: core/static/templates/config-form-field.html:147 -msgid "Reset" -msgstr "Obnovit" - -#: core/static/templates/core/projector-controls.html:159 -msgid "Reset countdown" -msgstr "Obnovit odpočítávání" - -#: motions/static/templates/motions/motion-amendment-list.html:311 -#: motions/static/templates/motions/motion-detail.html:246 -#: motions/static/templates/motions/motion-list.html:257 -msgid "Reset recommendation" -msgstr "Vynulovat doporučení" - -#: core/static/templates/core/manage-projectors.html:170 -#: core/static/templates/core/projector-controls.html:94 -msgid "Reset scaling" -msgstr "Obnovit velikost" - -#: core/static/templates/core/manage-projectors.html:190 -#: core/static/templates/core/projector-controls.html:114 -msgid "Reset scrolling" -msgstr "Obnovit posun obrazu" - -#: motions/static/templates/motions/motion-amendment-list.html:272 -#: motions/static/templates/motions/motion-detail.html:204 -#: motions/static/templates/motions/motion-list.html:231 -msgid "Reset state" -msgstr "Obnovit stav" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:61 -msgid "Reset zoom" -msgstr "Obnovit zvětšení" - -#: motions/static/templates/motions/motion-detail/comments.html:42 -#: motions/static/templates/motions/motion-detail/personal-note.html:38 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:20 -#: motions/static/templates/motions/motion-detail/view-original.html:12 -msgid "Revert" -msgstr "Vrátit" - -#: core/static/js/core/site.js:2103 -msgid "Right" -msgstr "Vpravo" - -#: agenda/static/js/agenda/site.js:874 -msgid "Roman" -msgstr "Římský" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:51 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:83 -msgid "Rotate clockwise" -msgstr "Otočit zleva do prava" - -#: assignments/static/templates/assignments/assignment-form.html:15 -#: assignments/static/templates/assignments/assignmentpoll-form.html:15 -#: core/static/templates/core/projector-controls.html:193 -#: core/static/templates/core/projector-message-form.html:5 -#: core/static/templates/core/tag-form.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:16 -#: motions/static/templates/motions/category-form.html:10 -#: motions/static/templates/motions/change-recommendation-form.html:10 -#: motions/static/templates/motions/motion-block-form.html:10 -#: motions/static/templates/motions/motion-comment-form.html:9 -#: motions/static/templates/motions/motion-detail/comments.html:39 -#: motions/static/templates/motions/motion-detail/personal-note.html:35 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:17 -#: motions/static/templates/motions/motion-detail/view-original.html:9 -#: motions/static/templates/motions/motion-form.html:16 -#: motions/static/templates/motions/motion-poll-form.html:15 -#: motions/static/templates/motions/state-edit.html:21 -#: motions/static/templates/motions/workflow-edit.html:21 -#: topics/static/templates/topics/topic-form.html:10 -#: users/static/templates/users/group-edit.html:21 -#: users/static/templates/users/profile-password-form.html:9 -#: users/static/templates/users/user-form.html:10 -msgid "Save" -msgstr "Uložit" - -#: mediafiles/static/js/mediafiles/image-plugin.js:197 -#: mediafiles/static/js/mediafiles/image-plugin.js:46 -msgid "Scale" -msgstr "Měřítko" - -#: core/static/templates/core/manage-projectors.html:107 -msgid "Scaling" -msgstr "" - -#: users/static/js/users/pdf.js:180 -msgid "Scan this QR code to connect to WLAN." -msgstr "Snímat tento QRCode pro spojení s WLAN." - -#: users/static/js/users/pdf.js:230 -msgid "Scan this QR code to open URL." -msgstr "Snímat tento QRCode pro otevření adresy (URL)." - -#: core/static/templates/core/manage-projectors.html:185 -#: core/static/templates/core/projector-controls.html:109 -msgid "Scroll down" -msgstr "Posunout dolů" - -#: core/static/templates/core/manage-projectors.html:180 -#: core/static/templates/core/projector-controls.html:104 -msgid "Scroll up" -msgstr "Posunout nahoru" - -#: agenda/static/templates/agenda/item-list.html:303 -#: assignments/static/templates/assignments/assignment-list.html:172 -#: core/static/js/core/site.js:400 core/static/templates/index.html:164 -#: core/static/templates/search.html:11 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:230 -#: motions/static/templates/motions/motion-table-filters.html:235 -#: users/static/templates/users/user-list.html:280 -msgid "Search" -msgstr "Hledání" - -#: core/static/templates/search.html:3 -msgid "Search results" -msgstr "Výsledky hledání" - -#: assignments/static/js/assignments/site.js:935 -msgid "Searching for candidates" -msgstr "Hledání uchazečů" - -#: agenda/static/templates/agenda/item-list.html:73 -#: assignments/static/templates/assignments/assignment-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:123 -#: motions/static/templates/motions/motion-amendment-list.html:64 -#: motions/static/templates/motions/motion-list.html:47 -#: users/static/templates/users/user-list.html:39 -msgid "Select ..." -msgstr "Vybrat..." - -#: motions/static/templates/motions/motion-import.html:15 -#: topics/static/templates/topics/topic-import.html:43 -#: users/static/templates/users/user-import.html:43 -msgid "Select a CSV file" -msgstr "Vybrat soubor CSV" - -#: core/static/templates/csv-import.html:8 -msgid "Select a file" -msgstr "Vybrat soubor" - -#: assignments/static/js/assignments/site.js:171 -#: motions/static/js/motions/motion-block.js:94 -#: motions/static/js/motions/site.js:556 topics/static/js/topics/site.js:133 -msgid "Select a parent item ..." -msgstr "Vybrat rodičovský bod..." - -#: motions/static/js/motions/site.js:603 -msgid "Select or search a category ..." -msgstr "Vybrat nebo hledat obor činnosti..." - -#: users/static/js/users/site.js:351 -msgid "Select or search a group ..." -msgstr "Vybrat nebo hledat skupinu..." - -#: motions/static/js/motions/site.js:617 -msgid "Select or search a motion block ..." -msgstr "Vybrat nebo hledat návrhový blok..." - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: mediafiles/static/js/mediafiles/forms.js:62 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "Select or search a participant ..." -msgstr "Vybrat nebo hledat účastníka..." - -#: motions/static/js/motions/site.js:495 -msgid "Select or search a submitter ..." -msgstr "Vybrat nebo hledat navrhovatele/navrhovatelku..." - -#: motions/static/js/motions/site.js:654 -msgid "Select or search a supporter ..." -msgstr "Vybrat nebo hledat podporovatele..." - -#: assignments/static/js/assignments/site.js:198 -#: motions/static/js/motions/site.js:640 -msgid "Select or search a tag ..." -msgstr "Vybrat nebo hledat klíčové slovo..." - -#: motions/static/js/motions/site.js:669 -msgid "Select or search a workflow ..." -msgstr "Vybrat nebo hledat pracovní postup..." - -#: motions/static/js/motions/site.js:589 topics/static/js/topics/site.js:118 -msgid "Select or search an attachment ..." -msgstr "Vybrat nebo hledat přílohu..." - -#: core/static/templates/core/manage-projectors.html:13 -msgid "Select the projector to which the current list of speakers refers to." -msgstr "Vybrat promítací přístroj, na nějž odkazuje nynější seznam řečníků." - -#: users/static/templates/users/user-list.html:142 -#: users/static/templates/users/user-list.html:89 -msgid "Send invitation emails" -msgstr "Poslat elektronické dopisy s pozváním" - -#: core/static/templates/csv-import.html:27 -msgid "Separator" -msgstr "Oddělovač" - -#: core/static/js/core/site.js:2099 -msgid "Separator used for all csv exports and examples" -msgstr "Oddělovač použitý pro všechna vyvedení do CSV a příklady" - -#: motions/static/js/motions/docx.js:93 motions/static/js/motions/pdf.js:549 -#: motions/static/js/motions/pdf.js:82 -#: motions/static/templates/motions/motion-detail.html:99 -msgid "Sequential number" -msgstr "Pořadové číslo" - -#: motions/static/js/motions/site.js:3245 -msgid "Serially numbered" -msgstr "Průběžné číslování" - -#: motions/static/templates/motions/motion-list.html:305 -msgid "Set a category" -msgstr "Stanovit obor činnosti" - -#: motions/static/templates/motions/motion-list.html:339 -msgid "Set a motion block" -msgstr "Stanovit návrhový blok" - -#: motions/static/templates/motions/motion-amendment-list.html:248 -#: motions/static/templates/motions/motion-detail.html:86 -#: motions/static/templates/motions/motion-list.html:210 -msgid "Set as favorite" -msgstr "Nastavit jako oblíbené" - -#: motions/static/templates/motions/motion-amendment-list.html:118 -#: motions/static/templates/motions/motion-amendment-list.html:145 -#: motions/static/templates/motions/motion-list.html:107 -#: motions/static/templates/motions/motion-list.html:80 -msgid "Set category" -msgstr "Stanovit obor činnosti" - -#: agenda/static/templates/agenda/item-list.html:502 -#: users/static/templates/users/user-list.html:435 -msgid "Set comment ..." -msgstr "Nastavit poznámku..." - -#: agenda/static/templates/agenda/item-list.html:481 -msgid "Set duration ..." -msgstr "Nastavit dobu trvání..." - -#: users/static/templates/users/user-import.html:102 -msgid "Set global action" -msgstr "Nastavit celkovou činnost" - -#: assignments/static/templates/assignments/assignment-detail.html:145 -msgid "Set hint for ballot paper ..." -msgstr "Poslat radu na hlasovacím lístku..." - -#: motions/static/js/motions/workflow.js:72 -msgid "Set identifier" -msgstr "" - -#: motions/static/js/motions/site.js:3246 -msgid "Set it manually" -msgstr "Nastavit ručně" - -#: agenda/static/templates/agenda/item-list.html:512 -msgid "Set item number ..." -msgstr "Nastavit číslo bodu..." - -#: motions/static/templates/motions/motion-amendment-list.html:119 -#: motions/static/templates/motions/motion-amendment-list.html:158 -#: motions/static/templates/motions/motion-list.html:120 -#: motions/static/templates/motions/motion-list.html:81 -msgid "Set motion block" -msgstr "Stanovit návrhový blok" - -#: agenda/static/templates/agenda/item-list.html:148 -msgid "Set state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:117 -#: motions/static/templates/motions/motion-amendment-list.html:131 -#: motions/static/templates/motions/motion-list.html:79 -#: motions/static/templates/motions/motion-list.html:93 -msgid "Set status" -msgstr "Nastavit stav" - -#: users/static/templates/users/user-list.html:419 -msgid "Set structure level ..." -msgstr "Nastavit úroveň rozčlenění..." - -#: agenda/static/templates/agenda/item-list.html:147 -#: agenda/static/templates/agenda/item-list.html:166 -msgid "Set visibility" -msgstr "" - -#: users/static/templates/users/user-list.html:88 -msgid "Set/Unset 'is a committee'" -msgstr "Nastavit/Zrušit nastavení Je výbor" - -#: users/static/templates/users/user-list.html:86 -msgid "Set/Unset 'is active'" -msgstr "Nastavit/Zrušit nastavení Je činný" - -#: users/static/templates/users/user-list.html:87 -msgid "Set/Unset 'is present'" -msgstr "Nastavit/Zrušit nastavení Je přítomen" - -#: core/static/js/core/site.js:197 core/static/js/core/site.js:389 -#: core/static/templates/config.html:3 -msgid "Settings" -msgstr "Nastavení" - -#: core/static/js/core/site.js:2087 -msgid "Short description of event" -msgstr "Krátký popis události" - -#: motions/static/js/motions/site.js:3271 -msgid "Show amendments together with motions" -msgstr "" - -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:6 -msgid "Show entire motion text" -msgstr "" - -#: assignments/static/js/assignments/site.js:183 -#: motions/static/js/motions/site.js:571 users/static/js/users/site.js:382 -msgid "Show extended fields" -msgstr "Ukázat rozšířená pole" - -#: motions/static/templates/motions/motion-detail/toolbar.html:59 -msgid "Show highlighted line also on projector." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:642 -msgid "Show history" -msgstr "Ukázat historii" - -#: agenda/static/templates/agenda/item-sort.html:19 -msgid "Show internal items" -msgstr "Ukázat vnitřní body..." - -#: core/static/js/core/site.js:2105 -msgid "Show logo on projector" -msgstr "Ukázat na promítacím přístroji emblém" - -#: agenda/static/js/agenda/site.js:880 -msgid "Show orange countdown in the last x seconds of speaking time" -msgstr "Ukázat odpočítávání v posledních x sekundách času mluvení v oranžové barvě" - -#: users/static/templates/users/user-change-password.html:43 -msgid "Show password" -msgstr "Ukázat heslo" - -#: motions/static/js/motions/workflow.js:77 -msgid "Show recommendation extension field" -msgstr "" - -#: motions/static/js/motions/workflow.js:75 -msgid "Show state extension field" -msgstr "" - -#: core/static/js/core/site.js:2113 -msgid "Show the clock on projector" -msgstr "Ukázat na promítacím přístroji hodiny" - -#: core/static/js/core/site.js:2098 -msgid "Show this text on the login page" -msgstr "Ukázat tento text na přihlašovací stránce" - -#: core/static/js/core/site.js:2111 -msgid "Show title and description of event on projector" -msgstr "Ukázat název a popis události na promítacím přístroji" - -#: motions/static/js/motions/base.js:1604 -msgid "Simple Workflow" -msgstr "Jednoduchý pracovní postup" - -#: assignments/static/js/assignments/site.js:927 -#: motions/static/js/motions/site.js:3304 -msgid "Simple majority" -msgstr "Jednoduchá většina" - -#: core/static/templates/core/manage-projectors.html:160 -#: core/static/templates/core/projector-controls.html:84 -msgid "Smaller" -msgstr "Menší" - -#: mediafiles/static/js/mediafiles/upload.js:128 -#: mediafiles/static/js/mediafiles/upload.js:150 -msgid "Some files could not be uploaded" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:148 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:207 -#: motions/static/templates/motions/category-list.html:44 -#: motions/static/templates/motions/motion-table-filters.html:202 -#: users/static/templates/users/user-list.html:257 -msgid "Sort" -msgstr "Třídit" - -#: agenda/static/templates/agenda/item-list.html:79 -msgid "Sort ..." -msgstr "Třídit..." - -#: agenda/static/templates/agenda/item-sort.html:9 -msgid "Sort agenda" -msgstr "Třídit pořad jednání" - -#: motions/static/js/motions/site.js:3317 -msgid "Sort categories by" -msgstr "Třídit skupiny podle" - -#: users/static/js/users/site.js:1848 -msgid "Sort name of participants by" -msgstr "Třídit jména účastníků podle" - -#: motions/static/templates/motions/motion-detail.html:146 -#: motions/static/templates/motions/motion-submitters.html:10 -msgid "Sort submitters" -msgstr "" - -#: assignments/static/templates/assignments/assignmentpoll-form.html:8 -#: motions/static/templates/motions/motion-poll-form.html:8 -msgid "Special values" -msgstr "Zvláštní hodnoty" - -#: users/static/js/users/base.js:173 -msgid "Staff" -msgstr "Zaměstnanci" - -#: core/static/js/core/site.js:2104 -msgid "Standard font size in PDF" -msgstr "Běžná velikost písma v PDF" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:92 -#: core/static/templates/core/projector-controls.html:164 -msgid "Start" -msgstr "Začátek" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:46 -#: core/static/templates/core/projector-controls.html:187 -msgid "Start time" -msgstr "Začáteční čas" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:100 -msgid "Start/stop video" -msgstr "Spustit/Zastavit obrazový záznam" - -#: agenda/static/templates/agenda/item-list.html:250 -#: motions/static/js/motions/pdf.js:1115 motions/static/js/motions/pdf.js:114 -#: motions/static/js/motions/pdf.js:575 motions/static/js/motions/site.js:1429 -#: motions/static/js/motions/site.js:856 -#: motions/static/templates/motions/motion-block-detail.html:52 -#: motions/static/templates/motions/motion-detail.html:187 -#: motions/static/templates/motions/motion-detail.html:191 -#: motions/static/templates/motions/motion-table-filters.html:7 -#: motions/static/templates/motions/slide_motion.html:4 -msgid "State" -msgstr "Stav" - -#: motions/static/js/motions/docx.js:95 -msgid "Status" -msgstr "Stav" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:66 -msgid "Stop" -msgstr "Zastavit" - -#: motions/static/js/motions/site.js:3261 -msgid "Stop submitting new motions by non-staff users" -msgstr "Zastavit podávání nových návrhů uživateli bez práv správce" - -#: users/static/js/users/pdf.js:69 users/static/js/users/site.js:1282 -#: users/static/js/users/site.js:324 users/static/js/users/site.js:646 -#: users/static/templates/users/user-detail.html:28 -#: users/static/templates/users/user-import.html:53 -#: users/static/templates/users/user-import.html:86 -#: users/static/templates/users/user-list.html:425 -msgid "Structure level" -msgstr "Úroveň rozčlenění" - -#: core/static/js/core/site.js:132 core/static/js/core/site.js:133 -msgid "Submit" -msgstr "Podat" - -#: motions/static/templates/motions/motion-import.html:26 -#: motions/static/templates/motions/motion-import.html:49 -msgid "Submitter" -msgstr "Navrhovatel" - -#: motions/static/js/motions/docx.js:94 motions/static/js/motions/pdf.js:100 -#: motions/static/js/motions/pdf.js:1110 motions/static/js/motions/pdf.js:563 -#: motions/static/js/motions/site.js:102 -#: motions/static/js/motions/site.js:1423 -#: motions/static/js/motions/site.js:492 motions/static/js/motions/site.js:855 -#: motions/static/templates/motions/motion-detail.html:143 -#: motions/static/templates/motions/motion-detail.html:145 -#: motions/static/templates/motions/slide_motion.html:14 -msgid "Submitters" -msgstr "Navrhovatelé" - -#: motions/static/js/motions/pdf.js:291 -msgid "Summary of change recommendations" -msgstr "Shrnutí doporučení změn" - -#: motions/static/templates/motions/motion-detail/change-summary.html:4 -msgid "Summary of changes" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:164 -msgid "Support motion" -msgstr "Podpořit návrh" - -#: motions/static/js/motions/site.js:3282 -#: motions/static/js/motions/site.js:651 -#: motions/static/templates/motions/motion-amendment-list.html:385 -#: motions/static/templates/motions/motion-detail.html:156 -#: motions/static/templates/motions/motion-list.html:419 -msgid "Supporters" -msgstr "Podporovatel" - -#: users/static/js/users/site.js:1852 users/static/js/users/site.js:304 -#: users/static/js/users/site.js:636 -#: users/static/templates/users/user-import.html:52 -#: users/static/templates/users/user-import.html:85 -msgid "Surname" -msgstr "Příjmení" - -#: users/static/js/users/site.js:1858 -msgid "System URL" -msgstr "Adresa systému (URL)" - -#: assignments/static/js/assignments/pdf.js:552 -#: motions/static/js/motions/docx.js:52 motions/static/js/motions/pdf.js:872 -msgid "Table of contents" -msgstr "Obsah" - -#: assignments/static/templates/assignments/assignment-list.html:105 -#: motions/static/templates/motions/motion-table-filters.html:141 -msgid "Tag" -msgstr "Klíčové slovo" - -#: assignments/static/js/assignments/site.js:195 -#: assignments/static/templates/assignments/assignment-detail.html:55 -#: assignments/static/templates/assignments/assignment-list.html:10 -#: core/static/js/core/site.js:410 core/static/templates/core/tag-list.html:13 -#: motions/static/js/motions/site.js:637 -#: motions/static/templates/motions/motion-detail.html:340 -#: motions/static/templates/motions/motion-detail.html:344 -#: motions/static/templates/motions/motion-list.html:27 -msgid "Tags" -msgstr "Klíčová slova" - -#: motions/static/js/motions/site.js:518 motions/static/js/motions/site.js:985 -#: motions/static/templates/motions/motion-import.html:24 -#: motions/static/templates/motions/motion-import.html:47 -#: topics/static/js/topics/site.js:103 -#: topics/static/templates/topics/topic-import.html:51 -#: topics/static/templates/topics/topic-import.html:70 -msgid "Text" -msgstr "Text" - -#: motions/static/js/motions/site.js:392 -msgid "Text from line %from% to %to%" -msgstr "Text od řádku %from% po %to%" - -#: motions/static/js/motions/site.js:391 -msgid "Text in line %from%" -msgstr "Text v řádku %from%" - -#: motions/static/js/motions/site.js:3296 -msgid "The 100 % base of a voting result consists of" -msgstr "100 % základ výsledku hlasování se skládá z" - -#: assignments/static/js/assignments/site.js:910 -msgid "The 100-%-base of an election result consists of" -msgstr "100 % základ volebního výsledku se skládá z" - -#: motions/static/js/motions/site.js:3248 -msgid "The assembly may decide:" -msgstr "Shromáždění se může usnést:" - -#: core/static/js/core/site.js:1847 -msgid "The delete was successful." -msgstr "Smazání bylo úspěšné." - -#: core/static/templates/privacypolicydialog.html:3 -msgid "The event manager hasn't set up a privacy policy yet." -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:26 -msgid "The list of speakers is empty." -msgstr "Seznam řečníků je prázdný." - -#: motions/static/js/motions/site.js:3257 -msgid "" -"The maximum number of characters per line. Relevant when line numbering is " -"enabled. Min: 40" -msgstr "Největší počet znaků na řádek. Má význam, když je zapnuto číslování řádků. Nejméně: 40" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:16 -msgid "The modified final version have been changed." -msgstr "" - -#: motions/static/templates/motions/motion-detail/personal-note.html:34 -msgid "The personal note has been changed." -msgstr "Osobní poznámka byla změněna." - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:364 -msgid "" -"The projector header should have a default size of 1024x70px. Adapt the " -"image width if you change the projector resolution." -msgstr "Záhlaví promítacího stroje má mít výchozí velikost 1024 x 70 obrazových bodů. Uzpůsobte šířku obrázku, pokud změníte rozlišení promítačky." - -#: core/static/js/core/base.js:794 -msgid "The server didn't respond." -msgstr "Server neodpověděl." - -#: motions/static/templates/motions/motion-detail/view-original.html:8 -msgid "The text or reason have been changed." -msgstr "Text nebo důvod byl změněn." - -#: motions/static/js/motions/site.js:3274 -msgid "The title of the motion is always applied." -msgstr "Název návrhu je vždy převzat." - -#: users/static/js/users/site.js:830 -msgid "" -"The user %user% has no email, so the invitation email could not be send." -msgstr "Uživatel %user% nemá žádnou adresu elektronické pošty (nelze mu zasílat elektronické dopisy), takže elektronický dopis s pozváním se mu nepodařilo poslat." - -#: users/static/js/users/site.js:832 -msgid "" -"The users %user% have no email, so the invitation emails could not be send." -msgstr "Uživatelé %user% nemají žádnou adresu elektronické pošty (nelze jim zasílat elektronické dopisy), takže elektronické dopisy s pozváními se jim nepodařilo poslat." - -#: users/static/js/users/site.js:1265 -msgid "There are more than one duplicates of this user!" -msgstr "Je více než jedna kopie tohoto uživatele!" - -#: motions/static/templates/motions/motion-detail/view-diff.html:57 -msgid "This change collides with another one." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:620 -msgid "This is the last active version." -msgstr "Toto je poslední platná verze." - -#: agenda/static/js/agenda/site.js:869 -msgid "This prefix will be set if you run the automatic agenda numbering." -msgstr "Tato předpona bude nastavena k provádění automatického číslování bodů pořadu jednání." - -#: motions/static/templates/motions/motion-detail.html:96 -msgid "This version is not permitted." -msgstr "Tato verze není povolena." - -#: assignments/static/js/assignments/site.js:929 -#: motions/static/js/motions/site.js:3306 -msgid "Three-quarters majority" -msgstr "Tříčtvrtinová většina" - -#: assignments/static/js/assignments/site.js:129 -#: assignments/static/js/assignments/site.js:335 -#: mediafiles/static/js/mediafiles/forms.js:44 -#: mediafiles/static/js/mediafiles/list.js:100 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:24 -#: motions/static/js/motions/motion-block.js:79 -#: motions/static/js/motions/pdf.js:264 motions/static/js/motions/site.js:1421 -#: motions/static/js/motions/site.js:506 -#: motions/static/templates/motions/motion-detail/change-summary.html:17 -#: motions/static/templates/motions/motion-import.html:23 -#: motions/static/templates/motions/motion-import.html:46 -#: topics/static/js/topics/site.js:95 -#: topics/static/templates/topics/topic-import.html:50 -#: topics/static/templates/topics/topic-import.html:69 -#: users/static/js/users/site.js:288 -#: users/static/templates/users/user-import.html:50 -#: users/static/templates/users/user-import.html:83 -msgid "Title" -msgstr "Název" - -#: motions/static/js/motions/site.js:3315 -msgid "Title for PDF and DOCX documents (all motions)" -msgstr "Název dokumentů PDF a DOCX (všechny návrhy)" - -#: assignments/static/js/assignments/site.js:932 -msgid "Title for PDF document (all elections)" -msgstr "Název dokumentu PDF (všechny volby)" - -#: users/static/js/users/site.js:1855 -msgid "Title for access data and welcome PDF" -msgstr "Název pro přístupová data a pozdravné PDF" - -#: topics/static/templates/topics/topic-import.html:56 -msgid "Title is required. All other fields are optional and may be empty." -msgstr "Název je požadován. Všechna ostatní pole jsou nepovinná a mohou zůstat prázdná." - -#: motions/static/js/motions/site.js:360 -msgid "To Line" -msgstr "Po řádek" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:76 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:93 -msgid "Toggle fullscreen" -msgstr "Přepnout celou obrazovku" - -#: topics/static/js/topics/base.js:16 topics/static/js/topics/site.js:161 -#: topics/static/templates/topics/topic-detail.html:25 -msgid "Topic" -msgstr "Námět" - -#: topics/static/js/topics/site.js:17 -msgid "Topics" -msgstr "Náměty" - -#: motions/static/js/motions/site.js:539 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:25 -#: motions/static/templates/motions/motion-detail/view-original.html:17 -msgid "Trivial change" -msgstr "Jednoduchá změna" - -#: assignments/static/js/assignments/site.js:928 -#: motions/static/js/motions/site.js:3305 -msgid "Two-thirds majority" -msgstr "Dvoutřetinová většina" - -#: mediafiles/static/js/mediafiles/list.js:102 -msgid "Type" -msgstr "Typ" - -#: motions/static/templates/motions/motion-detail.html:169 -msgid "Unsupport motion" -msgstr "Stáhnout podporu návrhu" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:87 -msgid "Upload" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:1 -msgid "Upload files" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:33 -msgid "Upload status" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:106 -msgid "Upload time" -msgstr "Doba nahrávání" - -#: mediafiles/static/js/mediafiles/forms.js:59 -#: mediafiles/static/js/mediafiles/list.js:108 -msgid "Uploaded by" -msgstr "Nahráno" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:30 -msgid "Uploader" -msgstr "" - -#: assignments/static/js/assignments/site.js:923 -#: motions/static/js/motions/site.js:3311 -msgid "Use the following custom number" -msgstr "Použít následující uživatelsky stanovený počet" - -#: users/static/js/users/site.js:1876 -msgid "" -"Use these placeholders: {name}, {event_name}, {url}, {username}, {password}." -" The url referrs to the system url." -msgstr "Použijte tyto zástupné symboly: {name}, {event_name}, {url}, {username}, {password}. Adresa (URL) odkazuje na systémovou adresu (URL)." - -#: users/static/js/users/site.js:1859 -msgid "Used for QRCode in PDF of access data." -msgstr "Použito jako QR kód v PDF přístupových dat." - -#: users/static/js/users/site.js:1861 users/static/js/users/site.js:1863 -#: users/static/js/users/site.js:1865 -msgid "Used for WLAN QRCode in PDF of access data." -msgstr "Použito jako WLAN QR kód v PDF přístupových dat." - -#: core/static/templates/core/login-form.html:12 -#: users/static/js/users/pdf.js:193 users/static/js/users/site.js:1283 -#: users/static/js/users/site.js:340 users/static/js/users/site.js:463 -#: users/static/templates/users/user-change-password.html:41 -#: users/static/templates/users/user-detail.html:46 -msgid "Username" -msgstr "Uživatelské jméno" - -#: motions/static/templates/motions/motion-import.html:123 -msgid "Users created" -msgstr "Uživatelé vytvořeni" - -#: users/static/templates/users/group-list.html:35 -msgid "Users without any assigned group gain the permissions from this group." -msgstr "Uživatelé bez zvláštní přiřazené skupiny dostanou oprávnění této skupiny." - -#: assignments/static/js/assignments/site.js:826 -#: assignments/static/templates/assignments/assignment-detail.html:268 -#: assignments/static/templates/assignments/slide_assignment.html:82 -msgid "Valid ballots" -msgstr "Platné hlasovací lístky" - -#: motions/static/js/motions/pdf.js:209 motions/static/js/motions/site.js:790 -#: motions/static/templates/motions/motion-detail.html:441 -msgid "Valid votes" -msgstr "Platné hlasy" - -#: motions/static/templates/motions/motion-detail.html:613 -#: motions/static/templates/motions/motion-detail.html:616 -msgid "Version" -msgstr "Verze" - -#: motions/static/templates/motions/motion-detail.html:609 -msgid "Version history" -msgstr "Historie verzí" - -#: motions/static/js/motions/workflow.js:68 -msgid "Versioning" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:274 -msgid "Visibility" -msgstr "" - -#. ballot of a motion -#: motions/static/js/motions/pdf.js:186 -#: motions/static/templates/motions/motion-detail.html:372 -#: motions/static/templates/motions/motion-poll-form.html:1 -#: motions/static/templates/motions/slide_motion.html:24 -msgid "Vote" -msgstr "Hlasování" - -#: assignments/static/js/assignments/pdf.js:154 -#: assignments/static/templates/assignments/assignment-detail.html:214 -#: assignments/static/templates/assignments/slide_assignment.html:37 -msgid "Votes" -msgstr "Hlasy" - -#: motions/static/js/motions/pdf.js:223 motions/static/js/motions/site.js:808 -#: motions/static/templates/motions/motion-detail.html:459 -msgid "Votes cast" -msgstr "Odevzdané hlasy" - -#: assignments/static/js/assignments/site.js:936 -msgid "Voting" -msgstr "Hlasování" - -#: motions/static/js/motions/site.js:3295 -msgid "Voting and ballot papers" -msgstr "Hlasování a hlasovací lístky" - -#: motions/static/js/motions/pdf.js:231 motions/static/js/motions/site.js:887 -#: motions/static/templates/motions/motion-detail.html:367 -#: motions/static/templates/motions/slide_motion.html:20 -msgid "Voting result" -msgstr "Výsledek hlasování" - -#: users/static/js/users/site.js:1866 -msgid "WEP" -msgstr "WEP" - -#: users/static/js/users/pdf.js:137 -msgid "WLAN access data" -msgstr "Přístupová data k WLAN" - -#: users/static/js/users/pdf.js:157 users/static/js/users/site.js:1864 -msgid "WLAN encryption" -msgstr "Šifrování WLAN" - -#: users/static/js/users/pdf.js:141 users/static/js/users/site.js:1860 -msgid "WLAN name (SSID)" -msgstr "Název WLAN (SSID)" - -#: users/static/js/users/pdf.js:149 users/static/js/users/site.js:1862 -msgid "WLAN password" -msgstr "Heslo k WLAN" - -#: users/static/js/users/site.js:1867 -msgid "WPA/WPA2" -msgstr "WPA/WPA2" - -#: assignments/static/templates/assignments/slide_assignment.html:29 -msgid "Waiting for results ..." -msgstr "Čeká se na výsledky..." - -#: core/static/js/core/site.js:747 -msgid "Warning" -msgstr "Varování" - -#: core/static/js/core/site.js:2126 -msgid "Web interface header logo" -msgstr "Emblém v záhlaví internetového rozhraní" - -#: core/static/js/core/site.js:2094 users/static/js/users/site.js:1854 -msgid "Welcome to OpenSlides" -msgstr "Vítejte v OpenSlides" - -#: motions/static/js/motions/site.js:3265 -msgid "" -"Will be displayed as label before selected recommendation. Use an empty " -"value to disable the recommendation system." -msgstr "Bude zobrazeno jako popis před vybraným doporučením. Použijte prázdné zadání pro vypnutí doporučovací soustavy" - -#: motions/static/js/motions/base.js:1628 -msgid "Withdraw" -msgstr "Stáhnout" - -#: motions/static/js/motions/site.js:665 -msgid "Workflow" -msgstr "Pracovní postup" - -#: motions/static/js/motions/site.js:3242 -msgid "Workflow of new motions" -msgstr "Průběh práce na nových návrzích" - -#: motions/static/js/motions/site.js:199 -#: motions/static/templates/motions/motion-list.html:23 -#: motions/static/templates/motions/workflow-list.html:13 -msgid "Workflows" -msgstr "" - -#: motions/static/js/motions/workflow.js:82 -msgid "Yellow" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:317 -#: assignments/static/js/assignments/site.js:611 -#: assignments/static/js/assignments/site.js:729 -#: motions/static/js/motions/pdf.js:193 motions/static/js/motions/pdf.js:739 -#: motions/static/js/motions/site.js:760 -#: motions/static/templates/motions/motion-detail.html:405 -#: motions/static/templates/motions/slide_motion.html:32 -msgid "Yes" -msgstr "Ano" - -#: motions/static/js/motions/site.js:3298 -msgid "Yes/No" -msgstr "Ano/Ne" - -#: assignments/static/js/assignments/site.js:916 -#: assignments/static/templates/assignments/assignment-detail.html:289 -msgid "Yes/No per candidate" -msgstr "Ano/Ne pro uchazeče" - -#: motions/static/js/motions/site.js:3297 -msgid "Yes/No/Abstain" -msgstr "Ano/Ne/Zdržení se" - -#: assignments/static/js/assignments/site.js:915 -#: assignments/static/templates/assignments/assignment-detail.html:288 -msgid "Yes/No/Abstain per candidate" -msgstr "Ano/Ne/Zdržení se pro uchazeče" - -#: users/static/templates/users/group-list.html:69 -msgid "You are not allowed to lock yourself out of the configuration!" -msgstr "Nejste oprávněn sám sebe zamknout z nastavení!" - -#: core/static/js/core/site.js:2106 -msgid "" -"You can replace the logo by uploading an image and set it as the \"Projector" -" logo\" in \"files\"." -msgstr "Emblém můžete nahradit nahráním obrázku a jeho nastavením v souborech jako emblému promítacího přístroje." - -#: users/static/js/users/site.js:1873 -msgid "You can use {event_name} as a placeholder." -msgstr "Můžete použít {event_name} jako zástupný symbol." - -#: users/static/js/users/site.js:1736 -msgid "You have to enable cookies to use OpenSlides." -msgstr "Pro používání OpenSlides musíte povolit koláčky." - -#: users/static/templates/users/user-change-password.html:17 -msgid "You override the personally set password of" -msgstr "Tímto přepíšete osobně nastavené heslo" - -#: users/static/js/users/site.js:1872 -msgid "Your login for {event_name}" -msgstr "Vaše přihlášení pro {event_name}" - -#: motions/static/js/motions/pdf.js:1376 -msgid "ZIP successfully generated." -msgstr "ZIP úspěšně vytvořen." - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:66 -msgid "Zoom in" -msgstr "Přiblížit" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:57 -msgid "Zoom out" -msgstr "Oddálit" - -#: agenda/static/js/agenda/site.js:883 -msgid "[Begin speech] starts the countdown, [End speech] stops the countdown." -msgstr "[Začít řeč] spustí odpočítávání, [Ukončit řeč] zastaví odpočítávání." - -#: users/static/js/users/site.js:1856 -msgid "[Place for your welcome and help text.]" -msgstr "[Místo pro váš uvítací a nápomocný text.]" - -#: core/static/js/core/site.js:2096 -msgid "[Space for your welcome text.]" -msgstr "[Místo pro váš uvítací text.]" - -#: motions/static/js/motions/base.js:1606 -#: motions/static/js/motions/base.js:1621 -msgid "accepted" -msgstr "přijato" - -#: motions/static/js/motions/base.js:1629 -msgid "adjourned" -msgstr "odloženo" - -#: topics/static/js/topics/csv.js:26 -msgid "agenda-example" -msgstr "" - -#: users/static/js/users/site.js:1284 -msgid "already exists." -msgstr "již existuje." - -#: motions/static/templates/motions/motion-amendment-list.html:175 -#: motions/static/templates/motions/motion-list.html:438 -msgid "amendments" -msgstr "" - -#: users/static/js/users/site.js:852 -msgid "and" -msgstr "a" - -#: core/static/js/core/site.js:753 -msgid "anonymous users are also editing this." -msgstr "anonymní uživatelé toto upravují také." - -#: core/static/js/core/site.js:770 -msgid "are also editing this." -msgstr "toto také upravují." - -#: motions/static/js/motions/pdf.js:1392 -msgid "ballot-paper" -msgstr "Hlasovací lístek" - -#: motions/static/templates/motions/motion-amendment-list.html:320 -#: motions/static/templates/motions/motion-list.html:267 -msgid "by" -msgstr "od" - -#: core/static/js/core/site.js:46 -msgid "clear" -msgstr "smazat" - -#: core/static/js/core/site.js:58 -msgid "close" -msgstr "zavřít" - -#: users/static/js/users/site.js:1178 -msgid "create duplicate" -msgstr "vytvořit kopii" - -#: core/static/js/core/site.js:50 -msgid "date" -msgstr "datum" - -#: motions/static/templates/motions/motion-table-filters.html:25 -#: motions/static/templates/motions/motion-table-filters.html:263 -msgid "done" -msgstr "hotovo" - -#: users/static/templates/users/user-import.html:97 -msgid "duplicate" -msgstr "kopie" - -#: users/static/templates/users/user-import.html:210 -#: users/static/templates/users/user-import.html:98 -msgid "duplicates" -msgstr "kopie" - -#: assignments/static/templates/assignments/assignment-list.html:66 -msgid "elections" -msgstr "Volby" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:144 -msgid "files" -msgstr "Soubory" - -#: motions/static/templates/motions/motion-detail/toolbar.html:53 -msgid "go" -msgstr "jít na" - -#. 'h' means time in hours -#: agenda/static/templates/agenda/item-list.html:484 -#: agenda/static/templates/agenda/item-list.html:492 -msgid "h" -msgstr "h" - -#: topics/static/templates/topics/topic-import.html:27 -msgid "imported" -msgstr "zaveden" - -#: motions/static/js/motions/site.js:932 motions/static/js/motions/site.js:945 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:17 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:43 -msgid "inline" -msgstr "uvnitř" - -#: motions/static/js/motions/docx.js:168 motions/static/js/motions/pdf.js:1421 -#: motions/static/js/motions/pdf.js:425 -#: motions/static/templates/motions/motion-detail/comments.html:25 -msgid "internal" -msgstr "vnitřní" - -#: core/static/js/core/site.js:768 -msgid "is also editing this." -msgstr "toto také upravuje." - -#: assignments/static/js/assignments/pdf.js:223 -#: assignments/static/templates/assignments/assignment-detail.html:224 -#: assignments/static/templates/assignments/assignment-detail.html:95 -#: assignments/static/templates/assignments/slide_assignment.html:23 -#: assignments/static/templates/assignments/slide_assignment.html:44 -msgid "is elected" -msgstr "je zvolen" - -#: assignments/static/templates/assignments/assignment-detail.html:227 -msgid "is not elected" -msgstr "není zvolen" - -#: users/static/js/users/site.js:1106 -msgid "is now" -msgstr "je nyní" - -#: motions/static/templates/motions/motion-table-filters.html:124 -msgid "is set" -msgstr "je učiněn" - -#: agenda/static/templates/agenda/item-list.html:193 -msgid "items" -msgstr "bodů" - -#: users/static/js/users/site.js:1176 -msgid "keep original" -msgstr "zachovat původní" - -#: assignments/static/js/assignments/base.js:280 -#: assignments/static/js/assignments/base.js:50 -#: assignments/static/templates/assignments/assignmentpoll-form.html:9 -#: motions/static/js/motions/base.js:157 -#: motions/static/templates/motions/motion-poll-form.html:9 -msgid "majority" -msgstr "Většina" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:45 -msgid "minutes" -msgstr "minut" - -#: motions/static/js/motions/csv.js:42 motions/static/js/motions/docx.js:188 -#: motions/static/js/motions/pdf.js:1325 motions/static/js/motions/pdf.js:1338 -#: motions/static/templates/motions/motion-block-detail.html:44 -#: motions/static/templates/motions/motion-list.html:137 -msgid "motions" -msgstr "návrhů" - -#: motions/static/templates/motions/motion-import.html:122 -msgid "motions were successfully imported." -msgstr "návrhů bylo úspěšně zavedeno." - -#: motions/static/templates/motions/motion-import.html:115 -msgid "motions will be imported." -msgstr "návrhů bude zavedeno." - -#: motions/static/templates/motions/motion-import.html:110 -msgid "motions will be not imported." -msgstr "návrhů nebude zavedeno." - -#: motions/static/js/motions/csv.js:126 -msgid "motions-example" -msgstr "" - -#: motions/static/js/motions/site.js:3321 -msgid "needed" -msgstr "potřebné" - -#: motions/static/js/motions/base.js:1638 -msgid "needs review" -msgstr "potřeba posouzení" - -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:11 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:37 -msgid "none" -msgstr "žádné" - -#: motions/static/js/motions/base.js:1632 -msgid "not concerned" -msgstr "neprobíráno" - -#: motions/static/js/motions/base.js:1612 -msgid "not decided" -msgstr "nerozhodnuto" - -#: core/static/js/core/site.js:38 -msgid "now" -msgstr "nyní" - -#: agenda/static/js/agenda/site.js:563 agenda/static/js/agenda/site.js:836 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:47 -msgid "of" -msgstr "z" - -#: motions/static/js/motions/site.js:933 motions/static/js/motions/site.js:946 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:23 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:49 -msgid "outside" -msgstr "vně" - -#: users/static/js/users/site.js:1177 -msgid "override new" -msgstr "přepsat nový" - -#: users/static/js/users/csv.js:44 -#: users/static/templates/users/user-list.html:150 -msgid "participants" -msgstr "Účastníci" - -#: users/static/templates/users/user-import.html:225 -msgid "participants were successfully imported." -msgstr "Účastníci byli úspěšně zavedeni." - -#: users/static/templates/users/user-import.html:215 -msgid "participants will be imported." -msgstr "Účastníci budou zavedeni." - -#: users/static/templates/users/user-import.html:205 -msgid "participants will be not imported." -msgstr "Účastníci nebudou zavedeni." - -#: users/static/js/users/csv.js:68 -msgid "participants-example" -msgstr "" - -#: motions/static/js/motions/base.js:1618 -msgid "permitted" -msgstr "schváleno" - -#: motions/static/js/motions/site.js:2057 -msgid "personal note" -msgstr "osobní poznámka" - -#: motions/static/js/motions/base.js:1617 -msgid "published" -msgstr "zveřejněno" - -#: motions/static/js/motions/base.js:1635 -msgid "refered to committee" -msgstr "předáno do výboru" - -#: motions/static/js/motions/base.js:1609 -#: motions/static/js/motions/base.js:1624 -msgid "rejected" -msgstr "odmítnuto" - -#: motions/static/js/motions/base.js:1640 -msgid "rejected (not authorized)" -msgstr "odmítnuto (není schváleno)" - -#: core/static/templates/search.html:28 -msgid "results" -msgstr "výsledky" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:11 -msgid "select files" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:194 -#: assignments/static/templates/assignments/assignment-list.html:67 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:176 -#: motions/static/templates/motions/motion-list.html:138 -#: users/static/templates/users/user-list.html:151 -msgid "selected" -msgstr "vybráno" - -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:8 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:9 -#: motions/static/templates/motions/motion-list.html:430 -msgid "speakers" -msgstr "řečníků" - -#: motions/static/js/motions/base.js:1605 -msgid "submitted" -msgstr "podáno" - -#: core/static/js/core/site.js:54 -msgid "time" -msgstr "čas" - -#: core/static/js/core/site.js:42 -msgid "today" -msgstr "dnes" - -#: topics/static/templates/topics/topic-import.html:116 -msgid "topics were successfully imported." -msgstr "námětů bylo úspěšně zavedeno." - -#: topics/static/templates/topics/topic-import.html:109 -msgid "topics will be imported." -msgstr "námětů bude zavedeno." - -#: topics/static/templates/topics/topic-import.html:104 -msgid "topics will be not imported." -msgstr "námětů nebude zavedeno." - -#: mediafiles/static/js/mediafiles/resources.js:141 -msgid "undefined" -msgstr "nestanoveno" - -#: assignments/static/js/assignments/base.js:283 -#: assignments/static/js/assignments/base.js:53 -#: assignments/static/templates/assignments/assignmentpoll-form.html:10 -#: motions/static/js/motions/base.js:160 -#: motions/static/templates/motions/motion-poll-form.html:10 -msgid "undocumented" -msgstr "nedokumentováno" - -#: motions/static/templates/motions/motion-table-filters.html:269 -#: motions/static/templates/motions/motion-table-filters.html:31 -msgid "undone" -msgstr "zrušeno" - -#: motions/static/js/motions/base.js:1627 -msgid "withdrawed" -msgstr "staženo" diff --git a/openslides/locale/angular-gettext/de.po b/openslides/locale/angular-gettext/de.po deleted file mode 100644 index c9988de4b..000000000 --- a/openslides/locale/angular-gettext/de.po +++ /dev/null @@ -1,4414 +0,0 @@ -# -# Translators: -# Emanuel Schütze , 2015-2018 -# Moira Brülisauer , 2016 -# Norman Jäckel , 2015-2016 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"PO-Revision-Date: 2018-09-18 08:04+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: German (http://www.transifex.com/openslides/openslides/language/de/)\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: motions/static/templates/motions/motion-detail.html:47 -msgctxt "resolution" -msgid "Final version" -msgstr "Beschlussfassung" - -#: core/static/templates/csv-import.html:16 -msgctxt "special filetypes in a file open dialog" -msgid "Accepted file types" -msgstr "Akzeptierte Dateitypen" - -#: motions/static/js/motions/base.js:1483 -msgid "%TYPE% from line %FROM% to %TO%" -msgstr "%TYPE% von Zeile %FROM% bis %TO%" - -#: motions/static/js/motions/base.js:1485 -msgid "%TYPE% in line %FROM%" -msgstr "%TYPE% in Zeile %FROM%" - -#: users/static/js/users/site.js:822 -msgid "%num% emails were send sucessfully." -msgstr "%num% E-Mails wurden erfolgreich versandt." - -#: agenda/static/templates/agenda/item-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:115 -#: motions/static/templates/motions/motion-list.html:77 -#: users/static/templates/users/user-list.html:81 -msgid "--- Select action ---" -msgstr "--- Aktion auswählen ---" - -#: motions/static/templates/motions/motion-amendment-list.html:135 -#: motions/static/templates/motions/motion-list.html:97 -msgid "--- Select category ---" -msgstr "--- Sachgebiet auswählen ---" - -#: users/static/templates/users/user-list.html:102 -msgid "--- Select group ---" -msgstr "--- Gruppe auswählen ---" - -#: motions/static/templates/motions/motion-amendment-list.html:149 -#: motions/static/templates/motions/motion-list.html:111 -msgid "--- Select motion block ---" -msgstr "--- Antragsblock auswählen ---" - -#: assignments/static/templates/assignments/assignment-list.html:45 -msgid "--- Select phase ---" -msgstr "--- Status auswählen ---" - -#: motions/static/templates/motions/motion-amendment-list.html:123 -#: motions/static/templates/motions/motion-list.html:85 -msgid "--- Select state ---" -msgstr "--- Status auswählen ---" - -#: agenda/static/templates/agenda/item-list.html:152 -msgid "--- Select visibility ---" -msgstr "--- Sichtbarkeit auswählen ---" - -#: assignments/static/templates/assignments/assignment-detail.html:70 -msgid "--- Set phase ---" -msgstr "--- Phase auswählen ---" - -#: core/static/js/core/site.js:2081 -msgid "" -"OpenSlides is a free web based " -"presentation and assembly system for visualizing and controlling agenda, " -"motions and elections of an assembly." -msgstr "OpenSlides ist ein freies, webbasiertes Präsentations- und Versammlungssystem zur Darstellung und Steuerung von Tagesordnung, Anträgen und Wahlen einer Versammlung." - -#: motions/static/js/motions/base.js:239 -msgid "" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:38 -msgid "A comment has been changed." -msgstr "Ein Kommentar wurde geändert." - -#: core/static/js/core/base.js:798 -msgid "A server error occurred (%%code%%). Please check the system logs." -msgstr "Ein Serverfehler ist aufgetreten (%%code%%). Bitte überprüfen Sie die Systemprotokolle." - -#: users/static/js/users/site.js:426 users/static/js/users/site.js:478 -#: users/static/templates/users/user-detail.html:40 -msgid "About me" -msgstr "Über mich" - -#: assignments/static/js/assignments/pdf.js:332 -#: assignments/static/js/assignments/site.js:613 -#: assignments/static/js/assignments/site.js:758 -#: assignments/static/js/assignments/site.js:799 -#: assignments/static/templates/assignments/assignment-detail.html:256 -#: assignments/static/templates/assignments/slide_assignment.html:72 -#: motions/static/js/motions/pdf.js:203 motions/static/js/motions/pdf.js:741 -#: motions/static/js/motions/site.js:780 -#: motions/static/templates/motions/motion-detail.html:429 -#: motions/static/templates/motions/slide_motion.html:56 -msgid "Abstain" -msgstr "Enthaltung" - -#: motions/static/js/motions/base.js:1607 -#: motions/static/js/motions/base.js:1622 -msgid "Accept" -msgstr "Annehmen" - -#: motions/static/js/motions/base.js:1608 -#: motions/static/js/motions/base.js:1623 -msgid "Acceptance" -msgstr "Annahme" - -#: motions/static/templates/motions/motion-detail/change-summary.html:46 -msgid "Accepted" -msgstr "Angenommen" - -#: motions/static/templates/motions/state-edit.html:14 -#: motions/static/templates/motions/workflow-detail.html:70 -msgid "Action word" -msgstr "Aktionswort" - -#: motions/static/js/motions/site.js:3270 -msgid "Activate amendments" -msgstr "Änderungsanträge aktivieren" - -#: users/static/js/users/site.js:598 users/static/js/users/site.js:640 -msgid "Active" -msgstr "Aktiv" - -#: assignments/static/templates/assignments/assignment-list.html:285 -#: motions/static/templates/motions/motion-list.html:373 -msgid "Add a tag" -msgstr "Schlagwort hinzufügen" - -#: core/static/templates/core/projector-controls.html:208 -msgid "Add countdown" -msgstr "Countdown hinzufügen" - -#: users/static/templates/users/user-list.html:109 -#: users/static/templates/users/user-list.html:83 -msgid "Add group" -msgstr "Gruppe hinzufügen" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:125 -#: assignments/static/templates/assignments/assignment-detail.html:118 -msgid "Add me" -msgstr "Füge mich hinzu" - -#: core/static/templates/core/projector-controls.html:248 -msgid "Add message" -msgstr "Mitteilung hinzufügen" - -#: core/static/templates/config-form-field.html:50 -msgid "Add new comment field" -msgstr "Neues Kommentarfeld hinzufügen" - -#: core/static/templates/core/projector-controls.html:209 -msgid "Add new countdown" -msgstr "Neuen Countdown hinzufügen" - -#: core/static/templates/config-form-field.html:131 -msgid "Add new custom translation" -msgstr "Neue benutzerdefinierte Übersetzung hinzufügen" - -#: core/static/templates/core/projector-controls.html:249 -msgid "Add new message" -msgstr "Neue Mitteilung hinzufügen" - -#: motions/static/templates/motions/motion-import.html:32 -msgid "" -"Additional columns after the required ones may be present and won't affect " -"the import." -msgstr "Zusätzliche Spalten nach den erforderlichen Spalten können vorhanden sein und haben keinen Einfluss auf den Import." - -#: motions/static/js/motions/base.js:1630 -msgid "Adjourn" -msgstr "Vertagen" - -#: motions/static/js/motions/base.js:1631 -msgid "Adjournment" -msgstr "Vertagung" - -#: users/static/templates/users/user-detail.html:45 -msgid "Administrative data" -msgstr "Administrative Daten" - -#: agenda/static/js/agenda/base.js:41 agenda/static/js/agenda/csv.js:35 -#: agenda/static/js/agenda/docx.js:56 agenda/static/js/agenda/docx.js:64 -#: agenda/static/js/agenda/pdf.js:15 agenda/static/js/agenda/pdf.js:81 -#: agenda/static/js/agenda/site.js:20 agenda/static/js/agenda/site.js:32 -#: agenda/static/js/agenda/site.js:50 agenda/static/js/agenda/site.js:870 -#: agenda/static/templates/agenda/item-detail.html:6 -#: agenda/static/templates/agenda/item-list.html:35 -#: agenda/static/templates/agenda/item-list.html:61 -#: agenda/static/templates/agenda/slide-item-list.html:2 -msgid "Agenda" -msgstr "Tagesordnung" - -#: agenda/static/js/agenda/site.js:885 agenda/static/js/agenda/site.js:98 -msgid "Agenda visibility" -msgstr "Sichtbarkeit in der Tagesordnung" - -#: motions/static/templates/motions/motion-table-filters.html:247 -msgid "All Filters" -msgstr "Alle Filter" - -#: assignments/static/js/assignments/site.js:918 -#: motions/static/js/motions/site.js:3300 -msgid "All casted ballots" -msgstr "Alle abgegebenen Stimmzettel" - -#: motions/static/templates/motions/motion-amendment-list.html:28 -#: motions/static/templates/motions/motion-amendment-list.html:35 -msgid "All motions" -msgstr "Alle Anträge" - -#: assignments/static/js/assignments/site.js:917 -#: motions/static/js/motions/site.js:3299 -msgid "All valid ballots" -msgstr "Alle gültigen Stimmzettel" - -#: users/static/templates/users/group-list.html:19 -msgid "" -"All your changes are saved immediately. Changes you make are only effective " -"once you (or the users concerned) reload the page." -msgstr "Alle Änderungen werden sofort gespeichert. Die Änderungen werden erst dann wirksam, wenn Sie (oder die betroffenen Nutzer) die Seite neu laden." - -#: core/static/js/core/site.js:2097 -msgid "Allow access for anonymous guest users" -msgstr "Erlaube Zugriff für anonyme Gast-Nutzer" - -#: motions/static/js/motions/workflow.js:64 -msgid "Allow create poll" -msgstr "Abstimmung möglich" - -#: motions/static/js/motions/workflow.js:66 -msgid "Allow submitter edit" -msgstr "Antragsteller/in darf bearbeiten" - -#: motions/static/js/motions/workflow.js:62 -msgid "Allow support" -msgstr "Unterstützung möglich" - -#: motions/static/js/motions/site.js:3262 -msgid "Allow to disable versioning" -msgstr "Erlaubt Versionierung zu deaktiveren" - -#: assignments/static/js/assignments/site.js:906 -msgid "Always Yes-No-Abstain per candidate" -msgstr "Ja/Nein/Enthaltung pro Kandidat/in" - -#: assignments/static/js/assignments/site.js:907 -msgid "Always Yes/No per candidate" -msgstr "Ja/Nein pro Kandidat/in" - -#: assignments/static/js/assignments/site.js:905 -msgid "Always one option per candidate" -msgstr "Eine Stimme pro Kandidat/in" - -#: motions/static/js/motions/site.js:3322 -msgid "Amendment" -msgstr "Änderungsantrag" - -#: motions/static/templates/motions/motion-amendment-list.html:96 -msgid "Amendment list PDF" -msgstr "Änderungsantragsübersicht" - -#: motions/static/js/motions/site.js:2282 -#: motions/static/js/motions/site.js:3275 -#: motions/static/templates/motions/motion-detail.html:104 -msgid "Amendment to" -msgstr "Änderungsantrag zu" - -#: motions/static/js/motions/pdf.js:544 motions/static/js/motions/pdf.js:77 -#: motions/static/js/motions/site.js:2285 -msgid "Amendment to motion" -msgstr "Änderungsantrag zu Antrag" - -#: motions/static/js/motions/site.js:2824 -#: motions/static/js/motions/site.js:3269 -#: motions/static/js/motions/site.js:915 -#: motions/static/templates/motions/motion-amendment-list.html:18 -#: motions/static/templates/motions/motion-detail.html:17 -#: motions/static/templates/motions/motion-detail.html:175 -#: motions/static/templates/motions/motion-list.html:11 -msgid "Amendments" -msgstr "Änderungsanträge" - -#: motions/static/js/motions/site.js:2821 -msgid "Amendments to" -msgstr "Änderungsanträge zu" - -#: motions/static/js/motions/pdf.js:1136 -msgid "Amendments to motion" -msgstr "Änderungsanträge zu Antrag" - -#: motions/static/js/motions/site.js:3273 -msgid "Apply text for new amendments" -msgstr "Text für neuen Änderungsantrag übernehmen" - -#: agenda/static/js/agenda/site.js:873 -msgid "Arabic" -msgstr "Arabisch" - -#: core/static/templates/index.html:79 -msgid "Are you sure to delete the chat history?" -msgstr "Soll der Chatverlauf wirklich gelöscht werden?" - -#: agenda/static/templates/agenda/item-list.html:181 -msgid "Are you sure you want to delete all selected agenda items?" -msgstr "Sollen alle ausgewählten Tagesordnungspunkte wirklich gelöscht werden?" - -#: motions/static/templates/motions/motion-amendment-list.html:162 -msgid "Are you sure you want to delete all selected amendments?" -msgstr "Sollen alle ausgewählten Änderungsanträge wirklich gelöscht werden?" - -#: assignments/static/templates/assignments/assignment-list.html:54 -msgid "Are you sure you want to delete all selected elections?" -msgstr "Sollen alle ausgewählten Wahlen wirklich gelöscht werden?" - -#: motions/static/templates/motions/motion-list.html:124 -msgid "Are you sure you want to delete all selected motions?" -msgstr "Sollen alle ausgewählten Anträge wirklich gelöscht werden?" - -#: users/static/templates/users/user-list.html:93 -msgid "Are you sure you want to delete all selected users?" -msgstr "Sollen alle ausgewählten Teilnehmende wirklich gelöscht werden?" - -#: assignments/static/templates/assignments/assignment-detail.html:151 -msgid "Are you sure you want to delete this ballot?" -msgstr "Soll dieser Wahlgang wirklich gelöscht werden?" - -#: motions/static/templates/motions/motion-detail/view-diff.html:25 -#: motions/static/templates/motions/motion-detail/view-diff.html:79 -#: motions/static/templates/motions/motion-detail/view-original.html:34 -msgid "Are you sure you want to delete this change recommendation?" -msgstr "Soll diese Änderungsempfehlung wirklich gelöscht werden?" - -#: agenda/static/templates/agenda/item-list.html:406 -#: assignments/static/templates/assignments/assignment-list.html:267 -#: core/static/templates/core/manage-projectors.html:52 -#: core/static/templates/core/tag-list.html:46 -#: motions/static/templates/motions/category-list.html:49 -#: motions/static/templates/motions/motion-amendment-list.html:338 -#: motions/static/templates/motions/motion-block-list.html:45 -#: motions/static/templates/motions/motion-list.html:287 -#: motions/static/templates/motions/workflow-detail.html:58 -#: motions/static/templates/motions/workflow-list.html:38 -#: users/static/templates/users/group-list.html:45 -#: users/static/templates/users/user-list.html:364 -msgid "Are you sure you want to delete this entry?" -msgstr "Soll dieser Eintrag wirklich gelöscht werden?" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:320 -msgid "Are you sure you want to delete this file?" -msgstr "Soll diese Datei wirklich gelöscht werden?" - -#: motions/static/templates/motions/motion-detail.html:382 -msgid "Are you sure you want to delete this poll?" -msgstr "Soll diese Abstimmung wirklich gelöscht werden?" - -#: motions/static/templates/motions/motion-detail.html:630 -msgid "Are you sure you want to delete this version?" -msgstr "Soll diese Version wirklich gelöscht werden?" - -#: agenda/static/templates/agenda/item-list.html:85 -msgid "Are you sure you want to number all agenda items?" -msgstr "Sollen alle Tagesordnungspunkte neu nummeriert werden?" - -#: motions/static/templates/motions/motion-block-detail.html:31 -msgid "" -"Are you sure you want to override the state of all motions of this motion " -"block?" -msgstr "Soll der Status von allen Anträgen aus diesem Antragsblock wirklich überschrieben werden?" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:16 -msgid "Are you sure you want to remove all speakers from this list?" -msgstr "Sollen wirklich alle Redner/innen von dieser Liste entfernt werden?" - -#: motions/static/templates/motions/motion-block-detail.html:63 -msgid "Are you sure you want to remove this motion from motion block?" -msgstr "Soll dieser Antrag aus dem Antragsblock wirklich entfernt werden?" - -#: core/static/templates/core/manage-projectors.html:87 -msgid "Aspect ratio" -msgstr "Seitenverhältnis" - -#: users/static/templates/users/user-import.html:63 -msgid "" -"At least given name or surname have to be filled in. All\n" -" other fields are optional and may be empty." -msgstr "Mindestens der Vorname oder der Nachname müssen angegeben sein. Alle übrigen Felder sind optional und dürfen leer sein." - -#: motions/static/templates/motions/motion-detail.html:551 -msgid "" -"At least two amendments or change recommendations affecting the same line are to be integrated.\n" -" This leads to undeterministic results.\n" -" Please resolve this conflict by not accepting multiple changes affecting the same line." -msgstr "Mindestens zwei Änderungsanträge oder Änderungsempfehlungen beziehen sich auf die gleiche Zeile. Dies führt zu unbestimmten Ergebnissen. Bitte lösen Sie diesen Konflikt auf durch Nicht-Annahme entsprechender Änderungen." - -#: motions/static/js/motions/site.js:586 topics/static/js/topics/site.js:115 -msgid "Attachment" -msgstr "Anhang" - -#: motions/static/templates/motions/motion-detail.html:601 -#: topics/static/templates/topics/topic-detail.html:31 -msgid "Attachments" -msgstr "Anhänge" - -#: core/static/templates/csv-import.html:30 -msgid "Autodetection" -msgstr "Automatische Erkennung" - -#: assignments/static/js/assignments/site.js:904 -msgid "Automatic assign of method" -msgstr "Automatische Zuordnung der Methode" - -#: motions/static/templates/motions/motion-submitters.html:6 -msgid "Back" -msgstr "Zurück" - -#: topics/static/templates/topics/topic-import.html:130 -#: topics/static/templates/topics/topic-import.html:35 -msgid "Back to agenda" -msgstr "Zurück zur Tagesordnung" - -#: motions/static/templates/motions/category-sort.html:6 -msgid "Back to categories" -msgstr "Zurück zur Sachgebietsübersicht" - -#: motions/static/templates/motions/motion-amendment-list.html:8 -#: motions/static/templates/motions/motion-import.html:139 -msgid "Back to motions overview" -msgstr "Zurück zur Antragsübersicht" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:6 -#: agenda/static/templates/agenda/item-sort.html:6 -#: assignments/static/templates/assignments/assignment-detail.html:6 -#: core/static/templates/core/tag-list.html:6 -#: motions/static/templates/motions/category-list.html:6 -#: motions/static/templates/motions/motion-block-detail.html:6 -#: motions/static/templates/motions/motion-block-list.html:6 -#: motions/static/templates/motions/motion-detail.html:12 -#: motions/static/templates/motions/motion-detail.html:7 -#: motions/static/templates/motions/motion-import.html:6 -#: motions/static/templates/motions/workflow-detail.html:6 -#: motions/static/templates/motions/workflow-list.html:6 -#: topics/static/templates/topics/topic-detail.html:6 -#: topics/static/templates/topics/topic-import.html:6 -#: users/static/templates/users/group-list.html:6 -#: users/static/templates/users/user-change-password.html:6 -#: users/static/templates/users/user-detail.html:6 -#: users/static/templates/users/user-import.html:6 -#: users/static/templates/users/user-presence.html:6 -msgid "Back to overview" -msgstr "Zurück zur Übersicht" - -#: users/static/templates/users/user-import.html:244 -#: users/static/templates/users/user-import.html:35 -msgid "Back to users overview" -msgstr "Zurück zur Benutzerübersicht" - -#: core/static/js/core/site.js:2114 -msgid "Background color of projector header and footer" -msgstr "Hintergrundfarbe des Projektor-Kopf- und Fußbereichs" - -#: assignments/static/js/assignments/pdf.js:142 -#: assignments/static/js/assignments/pdf.js:306 -#: assignments/static/js/assignments/pdf.js:654 -#: assignments/static/templates/assignments/assignment-detail.html:139 -#: assignments/static/templates/assignments/assignmentpoll-form.html:1 -msgid "Ballot" -msgstr "Wahlgang" - -#: assignments/static/js/assignments/site.js:909 -msgid "Ballot and ballot papers" -msgstr "Wahlgang und Stimmzettel" - -#: agenda/static/js/agenda/site.js:875 -msgid "Begin of event" -msgstr "Beginn der Veranstaltung" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:91 -msgid "Begin speech" -msgstr "Rede beginnen" - -#: core/static/templates/core/manage-projectors.html:165 -#: core/static/templates/core/projector-controls.html:89 -msgid "Bigger" -msgstr "Größer" - -#: core/static/templates/core/manage-projectors.html:212 -#: core/static/templates/core/projector-controls.html:54 -msgid "Blank" -msgstr "Ausblenden" - -#: motions/static/js/motions/workflow.js:84 -msgid "Blue" -msgstr "Blau" - -#: core/static/templates/core/manage-projectors.html:206 -msgid "Broadcast" -msgstr "Verbreiten" - -#: core/static/templates/core/manage-projectors.html:203 -msgid "Broadcast the content of this projector to all other projectors." -msgstr "Inhalt von diesem Projektor an alle anderen Projektoren übertragen." - -#: mediafiles/static/js/mediafiles/image-plugin.js:154 -#: mediafiles/static/js/mediafiles/image-plugin.js:161 -#: mediafiles/static/js/mediafiles/image-plugin.js:199 -msgid "Browse for images" -msgstr "Bilder durchsuchen" - -#: core/static/templates/csv-import.html:2 -msgid "CSV file" -msgstr "CSV-Datei" - -#: users/static/js/users/site.js:1836 -msgid "Can create motions" -msgstr "Darf Anträge erstellen" - -#: users/static/js/users/site.js:1811 -msgid "Can manage agenda" -msgstr "Darf die Tagesordung verwalten" - -#: users/static/js/users/site.js:1840 -msgid "Can manage comments" -msgstr "Darf Kommentare verwalten" - -#: users/static/js/users/site.js:1825 -msgid "Can manage configuration" -msgstr "Darf die Konfiguration verwalten" - -#: users/static/js/users/site.js:1819 -msgid "Can manage elections" -msgstr "Darf Wahlen verwalten" - -#: users/static/js/users/site.js:1832 -msgid "Can manage files" -msgstr "Darf Dateien verwalten" - -#: users/static/js/users/site.js:1812 -msgid "Can manage list of speakers" -msgstr "Darf Redelisten verwalten" - -#: users/static/js/users/site.js:1828 -msgid "Can manage logos and fonts" -msgstr "Darf Logos und Schriften verwalten" - -#: users/static/js/users/site.js:1838 -msgid "Can manage motions" -msgstr "Darf Anträge verwalten" - -#: users/static/js/users/site.js:1824 -msgid "Can manage tags" -msgstr "Darf Schlagwörter verwalten" - -#: users/static/js/users/site.js:1827 -msgid "Can manage the chat" -msgstr "Darf den Chat verwalten" - -#: users/static/js/users/site.js:1822 -msgid "Can manage the projector" -msgstr "Darf den Projektor steuern" - -#: users/static/js/users/site.js:1844 -msgid "Can manage users" -msgstr "Darf Benutzer verwalten" - -#: users/static/js/users/site.js:1817 -msgid "Can nominate another participant" -msgstr "Darf andere Teilnehmende für Wahlen vorschlagen" - -#: users/static/js/users/site.js:1818 -msgid "Can nominate oneself" -msgstr "Darf selbst für Wahlen kandidieren" - -#: core/static/js/core/projector.js:154 -msgid "Can not open the projector." -msgstr "Der Projektor kann nicht geöffnet werden." - -#: users/static/js/users/site.js:1814 -msgid "Can put oneself on the list of speakers" -msgstr "Darf sich selbst auf die Redeliste setzen" - -#: users/static/js/users/site.js:1810 -msgid "Can see agenda" -msgstr "Darf die Tagesordnung sehen" - -#: users/static/js/users/site.js:1839 -msgid "Can see comments" -msgstr "Darf Kommentare sehen" - -#: users/static/js/users/site.js:1816 -msgid "Can see elections" -msgstr "Darf Wahlen sehen" - -#: users/static/js/users/site.js:1843 -msgid "Can see extra data of users (e.g. present and comment)" -msgstr "Darf die zusätzlichen Daten der Benutzer sehen (z. B. anwesend und Kommentar)" - -#: users/static/js/users/site.js:1833 -msgid "Can see hidden files" -msgstr "Darf versteckte Dateien sehen" - -#: users/static/js/users/site.js:1813 -msgid "Can see internal items and time scheduling of agenda" -msgstr "Darf interne Einträge und Zeitplan der Tagesordnung sehen" - -#: users/static/js/users/site.js:1835 -msgid "Can see motions" -msgstr "Darf Anträge sehen" - -#: users/static/js/users/site.js:1842 -msgid "Can see names of users" -msgstr "Darf die Namen der Benutzer sehen" - -#: users/static/js/users/site.js:1823 -msgid "Can see the front page" -msgstr "Darf die Startseite sehen" - -#: users/static/js/users/site.js:1830 -msgid "Can see the list of files" -msgstr "Darf die Dateiliste sehen" - -#: users/static/js/users/site.js:1821 -msgid "Can see the projector" -msgstr "Darf den Projektor sehen" - -#: users/static/js/users/site.js:1837 -msgid "Can support motions" -msgstr "Darf Anträge unterstützen" - -#: users/static/js/users/site.js:1831 -msgid "Can upload files" -msgstr "Darf Dateien hochladen" - -#: users/static/js/users/site.js:1826 -msgid "Can use the chat" -msgstr "Darf den Chat benutzen" - -#: assignments/static/templates/assignments/assignment-form.html:18 -#: assignments/static/templates/assignments/assignmentpoll-form.html:18 -#: core/static/js/core/base.js:264 core/static/js/core/site.js:128 -#: core/static/js/core/site.js:129 -#: core/static/templates/core/projector-controls.html:198 -#: core/static/templates/core/projector-message-form.html:8 -#: core/static/templates/core/tag-form.html:13 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:19 -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:24 -#: motions/static/templates/motions/category-form.html:13 -#: motions/static/templates/motions/change-recommendation-form.html:13 -#: motions/static/templates/motions/motion-block-form.html:13 -#: motions/static/templates/motions/motion-comment-form.html:12 -#: motions/static/templates/motions/motion-export-form.html:10 -#: motions/static/templates/motions/motion-form.html:19 -#: motions/static/templates/motions/motion-poll-form.html:18 -#: motions/static/templates/motions/state-edit.html:24 -#: motions/static/templates/motions/workflow-edit.html:24 -#: topics/static/templates/topics/topic-form.html:13 -#: users/static/templates/users/group-edit.html:24 -#: users/static/templates/users/profile-password-form.html:12 -#: users/static/templates/users/user-change-password.html:51 -#: users/static/templates/users/user-form.html:13 -msgid "Cancel" -msgstr "Abbrechen" - -#: assignments/static/js/assignments/pdf.js:150 -#: assignments/static/js/assignments/pdf.js:68 -#: assignments/static/templates/assignments/assignment-detail.html:192 -#: assignments/static/templates/assignments/assignment-detail.html:213 -#: assignments/static/templates/assignments/assignment-detail.html:86 -#: assignments/static/templates/assignments/assignment-list.html:322 -#: assignments/static/templates/assignments/slide_assignment.html:19 -#: assignments/static/templates/assignments/slide_assignment.html:36 -msgid "Candidates" -msgstr "Kandidaten/innen" - -#: users/static/js/users/site.js:1119 -msgid "Cannot find the participant with the participant number" -msgstr "Kann den Teilnehmer mit der Teilnehmernummer nicht finden" - -#: core/static/js/core/pdf.js:100 -msgid "Cannot load image" -msgstr "Konnte folgendes Bild nicht laden:" - -#: assignments/static/js/assignments/site.js:846 -#: assignments/static/templates/assignments/assignment-detail.html:280 -#: assignments/static/templates/assignments/slide_assignment.html:94 -msgid "Casted ballots" -msgstr "Abgegebene Stimmzettel" - -#: motions/static/js/motions/docx.js:46 motions/static/js/motions/site.js:136 -#: motions/static/templates/motions/category-list.html:13 -#: motions/static/templates/motions/motion-list.html:15 -msgid "Categories" -msgstr "Sachgebiete" - -#: motions/static/templates/motions/motion-import.html:124 -msgid "Categories created" -msgstr "Sachgebiete angelegt" - -#: motions/static/js/motions/pdf.js:142 motions/static/js/motions/pdf.js:602 -#: motions/static/js/motions/site.js:1425 -#: motions/static/js/motions/site.js:600 motions/static/js/motions/site.js:867 -#: motions/static/templates/motions/category-sort.html:9 -#: motions/static/templates/motions/motion-detail.html:296 -#: motions/static/templates/motions/motion-detail.html:300 -#: motions/static/templates/motions/motion-import.html:27 -#: motions/static/templates/motions/motion-import.html:50 -#: motions/static/templates/motions/motion-table-filters.html:69 -msgid "Category" -msgstr "Sachgebiet" - -#: core/static/js/core/site.js:2102 -msgid "Center" -msgstr "Mittig" - -#: agenda/static/templates/agenda/item-list.html:513 -msgid "Change item number ..." -msgstr "Nummer ändern ..." - -#: core/static/templates/index.html:106 -#: users/static/templates/users/user-change-password.html:48 -#: users/static/templates/users/user-list.html:362 -msgid "Change password" -msgstr "Passwort ändern" - -#: users/static/templates/users/user-change-password.html:9 -msgid "Change password for {{ user.get_short_name() }}" -msgstr "Passwort ändern für {{ user.get_short_name() }}" - -#: users/static/templates/users/user-presence.html:26 -msgid "Change presence" -msgstr "Anwesenheit ändern" - -#: motions/static/templates/motions/motion-detail/change-summary.html:34 -msgid "Change recommendation" -msgstr "Änderungsempfehlung" - -#: motions/static/js/motions/site.js:955 motions/static/js/motions/site.js:969 -#: motions/static/templates/motions/motion-detail/toolbar.html:122 -#: motions/static/templates/motions/motion-detail/toolbar.html:77 -msgid "Change recommendations" -msgstr "Änderungsempfehlungen" - -#: agenda/static/templates/agenda/item-list.html:424 -msgid "Change visibility" -msgstr "Sichtbarkeit ändern" - -#: motions/static/js/motions/site.js:958 motions/static/js/motions/site.js:972 -#: motions/static/templates/motions/motion-detail/toolbar.html:134 -#: motions/static/templates/motions/motion-detail/toolbar.html:92 -msgid "Changed version" -msgstr "Geänderte Fassung" - -#: core/static/templates/index.html:50 -msgid "Chat" -msgstr "Chat" - -#: motions/static/js/motions/site.js:3284 -msgid "Choose 0 to disable the supporting system." -msgstr "Zum Deaktivieren des Unterstützersystems '0' eingeben." - -#: core/static/js/core/site.js:130 core/static/js/core/site.js:131 -msgid "Clear" -msgstr "Löschen" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:90 -msgid "Clear list" -msgstr "Liste leeren" - -#: motions/static/templates/motions/motion-import.html:129 -#: topics/static/templates/topics/topic-import.html:120 -#: users/static/templates/users/user-import.html:231 -msgid "Clear preview" -msgstr "Vorschau leeren" - -#: core/static/templates/privacypolicydialog.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:93 -msgid "Close" -msgstr "Schließen" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:11 -msgid "Close list of speakers" -msgstr "Redeliste schließen" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:53 -#: agenda/static/templates/agenda/item-detail.html:48 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:10 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:11 -msgid "Closed" -msgstr "Geschlossen" - -#: agenda/static/js/agenda/site.js:176 agenda/static/js/agenda/site.js:177 -msgid "Closed items" -msgstr "Erledigte Einträge" - -#: agenda/static/templates/agenda/item-list.html:208 -msgid "Collapse all" -msgstr "Alle zusammenklappen" - -#: core/static/js/core/site.js:2118 -msgid "Color for blanked projector" -msgstr "Farbe für ausgeblendeten Projektor" - -#: motions/static/templates/motions/motion-table-filters.html:117 -#: topics/static/templates/topics/topic-import.html:53 -#: topics/static/templates/topics/topic-import.html:72 -#: users/static/js/users/site.js:374 users/static/js/users/site.js:648 -#: users/static/templates/users/user-detail.html:48 -#: users/static/templates/users/user-import.html:56 -#: users/static/templates/users/user-import.html:89 -#: users/static/templates/users/user-list.html:441 -msgid "Comment" -msgstr "Kommentar" - -#: motions/static/js/motions/site.js:3290 -msgid "Comment fields for motions" -msgstr "Kommentarfelder für Anträge" - -#: motions/static/js/motions/docx.js:97 motions/static/js/motions/site.js:1014 -#: motions/static/js/motions/site.js:2051 -#: motions/static/js/motions/site.js:3289 -msgid "Comments" -msgstr "Kommentare" - -#: users/static/js/users/site.js:605 users/static/js/users/site.js:642 -msgid "Committee" -msgstr "Gremium" - -#: users/static/js/users/base.js:174 -msgid "Committees" -msgstr "Gremien" - -#: motions/static/js/motions/base.js:1616 -msgid "Complex Workflow" -msgstr "Komplexer Arbeitsablauf" - -#: users/static/js/users/site.js:527 -msgid "Confirm new password" -msgstr "Neues Passwort bestätigen" - -#: motions/static/js/motions/site.js:983 -msgid "Content" -msgstr "Inhalt" - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:21 -msgid "Continue" -msgstr "Weiter" - -#: core/static/templates/core/login-form.html:23 -msgid "Continue as guest" -msgstr "Weiter als Gast" - -#: users/static/templates/users/user-import.html:19 -msgid "" -"Copy and paste your participant names in this textbox.\n" -" Keep each person in a single line." -msgstr "Kopieren Sie die Namen Ihrer Teilnehmenden in diese Textbox.\nVerwenden Sie eine Zeile pro Teilnehmer/in." - -#: topics/static/templates/topics/topic-import.html:15 -msgid "" -"Copy and paste your topic titles in this textbox. Keep each item in a single" -" line." -msgstr "Kopieren Sie die Titel Ihrer Themenpunkte in diese Textbox. Verwenden Sie eine Zeile pro Punkt." - -#: core/static/js/core/base.js:1444 core/static/js/core/site.js:422 -msgid "Countdown" -msgstr "Countdown" - -#: core/static/js/core/base.js:1445 -#: core/static/templates/core/projector-controls.html:127 -msgid "Countdowns" -msgstr "Countdowns" - -#: agenda/static/js/agenda/site.js:882 -msgid "Couple countdown with the list of speakers" -msgstr "Countdown mit der Redeliste verkoppeln" - -#: motions/static/templates/motions/motion-detail.html:563 -msgid "Create final print template" -msgstr "Beschluss-Druckvorlage erstellen" - -#: motions/static/templates/motions/motion-amendment-list.html:378 -msgid "Create modified amendment" -msgstr "Modifizierte Übernahme" - -#: users/static/templates/users/group-edit.html:2 -msgid "Create new group" -msgstr "Neue Gruppe anlegen" - -#: motions/static/templates/motions/state-edit.html:2 -msgid "Create new state" -msgstr "Neuen Status erstellen" - -#: motions/static/templates/motions/workflow-edit.html:2 -msgid "Create new workflow" -msgstr "Neuen Arbeitsablauf erstellen" - -#: motions/static/js/motions/site.js:1431 -msgid "Creation date" -msgstr "Erstellungsdatum" - -#: core/static/js/core/site.js:2110 -msgid "Current browser language" -msgstr "Aktuelle Browsersprache" - -#: agenda/static/js/agenda/site.js:74 agenda/static/js/agenda/site.js:835 -#: agenda/static/js/agenda/site.js:838 -#: agenda/static/templates/agenda/current-list-of-speakers.html:17 -#: agenda/static/templates/agenda/current-list-of-speakers.html:51 -#: agenda/static/templates/agenda/item-list.html:23 -#: core/static/templates/core/projector-controls.html:269 -msgid "Current list of speakers" -msgstr "Aktuelle Redeliste" - -#: assignments/static/js/assignments/site.js:924 -#: motions/static/js/motions/site.js:3312 -msgid "Custom number of ballot papers" -msgstr "Benutzerdefinierte Anzahl von Stimmzetteln" - -#: core/static/js/core/site.js:2128 -msgid "Custom translations" -msgstr "Benutzerdefinierte Übersetzungen" - -#: users/static/js/users/site.js:1875 -msgid "" -"Dear {name},\n" -"\n" -"this is your OpenSlides login for the event {event_name}:\n" -"\n" -" {url}\n" -" username: {username}\n" -" password: {password}\n" -"\n" -"This email was generated automatically." -msgstr "Hallo {name},\n\ndies ist Ihr OpenSlides-Zugang für die Veranstaltung {event_name}:\n\n {url}\n Benutzername: {username}\n Passwort: {password}\n\nDiese E-Mail wurde automatisch erstellt." - -#: agenda/static/templates/agenda/current-list-of-speakers.html:44 -#: agenda/static/templates/agenda/item-detail.html:35 -#: agenda/static/templates/agenda/item-list.html:372 -#: agenda/static/templates/agenda/item-list.html:55 -#: core/static/templates/core/projector-controls.html:296 -#: core/static/templates/projector-button.html:23 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:292 -#: motions/static/templates/motions/motion-detail.html:56 -#: users/static/js/users/base.js:171 -msgid "Default" -msgstr "Standard" - -#: assignments/static/js/assignments/site.js:157 -msgid "Default comment on the ballot paper" -msgstr "Voreingestellter Hinweis auf Stimmzettel" - -#: motions/static/js/motions/site.js:3249 -msgid "Default line numbering" -msgstr "Voreingestellte Zeilennummerierung" - -#: assignments/static/js/assignments/site.js:926 -msgid "" -"Default method to check whether a candidate has reached the required " -"majority." -msgstr "Voreingestellte Methode zur Überprüfung ob ein Kandidate die nötige Mehrheit erreicht hat." - -#: motions/static/js/motions/site.js:3303 -msgid "" -"Default method to check whether a motion has reached the required majority." -msgstr "Voreingestellte Methode zur Überprüfung ob ein Antrag die nötige Mehrheit erreicht hat." - -#: core/static/js/core/site.js:2131 -msgid "Default projector" -msgstr "Standardprojektor" - -#: motions/static/js/motions/site.js:3264 -msgid "Default text version for change recommendations" -msgstr "Voreingestellte Fassung für Änderungsempfehlungen" - -#: agenda/static/js/agenda/site.js:886 -msgid "Default visibility for new agenda items (except topics)" -msgstr "Voreingestellte Sichtbarkeit für neue Tagesordnungspunkte (außer Themen)" - -#: users/static/js/users/base.js:172 -msgid "Delegates" -msgstr "Delegierte" - -#: agenda/static/templates/agenda/item-list.html:146 -#: agenda/static/templates/agenda/item-list.html:405 -#: assignments/static/templates/assignments/assignment-detail.html:154 -#: assignments/static/templates/assignments/assignment-list.html:266 -#: core/static/templates/core/tag-list.html:45 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:319 -#: motions/static/templates/motions/category-list.html:48 -#: motions/static/templates/motions/motion-amendment-list.html:116 -#: motions/static/templates/motions/motion-amendment-list.html:337 -#: motions/static/templates/motions/motion-block-list.html:44 -#: motions/static/templates/motions/motion-detail.html:384 -#: motions/static/templates/motions/motion-detail.html:633 -#: motions/static/templates/motions/motion-detail/view-diff.html:27 -#: motions/static/templates/motions/motion-detail/view-diff.html:81 -#: motions/static/templates/motions/motion-detail/view-original.html:36 -#: motions/static/templates/motions/motion-list.html:286 -#: motions/static/templates/motions/motion-list.html:78 -#: motions/static/templates/motions/workflow-list.html:37 -#: users/static/templates/users/user-list.html:363 -#: users/static/templates/users/user-list.html:82 -msgid "Delete" -msgstr "Löschen" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:8 -msgid "Delete final print template" -msgstr "Beschluss-Druckvorlage löschen" - -#: motions/static/templates/motions/motion-amendment-list.html:166 -msgid "Delete selected amendments" -msgstr "Ausgewählte Änderungsanträge löschen" - -#: assignments/static/templates/assignments/assignment-list.html:58 -msgid "Delete selected elections" -msgstr "Ausgewählte Wahlen löschen" - -#: agenda/static/templates/agenda/item-list.html:185 -msgid "Delete selected items" -msgstr "Ausgewählte Einträge löschen" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:136 -msgid "Delete selected mediafiles" -msgstr "Ausgewählte Dateien löschen" - -#: motions/static/templates/motions/motion-list.html:128 -msgid "Delete selected motions" -msgstr "Ausgewählte Anträge löschen" - -#: users/static/templates/users/user-list.html:97 -msgid "Delete selected participants" -msgstr "Ausgewählte Teilnehmende löschen" - -#: motions/static/js/motions/base.js:1492 motions/static/js/motions/pdf.js:284 -#: motions/static/js/motions/site.js:372 -#: motions/static/templates/motions/motion-detail/change-summary.html:39 -msgid "Deletion" -msgstr "Streichung" - -#: assignments/static/js/assignments/pdf.js:45 -#: assignments/static/js/assignments/site.js:137 -#: assignments/static/templates/assignments/assignment-detail.html:81 -#: core/static/templates/core/projector-controls.html:183 -#: motions/static/js/motions/site.js:381 -msgid "Description" -msgstr "Beschreibung" - -#: core/static/templates/csv-import.html:11 -msgid "Deselect file" -msgstr "Datei deaktivieren" - -#: users/static/js/users/site.js:394 -msgid "Designates whether this user is in the room or not." -msgstr "Bestimmt, ob dieser Benutzer anwesend ist oder nicht." - -#: users/static/js/users/site.js:416 -msgid "Designates whether this user should be treated as a committee." -msgstr "Legt fest, ob dieser Benutzer als Gremium behandelt werden soll." - -#: users/static/js/users/site.js:404 -msgid "" -"Designates whether this user should be treated as active. Unselect this " -"instead of deleting the account." -msgstr "Bestimmt, ob dieser Benutzer als aktiv behandelt werden soll. Sie können ihn deaktivieren anstatt ihn zu löschen." - -#: users/static/js/users/site.js:613 -msgid "Didn't get an email" -msgstr "Bekam keine E-Mail" - -#: motions/static/js/motions/site.js:959 motions/static/js/motions/site.js:973 -#: motions/static/templates/motions/motion-detail/toolbar.html:139 -#: motions/static/templates/motions/motion-detail/toolbar.html:98 -msgid "Diff version" -msgstr "Änderungsdarstellung" - -#: assignments/static/js/assignments/site.js:930 -#: motions/static/js/motions/site.js:3307 -msgid "Disabled" -msgstr "Deaktiviert" - -#: assignments/static/js/assignments/site.js:919 -#: motions/static/js/motions/site.js:3301 -msgid "Disabled (no percents)" -msgstr "Deaktiviert (keine Prozente)" - -#: core/static/templates/core/manage-projectors.html:30 -msgid "" -"Display an identifier message on all projectors with the id and the name." -msgstr "Identifizierungsmitteilung auf allen Projektoren mit der ID und dem Namen anzeigen." - -#: core/static/js/core/site.js:2112 -msgid "Display header and footer" -msgstr "Kopf- und Fußzeile anzeigen" - -#: motions/static/js/motions/base.js:1633 -msgid "Do not concern" -msgstr "Nicht befassen" - -#: motions/static/js/motions/base.js:1613 -msgid "Do not decide" -msgstr "Nicht entscheiden" - -#: motions/static/templates/motions/motion-detail.html:560 -msgid "Do you want to copy the final version to the final print template?" -msgstr "Soll die Beschlussfassung weiter bearbeitet und eine Beschluss-Druckvorlage erstellt werden?" - -#: motions/static/templates/motions/motion-detail.html:539 -#: motions/static/templates/motions/motion-detail.html:569 -msgid "" -"Do you want to create a new version of this motion based on this changes?" -msgstr "Wollen Sie eine neue Version des Antrags basierend auf diesen Änderungen erstellen?" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:5 -msgid "Do you want to delete the final print template?" -msgstr "Soll die Beschluss-Druckvorlage wirklich gelöscht werden?" - -#: motions/static/js/motions/site.js:540 -msgid "Don't create a new version." -msgstr "Keine neue Version erzeugen." - -#: agenda/static/templates/agenda/item-list.html:172 -#: agenda/static/templates/agenda/item-list.html:524 -#: agenda/static/templates/agenda/item-list.html:530 -msgid "Done" -msgstr "Erledigt" - -#: motions/static/templates/motions/motion-import.html:34 -#: topics/static/templates/topics/topic-import.html:58 -#: users/static/templates/users/user-import.html:66 -msgid "Download CSV example file" -msgstr "CSV-Beispiel-Datei herunterladen" - -#: agenda/static/templates/agenda/item-sort.html:14 -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." - -#: motions/static/templates/motions/category-sort.html:15 -msgid "" -"Drag and drop motions to reorder the category. Then click the button to " -"renumber." -msgstr "Verschieben Sie die Anträge um das Sachgebiet neu zu ordnen. Klicken Sie anschließend auf die Schaltfläche um neu zu nummerieren." - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:10 -msgid "Drop files into this area OR" -msgstr "Dateien auf diesen Bereich ziehen ODER" - -#: agenda/static/templates/agenda/item-list.html:197 -#: topics/static/templates/topics/topic-import.html:52 -#: topics/static/templates/topics/topic-import.html:71 -msgid "Duration" -msgstr "Dauer" - -#: agenda/static/templates/agenda/item-list.html:404 -#: assignments/static/templates/assignments/assignment-detail.html:21 -#: assignments/static/templates/assignments/assignment-list.html:265 -#: core/static/templates/core/tag-list.html:44 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:318 -#: motions/static/templates/motions/category-list.html:46 -#: motions/static/templates/motions/motion-amendment-list.html:330 -#: motions/static/templates/motions/motion-block-detail.html:20 -#: motions/static/templates/motions/motion-block-list.html:42 -#: motions/static/templates/motions/motion-detail.html:376 -#: motions/static/templates/motions/motion-detail.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:33 -#: motions/static/templates/motions/motion-detail/view-diff.html:87 -#: motions/static/templates/motions/motion-list.html:278 -#: motions/static/templates/motions/workflow-list.html:35 -#: topics/static/templates/topics/topic-detail.html:20 -#: users/static/templates/users/user-detail.html:15 -#: users/static/templates/users/user-list.html:359 -msgid "Edit" -msgstr "Bearbeiten" - -#: mediafiles/static/templates/mediafiles/mediafile-form.html:1 -msgid "Edit File" -msgstr "Datei bearbeiten" - -#: motions/static/templates/motions/category-form.html:1 -msgid "Edit category" -msgstr "Sachgebiet bearbeiten" - -#: motions/static/templates/motions/change-recommendation-form.html:1 -msgid "Edit change recommendation" -msgstr "Änderungsempfehlung bearbeiten" - -#: motions/static/js/motions/site.js:2494 -#: motions/static/js/motions/site.js:3266 -msgid "Edit comment %%comment%% of motion %%motion%%" -msgstr "Kommentar %%comment%% von Antrag %%motion%% bearbeitet" - -#: core/static/templates/core/projector-controls.html:143 -msgid "Edit countdown" -msgstr "Countdown bearbeiten" - -#: core/static/templates/core/manage-projectors.html:152 -#: core/static/templates/core/projector-controls.html:76 -msgid "Edit current slide" -msgstr "Aktuelle Folie bearbeiten" - -#: assignments/static/templates/assignments/assignment-form.html:1 -msgid "Edit election" -msgstr "Wahl bearbeiten" - -#: core/static/templates/core/projector-controls.html:233 -#: core/static/templates/core/projector-message-form.html:1 -msgid "Edit message" -msgstr "Mitteilung bearbeiten" - -#: motions/static/templates/motions/motion-form.html:1 -msgid "Edit motion" -msgstr "Antrag bearbeiten" - -#: motions/static/templates/motions/motion-block-form.html:1 -msgid "Edit motion block" -msgstr "Antragsblock" - -#: motions/static/templates/motions/workflow-edit.html:1 -#: users/static/templates/users/group-edit.html:1 -msgid "Edit name" -msgstr "Name bearbeiten" - -#: users/static/templates/users/user-form.html:1 -msgid "Edit participant" -msgstr "Teilnehmer/in bearbeiten" - -#: core/static/templates/index.html:101 users/static/js/users/site.js:982 -msgid "Edit profile" -msgstr "Profil bearbeiten" - -#: motions/static/templates/motions/state-edit.html:1 -msgid "Edit state" -msgstr "Status bearbeiten" - -#: motions/static/templates/motions/motion-amendment-list.html:332 -#: motions/static/templates/motions/motion-list.html:281 -msgid "Edit submitters" -msgstr "Antragsteller/in bearbeiten" - -#: core/static/templates/core/tag-form.html:1 -msgid "Edit tag" -msgstr "Schlagwort bearbeiten" - -#: motions/static/js/motions/site.js:3278 -msgid "Edit the whole motion text" -msgstr "Vollständigen Antragstext bearbeiten" - -#: topics/static/templates/topics/topic-form.html:1 -msgid "Edit topic" -msgstr "Thema bearbeiten" - -#: motions/static/templates/motions/motion-detail/toolbar.html:16 -msgid "" -"Editing the text is not possible anymore once there are change " -"recommendations." -msgstr "Die Bearbeitung des Textes ist nicht mehr möglich, sobald Änderungsempfehlungen vorliegen." - -#: assignments/static/js/assignments/base.js:375 -#: assignments/static/js/assignments/pdf.js:617 -#: assignments/static/js/assignments/site.js:453 -#: assignments/static/templates/assignments/assignment-detail.html:33 -#: assignments/static/templates/assignments/slide_assignment.html:7 -msgid "Election" -msgstr "Wahl" - -#: assignments/static/js/assignments/site.js:903 -#: assignments/static/templates/assignments/assignment-detail.html:286 -msgid "Election method" -msgstr "Wahlmethode" - -#: assignments/static/templates/assignments/assignment-detail.html:127 -msgid "Election result" -msgstr "Wahlergebnis" - -#: assignments/static/js/assignments/base.js:376 -#: assignments/static/js/assignments/pdf.js:618 -#: assignments/static/js/assignments/site.js:19 -#: assignments/static/js/assignments/site.js:31 -#: assignments/static/js/assignments/site.js:49 -#: assignments/static/js/assignments/site.js:908 -#: assignments/static/templates/assignments/assignment-list.html:14 -msgid "Elections" -msgstr "Wahlen" - -#: users/static/js/users/site.js:1869 users/static/js/users/site.js:313 -#: users/static/js/users/site.js:471 -#: users/static/templates/users/user-detail.html:36 -#: users/static/templates/users/user-import.html:61 -#: users/static/templates/users/user-import.html:94 -msgid "Email" -msgstr "E-Mail" - -#: users/static/js/users/site.js:1874 -msgid "Email body" -msgstr "Nachrichtentext" - -#: users/static/js/users/site.js:1870 -msgid "Email sender" -msgstr "Absender" - -#: users/static/js/users/site.js:1871 -msgid "Email subject" -msgstr "Betreff" - -#: motions/static/js/motions/site.js:3277 -msgid "Empty text field" -msgstr "Leeres Textfeld" - -#: agenda/static/js/agenda/site.js:867 -msgid "Enable numbering for agenda items" -msgstr "Nummerierung von Tagesordnungspunkten aktivieren" - -#: users/static/js/users/site.js:1849 -msgid "Enable participant presence view" -msgstr "Ansicht zur Teilnehmeranwesenheit aktivieren" - -#: core/static/templates/csv-import.html:22 -msgid "Encoding" -msgstr "Kodierung" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:334 -msgid "Encrypted" -msgstr "Verschlüsselt" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:65 -msgid "End speech" -msgstr "Rede beenden" - -#: agenda/static/js/agenda/site.js:881 -msgid "Enter duration in seconds. Choose 0 to disable warning color." -msgstr "Geben Sie die Dauer in Sekunden an. Zum Deaktivieren der Warnfarbe 0 auswählen." - -#: users/static/templates/users/user-presence.html:22 -msgid "Enter participant number" -msgstr "Teilnehmernummer eingeben" - -#: assignments/static/templates/assignments/assignment-detail.html:170 -msgid "Enter votes" -msgstr "Stimmen eingeben" - -#: core/static/js/core/base.js:791 -msgid "Error" -msgstr "Fehler" - -#: core/static/js/core/pdf.js:1335 core/static/js/core/pdf.js:99 -msgid "Error while generating PDF file" -msgstr "Fehler beim Erstellen der PDF-Datei" - -#: motions/static/js/motions/pdf.js:1382 -msgid "Error while generating ZIP file" -msgstr "Fehler beim Erstellen der ZIP-Datei" - -#: users/static/js/users/site.js:1212 -msgid "Error: Given name or surname is required." -msgstr "Fehler: Vor- oder Nachname ist erforderlich." - -#: motions/static/js/motions/site.js:2880 -msgid "Error: Identifier already exists." -msgstr "Fehler: Bezeichner existiert bereits." - -#: motions/static/js/motions/site.js:2891 -msgid "Error: Text is required." -msgstr "Fehler: Text ist erforderlich." - -#: motions/static/js/motions/site.js:2886 topics/static/js/topics/site.js:297 -msgid "Error: Title is required." -msgstr "Fehler: Titel ist erforderlich." - -#: agenda/static/templates/agenda/item-list.html:200 -msgid "Estimated end:" -msgstr "Voraussichtliches Ende:" - -#: core/static/js/core/site.js:2086 -msgid "Event" -msgstr "Veranstaltung" - -#: core/static/js/core/site.js:2088 -msgid "Event date" -msgstr "Veranstaltungszeitraum" - -#: core/static/js/core/site.js:2089 -msgid "Event location" -msgstr "Veranstaltungsort" - -#: core/static/js/core/site.js:2080 -msgid "Event name" -msgstr "Veranstaltungsname" - -#: core/static/js/core/site.js:2090 -msgid "Event organizer" -msgstr "Veranstalter" - -#: motions/static/js/motions/site.js:918 -msgid "Exclude" -msgstr "Ausschließen" - -#: users/static/templates/users/user-import.html:234 -msgid "Exclude already imported users" -msgstr "Bereits importierte Teilnehmende ausblenden" - -#: motions/static/templates/motions/motion-amendment-list.html:14 -#: motions/static/templates/motions/workflow-detail.html:17 -msgid "Expand" -msgstr "Maximieren" - -#: agenda/static/templates/agenda/item-list.html:207 -msgid "Expand all" -msgstr "Alle ausklappen" - -#: agenda/static/templates/agenda/item-list.html:132 -#: agenda/static/templates/agenda/item-list.html:95 -#: assignments/static/templates/assignments/assignment-list.html:31 -#: motions/static/templates/motions/motion-amendment-list.html:70 -#: motions/static/templates/motions/motion-list.html:53 -#: motions/static/templates/motions/motion-list.html:63 -#: users/static/templates/users/user-list.html:47 -msgid "Export all" -msgstr "Exportieren (alle)" - -#: assignments/static/templates/assignments/assignment-detail.html:26 -#: motions/static/templates/motions/motion-detail.html:69 -msgid "Export as PDF" -msgstr "Als PDF exportieren" - -#: motions/static/templates/motions/motion-export-form.html:7 -msgid "Export as {{ params.format.toUpperCase() | translate }}" -msgstr "Exportieren als {{ params.format.toUpperCase() | translate }}" - -#: motions/static/templates/motions/motion-detail/comments.html:7 -msgid "Export comments only" -msgstr "Nur Kommentare exportieren" - -#: motions/static/templates/motions/motion-amendment-list.html:83 -msgid "Export dialog" -msgstr "Exportdialog" - -#: agenda/static/templates/agenda/item-list.html:135 -#: agenda/static/templates/agenda/item-list.html:98 -#: assignments/static/templates/assignments/assignment-list.html:34 -#: motions/static/templates/motions/motion-amendment-list.html:73 -#: motions/static/templates/motions/motion-list.html:56 -#: motions/static/templates/motions/motion-list.html:66 -#: users/static/templates/users/user-list.html:50 -msgid "Export filtered" -msgstr "Exportieren (Auswahl)" - -#: motions/static/templates/motions/motion-export-form.html:2 -#: motions/static/templates/motions/motion-export-form.html:3 -msgid "Export motion" -msgstr "Antrag exportieren" - -#: motions/static/templates/motions/motion-export-form.html:1 -msgid "Export motions" -msgstr "Anträge exportieren" - -#: motions/static/templates/motions/motion-detail/personal-note.html:7 -msgid "Export personal note only" -msgstr "Nur persönliche Notiz exportieren" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:21 -msgid "File information" -msgstr "Dateiinformationen" - -#: mediafiles/static/js/mediafiles/list.js:104 -msgid "File size" -msgstr "Dateigröße" - -#: mediafiles/static/js/mediafiles/resources.js:22 -#: mediafiles/static/js/mediafiles/resources.js:23 -#: mediafiles/static/js/mediafiles/states.js:18 -#: mediafiles/static/js/mediafiles/states.js:30 -#: mediafiles/static/js/mediafiles/states.js:48 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:9 -msgid "Files" -msgstr "Dateien" - -#: agenda/static/templates/agenda/item-list.html:241 -#: assignments/static/templates/assignments/assignment-list.html:98 -#: core/static/templates/core/tag-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:176 -#: motions/static/templates/motions/category-list.html:21 -#: motions/static/templates/motions/motion-block-detail.html:40 -#: motions/static/templates/motions/motion-block-list.html:21 -#: users/static/templates/users/user-list.html:202 -msgid "Filter" -msgstr "Filter" - -#: motions/static/templates/motions/motion-detail/toolbar.html:114 -#: motions/static/templates/motions/motion-detail/toolbar.html:149 -msgid "Final print template" -msgstr "Beschluss-Druckvorlage" - -#: motions/static/js/motions/site.js:960 motions/static/js/motions/site.js:974 -#: motions/static/templates/motions/motion-detail/toolbar.html:105 -#: motions/static/templates/motions/motion-detail/toolbar.html:144 -msgid "Final version" -msgstr "Beschlussfassung" - -#: assignments/static/js/assignments/site.js:937 -msgid "Finished" -msgstr "Abgeschlossen" - -#: motions/static/templates/motions/workflow-detail.html:28 -msgid "First state" -msgstr "Erster Status" - -#: motions/static/templates/motions/motion-detail.html:291 -msgid "Follow recommendation" -msgstr "Empfehlung folgen" - -#: motions/static/templates/motions/motion-block-detail.html:34 -msgid "Follow recommendations for all motions" -msgstr "Empfehlungen für alle Anträge folgen" - -#: core/static/js/core/site.js:2115 -msgid "Font color of projector header and footer" -msgstr "Schriftfarbe des Projektor-Kopf- und Fußbereichs" - -#: core/static/js/core/site.js:2116 -msgid "Font color of projector headline" -msgstr "Schriftfarbe der Projektor-Überschrift" - -#: assignments/static/js/assignments/site.js:911 -msgid "" -"For Yes/No/Abstain per candidate and Yes/No per candidate the 100-%-base " -"depends on the election method: If there is only one option per candidate, " -"the sum of all votes of all candidates is 100 %. Otherwise for each " -"candidate the sum of all votes is 100 %." -msgstr "Für Ja/Nein/Enthaltung pro Kandidat und Ja/Nein pro Kandidat hängt die 100%-Basis von der Wahlmethode ab: Wenn es nur eine Option pro Kandidat gibt, ist 100% die Summe aller Stimmen von allen Kandidaten. Andernfalls ist 100% die Summe aller Stimmen pro Kandidat." - -#: motions/static/js/motions/site.js:899 -msgid "Format" -msgstr "Format" - -#: motions/static/js/motions/site.js:352 -msgid "From Line" -msgstr "Von Zeile" - -#: core/static/js/core/site.js:2095 -msgid "Front page text" -msgstr "Text der Startseite" - -#: core/static/js/core/site.js:2093 -msgid "Front page title" -msgstr "Titel der Startseite" - -#: core/static/js/core/site.js:2085 motions/static/js/motions/site.js:3241 -#: users/static/js/users/site.js:1498 users/static/js/users/site.js:1847 -msgid "General" -msgstr "Allgemein" - -#: users/static/js/users/site.js:361 -#: users/static/templates/users/user-change-password.html:33 -msgid "Generate" -msgstr "Generieren" - -#: users/static/templates/users/user-list.html:121 -#: users/static/templates/users/user-list.html:85 -msgid "Generate new passwords" -msgstr "Neue Passwörter generieren" - -#: core/static/js/core/pdf.js:1326 -msgid "Generating PDF file" -msgstr "PDF-Datei wird erstellt" - -#: motions/static/js/motions/pdf.js:1337 -msgid "Generating PDFs and ZIP archive" -msgstr "PDF-Dokumente und ZIP-Archiv werden erstellt" - -#: users/static/js/users/site.js:1851 users/static/js/users/site.js:296 -#: users/static/js/users/site.js:634 -#: users/static/templates/users/user-import.html:51 -#: users/static/templates/users/user-import.html:84 -msgid "Given name" -msgstr "Vorname" - -#: motions/static/templates/motions/motion-detail/toolbar.html:52 -msgid "Go to line" -msgstr "Springe zur Zeile" - -#: users/static/js/users/site.js:612 -msgid "Got an email" -msgstr "Bekam eine E-Mail" - -#: motions/static/js/motions/workflow.js:81 -msgid "Green" -msgstr "Grün" - -#: motions/static/js/motions/workflow.js:83 -msgid "Grey" -msgstr "Grau" - -#: users/static/js/users/pdf.js:73 users/static/js/users/site.js:348 -#: users/static/js/users/site.js:89 -#: users/static/templates/users/group-list.html:14 -#: users/static/templates/users/user-detail.html:30 -#: users/static/templates/users/user-import.html:55 -#: users/static/templates/users/user-import.html:88 -#: users/static/templates/users/user-list.html:16 -#: users/static/templates/users/user-list.html:209 -#: users/static/templates/users/user-list.html:378 -#: users/static/templates/users/user-list.html:407 -msgid "Groups" -msgstr "Gruppen" - -#: users/static/templates/users/user-import.html:226 -msgid "Groups created" -msgstr "Gruppen angelegt" - -#: users/static/js/users/site.js:1857 -msgid "Help text for access data and welcome PDF" -msgstr "Hilfetext für das Zugangsdaten- und Willkommens-PDF" - -#: agenda/static/templates/agenda/item-list.html:159 -#: agenda/static/templates/agenda/item-list.html:436 -#: agenda/static/templates/agenda/item-list.html:472 -#: mediafiles/static/js/mediafiles/forms.js:51 -#: mediafiles/static/js/mediafiles/list.js:74 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:27 -msgid "Hidden" -msgstr "Versteckt" - -#: agenda/static/js/agenda/site.js:102 -#: agenda/static/templates/agenda/item-list.html:452 -msgid "Hidden item" -msgstr "Versteckter Eintrag" - -#: agenda/static/js/agenda/site.js:197 -#: agenda/static/templates/agenda/item-list.html:293 -msgid "Hidden items" -msgstr "Versteckte Einträge" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:37 -msgid "Hide" -msgstr "Ausblenden" - -#: agenda/static/templates/agenda/item-sort.html:18 -msgid "Hide internal items" -msgstr "Interne Einträge ausblenden" - -#: agenda/static/js/agenda/site.js:877 -msgid "Hide internal items when projecting subitems" -msgstr "Interne Einträge ausblenden bei der Projektion von Untereinträgen" - -#: motions/static/js/motions/site.js:3259 -msgid "Hide meta information box on projector" -msgstr "Meta-Informations-Box auf dem Projektor ausblenden" - -#: motions/static/js/motions/site.js:3258 -msgid "Hide reason on projector" -msgstr "Begründung auf dem Projektor ausblenden" - -#: motions/static/js/motions/site.js:3260 -msgid "Hide recommendation on projector" -msgstr "Empfehlung auf dem Projektor ausblenden" - -#: assignments/static/templates/assignments/assignment-detail.html:144 -msgid "Hint on the ballot paper." -msgstr "Hinweis auf dem Stimmzettel." - -#: core/static/js/core/site.js:189 core/static/js/core/site.js:331 -msgid "Home" -msgstr "Startseite" - -#: motions/static/js/motions/site.js:3276 -msgid "How to create new amendments" -msgstr "Erstellung von Änderungsanträgen" - -#: motions/static/js/motions/site.js:1419 -#: motions/static/js/motions/site.js:259 -#: motions/static/js/motions/site.js:3243 -#: motions/static/js/motions/site.js:336 motions/static/js/motions/site.js:482 -#: motions/static/templates/motions/motion-import.html:22 -#: motions/static/templates/motions/motion-import.html:45 -msgid "Identifier" -msgstr "Bezeichner" - -#: motions/static/templates/motions/motion-import.html:31 -msgid "" -"Identifier, reason, submitter, category, origin and motion block are " -"optional and may be empty." -msgstr "Bezeichner, Begründung, Antragsteller/in, Sachgebiet, Herkunft und Antragsblock sind optional und dürfen leer sein." - -#: core/static/templates/core/manage-projectors.html:32 -msgid "Identify" -msgstr "Identifizieren" - -#: mediafiles/static/js/mediafiles/image-plugin.js:148 -#: mediafiles/static/js/mediafiles/image-plugin.js:198 -msgid "Image browser" -msgstr "Bildbrowser" - -#: agenda/static/templates/agenda/item-list.html:16 -#: motions/static/templates/motions/motion-list.html:31 -#: topics/static/templates/topics/topic-import.html:24 -#: users/static/templates/users/user-import.html:29 -#: users/static/templates/users/user-list.html:20 -msgid "Import" -msgstr "Importieren" - -#: topics/static/templates/topics/topic-import.html:41 -#: users/static/templates/users/user-import.html:41 -msgid "Import by CSV file" -msgstr "Import von CSV-Datei" - -#: topics/static/templates/topics/topic-import.html:14 -#: users/static/templates/users/user-import.html:18 -msgid "Import by copy/paste" -msgstr "Import durch Kopieren/Einfügen" - -#: motions/static/templates/motions/motion-import.html:9 -msgid "Import motions" -msgstr "Anträge importieren" - -#: users/static/templates/users/user-import.html:9 -msgid "Import participants" -msgstr "Teilnehmende importieren" - -#: topics/static/templates/topics/topic-import.html:9 -msgid "Import topics" -msgstr "Themen importieren" - -#: topics/static/templates/topics/topic-import.html:123 -msgid "Import {{ itemsWillBeImported }} topics" -msgstr "{{ itemsWillBeImported }} Themen importieren" - -#: motions/static/templates/motions/motion-import.html:132 -msgid "Import {{ motionsWillBeImported }} motions" -msgstr "{{ motionsWillBeImported }} Anträge importieren" - -#: users/static/templates/users/user-import.html:237 -msgid "Import {{ usersWillBeImported }} participants" -msgstr "{{ usersWillBeImported }} Teilnemende importieren" - -#: motions/static/js/motions/site.js:917 -msgid "Include" -msgstr "Einschließen" - -#: agenda/static/templates/agenda/item-list.html:363 -msgid "Include all sub items" -msgstr "inkl. aller Untereinträge" - -#: motions/static/js/motions/site.js:3318 -msgid "Include the sequential number in PDF and DOCX" -msgstr "Laufende Nummer im PDF und DOCX anzeigen" - -#: users/static/js/users/pdf.js:201 users/static/js/users/site.js:358 -#: users/static/templates/users/user-change-password.html:37 -#: users/static/templates/users/user-import.html:60 -#: users/static/templates/users/user-import.html:93 -msgid "Initial password" -msgstr "Initiales Passwort" - -#: users/static/js/users/site.js:359 -#: users/static/templates/users/user-change-password.html:38 -msgid "Initial password can not be changed." -msgstr "Das initiale Passwort kann nicht geändert werden." - -#. Line numbering: Inline -#: motions/static/js/motions/site.js:3253 -msgid "Inline" -msgstr "innerhalb" - -#: motions/static/templates/motions/motion-detail/comments.html:15 -#: motions/static/templates/motions/motion-detail/comments.html:20 -#: motions/static/templates/motions/motion-detail/personal-note.html:14 -#: motions/static/templates/motions/motion-detail/personal-note.html:19 -#: motions/static/templates/motions/motion-detail/toolbar.html:13 -#: motions/static/templates/motions/motion-detail/toolbar.html:18 -#: motions/static/templates/motions/motion-detail/toolbar.html:29 -#: motions/static/templates/motions/motion-detail/toolbar.html:35 -#: motions/static/templates/motions/motion-detail/toolbar.html:8 -msgid "Inline editing" -msgstr "Inline-Bearbeitung" - -#: agenda/static/js/agenda/site.js:876 -msgid "Input format: DD.MM.YYYY HH:MM" -msgstr "Eingabeformat: TT.MM.JJJJ HH:MM" - -#: motions/static/js/motions/base.js:1489 motions/static/js/motions/pdf.js:282 -#: motions/static/js/motions/site.js:371 -#: motions/static/templates/motions/motion-detail/change-summary.html:38 -msgid "Insertion" -msgstr "Ergänzung" - -#: core/static/templates/legalnotice.html:17 -msgid "Installed plugins:" -msgstr "Installierte Plugins:" - -#: agenda/static/templates/agenda/item-list.html:156 -#: agenda/static/templates/agenda/item-list.html:432 -#: agenda/static/templates/agenda/item-list.html:468 -msgid "Internal" -msgstr "Intern" - -#: agenda/static/js/agenda/site.js:101 -#: agenda/static/templates/agenda/item-list.html:447 -#: topics/static/templates/topics/topic-import.html:54 -#: topics/static/templates/topics/topic-import.html:73 -msgid "Internal item" -msgstr "Interner Eintrag" - -#: agenda/static/js/agenda/site.js:190 -#: agenda/static/templates/agenda/item-list.html:287 -msgid "Internal items" -msgstr "Interne Einträge" - -#: assignments/static/js/assignments/site.js:836 -#: assignments/static/templates/assignments/assignment-detail.html:274 -#: assignments/static/templates/assignments/slide_assignment.html:88 -msgid "Invalid ballots" -msgstr "Ungültige Stimmzettel" - -#: agenda/static/js/agenda/site.js:871 -msgid "Invalid input." -msgstr "Ungültige Eingabe." - -#: motions/static/js/motions/pdf.js:216 motions/static/js/motions/site.js:799 -#: motions/static/templates/motions/motion-detail.html:450 -msgid "Invalid votes" -msgstr "Ungültige Stimmen" - -#: mediafiles/static/js/mediafiles/list.js:81 -msgid "Is PDF" -msgstr "Ist PDF" - -#: mediafiles/static/js/mediafiles/list.js:82 -msgid "Is PDF file" -msgstr "Ist PDF-Datei" - -#: users/static/js/users/site.js:415 users/static/js/users/site.js:606 -#: users/static/templates/users/user-list.html:341 -msgid "Is a committee" -msgstr "Ist ein Gremium" - -#: users/static/js/users/site.js:403 users/static/js/users/site.js:599 -#: users/static/templates/users/user-import.html:57 -#: users/static/templates/users/user-import.html:90 -#: users/static/templates/users/user-list.html:127 -msgid "Is active" -msgstr "Ist aktiv" - -#: users/static/templates/users/user-import.html:59 -#: users/static/templates/users/user-import.html:92 -#: users/static/templates/users/user-list.html:129 -msgid "Is committee" -msgstr "Ist Gremium" - -#: mediafiles/static/js/mediafiles/list.js:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:303 -msgid "Is hidden" -msgstr "Ist versteckt" - -#: users/static/templates/users/user-list.html:339 -msgid "Is inactive" -msgstr "Ist inaktiv" - -#: mediafiles/static/js/mediafiles/list.js:83 -msgid "Is no PDF file" -msgstr "Ist keine PDF-Datei" - -#: users/static/js/users/site.js:607 -#: users/static/templates/users/user-list.html:137 -msgid "Is not a committee" -msgstr "Ist kein Gremium" - -#: users/static/js/users/site.js:600 -#: users/static/templates/users/user-list.html:135 -msgid "Is not active" -msgstr "Ist nicht aktiv" - -#: mediafiles/static/js/mediafiles/list.js:76 -msgid "Is not hidden" -msgstr "Ist nicht versteckt" - -#: users/static/js/users/site.js:593 -#: users/static/templates/users/user-list.html:136 -msgid "Is not present" -msgstr "Ist nicht anwesend" - -#: users/static/js/users/site.js:393 users/static/js/users/site.js:592 -#: users/static/templates/users/user-import.html:58 -#: users/static/templates/users/user-import.html:91 -#: users/static/templates/users/user-list.html:128 -msgid "Is present" -msgstr "Ist anwesend" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:308 -msgid "Is used as a font" -msgstr "Wird als Schriftart verwendet." - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:306 -msgid "Is used as a logo" -msgstr "Wird als Logo verwendet." - -#. short form of agenda item -#: assignments/static/js/assignments/site.js:333 -#: motions/static/templates/motions/motion-table-filters.html:209 -msgid "Item" -msgstr "TOP" - -#: motions/static/templates/motions/workflow-detail.html:119 -msgid "Label color" -msgstr "Beschriftungsfarbe" - -#: users/static/js/users/site.js:611 users/static/js/users/site.js:650 -#: users/static/templates/users/user-detail.html:38 -msgid "Last email send" -msgstr "Letzte gesendet E-Mail" - -#: users/static/templates/users/user-list.html:448 -msgid "Last email send to the user" -msgstr "Letzte gesendete E-Mail an den Benutzer" - -#: motions/static/js/motions/site.js:1433 -#: motions/static/templates/motions/motion-detail.html:636 -msgid "Last modified" -msgstr "Zuletzt geändert" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:36 -msgid "Last speakers" -msgstr "Letzte Redner/innen" - -#: core/static/templates/csv-import.html:33 -msgid "Leave empty for autodetection of the separator." -msgstr "Leer lassen, um den Feldtrenner automatisch zu erkennen." - -#: motions/static/js/motions/workflow.js:70 -msgid "Leave old version active" -msgstr "Alte Version aktiv lassen" - -#: core/static/js/core/site.js:2101 -msgid "Left" -msgstr "Links" - -#: core/static/js/core/site.js:2091 core/static/js/core/site.js:371 -#: core/static/templates/index.html:227 -#: core/static/templates/legalnotice.html:3 -msgid "Legal notice" -msgstr "Impressum" - -#: core/static/templates/legalnotice.html:14 -#: core/static/templates/legalnotice.html:27 -msgid "License" -msgstr "Lizenz" - -#: motions/static/js/motions/pdf.js:1083 motions/static/js/motions/pdf.js:275 -#: motions/static/templates/motions/motion-amendment-list.html:238 -#: motions/static/templates/motions/motion-amendment-list.html:241 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:28 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:31 -#: motions/static/templates/motions/motion-detail/change-summary.html:28 -#: motions/static/templates/motions/motion-detail/change-summary.html:31 -#: motions/static/templates/motions/motion-detail/toolbar.html:46 -#: motions/static/templates/motions/slide_motion.html:80 -#: motions/static/templates/motions/slide_motion.html:83 -msgid "Line" -msgstr "Zeile" - -#: motions/static/js/motions/site.js:3256 -msgid "Line length" -msgstr "Zeilenlänge" - -#: motions/static/js/motions/site.js:929 motions/static/js/motions/site.js:942 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:30 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:5 -msgid "Line numbering" -msgstr "Zeilennummerierung" - -#: users/static/js/users/pdf.js:313 -#: users/static/templates/users/user-list.html:64 -msgid "List of access data" -msgstr "Zugangsdatenliste" - -#: users/static/js/users/pdf.js:17 users/static/js/users/pdf.js:302 -#: users/static/templates/users/user-list.html:59 -msgid "List of participants" -msgstr "Teilnehmendenliste" - -#: agenda/static/js/agenda/site.js:562 agenda/static/js/agenda/site.js:879 -#: agenda/static/templates/agenda/item-detail.html:21 -#: agenda/static/templates/agenda/item-detail.html:47 -#: agenda/static/templates/agenda/item-list.html:402 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:2 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:5 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:5 -#: assignments/static/templates/assignments/assignment-detail.html:12 -#: core/static/templates/core/projector-controls.html:257 -#: motions/static/templates/motions/motion-block-detail.html:11 -#: motions/static/templates/motions/motion-detail.html:23 -#: topics/static/templates/topics/topic-detail.html:11 -msgid "List of speakers" -msgstr "Redeliste" - -#: core/static/js/core/site.js:2119 -msgid "List of speakers overlay" -msgstr "Redelisten-Einblendung" - -#: core/static/templates/core/projector-controls.html:8 -msgid "Live view" -msgstr "Live-Vorschau" - -#: core/static/templates/core/login-form.html:20 -#: core/static/templates/index.html:121 -msgid "Login" -msgstr "Anmelden" - -#: core/static/templates/index.html:112 -msgid "Logout" -msgstr "Abmelden" - -#: core/static/templates/core/projector-controls.html:59 -msgid "Manage" -msgstr "Verwalten" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:386 -msgid "Manage fonts" -msgstr "Schriftarten verwalten" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:348 -msgid "Manage logos" -msgstr "Logos verwalten" - -#: core/static/js/core/site.js:356 -#: core/static/templates/core/manage-projectors.html:35 -msgid "Manage projectors" -msgstr "Projektoren verwalten" - -#: core/static/templates/core/projector-controls.html:305 -msgid "Manage the current list of speakers" -msgstr "Die aktuelle Redeliste verwalten" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:69 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:95 -msgid "Mark speaker" -msgstr "Redner/in markieren" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:43 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:62 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:87 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:10 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:19 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:21 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:39 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:20 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:27 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:33 -msgid "Marked" -msgstr "Markiert" - -#: motions/static/js/motions/site.js:1360 -msgid "Marked as favorite" -msgstr "Als persönlicher Favorit markiert" - -#: core/static/js/core/base.js:1393 core/static/js/core/site.js:463 -#: core/static/templates/core/projector-controls.html:224 -msgid "Message" -msgstr "Mitteilung" - -#: core/static/js/core/base.js:1394 -#: core/static/templates/core/projector-controls.html:218 -msgid "Messages" -msgstr "Mitteilungen" - -#: assignments/static/templates/assignments/assignment-detail.html:42 -#: motions/static/js/motions/site.js:1003 -#: motions/static/js/motions/site.js:994 -#: motions/static/templates/motions/motion-detail.html:133 -msgid "Meta information" -msgstr "Metainformationen" - -#: motions/static/templates/motions/motion-table-filters.html:166 -msgid "Misc" -msgstr "Sonstiges" - -#: motions/static/js/motions/base.js:293 motions/static/js/motions/base.js:328 -#: motions/static/js/motions/base.js:337 motions/static/js/motions/docx.js:92 -#: motions/static/js/motions/pdf.js:1076 motions/static/js/motions/pdf.js:1346 -#: motions/static/js/motions/pdf.js:1392 motions/static/js/motions/pdf.js:536 -#: motions/static/js/motions/pdf.js:70 motions/static/js/motions/pdf.js:732 -#: motions/static/js/motions/site.js:1627 -#: motions/static/js/motions/site.js:2039 -#: motions/static/js/motions/site.js:2052 -#: motions/static/js/motions/site.js:2058 -#: motions/static/js/motions/site.js:267 motions/static/js/motions/site.js:344 -#: motions/static/templates/motions/motion-block-detail.html:51 -#: motions/static/templates/motions/motion-detail.html:116 -#: motions/static/templates/motions/motion-detail.html:120 -#: motions/static/templates/motions/motion-detail.html:271 -#: motions/static/templates/motions/motion-detail.html:92 -#: motions/static/templates/motions/slide_motion.html:74 -msgid "Motion" -msgstr "Antrag" - -#: motions/static/js/motions/motion-block.js:156 -#: motions/static/js/motions/motion-block.js:19 -#: motions/static/js/motions/pdf.js:155 motions/static/js/motions/site.js:1427 -#: motions/static/js/motions/site.js:614 motions/static/js/motions/site.js:874 -#: motions/static/templates/motions/motion-block-detail.html:25 -#: motions/static/templates/motions/motion-detail.html:318 -#: motions/static/templates/motions/motion-detail.html:322 -#: motions/static/templates/motions/motion-import.html:29 -#: motions/static/templates/motions/motion-import.html:52 -#: motions/static/templates/motions/motion-table-filters.html:93 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motion block" -msgstr "Antragsblock" - -#: motions/static/js/motions/site.js:156 -#: motions/static/templates/motions/motion-block-list.html:13 -#: motions/static/templates/motions/motion-list.html:19 -msgid "Motion blocks" -msgstr "Antragsblöcke" - -#: motions/static/templates/motions/motion-import.html:125 -msgid "Motion blocks created" -msgstr "Antragsblock angelegt" - -#: motions/static/js/motions/site.js:3247 -msgid "Motion preamble" -msgstr "Antragseinleitung" - -#: motions/static/js/motions/base.js:294 motions/static/js/motions/site.js:23 -#: motions/static/js/motions/site.js:3238 motions/static/js/motions/site.js:35 -#: motions/static/js/motions/site.js:53 -#: motions/static/templates/motions/motion-block-list.html:30 -#: motions/static/templates/motions/motion-list.html:35 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motions" -msgstr "Anträge" - -#: motions/static/js/motions/site.js:1034 -msgid "Multiple PDFs in a zip arcive" -msgstr "Mehrere PDFs in einem ZIP-Archiv" - -#: core/static/js/core/site.js:497 -#: core/static/templates/core/manage-projectors.html:62 -#: core/static/templates/core/tag-list.html:34 -#: motions/static/js/motions/site.js:739 -#: motions/static/templates/motions/category-list.html:29 -#: motions/static/templates/motions/motion-block-list.html:29 -#: motions/static/templates/motions/state-edit.html:8 -#: motions/static/templates/motions/workflow-list.html:25 -#: users/static/js/users/pdf.js:65 -msgid "Name" -msgstr "Name" - -#: motions/static/js/motions/site.js:3263 -msgid "Name of recommender" -msgstr "Name des Empfehlungsgebers" - -#: motions/static/js/motions/base.js:1639 -msgid "Needs review" -msgstr "Benötigt Überprüfung" - -#: agenda/static/templates/agenda/item-list.html:8 -#: assignments/static/templates/assignments/assignment-list.html:6 -#: core/static/js/core/site.js:1288 core/static/js/core/site.js:1301 -#: core/static/js/core/site.js:1302 -#: core/static/templates/core/manage-projectors.html:8 -#: core/static/templates/core/tag-list.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:6 -#: motions/static/templates/motions/category-list.html:10 -#: motions/static/templates/motions/motion-block-list.html:10 -#: motions/static/templates/motions/motion-list.html:6 -#: motions/static/templates/motions/workflow-detail.html:11 -#: motions/static/templates/motions/workflow-list.html:10 -#: users/static/templates/users/group-list.html:11 -#: users/static/templates/users/user-list.html:6 -msgid "New" -msgstr "Neu" - -#: motions/static/templates/motions/motion-detail.html:181 -msgid "New amendment" -msgstr "Neuer Änderungsantrag" - -#: motions/static/templates/motions/motion-form.html:3 -msgid "New amendment to motion" -msgstr "Neuer Änderungsantrag zu Antrag" - -#: assignments/static/templates/assignments/assignment-detail.html:133 -msgid "New ballot" -msgstr "Neuer Wahlgang" - -#: motions/static/templates/motions/category-form.html:2 -msgid "New category" -msgstr "Neues Sachgebiet" - -#: motions/static/js/motions/site.js:2922 -msgid "New category will be created." -msgstr "Neues Sachgebiet wird angelegt." - -#: motions/static/templates/motions/change-recommendation-form.html:2 -msgid "New change recommendation" -msgstr "Neue Änderungsempfehlung" - -#: assignments/static/templates/assignments/assignment-form.html:2 -msgid "New election" -msgstr "Neue Wahl" - -#: motions/static/templates/motions/motion-form.html:2 -msgid "New motion" -msgstr "Neuer Antrag" - -#: motions/static/templates/motions/motion-block-form.html:2 -msgid "New motion block" -msgstr "Neuer Antragsblock" - -#: motions/static/js/motions/site.js:2935 -msgid "New motion block will be created." -msgstr "Neuer Antragsblock wird angelegt." - -#: users/static/templates/users/user-form.html:2 -msgid "New participant" -msgstr "Neue/r Teilnehmer/in" - -#: motions/static/js/motions/site.js:2909 -msgid "New participant will be created." -msgstr "Neue/r Teilnehmer/in wird angelegt." - -#: users/static/js/users/site.js:519 -#: users/static/templates/users/user-change-password.html:23 -msgid "New password" -msgstr "Neues Passwort" - -#: core/static/templates/core/tag-form.html:2 -msgid "New tag" -msgstr "Neues Schlagwort" - -#: motions/static/js/motions/pdf.js:377 motions/static/js/motions/site.js:275 -#: motions/static/templates/motions/motion-detail/view-diff.html:42 -#: motions/static/templates/motions/slide_motion.html:107 -msgid "New title" -msgstr "Neuer Titel" - -#: topics/static/templates/topics/topic-form.html:2 -msgid "New topic" -msgstr "Neues Thema" - -#: motions/static/templates/motions/motion-detail.html:542 -#: motions/static/templates/motions/motion-detail.html:572 -msgid "New version on these changes" -msgstr "Neue Version mit diesen Änderungen" - -#: motions/static/templates/motions/motion-detail.html:495 -msgid "New vote" -msgstr "Neue Abstimmung" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:39 -msgid "Next page" -msgstr "Nächste Seite" - -#: motions/static/templates/motions/workflow-detail.html:170 -msgid "Next states" -msgstr "Nächste Status" - -#: assignments/static/js/assignments/pdf.js:323 -#: assignments/static/js/assignments/pdf.js:358 -#: assignments/static/js/assignments/site.js:612 -#: assignments/static/js/assignments/site.js:743 -#: assignments/static/js/assignments/site.js:809 -#: assignments/static/templates/assignments/assignment-detail.html:262 -#: assignments/static/templates/assignments/slide_assignment.html:77 -#: motions/static/js/motions/pdf.js:198 motions/static/js/motions/pdf.js:740 -#: motions/static/js/motions/site.js:770 -#: motions/static/templates/motions/motion-detail.html:417 -#: motions/static/templates/motions/slide_motion.html:44 -msgid "No" -msgstr "Nein" - -#: motions/static/js/motions/docx.js:48 -msgid "No categories available." -msgstr "Keine Sachgebiete vorhanden." - -#: motions/static/templates/motions/motion-amendment-list.html:140 -#: motions/static/templates/motions/motion-list.html:102 -msgid "No category" -msgstr "Kein Sachgebiet" - -#: motions/static/templates/motions/motion-table-filters.html:286 -#: motions/static/templates/motions/motion-table-filters.html:83 -msgid "No category set" -msgstr "Kein Sachgebiet gesetzt" - -#: motions/static/templates/motions/motion-detail/change-summary.html:53 -msgid "No change recommendations yet" -msgstr "Bisher keine Änderungsempfehlungen" - -#: motions/static/js/motions/pdf.js:1094 motions/static/js/motions/pdf.js:370 -#: motions/static/templates/motions/motion-amendment-list.html:349 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:17 -msgid "No changes at the text." -msgstr "Keine Änderung am Text." - -#: motions/static/templates/motions/motion-table-filters.html:131 -#: motions/static/templates/motions/motion-table-filters.html:312 -msgid "No comments set" -msgstr "Keine Kommentare gesetzt" - -#: motions/static/js/motions/base.js:1634 -msgid "No concernment" -msgstr "Nichtbefassung" - -#: motions/static/js/motions/base.js:1614 -msgid "No decision" -msgstr "Keine Entscheidung" - -#: users/static/js/users/site.js:818 -msgid "No emails were send." -msgstr "Es wurden keine E-Mails versandt." - -#: users/static/js/users/site.js:1868 -msgid "No encryption" -msgstr "Keine Verschlüsselung" - -#: users/static/templates/users/user-list.html:223 -#: users/static/templates/users/user-list.html:300 -msgid "No group set" -msgstr "Keine Gruppe gesetzt" - -#: agenda/static/js/agenda/site.js:198 -msgid "No hidden items" -msgstr "Keine versteckten Einträge" - -#: agenda/static/js/agenda/site.js:191 -msgid "No internal items" -msgstr "Kein internen Einträge" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:107 -msgid "No media file projected." -msgstr "Keine Mediendatei projiziert." - -#: motions/static/templates/motions/motion-amendment-list.html:153 -#: motions/static/templates/motions/motion-list.html:115 -msgid "No motion block" -msgstr "Kein Antragsblock" - -#: motions/static/templates/motions/motion-table-filters.html:107 -#: motions/static/templates/motions/motion-table-filters.html:328 -msgid "No motion block set" -msgstr "Kein Antragsblock gesetzt" - -#: motions/static/js/motions/docx.js:54 -msgid "No motions available." -msgstr "Keine Anträge vorhanden." - -#: agenda/static/js/agenda/site.js:185 -msgid "No public items" -msgstr "Keine öffentlichen Einträge" - -#: motions/static/templates/motions/motion-amendment-list.html:285 -#: motions/static/templates/motions/motion-amendment-list.html:296 -msgid "No recomendation set" -msgstr "Keine Empfehlung gesetzt" - -#: motions/static/templates/motions/motion-table-filters.html:59 -msgid "No recommendation set" -msgstr "Keine Empfehlung gesetzt" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: core/static/templates/core/select-multiple.html:2 -#: core/static/templates/core/select-single.html:2 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "No results available ..." -msgstr "Keine Ergebnisse vorhanden ..." - -#: core/static/templates/search.html:41 -msgid "No results." -msgstr "Keine Ergebnisse." - -#: assignments/static/templates/assignments/assignment-list.html:120 -#: assignments/static/templates/assignments/assignment-list.html:192 -#: motions/static/templates/motions/motion-table-filters.html:155 -#: motions/static/templates/motions/motion-table-filters.html:344 -msgid "No tag set" -msgstr "Kein Schlagwort gesetzt" - -#: motions/static/js/motions/site.js:2304 -msgid "No workflows exists. You will not be able to create a motion." -msgstr "Es existiert kein Arbeitsablauf. Neue Anträge können nicht erstellt werden." - -#. abbreviation for number -#: users/static/js/users/base.js:82 -#: users/static/templates/users/user-list.html:349 -#: users/static/templates/users/user-list.html:353 -msgid "No." -msgstr "Nr." - -#. Line numbering: None -#: motions/static/js/motions/site.js:3255 -#: motions/static/js/motions/site.js:931 motions/static/js/motions/site.js:944 -msgid "None" -msgstr "aus" - -#: motions/static/js/motions/site.js:1361 -msgid "Not marked as favorite" -msgstr "Nicht als persönlicher Favorit markiert" - -#: motions/static/templates/motions/motion-detail/view-diff.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:8 -msgid "Not rejected" -msgstr "Nicht abgelehnt" - -#: motions/static/templates/motions/motion-detail/change-summary.html:8 -msgid "" -"Note: You have to reject all change recommendations if the plenum does not " -"follow the recommendation. This does not affect amendments." -msgstr "Wichtig: Sie müssen alle Änderungsempfehlungen ablehnen, wenn das Plenum der Empfehlung nicht folgt." - -#: motions/static/templates/motions/motion-detail/view-original.html:45 -msgid "Now choose the last line to be changed" -msgstr "Jetzt die letzte, zu ändernde Zeile anklicken" - -#: users/static/js/users/site.js:1280 users/static/js/users/site.js:644 -msgid "Number" -msgstr "Nummer" - -#: motions/static/js/motions/site.js:3283 -msgid "Number of (minimum) required supporters for a motion" -msgstr "Mindestanzahl erforderlicher Unterstützer/innen für einen Antrag" - -#: assignments/static/js/assignments/site.js:921 -#: motions/static/js/motions/site.js:3309 -msgid "Number of all delegates" -msgstr "Anzahl aller Delegierten" - -#: assignments/static/js/assignments/site.js:922 -#: motions/static/js/motions/site.js:3310 -msgid "Number of all participants" -msgstr "Anzahl aller Teilnehmenden" - -#: assignments/static/js/assignments/site.js:920 -#: motions/static/js/motions/site.js:3308 -msgid "Number of ballot papers (selection)" -msgstr "Anzahl der Stimmzettel (Vorauswahl)" - -#: assignments/static/js/assignments/site.js:339 -msgid "Number of candidates" -msgstr "Kandidatenanzahl" - -#: agenda/static/js/agenda/site.js:878 -msgid "Number of last speakers to be shown on the projector" -msgstr "Anzahl der dargestellten letzten Redner auf dem Projektor" - -#: assignments/static/js/assignments/pdf.js:23 -#: assignments/static/js/assignments/site.js:147 -#: assignments/static/templates/assignments/assignment-detail.html:52 -msgid "Number of persons to be elected" -msgstr "Anzahl der zu wählenden Personen" - -#: motions/static/js/motions/site.js:3244 -msgid "Numbered per category" -msgstr "Pro Sachgebiet nummerieren" - -#: agenda/static/templates/agenda/item-list.html:88 -#: motions/static/templates/motions/category-sort.html:20 -msgid "Numbering" -msgstr "Nummerierung" - -#: agenda/static/js/agenda/site.js:868 -msgid "Numbering prefix for agenda items" -msgstr "Präfix für Nummerierung von Tagesordnungspunkten" - -#: agenda/static/js/agenda/site.js:872 -msgid "Numeral system for agenda items" -msgstr "Nummerierungssystem für Tagesordnungspunkte" - -#: core/static/js/core/base.js:263 core/static/js/core/base.js:265 -msgid "OK" -msgstr "OK" - -#: core/static/js/core/base.js:811 -msgid "Offline mode: You can use OpenSlides but changes are not saved." -msgstr "Offlinemodus: Sie können OpenSlides weiter nutzen, aber Änderungen werden nicht gespeichert." - -#: users/static/js/users/site.js:511 -msgid "Old password" -msgstr "Altes Passwort" - -#: motions/static/js/motions/site.js:1033 -msgid "One PDF" -msgstr "Ein PDF" - -#: core/static/js/core/site.js:751 -msgid "One anonymous users is also editing this." -msgstr "Ein anonymer Gast ist auch gerade in Bearbeitung." - -#: users/static/js/users/site.js:820 -msgid "One email was send sucessfully." -msgstr "Eine E-Mail wurde erfolgreich versandt." - -#: assignments/static/templates/assignments/assignment-detail.html:287 -msgid "One vote per candidate" -msgstr "Eine Stimme pro Kandidat/in" - -#: motions/static/templates/motions/motion-import.html:33 -#: topics/static/templates/topics/topic-import.html:57 -#: users/static/templates/users/user-import.html:65 -msgid "Only double quotes are accepted as text delimiter (no single quotes)." -msgstr "Als Texttrenner werden nur doppelte Anführungszeichen akzeptiert (keine einfachen Anführungszeichen)." - -#: users/static/js/users/site.js:375 -msgid "Only for internal notes." -msgstr "Nur für interne Notizen." - -#: agenda/static/templates/agenda/item-list.html:46 -msgid "Only main agenda items" -msgstr "Nur Haupt-Tagesordnungspunkte" - -#: agenda/static/templates/agenda/item-list.html:177 -msgid "Open" -msgstr "Offen" - -#: motions/static/templates/motions/motion-detail/view-diff.html:93 -msgid "Open amendment" -msgstr "Änderungsantrag öffnen" - -#: core/static/templates/core/projector-controls.html:147 -msgid "Open countdown in fullscreen" -msgstr "Countdown in Vollbild öffnen" - -#: assignments/static/templates/assignments/assignment-form.html:13 -msgid "Open election detail view after save." -msgstr "Die Wahl nach dem Speichern öffnen." - -#: mediafiles/static/js/mediafiles/image-plugin.js:138 -msgid "Open image browser" -msgstr "Bildbrowser öffnen" - -#: agenda/static/js/agenda/site.js:178 -msgid "Open items" -msgstr "Offene Einträge" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:7 -msgid "Open list of speakers" -msgstr "Redeliste öffnen" - -#: motions/static/templates/motions/motion-form.html:14 -msgid "Open motion detail view after save." -msgstr "Den Antrag nach dem Speichern öffnen." - -#: users/static/js/users/pdf.js:189 -msgid "OpenSlides access data" -msgstr "OpenSlides-Zugangsdaten" - -#: motions/static/js/motions/pdf.js:168 motions/static/js/motions/site.js:627 -#: motions/static/js/motions/site.js:881 -#: motions/static/templates/motions/motion-detail.html:362 -#: motions/static/templates/motions/motion-import.html:28 -#: motions/static/templates/motions/motion-import.html:51 -#: motions/static/templates/motions/motion-list.html:407 -msgid "Origin" -msgstr "Herkunft" - -#: mediafiles/static/js/mediafiles/image-plugin.js:196 -#: mediafiles/static/js/mediafiles/image-plugin.js:94 -msgid "Original size" -msgstr "Originalgröße" - -#: motions/static/js/motions/site.js:957 motions/static/js/motions/site.js:971 -#: motions/static/templates/motions/motion-detail/toolbar.html:129 -#: motions/static/templates/motions/motion-detail/toolbar.html:84 -msgid "Original version" -msgstr "Originalfassung" - -#: motions/static/js/motions/site.js:373 -msgid "Other" -msgstr "Sonstiges" - -#. Line numbering: Outside -#: motions/static/js/motions/site.js:3251 -msgid "Outside" -msgstr "außerhalb" - -#: assignments/static/templates/assignments/assignment-detail.html:28 -#: motions/static/templates/motions/motion-detail.html:71 -#: motions/static/templates/motions/motion-detail/comments.html:9 -#: motions/static/templates/motions/motion-detail/personal-note.html:9 -#: users/static/js/users/site.js:1853 -msgid "PDF" -msgstr "PDF" - -#: core/static/js/core/site.js:2127 -msgid "PDF ballot paper logo" -msgstr "PDF-Stimmzettel-Logo" - -#: core/static/js/core/site.js:2124 -msgid "PDF footer logo (left)" -msgstr "PDF-Logo Fußzeile (links)" - -#: core/static/js/core/site.js:2125 -msgid "PDF footer logo (right)" -msgstr "PDF-Logo Fußzeile (rechts)" - -#: motions/static/js/motions/site.js:1031 -msgid "PDF format" -msgstr "PDF-Format" - -#: core/static/js/core/site.js:2122 -msgid "PDF header logo (left)" -msgstr "PDF-Logo Kopfzeile (links)" - -#: core/static/js/core/site.js:2123 -msgid "PDF header logo (right)" -msgstr "PDF-Logo Kopfzeile (rechts)" - -#: core/static/js/core/pdf.js:1330 -msgid "PDF successfully generated." -msgstr "PDF erfolgreich erstellt." - -#: agenda/static/templates/agenda/item-list.html:218 -#: assignments/static/templates/assignments/assignment-list.html:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:153 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:44 -#: motions/static/templates/motions/motion-amendment-list.html:180 -#: motions/static/templates/motions/motion-list.html:146 -#: users/static/templates/users/user-import.html:73 -#: users/static/templates/users/user-list.html:160 -msgid "Page" -msgstr "Seite" - -#: core/static/js/core/site.js:2100 -msgid "Page number alignment in PDF" -msgstr "Seitenzahl-Ausrichtung im PDF" - -#: motions/static/js/motions/site.js:3279 -msgid "Paragraph-based, Diff-enabled" -msgstr "Absatzbasiert mit Änderungsdarstellung" - -#: assignments/static/js/assignments/site.js:168 -#: motions/static/js/motions/motion-block.js:91 -#: motions/static/js/motions/site.js:553 topics/static/js/topics/site.js:130 -msgid "Parent item" -msgstr "Elternelement" - -#: motions/static/js/motions/site.js:2780 -msgid "Parent motion and line number" -msgstr "Hauptantrag und Zeilennummer" - -#: users/static/js/users/site.js:887 -#: users/static/templates/users/user-detail.html:20 -msgid "Participant" -msgstr "Teilnehmer/in" - -#: users/static/js/users/site.js:331 -#: users/static/templates/users/user-detail.html:34 -#: users/static/templates/users/user-import.html:54 -#: users/static/templates/users/user-import.html:87 -msgid "Participant number" -msgstr "Teilnehmernummer" - -#: users/static/js/users/base.js:19 users/static/js/users/base.js:20 -#: users/static/js/users/site.js:1850 users/static/js/users/site.js:19 -#: users/static/js/users/site.js:30 users/static/js/users/site.js:48 -#: users/static/templates/users/user-list.html:24 -msgid "Participants" -msgstr "Teilnehmende" - -#: core/static/templates/core/login-form.html:17 -msgid "Password" -msgstr "Passwort" - -#: users/static/js/users/site.js:1064 -msgid "Password confirmation does not match." -msgstr "Passwortbestätigung stimmt nicht überein." - -#: core/static/templates/core/projector-controls.html:170 -msgid "Pause" -msgstr "Pause" - -#: motions/static/js/motions/base.js:1620 -msgid "Permission" -msgstr "Zulassung" - -#: motions/static/templates/motions/workflow-detail.html:42 -#: users/static/templates/users/group-list.html:26 -msgid "Permissions" -msgstr "Rechte" - -#: motions/static/js/motions/base.js:1619 -msgid "Permit" -msgstr "Zulassen" - -#: motions/static/templates/motions/motion-detail.html:624 -msgid "Permit and activate" -msgstr "Zulassen und aktivieren" - -#: users/static/templates/users/user-detail.html:27 -msgid "Personal data" -msgstr "Persönliche Daten" - -#: motions/static/js/motions/pdf.js:1403 -#: motions/static/templates/motions/motion-detail.html:500 -#: motions/static/templates/motions/motion-detail/personal-note.html:25 -msgid "Personal note" -msgstr "Persönliche Notiz" - -#: motions/static/js/motions/site.js:1366 -msgid "Personal note not set" -msgstr "Keine persönliche Notiz gesetzt" - -#: motions/static/js/motions/site.js:1365 -msgid "Personal note set" -msgstr "Persönliche Notiz gesetzt" - -#: assignments/static/js/assignments/site.js:337 -#: assignments/static/templates/assignments/assignment-detail.html:62 -#: assignments/static/templates/assignments/assignment-list.html:130 -msgid "Phase" -msgstr "Phase" - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:1 -msgid "Please choose the paragraph to amend" -msgstr "Bitte einen zu ändernden Absatz auswählen" - -#: users/static/templates/users/group-edit.html:12 -msgid "Please enter a name for the new group:" -msgstr "Bitte geben Sie einen Namen für die neue Gruppe ein:" - -#: core/static/templates/core/manage-projectors.html:5 -msgid "Please enter a name for the new projector" -msgstr "Bitte geben Sie einen Namen für den neuen Projektor ein" - -#: motions/static/templates/motions/workflow-edit.html:12 -msgid "Please enter a name for the new workflow:" -msgstr "Bitte geben Sie einen Namen für den neuen Arbeitsablauf ein:" - -#: users/static/templates/users/group-edit.html:10 -msgid "Please enter a new group name:" -msgstr "Bitte geben Sie einen neuen Gruppennamen ein:" - -#: motions/static/templates/motions/workflow-edit.html:9 -msgid "Please enter a new workflow name:" -msgstr "Bitte geben Sie einen neuen Arbeitsablaufnamen ein:" - -#: motions/static/templates/motions/motion-import.html:18 -#: topics/static/templates/topics/topic-import.html:46 -#: users/static/templates/users/user-import.html:46 -msgid "Please note:" -msgstr "Bitte beachten:" - -#: core/static/templates/core/manage-projectors.html:72 -msgid "Please select" -msgstr "Bitte auswählen" - -#: motions/static/js/motions/site.js:3316 -msgid "Preamble text for PDF and DOCX documents (all motions)" -msgstr "Einleitungstext für PDF- und DOCX-Dokumente (alle Anträge) " - -#: assignments/static/js/assignments/site.js:933 -msgid "Preamble text for PDF document (all elections)" -msgstr "Einleitungstext für PDF-Dokument (alle Wahlen) " - -#: core/static/js/core/site.js:2117 -msgid "Predefined seconds of new countdowns" -msgstr "Vorgegebene Sekunden für neue Countdowns" - -#: motions/static/js/motions/site.js:732 -#: motions/static/templates/motions/category-list.html:34 -msgid "Prefix" -msgstr "Präfix" - -#: motions/static/js/motions/site.js:3272 -msgid "Prefix for the identifier for amendments" -msgstr "Präfix für den Bezeichner von Änderungsanträgen" - -#: users/static/templates/users/user-list.html:11 -#: users/static/templates/users/user-presence.html:9 -msgid "Presence" -msgstr "Anwesenheit" - -#: users/static/js/users/site.js:591 users/static/js/users/site.js:638 -#: users/static/templates/users/user-list.html:460 -#: users/static/templates/users/user-list.html:466 -msgid "Present" -msgstr "Anwesend" - -#: core/static/js/core/site.js:2079 -msgid "Presentation and assembly system" -msgstr "Präsentations- und Versammlungssystem" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:17 -msgid "Presentation control elements" -msgstr "Präsentationssteuerung" - -#: motions/static/templates/motions/motion-import.html:38 -#: topics/static/templates/topics/topic-import.html:62 -#: users/static/templates/users/user-import.html:70 -msgid "Preview" -msgstr "Vorschau" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:34 -msgid "Previous page" -msgstr "Vorherige Seite" - -#: assignments/static/templates/assignments/assignment-detail.html:163 -#: motions/static/templates/motions/motion-detail.html:390 -msgid "Print ballot paper" -msgstr "Stimmzettel drucken" - -#: core/static/js/core/site.js:2092 core/static/js/core/site.js:380 -#: core/static/templates/core/login-form.html:28 -#: core/static/templates/index.html:228 -#: core/static/templates/privacypolicy.html:3 -#: core/static/templates/privacypolicydialog.html:1 -msgid "Privacy policy" -msgstr "Datenschutzerklärung" - -#: motions/static/js/motions/site.js:3292 -msgid "Private" -msgstr "Privat" - -#: assignments/static/templates/assignments/assignment-detail.html:16 -#: assignments/static/templates/assignments/assignment-detail.html:181 -#: motions/static/templates/motions/motion-detail.html:31 -#: topics/static/templates/topics/topic-detail.html:15 -#: users/static/templates/users/user-detail.html:10 -msgid "Project" -msgstr "Projizieren" - -#: agenda/static/templates/agenda/item-list.html:31 -msgid "Project agenda" -msgstr "Tagesordnung projizieren" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:35 -#: core/static/templates/core/projector-controls.html:287 -msgid "Project as overlay" -msgstr "Als Einblendung projizieren" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:29 -#: core/static/templates/core/projector-controls.html:281 -msgid "Project as slide" -msgstr "Als Folie projizieren" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:13 -msgid "Project current list of speakers" -msgstr "Aktuelle Redeliste projizieren" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:10 -#: core/static/templates/core/projector-controls.html:263 -msgid "Project the current list of speakers" -msgstr "Die aktuelle Redeliste projizieren" - -#: core/static/templates/core/manage-projectors.html:69 -msgid "Projection defaults" -msgstr "Projektionsvorgaben" - -#: agenda/static/templates/agenda/item-detail.html:14 -#: agenda/static/templates/agenda/item-list.html:27 -#: agenda/static/templates/agenda/item-list.html:345 -#: core/static/js/core/projector.js:401 core/static/js/core/site.js:2108 -#: core/static/templates/index.html:194 core/static/templates/index.html:207 -#: core/static/templates/index.html:244 -#: core/static/templates/projector-button.html:2 -#: core/static/templates/projector-container.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:273 -#: motions/static/templates/motions/motion-detail.html:27 -#: users/static/js/users/site.js:1496 -msgid "Projector" -msgstr "Projektor" - -#: core/static/js/core/site.js:2121 -msgid "Projector header image" -msgstr "Projektor-Kopfgrafik" - -#: core/static/js/core/site.js:2109 -msgid "Projector language" -msgstr "Projektorsprache" - -#: core/static/js/core/site.js:2120 -msgid "Projector logo" -msgstr "Projektor-Logo" - -#: agenda/static/templates/agenda/item-list.html:153 -#: agenda/static/templates/agenda/item-list.html:428 -#: agenda/static/templates/agenda/item-list.html:464 -#: motions/static/js/motions/site.js:3291 -msgid "Public" -msgstr "Öffentlich" - -#: agenda/static/js/agenda/site.js:100 -#: agenda/static/templates/agenda/item-list.html:442 -msgid "Public item" -msgstr "Öffentlicher Eintrag" - -#: agenda/static/js/agenda/site.js:184 -#: agenda/static/templates/agenda/item-list.html:281 -msgid "Public items" -msgstr "Öffentliche Einträge" - -#: assignments/static/templates/assignments/assignment-detail.html:177 -msgid "Publish" -msgstr "Veröffentlichen" - -#: assignments/static/js/assignments/site.js:931 -msgid "Put all candidates on the list of speakers" -msgstr "Alle Kandidaten auf die Redeliste setzen" - -#: assignments/static/templates/assignments/assignment-detail.html:215 -msgid "Quorum" -msgstr "Quorum" - -#: assignments/static/templates/assignments/assignment-detail.html:249 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) not reached." -msgstr "Quorum ({{ (option.getVoteYes() - option.majorityReached) | number:votesPrecision }}) nicht erreicht." - -#: assignments/static/templates/assignments/assignment-detail.html:246 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) reached." -msgstr "Quorum ({{ (option.getVoteYes() - option.majorityReached) | number:votesPrecision }}) erreicht." - -#: motions/static/templates/motions/motion-detail.html:484 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) not " -"reached." -msgstr "Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) nicht erreicht." - -#: motions/static/templates/motions/motion-detail.html:481 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) " -"reached." -msgstr "Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) erreicht." - -#: motions/static/js/motions/docx.js:96 motions/static/js/motions/pdf.js:393 -#: motions/static/js/motions/site.js:529 motions/static/js/motions/site.js:986 -#: motions/static/templates/motions/motion-detail.html:594 -#: motions/static/templates/motions/motion-import.html:25 -#: motions/static/templates/motions/motion-import.html:48 -#: motions/static/templates/motions/slide_motion.html:151 -#: motions/static/templates/motions/slide_motion.html:166 -msgid "Reason" -msgstr "Begründung" - -#: motions/static/js/motions/site.js:860 -#: motions/static/templates/motions/motion-block-detail.html:53 -#: motions/static/templates/motions/motion-table-filters.html:41 -msgid "Recommendation" -msgstr "Empfehlung" - -#: motions/static/templates/motions/workflow-detail.html:89 -msgid "Recommendation label" -msgstr "Empfehlung" - -#: motions/static/js/motions/workflow.js:80 -msgid "Red" -msgstr "Rot" - -#: motions/static/templates/motions/motion-amendment-list.html:15 -#: motions/static/templates/motions/workflow-detail.html:18 -msgid "Reduce" -msgstr "Minimieren" - -#: motions/static/js/motions/base.js:1636 -msgid "Refer to committee" -msgstr "In Ausschuss verweisen" - -#: core/static/templates/core/manage-projectors.html:16 -msgid "Reference for current list of speakers" -msgstr "Referenz für aktuelle Redeliste" - -#: motions/static/js/motions/base.js:1637 -msgid "Referral to committee" -msgstr "Verweisung in Ausschuss" - -#: motions/static/js/motions/base.js:1610 -#: motions/static/js/motions/base.js:1625 -msgid "Reject" -msgstr "Ablehnen" - -#: motions/static/js/motions/base.js:1641 -msgid "Reject (not authorized)" -msgstr "Verwerfen (nicht zulässig)" - -#: motions/static/templates/motions/motion-detail/change-summary.html:11 -msgid "Reject all change recommendations" -msgstr "Alle Änderungsempfehlungen ablehnen" - -#: motions/static/templates/motions/motion-detail/change-summary.html:20 -#: motions/static/templates/motions/motion-detail/change-summary.html:45 -#: motions/static/templates/motions/motion-detail/view-diff.html:100 -#: motions/static/templates/motions/motion-detail/view-diff.html:16 -#: motions/static/templates/motions/motion-detail/view-diff.html:38 -#: motions/static/templates/motions/motion-detail/view-diff.html:71 -msgid "Rejected" -msgstr "Abgelehnt" - -#: motions/static/js/motions/base.js:1611 -#: motions/static/js/motions/base.js:1626 -msgid "Rejection" -msgstr "Ablehnung" - -#: motions/static/js/motions/base.js:1642 -msgid "Rejection (not authorized)" -msgstr "Verwerfung (nicht berechtigt)" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:50 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:73 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:99 -#: core/static/templates/config-form-field.html:123 -#: core/static/templates/config-form-field.html:42 -#: motions/static/templates/motions/motion-submitters.html:23 -msgid "Remove" -msgstr "Entfernen" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:19 -msgid "Remove all speakers" -msgstr "Alle Redner/innen entfernen" - -#: motions/static/js/motions/site.js:3285 -msgid "" -"Remove all supporters of a motion if a submitter edits his motion in early " -"state" -msgstr "Entferne alle Unterstützer/innen eines Antrags, wenn ein Antragsteller/in den Antrag im Anfangsstadium bearbeitet" - -#: core/static/templates/core/projector-controls.html:137 -msgid "Remove countdown" -msgstr "Countdown entfernen" - -#: motions/static/templates/motions/motion-block-detail.html:62 -msgid "Remove from motion block" -msgstr "Vom Antragsblock entfernen " - -#: users/static/templates/users/user-list.html:115 -#: users/static/templates/users/user-list.html:84 -msgid "Remove group" -msgstr "Gruppe entfernen" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:129 -#: assignments/static/templates/assignments/assignment-detail.html:122 -msgid "Remove me" -msgstr "Entferne mich" - -#: core/static/templates/core/projector-controls.html:228 -msgid "Remove message" -msgstr "Mitteilung entfernen" - -#: motions/static/js/motions/base.js:1495 motions/static/js/motions/pdf.js:280 -#: motions/static/js/motions/site.js:370 -#: motions/static/templates/motions/motion-detail/change-summary.html:18 -#: motions/static/templates/motions/motion-detail/change-summary.html:37 -msgid "Replacement" -msgstr "Ersetzung" - -#: motions/static/templates/motions/motion-import.html:20 -#: topics/static/templates/topics/topic-import.html:48 -#: users/static/templates/users/user-import.html:48 -msgid "" -"Required comma or semicolon separated values with these column header names " -"in the first row" -msgstr "Erforderliche Komma- oder Semikolon-separierte Werte mit diesen Spaltennamen in der ersten Zeile" - -#: assignments/static/js/assignments/site.js:925 -#: assignments/static/templates/assignments/assignment-detail.html:204 -#: motions/static/js/motions/site.js:3302 -#: motions/static/templates/motions/motion-detail.html:472 -msgid "Required majority" -msgstr "Erforderliche Mehrheit" - -#: motions/static/templates/motions/workflow-detail.html:142 -msgid "Required permission to see" -msgstr "Erforderliches Recht um Anträge zu sehen" - -#: core/static/templates/config-form-field.html:147 -msgid "Reset" -msgstr "Zurücksetzen" - -#: core/static/templates/core/projector-controls.html:159 -msgid "Reset countdown" -msgstr "Countdown zurücksetzen" - -#: motions/static/templates/motions/motion-amendment-list.html:311 -#: motions/static/templates/motions/motion-detail.html:246 -#: motions/static/templates/motions/motion-list.html:257 -msgid "Reset recommendation" -msgstr "Empfehlung zurücksetzen" - -#: core/static/templates/core/manage-projectors.html:170 -#: core/static/templates/core/projector-controls.html:94 -msgid "Reset scaling" -msgstr "Skalierung zurücksetzen" - -#: core/static/templates/core/manage-projectors.html:190 -#: core/static/templates/core/projector-controls.html:114 -msgid "Reset scrolling" -msgstr "Scrollen zurücksetzen" - -#: motions/static/templates/motions/motion-amendment-list.html:272 -#: motions/static/templates/motions/motion-detail.html:204 -#: motions/static/templates/motions/motion-list.html:231 -msgid "Reset state" -msgstr "Status zurücksetzen" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:61 -msgid "Reset zoom" -msgstr "Zoom zurücksetzen" - -#: motions/static/templates/motions/motion-detail/comments.html:42 -#: motions/static/templates/motions/motion-detail/personal-note.html:38 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:20 -#: motions/static/templates/motions/motion-detail/view-original.html:12 -msgid "Revert" -msgstr "Zurücksetzen" - -#: core/static/js/core/site.js:2103 -msgid "Right" -msgstr "Rechts" - -#: agenda/static/js/agenda/site.js:874 -msgid "Roman" -msgstr "Römisch" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:51 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:83 -msgid "Rotate clockwise" -msgstr "Im Uhrzeigersinn drehen" - -#: assignments/static/templates/assignments/assignment-form.html:15 -#: assignments/static/templates/assignments/assignmentpoll-form.html:15 -#: core/static/templates/core/projector-controls.html:193 -#: core/static/templates/core/projector-message-form.html:5 -#: core/static/templates/core/tag-form.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:16 -#: motions/static/templates/motions/category-form.html:10 -#: motions/static/templates/motions/change-recommendation-form.html:10 -#: motions/static/templates/motions/motion-block-form.html:10 -#: motions/static/templates/motions/motion-comment-form.html:9 -#: motions/static/templates/motions/motion-detail/comments.html:39 -#: motions/static/templates/motions/motion-detail/personal-note.html:35 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:17 -#: motions/static/templates/motions/motion-detail/view-original.html:9 -#: motions/static/templates/motions/motion-form.html:16 -#: motions/static/templates/motions/motion-poll-form.html:15 -#: motions/static/templates/motions/state-edit.html:21 -#: motions/static/templates/motions/workflow-edit.html:21 -#: topics/static/templates/topics/topic-form.html:10 -#: users/static/templates/users/group-edit.html:21 -#: users/static/templates/users/profile-password-form.html:9 -#: users/static/templates/users/user-form.html:10 -msgid "Save" -msgstr "Speichern" - -#: mediafiles/static/js/mediafiles/image-plugin.js:197 -#: mediafiles/static/js/mediafiles/image-plugin.js:46 -msgid "Scale" -msgstr "Skalieren" - -#: core/static/templates/core/manage-projectors.html:107 -msgid "Scaling" -msgstr "Skalierung" - -#: users/static/js/users/pdf.js:180 -msgid "Scan this QR code to connect to WLAN." -msgstr "QR-Code scannen um sich mit dem WLAN zu verbinden." - -#: users/static/js/users/pdf.js:230 -msgid "Scan this QR code to open URL." -msgstr "QR-Code scannen um die URL zu öffnen." - -#: core/static/templates/core/manage-projectors.html:185 -#: core/static/templates/core/projector-controls.html:109 -msgid "Scroll down" -msgstr "Nach unten scrollen" - -#: core/static/templates/core/manage-projectors.html:180 -#: core/static/templates/core/projector-controls.html:104 -msgid "Scroll up" -msgstr "Nach oben scrollen" - -#: agenda/static/templates/agenda/item-list.html:303 -#: assignments/static/templates/assignments/assignment-list.html:172 -#: core/static/js/core/site.js:400 core/static/templates/index.html:164 -#: core/static/templates/search.html:11 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:230 -#: motions/static/templates/motions/motion-table-filters.html:235 -#: users/static/templates/users/user-list.html:280 -msgid "Search" -msgstr "Suche" - -#: core/static/templates/search.html:3 -msgid "Search results" -msgstr "Suchergebnisse" - -#: assignments/static/js/assignments/site.js:935 -msgid "Searching for candidates" -msgstr "Auf Kandidatensuche" - -#: agenda/static/templates/agenda/item-list.html:73 -#: assignments/static/templates/assignments/assignment-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:123 -#: motions/static/templates/motions/motion-amendment-list.html:64 -#: motions/static/templates/motions/motion-list.html:47 -#: users/static/templates/users/user-list.html:39 -msgid "Select ..." -msgstr "Auswählen ..." - -#: motions/static/templates/motions/motion-import.html:15 -#: topics/static/templates/topics/topic-import.html:43 -#: users/static/templates/users/user-import.html:43 -msgid "Select a CSV file" -msgstr "CSV-Datei auswählen" - -#: core/static/templates/csv-import.html:8 -msgid "Select a file" -msgstr "Datei auswählen" - -#: assignments/static/js/assignments/site.js:171 -#: motions/static/js/motions/motion-block.js:94 -#: motions/static/js/motions/site.js:556 topics/static/js/topics/site.js:133 -msgid "Select a parent item ..." -msgstr "Elternelement auswählen oder suchen ..." - -#: motions/static/js/motions/site.js:603 -msgid "Select or search a category ..." -msgstr "Sachgebiet auswählen oder suchen ..." - -#: users/static/js/users/site.js:351 -msgid "Select or search a group ..." -msgstr "Gruppe auswählen oder suchen ..." - -#: motions/static/js/motions/site.js:617 -msgid "Select or search a motion block ..." -msgstr "Antragsblock auswählen oder suchen ..." - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: mediafiles/static/js/mediafiles/forms.js:62 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "Select or search a participant ..." -msgstr "Teilnehmer/in auswählen oder suchen ..." - -#: motions/static/js/motions/site.js:495 -msgid "Select or search a submitter ..." -msgstr "Antragsteller/in auswählen oder suchen ..." - -#: motions/static/js/motions/site.js:654 -msgid "Select or search a supporter ..." -msgstr "Unterstützer/in auswählen oder suchen ..." - -#: assignments/static/js/assignments/site.js:198 -#: motions/static/js/motions/site.js:640 -msgid "Select or search a tag ..." -msgstr "Schlagwort auswählen oder suchen ..." - -#: motions/static/js/motions/site.js:669 -msgid "Select or search a workflow ..." -msgstr "Arbeitsablauf auswählen oder suchen ..." - -#: motions/static/js/motions/site.js:589 topics/static/js/topics/site.js:118 -msgid "Select or search an attachment ..." -msgstr "Anhang auswählen oder suchen ..." - -#: core/static/templates/core/manage-projectors.html:13 -msgid "Select the projector to which the current list of speakers refers to." -msgstr "Wählen Sie den Projektor aus, auf welchen sich die aktuelle Redeliste bezieht." - -#: users/static/templates/users/user-list.html:142 -#: users/static/templates/users/user-list.html:89 -msgid "Send invitation emails" -msgstr "Einladungs-E-Mails senden" - -#: core/static/templates/csv-import.html:27 -msgid "Separator" -msgstr "Feldtrenner" - -#: core/static/js/core/site.js:2099 -msgid "Separator used for all csv exports and examples" -msgstr "Feldtrenner für alle CSV-Exporte und -Beispiele" - -#: motions/static/js/motions/docx.js:93 motions/static/js/motions/pdf.js:549 -#: motions/static/js/motions/pdf.js:82 -#: motions/static/templates/motions/motion-detail.html:99 -msgid "Sequential number" -msgstr "Laufende Nummer" - -#: motions/static/js/motions/site.js:3245 -msgid "Serially numbered" -msgstr "Fortlaufend nummerieren" - -#: motions/static/templates/motions/motion-list.html:305 -msgid "Set a category" -msgstr "Sachgebiet setzen" - -#: motions/static/templates/motions/motion-list.html:339 -msgid "Set a motion block" -msgstr "Antragsblock setzen" - -#: motions/static/templates/motions/motion-amendment-list.html:248 -#: motions/static/templates/motions/motion-detail.html:86 -#: motions/static/templates/motions/motion-list.html:210 -msgid "Set as favorite" -msgstr "Als Favoriten setzen" - -#: motions/static/templates/motions/motion-amendment-list.html:118 -#: motions/static/templates/motions/motion-amendment-list.html:145 -#: motions/static/templates/motions/motion-list.html:107 -#: motions/static/templates/motions/motion-list.html:80 -msgid "Set category" -msgstr "Sachgebiet setzen" - -#: agenda/static/templates/agenda/item-list.html:502 -#: users/static/templates/users/user-list.html:435 -msgid "Set comment ..." -msgstr "Kommentar setzen ..." - -#: agenda/static/templates/agenda/item-list.html:481 -msgid "Set duration ..." -msgstr "Dauer setzen ..." - -#: users/static/templates/users/user-import.html:102 -msgid "Set global action" -msgstr "Globale Aktion setzen" - -#: assignments/static/templates/assignments/assignment-detail.html:145 -msgid "Set hint for ballot paper ..." -msgstr "Stimmzettel-Hinweis setzen ..." - -#: motions/static/js/motions/workflow.js:72 -msgid "Set identifier" -msgstr "Bezeichner automatisch setzen" - -#: motions/static/js/motions/site.js:3246 -msgid "Set it manually" -msgstr "Manuell setzen" - -#: agenda/static/templates/agenda/item-list.html:512 -msgid "Set item number ..." -msgstr "Nummer setzen ..." - -#: motions/static/templates/motions/motion-amendment-list.html:119 -#: motions/static/templates/motions/motion-amendment-list.html:158 -#: motions/static/templates/motions/motion-list.html:120 -#: motions/static/templates/motions/motion-list.html:81 -msgid "Set motion block" -msgstr "Antragsblock setzen" - -#: agenda/static/templates/agenda/item-list.html:148 -msgid "Set state" -msgstr "Status setzen" - -#: motions/static/templates/motions/motion-amendment-list.html:117 -#: motions/static/templates/motions/motion-amendment-list.html:131 -#: motions/static/templates/motions/motion-list.html:79 -#: motions/static/templates/motions/motion-list.html:93 -msgid "Set status" -msgstr "Status setzen" - -#: users/static/templates/users/user-list.html:419 -msgid "Set structure level ..." -msgstr "Gliederungsebene setzen ..." - -#: agenda/static/templates/agenda/item-list.html:147 -#: agenda/static/templates/agenda/item-list.html:166 -msgid "Set visibility" -msgstr "Sichtbarkeit setzen" - -#: users/static/templates/users/user-list.html:88 -msgid "Set/Unset 'is a committee'" -msgstr "'Ist ein Gremium' setzen/entfernen" - -#: users/static/templates/users/user-list.html:86 -msgid "Set/Unset 'is active'" -msgstr "'Ist aktiv' setzen/entfernen" - -#: users/static/templates/users/user-list.html:87 -msgid "Set/Unset 'is present'" -msgstr "'Ist anwesend' setzen/entfernen" - -#: core/static/js/core/site.js:197 core/static/js/core/site.js:389 -#: core/static/templates/config.html:3 -msgid "Settings" -msgstr "Einstellungen" - -#: core/static/js/core/site.js:2087 -msgid "Short description of event" -msgstr "Kurzbeschreibung der Veranstaltung" - -#: motions/static/js/motions/site.js:3271 -msgid "Show amendments together with motions" -msgstr "Änderungsanträge zusätzlich in der Hauptantragsübersicht anzeigen" - -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:6 -msgid "Show entire motion text" -msgstr "Vollständigen Antragstext anzeigen" - -#: assignments/static/js/assignments/site.js:183 -#: motions/static/js/motions/site.js:571 users/static/js/users/site.js:382 -msgid "Show extended fields" -msgstr "Erweiterte Felder anzeigen" - -#: motions/static/templates/motions/motion-detail/toolbar.html:60 -msgid "Show highlighted line also on projector" -msgstr "hervorgehobene Zeile auch auf dem Projektor anzeigen" - -#: motions/static/templates/motions/motion-detail.html:642 -msgid "Show history" -msgstr "Verlauf anzeigen" - -#: agenda/static/templates/agenda/item-sort.html:19 -msgid "Show internal items" -msgstr "Interne Einträge anzeigen" - -#: core/static/js/core/site.js:2105 -msgid "Show logo on projector" -msgstr "Logo auf dem Projektor anzeigen" - -#: agenda/static/js/agenda/site.js:880 -msgid "Show orange countdown in the last x seconds of speaking time" -msgstr "Countdown in den letzten x Sekunden der Redezeit orange darstellen" - -#: users/static/templates/users/user-change-password.html:43 -msgid "Show password" -msgstr "Passwort anzeigen" - -#: motions/static/js/motions/workflow.js:77 -msgid "Show recommendation extension field" -msgstr "Ergänzungsfeld für Empfehlung anzeigen" - -#: motions/static/js/motions/workflow.js:75 -msgid "Show state extension field" -msgstr "Ergänzungsfeld für Status anzeigen" - -#: core/static/js/core/site.js:2113 -msgid "Show the clock on projector" -msgstr "Uhr auf dem Projektor anzeigen" - -#: core/static/js/core/site.js:2098 -msgid "Show this text on the login page" -msgstr "Diesen Text auf der Login-Seite anzeigen" - -#: core/static/js/core/site.js:2111 -msgid "Show title and description of event on projector" -msgstr "Titel und Kurzbeschreibung der Veranstaltung auf dem Projektor anzeigen" - -#: motions/static/js/motions/base.js:1604 -msgid "Simple Workflow" -msgstr "Einfacher Arbeitsablauf" - -#: assignments/static/js/assignments/site.js:927 -#: motions/static/js/motions/site.js:3304 -msgid "Simple majority" -msgstr "Einfache Mehrheit" - -#: core/static/templates/core/manage-projectors.html:160 -#: core/static/templates/core/projector-controls.html:84 -msgid "Smaller" -msgstr "Kleiner" - -#: mediafiles/static/js/mediafiles/upload.js:128 -#: mediafiles/static/js/mediafiles/upload.js:150 -msgid "Some files could not be uploaded" -msgstr "Einige Dateien konnten nicht hochgeladen werden" - -#: assignments/static/templates/assignments/assignment-list.html:148 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:207 -#: motions/static/templates/motions/category-list.html:44 -#: motions/static/templates/motions/motion-table-filters.html:202 -#: users/static/templates/users/user-list.html:257 -msgid "Sort" -msgstr "Sortieren" - -#: agenda/static/templates/agenda/item-list.html:79 -msgid "Sort ..." -msgstr "Sortieren ..." - -#: agenda/static/templates/agenda/item-sort.html:9 -msgid "Sort agenda" -msgstr "Tagesordnung sortieren" - -#: motions/static/js/motions/site.js:3317 -msgid "Sort categories by" -msgstr "Sachgebiete sortieren nach" - -#: users/static/js/users/site.js:1848 -msgid "Sort name of participants by" -msgstr "Namen der Teilnehmenden sortieren nach" - -#: motions/static/templates/motions/motion-detail.html:146 -#: motions/static/templates/motions/motion-submitters.html:10 -msgid "Sort submitters" -msgstr "Antragsteller/in sortieren" - -#: assignments/static/templates/assignments/assignmentpoll-form.html:8 -#: motions/static/templates/motions/motion-poll-form.html:8 -msgid "Special values" -msgstr "Spezielle Werte" - -#: users/static/js/users/base.js:173 -msgid "Staff" -msgstr "Mitarbeitende" - -#: core/static/js/core/site.js:2104 -msgid "Standard font size in PDF" -msgstr "Standard-Schriftgröße im PDF" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:92 -#: core/static/templates/core/projector-controls.html:164 -msgid "Start" -msgstr "Start" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:46 -#: core/static/templates/core/projector-controls.html:187 -msgid "Start time" -msgstr "Startzeit" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:100 -msgid "Start/stop video" -msgstr "Video starten/stoppen" - -#: agenda/static/templates/agenda/item-list.html:250 -#: motions/static/js/motions/pdf.js:1115 motions/static/js/motions/pdf.js:114 -#: motions/static/js/motions/pdf.js:575 motions/static/js/motions/site.js:1429 -#: motions/static/js/motions/site.js:856 -#: motions/static/templates/motions/motion-block-detail.html:52 -#: motions/static/templates/motions/motion-detail.html:187 -#: motions/static/templates/motions/motion-detail.html:191 -#: motions/static/templates/motions/motion-table-filters.html:7 -#: motions/static/templates/motions/slide_motion.html:4 -msgid "State" -msgstr "Status" - -#: motions/static/js/motions/docx.js:95 -msgid "Status" -msgstr "Status" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:66 -msgid "Stop" -msgstr "Stopp" - -#: motions/static/js/motions/site.js:3261 -msgid "Stop submitting new motions by non-staff users" -msgstr "Einreichen von neuen Anträgen stoppen für Nutzer ohne Verwaltungsrechte" - -#: users/static/js/users/pdf.js:69 users/static/js/users/site.js:1282 -#: users/static/js/users/site.js:324 users/static/js/users/site.js:646 -#: users/static/templates/users/user-detail.html:28 -#: users/static/templates/users/user-import.html:53 -#: users/static/templates/users/user-import.html:86 -#: users/static/templates/users/user-list.html:425 -msgid "Structure level" -msgstr "Gliederungsebene" - -#: core/static/js/core/site.js:132 core/static/js/core/site.js:133 -msgid "Submit" -msgstr "Absenden" - -#: motions/static/templates/motions/motion-import.html:26 -#: motions/static/templates/motions/motion-import.html:49 -msgid "Submitter" -msgstr "Antragsteller/in" - -#: motions/static/js/motions/docx.js:94 motions/static/js/motions/pdf.js:100 -#: motions/static/js/motions/pdf.js:1110 motions/static/js/motions/pdf.js:563 -#: motions/static/js/motions/site.js:102 -#: motions/static/js/motions/site.js:1423 -#: motions/static/js/motions/site.js:492 motions/static/js/motions/site.js:855 -#: motions/static/templates/motions/motion-detail.html:143 -#: motions/static/templates/motions/motion-detail.html:145 -#: motions/static/templates/motions/slide_motion.html:14 -msgid "Submitters" -msgstr "Antragsteller/in" - -#: motions/static/js/motions/pdf.js:291 -msgid "Summary of change recommendations" -msgstr "Zusammenfassung der Änderungsempfehlungen" - -#: motions/static/templates/motions/motion-detail/change-summary.html:4 -msgid "Summary of changes" -msgstr "Zusammenfassung der Änderungen" - -#: motions/static/templates/motions/motion-detail.html:164 -msgid "Support motion" -msgstr "Antrag unterstützen" - -#: motions/static/js/motions/site.js:3282 -#: motions/static/js/motions/site.js:651 -#: motions/static/templates/motions/motion-amendment-list.html:385 -#: motions/static/templates/motions/motion-detail.html:156 -#: motions/static/templates/motions/motion-list.html:419 -msgid "Supporters" -msgstr "Unterstützer/innen" - -#: users/static/js/users/site.js:1852 users/static/js/users/site.js:304 -#: users/static/js/users/site.js:636 -#: users/static/templates/users/user-import.html:52 -#: users/static/templates/users/user-import.html:85 -msgid "Surname" -msgstr "Nachname" - -#: users/static/js/users/site.js:1858 -msgid "System URL" -msgstr "System-URL" - -#: assignments/static/js/assignments/pdf.js:552 -#: motions/static/js/motions/docx.js:52 motions/static/js/motions/pdf.js:872 -msgid "Table of contents" -msgstr "Inhaltsverzeichnis" - -#: assignments/static/templates/assignments/assignment-list.html:105 -#: motions/static/templates/motions/motion-table-filters.html:141 -msgid "Tag" -msgstr "Schlagwort" - -#: assignments/static/js/assignments/site.js:195 -#: assignments/static/templates/assignments/assignment-detail.html:55 -#: assignments/static/templates/assignments/assignment-list.html:10 -#: core/static/js/core/site.js:410 core/static/templates/core/tag-list.html:13 -#: motions/static/js/motions/site.js:637 -#: motions/static/templates/motions/motion-detail.html:340 -#: motions/static/templates/motions/motion-detail.html:344 -#: motions/static/templates/motions/motion-list.html:27 -msgid "Tags" -msgstr "Schlagwörter" - -#: motions/static/js/motions/site.js:518 motions/static/js/motions/site.js:985 -#: motions/static/templates/motions/motion-import.html:24 -#: motions/static/templates/motions/motion-import.html:47 -#: topics/static/js/topics/site.js:103 -#: topics/static/templates/topics/topic-import.html:51 -#: topics/static/templates/topics/topic-import.html:70 -msgid "Text" -msgstr "Text" - -#: motions/static/js/motions/site.js:392 -msgid "Text from line %from% to %to%" -msgstr "Text von Zeile %from% bis %to%" - -#: motions/static/js/motions/site.js:391 -msgid "Text in line %from%" -msgstr "Text in Zeile %from%" - -#: motions/static/js/motions/site.js:3296 -msgid "The 100 % base of a voting result consists of" -msgstr "Die 100%-Basis eines Abstimmungsergebnisses besteht aus" - -#: assignments/static/js/assignments/site.js:910 -msgid "The 100-%-base of an election result consists of" -msgstr "Die 100%-Basis eines Wahlergebnisses besteht aus" - -#: motions/static/js/motions/site.js:3248 -msgid "The assembly may decide:" -msgstr "Die Versammlung möge beschließen:" - -#: core/static/js/core/site.js:1847 -msgid "The delete was successful." -msgstr "Die Löschung war erfolgreich." - -#: core/static/templates/privacypolicydialog.html:3 -msgid "The event manager hasn't set up a privacy policy yet." -msgstr "Der Veranstalter hat noch keine Datenschutzerklärung hinterlegt." - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:16 -msgid "The final print template have been changed." -msgstr "Die Beschluss-Druckvorlage wurde geändert." - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:26 -msgid "The list of speakers is empty." -msgstr "Die Redeliste ist leer." - -#: motions/static/js/motions/site.js:3257 -msgid "" -"The maximum number of characters per line. Relevant when line numbering is " -"enabled. Min: 40" -msgstr "Die maximale Zeichenanzahl pro Zeile. Relevant, wenn die Zeilennummerierung eingeschaltet ist. Minimum: 40." - -#: motions/static/templates/motions/motion-detail/personal-note.html:34 -msgid "The personal note has been changed." -msgstr "Die persönliche Notiz wurde geändert." - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:364 -msgid "" -"The projector header should have a default size of 1024x70px. Adapt the " -"image width if you change the projector resolution." -msgstr "Die Projektor-Kopfgrafik sollte eine Standardgröße von 1024x70px haben. Passen Sie die Grafikbreite an, wenn Sie die Projektorauflösung ändern." - -#: core/static/js/core/base.js:794 -msgid "The server didn't respond." -msgstr "Der Server antwortet nicht." - -#: motions/static/templates/motions/motion-detail/view-original.html:8 -msgid "The text or reason have been changed." -msgstr "Text oder Begründung wurde geändert." - -#: motions/static/js/motions/site.js:3274 -msgid "The title of the motion is always applied." -msgstr "Der Antragstitel wird immer übernommen." - -#: users/static/js/users/site.js:830 -msgid "" -"The user %user% has no email, so the invitation email could not be send." -msgstr "%user% besitzt keine E-Mail-Adresse; eine E-Mail konnte daher nicht gesendet werden." - -#: users/static/js/users/site.js:832 -msgid "" -"The users %user% have no email, so the invitation emails could not be send." -msgstr "%user% besitzen keine E-Mail-Adressen; E-Mails konnte daher nicht gesendet werden." - -#: users/static/js/users/site.js:1265 -msgid "There are more than one duplicates of this user!" -msgstr "Es gibt mehr als ein Duplikat von diesem Nutzer!" - -#: motions/static/templates/motions/motion-detail/view-diff.html:57 -msgid "This change collides with another one." -msgstr "Diese Änderung kollidiert mit einer anderen." - -#: motions/static/templates/motions/motion-detail.html:620 -msgid "This is the last active version." -msgstr "Dies ist die letzte aktive Version." - -#: agenda/static/js/agenda/site.js:869 -msgid "This prefix will be set if you run the automatic agenda numbering." -msgstr "Dieses Präfix wird gesetzt, wenn die automatische Nummerierung der Tagesordnung durchgeführt wird." - -#: motions/static/templates/motions/motion-detail.html:96 -msgid "This version is not permitted." -msgstr "Diese Version ist nicht zugelassen." - -#: assignments/static/js/assignments/site.js:929 -#: motions/static/js/motions/site.js:3306 -msgid "Three-quarters majority" -msgstr "Dreiviertelmehrheit" - -#: assignments/static/js/assignments/site.js:129 -#: assignments/static/js/assignments/site.js:335 -#: mediafiles/static/js/mediafiles/forms.js:44 -#: mediafiles/static/js/mediafiles/list.js:100 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:24 -#: motions/static/js/motions/motion-block.js:79 -#: motions/static/js/motions/pdf.js:264 motions/static/js/motions/site.js:1421 -#: motions/static/js/motions/site.js:506 -#: motions/static/templates/motions/motion-detail/change-summary.html:17 -#: motions/static/templates/motions/motion-import.html:23 -#: motions/static/templates/motions/motion-import.html:46 -#: topics/static/js/topics/site.js:95 -#: topics/static/templates/topics/topic-import.html:50 -#: topics/static/templates/topics/topic-import.html:69 -#: users/static/js/users/site.js:288 -#: users/static/templates/users/user-import.html:50 -#: users/static/templates/users/user-import.html:83 -msgid "Title" -msgstr "Titel" - -#: motions/static/js/motions/site.js:3315 -msgid "Title for PDF and DOCX documents (all motions)" -msgstr "Titel für PDF- und DOCX-Dokumente (alle Anträge) " - -#: assignments/static/js/assignments/site.js:932 -msgid "Title for PDF document (all elections)" -msgstr "Titel für PDF-Dokument (alle Wahlen)" - -#: users/static/js/users/site.js:1855 -msgid "Title for access data and welcome PDF" -msgstr "Titel für das Zugangsdaten- und Begrüßungs-PDF" - -#: topics/static/templates/topics/topic-import.html:56 -msgid "Title is required. All other fields are optional and may be empty." -msgstr "Titel ist erforderlich. Alle übrigen Felder sind optional und dürfen leer sein." - -#: motions/static/js/motions/site.js:360 -msgid "To Line" -msgstr "Bis Zeile" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:76 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:93 -msgid "Toggle fullscreen" -msgstr "Vollbild umschalten" - -#: topics/static/js/topics/base.js:16 topics/static/js/topics/site.js:161 -#: topics/static/templates/topics/topic-detail.html:25 -msgid "Topic" -msgstr "Thema" - -#: topics/static/js/topics/site.js:17 -msgid "Topics" -msgstr "Themen" - -#: motions/static/js/motions/site.js:539 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:25 -#: motions/static/templates/motions/motion-detail/view-original.html:17 -msgid "Trivial change" -msgstr "Triviale Änderung" - -#: assignments/static/js/assignments/site.js:928 -#: motions/static/js/motions/site.js:3305 -msgid "Two-thirds majority" -msgstr "Zweidrittelmehrheit" - -#: mediafiles/static/js/mediafiles/list.js:102 -msgid "Type" -msgstr "Typ" - -#: motions/static/templates/motions/motion-detail.html:169 -msgid "Unsupport motion" -msgstr "Unterstützung zurückziehen" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:87 -msgid "Upload" -msgstr "Hochladen" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:1 -msgid "Upload files" -msgstr "Dateien hochladen" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:33 -msgid "Upload status" -msgstr "Hochladestatus" - -#: mediafiles/static/js/mediafiles/list.js:106 -msgid "Upload time" -msgstr "Hochladezeitpunkt" - -#: mediafiles/static/js/mediafiles/forms.js:59 -#: mediafiles/static/js/mediafiles/list.js:108 -msgid "Uploaded by" -msgstr "Hochgeladen durch" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:30 -msgid "Uploader" -msgstr "Hochgeladen durch" - -#: assignments/static/js/assignments/site.js:923 -#: motions/static/js/motions/site.js:3311 -msgid "Use the following custom number" -msgstr "Verwende die folgende benutzerdefinierte Anzahl" - -#: users/static/js/users/site.js:1876 -msgid "" -"Use these placeholders: {name}, {event_name}, {url}, {username}, {password}." -" The url referrs to the system url." -msgstr "Verwendbare Platzhalter: {name}, {event_name}, {url}, {username}, {password}. Die URL bezieht sich auf die System-URL." - -#: users/static/js/users/site.js:1859 -msgid "Used for QRCode in PDF of access data." -msgstr "Wird als QR-Code im Zugangsdaten-PDF verwendet." - -#: users/static/js/users/site.js:1861 users/static/js/users/site.js:1863 -#: users/static/js/users/site.js:1865 -msgid "Used for WLAN QRCode in PDF of access data." -msgstr "Wird als WLAN-QR-Code im Zugangsdaten-PDF verwendet." - -#: core/static/templates/core/login-form.html:12 -#: users/static/js/users/pdf.js:193 users/static/js/users/site.js:1283 -#: users/static/js/users/site.js:340 users/static/js/users/site.js:463 -#: users/static/templates/users/user-change-password.html:41 -#: users/static/templates/users/user-detail.html:46 -msgid "Username" -msgstr "Benutzername" - -#: motions/static/templates/motions/motion-import.html:123 -msgid "Users created" -msgstr "Teilnehmende angelegt" - -#: users/static/templates/users/group-list.html:35 -msgid "Users without any assigned group gain the permissions from this group." -msgstr "Benutzer ohne einer speziell zugewiesenen Gruppe bekommen die Rechte von dieser Gruppe." - -#: assignments/static/js/assignments/site.js:826 -#: assignments/static/templates/assignments/assignment-detail.html:268 -#: assignments/static/templates/assignments/slide_assignment.html:82 -msgid "Valid ballots" -msgstr "Gültige Stimmzettel" - -#: motions/static/js/motions/pdf.js:209 motions/static/js/motions/site.js:790 -#: motions/static/templates/motions/motion-detail.html:441 -msgid "Valid votes" -msgstr "Gültige Stimmen" - -#: motions/static/templates/motions/motion-detail.html:613 -#: motions/static/templates/motions/motion-detail.html:616 -msgid "Version" -msgstr "Version" - -#: motions/static/templates/motions/motion-detail.html:609 -msgid "Version history" -msgstr "Versionshistorie" - -#: motions/static/js/motions/workflow.js:68 -msgid "Versioning" -msgstr "Versionierung" - -#: agenda/static/templates/agenda/item-list.html:274 -msgid "Visibility" -msgstr "Sichtbarkeit" - -#. ballot of a motion -#: motions/static/js/motions/pdf.js:186 -#: motions/static/templates/motions/motion-detail.html:372 -#: motions/static/templates/motions/motion-poll-form.html:1 -#: motions/static/templates/motions/slide_motion.html:24 -msgid "Vote" -msgstr "Abstimmung" - -#: assignments/static/js/assignments/pdf.js:154 -#: assignments/static/templates/assignments/assignment-detail.html:214 -#: assignments/static/templates/assignments/slide_assignment.html:37 -msgid "Votes" -msgstr "Stimmen" - -#: motions/static/js/motions/pdf.js:223 motions/static/js/motions/site.js:808 -#: motions/static/templates/motions/motion-detail.html:459 -msgid "Votes cast" -msgstr "Abgegebene Stimmen" - -#: assignments/static/js/assignments/site.js:936 -msgid "Voting" -msgstr "Im Wahlvorgang" - -#: motions/static/js/motions/site.js:3295 -msgid "Voting and ballot papers" -msgstr "Abstimmung und Stimmzettel" - -#: motions/static/js/motions/pdf.js:231 motions/static/js/motions/site.js:887 -#: motions/static/templates/motions/motion-detail.html:367 -#: motions/static/templates/motions/slide_motion.html:20 -msgid "Voting result" -msgstr "Abstimmungsergebnis" - -#: users/static/js/users/site.js:1866 -msgid "WEP" -msgstr "WEP" - -#: users/static/js/users/pdf.js:137 -msgid "WLAN access data" -msgstr "WLAN-Zugangsdaten" - -#: users/static/js/users/pdf.js:157 users/static/js/users/site.js:1864 -msgid "WLAN encryption" -msgstr "WLAN-Verschlüsselung" - -#: users/static/js/users/pdf.js:141 users/static/js/users/site.js:1860 -msgid "WLAN name (SSID)" -msgstr "WLAN-Name (SSID)" - -#: users/static/js/users/pdf.js:149 users/static/js/users/site.js:1862 -msgid "WLAN password" -msgstr "WLAN-Passwort" - -#: users/static/js/users/site.js:1867 -msgid "WPA/WPA2" -msgstr "WPA/WPA2" - -#: assignments/static/templates/assignments/slide_assignment.html:29 -msgid "Waiting for results ..." -msgstr "Auf Ergebnisse wartend ..." - -#: core/static/js/core/site.js:747 -msgid "Warning" -msgstr "Warnung" - -#: core/static/js/core/site.js:2126 -msgid "Web interface header logo" -msgstr "Web-Interface-Kopfzeilen-Logo" - -#: core/static/js/core/site.js:2094 users/static/js/users/site.js:1854 -msgid "Welcome to OpenSlides" -msgstr "Willkommen bei OpenSlides" - -#: motions/static/js/motions/site.js:3265 -msgid "" -"Will be displayed as label before selected recommendation. Use an empty " -"value to disable the recommendation system." -msgstr "Wird als Beschriftung vor der ausgewählten Empfehlung angezeigt. Verwenden Sie eine leere Eingabe, um das Empfehlungssystem zu deaktivieren." - -#: motions/static/js/motions/base.js:1628 -msgid "Withdraw" -msgstr "Zurückziehen" - -#: motions/static/js/motions/site.js:665 -msgid "Workflow" -msgstr "Arbeitsablauf" - -#: motions/static/js/motions/site.js:3242 -msgid "Workflow of new motions" -msgstr "Arbeitsablauf von neuen Anträgen" - -#: motions/static/js/motions/site.js:199 -#: motions/static/templates/motions/motion-list.html:23 -#: motions/static/templates/motions/workflow-list.html:13 -msgid "Workflows" -msgstr "Arbeitsabläufe" - -#: motions/static/js/motions/workflow.js:82 -msgid "Yellow" -msgstr "Gelb" - -#: assignments/static/js/assignments/pdf.js:317 -#: assignments/static/js/assignments/site.js:611 -#: assignments/static/js/assignments/site.js:729 -#: motions/static/js/motions/pdf.js:193 motions/static/js/motions/pdf.js:739 -#: motions/static/js/motions/site.js:760 -#: motions/static/templates/motions/motion-detail.html:405 -#: motions/static/templates/motions/slide_motion.html:32 -msgid "Yes" -msgstr "Ja" - -#: motions/static/js/motions/site.js:3298 -msgid "Yes/No" -msgstr "Ja/Nein" - -#: assignments/static/js/assignments/site.js:916 -#: assignments/static/templates/assignments/assignment-detail.html:289 -msgid "Yes/No per candidate" -msgstr "Ja/Nein pro Kandidat" - -#: motions/static/js/motions/site.js:3297 -msgid "Yes/No/Abstain" -msgstr "Ja/Nein/Enthaltung" - -#: assignments/static/js/assignments/site.js:915 -#: assignments/static/templates/assignments/assignment-detail.html:288 -msgid "Yes/No/Abstain per candidate" -msgstr "Ja/Nein/Enthaltung pro Kandidat" - -#: users/static/templates/users/group-list.html:69 -msgid "You are not allowed to lock yourself out of the configuration!" -msgstr "Sie sind nicht berechtigt sich selbst aus der Konfiguration zu sperren!" - -#: core/static/js/core/site.js:2106 -msgid "" -"You can replace the logo by uploading an image and set it as the \"Projector" -" logo\" in \"files\"." -msgstr "Sie können das Logo austauschen indem Sie ein Bild unter \"Dateien\" hochladen und es als \"Projektor-Logo\" festlegen." - -#: users/static/js/users/site.js:1873 -msgid "You can use {event_name} as a placeholder." -msgstr "Sie können {event_name} als Platzhalter verwenden." - -#: users/static/js/users/site.js:1736 -msgid "You have to enable cookies to use OpenSlides." -msgstr "Sie müssen Cookies aktivieren, um OpenSlides verwenden zu können." - -#: users/static/templates/users/user-change-password.html:17 -msgid "You override the personally set password of" -msgstr "Sie überschreiben hiermit das persönlich gesetzte Passwort von" - -#: users/static/js/users/site.js:1872 -msgid "Your login for {event_name}" -msgstr "Zugangsdaten für {event_name}" - -#: motions/static/js/motions/pdf.js:1376 -msgid "ZIP successfully generated." -msgstr "ZIP-Archiv erfolgreich erstellt." - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:66 -msgid "Zoom in" -msgstr "Vergrößern" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:57 -msgid "Zoom out" -msgstr "Verkleinern" - -#: agenda/static/js/agenda/site.js:883 -msgid "[Begin speech] starts the countdown, [End speech] stops the countdown." -msgstr "[Rede beginnen] startet den Countdown, [Rede beenden] stoppt den Countdown." - -#: users/static/js/users/site.js:1856 -msgid "[Place for your welcome and help text.]" -msgstr "[Platz für Ihren Begrüßungs- und Hilfetext.]" - -#: core/static/js/core/site.js:2096 -msgid "[Space for your welcome text.]" -msgstr "[Platz für Ihren Begrüßungstext.]" - -#: motions/static/js/motions/base.js:1606 -#: motions/static/js/motions/base.js:1621 -msgid "accepted" -msgstr "angenommen" - -#: motions/static/js/motions/base.js:1629 -msgid "adjourned" -msgstr "vertagt" - -#: topics/static/js/topics/csv.js:26 -msgid "agenda-example" -msgstr "Tagesordnung-Beispiel" - -#: users/static/js/users/site.js:1284 -msgid "already exists." -msgstr "existiert bereits." - -#: motions/static/templates/motions/motion-amendment-list.html:175 -#: motions/static/templates/motions/motion-list.html:438 -msgid "amendments" -msgstr "Änderungsanträge" - -#: users/static/js/users/site.js:852 -msgid "and" -msgstr "und" - -#: core/static/js/core/site.js:753 -msgid "anonymous users are also editing this." -msgstr "Gäste sind auch gerade in Bearbeitung." - -#: core/static/js/core/site.js:770 -msgid "are also editing this." -msgstr "sind auch gerade in Bearbeitung." - -#: motions/static/js/motions/pdf.js:1392 -msgid "ballot-paper" -msgstr "stimmzettel" - -#: motions/static/templates/motions/motion-amendment-list.html:320 -#: motions/static/templates/motions/motion-list.html:267 -msgid "by" -msgstr "von" - -#: core/static/js/core/site.js:46 -msgid "clear" -msgstr "löschen" - -#: core/static/js/core/site.js:58 -msgid "close" -msgstr "schließen" - -#: users/static/js/users/site.js:1178 -msgid "create duplicate" -msgstr "Duplikat erstellen" - -#: core/static/js/core/site.js:50 -msgid "date" -msgstr "Datum" - -#: motions/static/templates/motions/motion-table-filters.html:25 -#: motions/static/templates/motions/motion-table-filters.html:263 -msgid "done" -msgstr "erledigt" - -#: users/static/templates/users/user-import.html:97 -msgid "duplicate" -msgstr "Duplikat" - -#: users/static/templates/users/user-import.html:210 -#: users/static/templates/users/user-import.html:98 -msgid "duplicates" -msgstr "Duplikate" - -#: assignments/static/templates/assignments/assignment-list.html:66 -msgid "elections" -msgstr "Wahlen" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:144 -msgid "files" -msgstr "Dateien" - -#: motions/static/templates/motions/motion-detail/toolbar.html:54 -msgid "go" -msgstr "gehe zu" - -#. 'h' means time in hours -#: agenda/static/templates/agenda/item-list.html:484 -#: agenda/static/templates/agenda/item-list.html:492 -msgid "h" -msgstr "h" - -#: topics/static/templates/topics/topic-import.html:27 -msgid "imported" -msgstr "Importiert" - -#: motions/static/js/motions/site.js:932 motions/static/js/motions/site.js:945 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:17 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:43 -msgid "inline" -msgstr "innerhalb" - -#: motions/static/js/motions/docx.js:168 motions/static/js/motions/pdf.js:1421 -#: motions/static/js/motions/pdf.js:425 -#: motions/static/templates/motions/motion-detail/comments.html:25 -msgid "internal" -msgstr "intern" - -#: core/static/js/core/site.js:768 -msgid "is also editing this." -msgstr "ist auch gerade in Bearbeitung." - -#: assignments/static/js/assignments/pdf.js:223 -#: assignments/static/templates/assignments/assignment-detail.html:224 -#: assignments/static/templates/assignments/assignment-detail.html:95 -#: assignments/static/templates/assignments/slide_assignment.html:23 -#: assignments/static/templates/assignments/slide_assignment.html:44 -msgid "is elected" -msgstr "gewählt" - -#: assignments/static/templates/assignments/assignment-detail.html:227 -msgid "is not elected" -msgstr "nicht gewählt" - -#: users/static/js/users/site.js:1106 -msgid "is now" -msgstr "ist jetzt" - -#: motions/static/templates/motions/motion-table-filters.html:124 -msgid "is set" -msgstr "ist gesetzt" - -#: agenda/static/templates/agenda/item-list.html:193 -msgid "items" -msgstr "Einträge" - -#: users/static/js/users/site.js:1176 -msgid "keep original" -msgstr "Original behalten" - -#: assignments/static/js/assignments/base.js:280 -#: assignments/static/js/assignments/base.js:50 -#: assignments/static/templates/assignments/assignmentpoll-form.html:9 -#: motions/static/js/motions/base.js:157 -#: motions/static/templates/motions/motion-poll-form.html:9 -msgid "majority" -msgstr "Mehrheit" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:45 -msgid "minutes" -msgstr "Minuten" - -#: motions/static/js/motions/csv.js:42 motions/static/js/motions/docx.js:188 -#: motions/static/js/motions/pdf.js:1325 motions/static/js/motions/pdf.js:1338 -#: motions/static/templates/motions/motion-block-detail.html:44 -#: motions/static/templates/motions/motion-list.html:137 -msgid "motions" -msgstr "Anträge" - -#: motions/static/templates/motions/motion-import.html:122 -msgid "motions were successfully imported." -msgstr "Anträge wurden erfolgreich importiert." - -#: motions/static/templates/motions/motion-import.html:115 -msgid "motions will be imported." -msgstr "Anträge werden importiert." - -#: motions/static/templates/motions/motion-import.html:110 -msgid "motions will be not imported." -msgstr "Anträge werden nicht importiert." - -#: motions/static/js/motions/csv.js:126 -msgid "motions-example" -msgstr "Anträge-Beispiel" - -#: motions/static/js/motions/site.js:3321 -msgid "needed" -msgstr "erforderlich" - -#: motions/static/js/motions/base.js:1638 -msgid "needs review" -msgstr "benötigt Überprüfung" - -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:11 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:37 -msgid "none" -msgstr "aus" - -#: motions/static/js/motions/base.js:1632 -msgid "not concerned" -msgstr "nicht befasst" - -#: motions/static/js/motions/base.js:1612 -msgid "not decided" -msgstr "nicht entschieden" - -#: core/static/js/core/site.js:38 -msgid "now" -msgstr "jetzt" - -#: agenda/static/js/agenda/site.js:563 agenda/static/js/agenda/site.js:836 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:47 -msgid "of" -msgstr "von" - -#: motions/static/js/motions/site.js:933 motions/static/js/motions/site.js:946 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:23 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:49 -msgid "outside" -msgstr "außerhalb" - -#: users/static/js/users/site.js:1177 -msgid "override new" -msgstr "Neuen überschreiben" - -#: users/static/js/users/csv.js:44 -#: users/static/templates/users/user-list.html:150 -msgid "participants" -msgstr "Teilnehmende" - -#: users/static/templates/users/user-import.html:225 -msgid "participants were successfully imported." -msgstr "Teilnehmende wurden erfolgreich importiert. " - -#: users/static/templates/users/user-import.html:215 -msgid "participants will be imported." -msgstr "Teilnehmende werden importiert." - -#: users/static/templates/users/user-import.html:205 -msgid "participants will be not imported." -msgstr "Teilnehmende werden nicht importiert. " - -#: users/static/js/users/csv.js:68 -msgid "participants-example" -msgstr "Teilnehmende-Beispiel" - -#: motions/static/js/motions/base.js:1618 -msgid "permitted" -msgstr "zugelassen" - -#: motions/static/js/motions/site.js:2057 -msgid "personal note" -msgstr "Persönliche Notiz" - -#: motions/static/js/motions/base.js:1617 -msgid "published" -msgstr "veröffentlicht" - -#: motions/static/js/motions/base.js:1635 -msgid "refered to committee" -msgstr "in Ausschuss verwiesen" - -#: motions/static/js/motions/base.js:1609 -#: motions/static/js/motions/base.js:1624 -msgid "rejected" -msgstr "abgelehnt" - -#: motions/static/js/motions/base.js:1640 -msgid "rejected (not authorized)" -msgstr "verworfen (nicht zulässig)" - -#: core/static/templates/search.html:28 -msgid "results" -msgstr "Ergebnisse" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:11 -msgid "select files" -msgstr "Dateien auswählen" - -#: agenda/static/templates/agenda/item-list.html:194 -#: assignments/static/templates/assignments/assignment-list.html:67 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:176 -#: motions/static/templates/motions/motion-list.html:138 -#: users/static/templates/users/user-list.html:151 -msgid "selected" -msgstr "ausgewählt" - -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:8 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:9 -#: motions/static/templates/motions/motion-list.html:430 -msgid "speakers" -msgstr "Redner/innen" - -#: motions/static/js/motions/base.js:1605 -msgid "submitted" -msgstr "eingereicht" - -#: core/static/js/core/site.js:54 -msgid "time" -msgstr "Zeit" - -#: core/static/js/core/site.js:42 -msgid "today" -msgstr "heute" - -#: topics/static/templates/topics/topic-import.html:116 -msgid "topics were successfully imported." -msgstr "Themen wurden erfolgreich importiert." - -#: topics/static/templates/topics/topic-import.html:109 -msgid "topics will be imported." -msgstr "Themen werden importiert." - -#: topics/static/templates/topics/topic-import.html:104 -msgid "topics will be not imported." -msgstr "Themen werden nicht importiert." - -#: mediafiles/static/js/mediafiles/resources.js:141 -msgid "undefined" -msgstr "unbekannt" - -#: assignments/static/js/assignments/base.js:283 -#: assignments/static/js/assignments/base.js:53 -#: assignments/static/templates/assignments/assignmentpoll-form.html:10 -#: motions/static/js/motions/base.js:160 -#: motions/static/templates/motions/motion-poll-form.html:10 -msgid "undocumented" -msgstr "nicht erfasst" - -#: motions/static/templates/motions/motion-table-filters.html:269 -#: motions/static/templates/motions/motion-table-filters.html:31 -msgid "undone" -msgstr "unerledigt" - -#: motions/static/js/motions/base.js:1627 -msgid "withdrawed" -msgstr "zurückgezogen" diff --git a/openslides/locale/angular-gettext/es.po b/openslides/locale/angular-gettext/es.po deleted file mode 100644 index e5bd6fa76..000000000 --- a/openslides/locale/angular-gettext/es.po +++ /dev/null @@ -1,4409 +0,0 @@ -# -# Translators: -# johnfelipe , 2016 -# Maximilian Krambach , 2016-2017 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"PO-Revision-Date: 2018-08-30 12:47+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: Spanish (http://www.transifex.com/openslides/openslides/language/es/)\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: motions/static/templates/motions/motion-detail.html:47 -msgctxt "resolution" -msgid "Final version" -msgstr "Versión final" - -#: core/static/templates/csv-import.html:16 -msgctxt "special filetypes in a file open dialog" -msgid "Accepted file types" -msgstr "Formatos de fichero acceptados" - -#: motions/static/js/motions/base.js:1483 -msgid "%TYPE% from line %FROM% to %TO%" -msgstr "%TYPE% de línea %FROM% a %TO%" - -#: motions/static/js/motions/base.js:1485 -msgid "%TYPE% in line %FROM%" -msgstr "%TYPE% en línea %FROM%" - -#: users/static/js/users/site.js:822 -msgid "%num% emails were send sucessfully." -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:115 -#: motions/static/templates/motions/motion-list.html:77 -#: users/static/templates/users/user-list.html:81 -msgid "--- Select action ---" -msgstr "--- Seleccione acción ---" - -#: motions/static/templates/motions/motion-amendment-list.html:135 -#: motions/static/templates/motions/motion-list.html:97 -msgid "--- Select category ---" -msgstr "--- Seleccione categoría ---" - -#: users/static/templates/users/user-list.html:102 -msgid "--- Select group ---" -msgstr "--- Seleccione grupo --- " - -#: motions/static/templates/motions/motion-amendment-list.html:149 -#: motions/static/templates/motions/motion-list.html:111 -msgid "--- Select motion block ---" -msgstr "--- Seleccione bloque de mociones ---" - -#: assignments/static/templates/assignments/assignment-list.html:45 -msgid "--- Select phase ---" -msgstr "--- Seleccione fase ---" - -#: motions/static/templates/motions/motion-amendment-list.html:123 -#: motions/static/templates/motions/motion-list.html:85 -msgid "--- Select state ---" -msgstr "--- Seleccione un estado ---" - -#: agenda/static/templates/agenda/item-list.html:152 -msgid "--- Select visibility ---" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:70 -msgid "--- Set phase ---" -msgstr "--- Establece la fase ---" - -#: core/static/js/core/site.js:2081 -msgid "" -"OpenSlides is a free web based " -"presentation and assembly system for visualizing and controlling agenda, " -"motions and elections of an assembly." -msgstr "OpenSlideses un servicio libre basado en la web para la presentación y gestión de plenaria; para visualizar y controlar la agenda, mociones y elecciones de una asamblea." - -#: motions/static/js/motions/base.js:239 -msgid "" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:38 -msgid "A comment has been changed." -msgstr "Un comentario ha cambiado." - -#: core/static/js/core/base.js:798 -msgid "A server error occurred (%%code%%). Please check the system logs." -msgstr "" - -#: users/static/js/users/site.js:426 users/static/js/users/site.js:478 -#: users/static/templates/users/user-detail.html:40 -msgid "About me" -msgstr "Acerca de mí" - -#: assignments/static/js/assignments/pdf.js:332 -#: assignments/static/js/assignments/site.js:613 -#: assignments/static/js/assignments/site.js:758 -#: assignments/static/js/assignments/site.js:799 -#: assignments/static/templates/assignments/assignment-detail.html:256 -#: assignments/static/templates/assignments/slide_assignment.html:72 -#: motions/static/js/motions/pdf.js:203 motions/static/js/motions/pdf.js:741 -#: motions/static/js/motions/site.js:780 -#: motions/static/templates/motions/motion-detail.html:429 -#: motions/static/templates/motions/slide_motion.html:56 -msgid "Abstain" -msgstr "Abstenerse" - -#: motions/static/js/motions/base.js:1607 -#: motions/static/js/motions/base.js:1622 -msgid "Accept" -msgstr "Aceptar" - -#: motions/static/js/motions/base.js:1608 -#: motions/static/js/motions/base.js:1623 -msgid "Acceptance" -msgstr "Acceptancia" - -#: motions/static/templates/motions/motion-detail/change-summary.html:46 -msgid "Accepted" -msgstr "" - -#: motions/static/templates/motions/state-edit.html:14 -#: motions/static/templates/motions/workflow-detail.html:70 -msgid "Action word" -msgstr "" - -#: motions/static/js/motions/site.js:3270 -msgid "Activate amendments" -msgstr "Activar modificaciones" - -#: users/static/js/users/site.js:598 users/static/js/users/site.js:640 -msgid "Active" -msgstr "Activo" - -#: assignments/static/templates/assignments/assignment-list.html:285 -#: motions/static/templates/motions/motion-list.html:373 -msgid "Add a tag" -msgstr "Añadir etiqueta" - -#: core/static/templates/core/projector-controls.html:208 -msgid "Add countdown" -msgstr "Añadir cuenta regresiva" - -#: users/static/templates/users/user-list.html:109 -#: users/static/templates/users/user-list.html:83 -msgid "Add group" -msgstr "Añadir grupo" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:125 -#: assignments/static/templates/assignments/assignment-detail.html:118 -msgid "Add me" -msgstr "Añadirme" - -#: core/static/templates/core/projector-controls.html:248 -msgid "Add message" -msgstr "Añadir mensaje" - -#: core/static/templates/config-form-field.html:50 -msgid "Add new comment field" -msgstr "Añadir campo de comentario" - -#: core/static/templates/core/projector-controls.html:209 -msgid "Add new countdown" -msgstr "Agregar nueva cuenta regresiva" - -#: core/static/templates/config-form-field.html:131 -msgid "Add new custom translation" -msgstr "" - -#: core/static/templates/core/projector-controls.html:249 -msgid "Add new message" -msgstr "Agregar nuevo mensaje" - -#: motions/static/templates/motions/motion-import.html:32 -msgid "" -"Additional columns after the required ones may be present and won't affect " -"the import." -msgstr "" - -#: motions/static/js/motions/base.js:1630 -msgid "Adjourn" -msgstr "Posponer" - -#: motions/static/js/motions/base.js:1631 -msgid "Adjournment" -msgstr "Posposición" - -#: users/static/templates/users/user-detail.html:45 -msgid "Administrative data" -msgstr "Datos administrativos" - -#: agenda/static/js/agenda/base.js:41 agenda/static/js/agenda/csv.js:35 -#: agenda/static/js/agenda/docx.js:56 agenda/static/js/agenda/docx.js:64 -#: agenda/static/js/agenda/pdf.js:15 agenda/static/js/agenda/pdf.js:81 -#: agenda/static/js/agenda/site.js:20 agenda/static/js/agenda/site.js:32 -#: agenda/static/js/agenda/site.js:50 agenda/static/js/agenda/site.js:870 -#: agenda/static/templates/agenda/item-detail.html:6 -#: agenda/static/templates/agenda/item-list.html:35 -#: agenda/static/templates/agenda/item-list.html:61 -#: agenda/static/templates/agenda/slide-item-list.html:2 -msgid "Agenda" -msgstr "Agenda" - -#: agenda/static/js/agenda/site.js:885 agenda/static/js/agenda/site.js:98 -msgid "Agenda visibility" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:247 -msgid "All Filters" -msgstr "" - -#: assignments/static/js/assignments/site.js:918 -#: motions/static/js/motions/site.js:3300 -msgid "All casted ballots" -msgstr "Todas papeletas entregadas" - -#: motions/static/templates/motions/motion-amendment-list.html:28 -#: motions/static/templates/motions/motion-amendment-list.html:35 -msgid "All motions" -msgstr "" - -#: assignments/static/js/assignments/site.js:917 -#: motions/static/js/motions/site.js:3299 -msgid "All valid ballots" -msgstr "Todas papeletas válidas" - -#: users/static/templates/users/group-list.html:19 -msgid "" -"All your changes are saved immediately. Changes you make are only effective " -"once you (or the users concerned) reload the page." -msgstr "Todos sus cambios se guardarán inmediatamente. Los cambios serán efectuados en cuánto usted (o los usuarios afectados) recargue la página." - -#: core/static/js/core/site.js:2097 -msgid "Allow access for anonymous guest users" -msgstr "Permitir el acceso a usuarios invitados anónimos" - -#: motions/static/js/motions/workflow.js:64 -msgid "Allow create poll" -msgstr "" - -#: motions/static/js/motions/workflow.js:66 -msgid "Allow submitter edit" -msgstr "" - -#: motions/static/js/motions/workflow.js:62 -msgid "Allow support" -msgstr "" - -#: motions/static/js/motions/site.js:3262 -msgid "Allow to disable versioning" -msgstr "Permite desactivar versionamento." - -#: assignments/static/js/assignments/site.js:906 -msgid "Always Yes-No-Abstain per candidate" -msgstr "Siempre Si-No-Abstenerse por candidato" - -#: assignments/static/js/assignments/site.js:907 -msgid "Always Yes/No per candidate" -msgstr "Siempre Si-No por candidato" - -#: assignments/static/js/assignments/site.js:905 -msgid "Always one option per candidate" -msgstr "Siempre una opción por candidato" - -#: motions/static/js/motions/site.js:3322 -msgid "Amendment" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:96 -msgid "Amendment list PDF" -msgstr "" - -#: motions/static/js/motions/site.js:2282 -#: motions/static/js/motions/site.js:3275 -#: motions/static/templates/motions/motion-detail.html:104 -msgid "Amendment to" -msgstr "" - -#: motions/static/js/motions/pdf.js:544 motions/static/js/motions/pdf.js:77 -#: motions/static/js/motions/site.js:2285 -msgid "Amendment to motion" -msgstr "" - -#: motions/static/js/motions/site.js:2824 -#: motions/static/js/motions/site.js:3269 -#: motions/static/js/motions/site.js:915 -#: motions/static/templates/motions/motion-amendment-list.html:18 -#: motions/static/templates/motions/motion-detail.html:17 -#: motions/static/templates/motions/motion-detail.html:175 -#: motions/static/templates/motions/motion-list.html:11 -msgid "Amendments" -msgstr "Modificaciones" - -#: motions/static/js/motions/site.js:2821 -msgid "Amendments to" -msgstr "" - -#: motions/static/js/motions/pdf.js:1136 -msgid "Amendments to motion" -msgstr "" - -#: motions/static/js/motions/site.js:3273 -msgid "Apply text for new amendments" -msgstr "Poner texto a modificaciones nuevas" - -#: agenda/static/js/agenda/site.js:873 -msgid "Arabic" -msgstr "Arábigo" - -#: core/static/templates/index.html:79 -msgid "Are you sure to delete the chat history?" -msgstr "¿Está seguro de eliminar el historial de la charla?" - -#: agenda/static/templates/agenda/item-list.html:181 -msgid "Are you sure you want to delete all selected agenda items?" -msgstr "¿Está seguro de eliminar todos artículos de agenda actualmente seleccionados ?" - -#: motions/static/templates/motions/motion-amendment-list.html:162 -msgid "Are you sure you want to delete all selected amendments?" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:54 -msgid "Are you sure you want to delete all selected elections?" -msgstr "¿Está seguro de eliminar todas las elecciones actualmente seleccionados?" - -#: motions/static/templates/motions/motion-list.html:124 -msgid "Are you sure you want to delete all selected motions?" -msgstr "¿Está seguro de eliminar todas mociones actualmente seleccionadas?" - -#: users/static/templates/users/user-list.html:93 -msgid "Are you sure you want to delete all selected users?" -msgstr "¿Está seguro de eliminar todos usuarios actualmente seleccionados?" - -#: assignments/static/templates/assignments/assignment-detail.html:151 -msgid "Are you sure you want to delete this ballot?" -msgstr "¿Está seguro de que desea eliminar esta votación?" - -#: motions/static/templates/motions/motion-detail/view-diff.html:25 -#: motions/static/templates/motions/motion-detail/view-diff.html:79 -#: motions/static/templates/motions/motion-detail/view-original.html:34 -msgid "Are you sure you want to delete this change recommendation?" -msgstr "¿Está seguro de eliminar esta recomendación de modificación?" - -#: agenda/static/templates/agenda/item-list.html:406 -#: assignments/static/templates/assignments/assignment-list.html:267 -#: core/static/templates/core/manage-projectors.html:52 -#: core/static/templates/core/tag-list.html:46 -#: motions/static/templates/motions/category-list.html:49 -#: motions/static/templates/motions/motion-amendment-list.html:338 -#: motions/static/templates/motions/motion-block-list.html:45 -#: motions/static/templates/motions/motion-list.html:287 -#: motions/static/templates/motions/workflow-detail.html:58 -#: motions/static/templates/motions/workflow-list.html:38 -#: users/static/templates/users/group-list.html:45 -#: users/static/templates/users/user-list.html:364 -msgid "Are you sure you want to delete this entry?" -msgstr "¿Está seguro de que desea eliminar esta entrada?" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:320 -msgid "Are you sure you want to delete this file?" -msgstr "¿Está seguro que desea eliminar este archivo?" - -#: motions/static/templates/motions/motion-detail.html:382 -msgid "Are you sure you want to delete this poll?" -msgstr "¿Está seguro de que desea eliminar esta encuesta?" - -#: motions/static/templates/motions/motion-detail.html:630 -msgid "Are you sure you want to delete this version?" -msgstr "¿Está seguro de que desea eliminar esta versión?" - -#: agenda/static/templates/agenda/item-list.html:85 -msgid "Are you sure you want to number all agenda items?" -msgstr "" - -#: motions/static/templates/motions/motion-block-detail.html:31 -msgid "" -"Are you sure you want to override the state of all motions of this motion " -"block?" -msgstr "¿Está seguro que quiere reemplazar el estado de todas las mociones de este bloque de mociones?" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:16 -msgid "Are you sure you want to remove all speakers from this list?" -msgstr "¿Está seguro que quiere eliminar todos los oradores de esta lista?" - -#: motions/static/templates/motions/motion-block-detail.html:63 -msgid "Are you sure you want to remove this motion from motion block?" -msgstr "¿Está seguro que quiere eliminar esta moción de este bloque de mociones?" - -#: core/static/templates/core/manage-projectors.html:87 -msgid "Aspect ratio" -msgstr "" - -#: users/static/templates/users/user-import.html:63 -msgid "" -"At least given name or surname have to be filled in. All\n" -" other fields are optional and may be empty." -msgstr "Al menos nombre o apellido tienen que ser entradas. Todo lo demás es opcional y puede quedar vacío." - -#: motions/static/templates/motions/motion-detail.html:551 -msgid "" -"At least two amendments or change recommendations affecting the same line are to be integrated.\n" -" This leads to undeterministic results.\n" -" Please resolve this conflict by not accepting multiple changes affecting the same line." -msgstr "" - -#: motions/static/js/motions/site.js:586 topics/static/js/topics/site.js:115 -msgid "Attachment" -msgstr "Archivo adjunto" - -#: motions/static/templates/motions/motion-detail.html:601 -#: topics/static/templates/topics/topic-detail.html:31 -msgid "Attachments" -msgstr "Archivos adjuntos" - -#: core/static/templates/csv-import.html:30 -msgid "Autodetection" -msgstr "Detección automática" - -#: assignments/static/js/assignments/site.js:904 -msgid "Automatic assign of method" -msgstr "Método de asignación automática" - -#: motions/static/templates/motions/motion-submitters.html:6 -msgid "Back" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:130 -#: topics/static/templates/topics/topic-import.html:35 -msgid "Back to agenda" -msgstr "Volver a la agenda" - -#: motions/static/templates/motions/category-sort.html:6 -msgid "Back to categories" -msgstr "Volver a las categorías" - -#: motions/static/templates/motions/motion-amendment-list.html:8 -#: motions/static/templates/motions/motion-import.html:139 -msgid "Back to motions overview" -msgstr "Volver a la descripción general de mociones" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:6 -#: agenda/static/templates/agenda/item-sort.html:6 -#: assignments/static/templates/assignments/assignment-detail.html:6 -#: core/static/templates/core/tag-list.html:6 -#: motions/static/templates/motions/category-list.html:6 -#: motions/static/templates/motions/motion-block-detail.html:6 -#: motions/static/templates/motions/motion-block-list.html:6 -#: motions/static/templates/motions/motion-detail.html:12 -#: motions/static/templates/motions/motion-detail.html:7 -#: motions/static/templates/motions/motion-import.html:6 -#: motions/static/templates/motions/workflow-detail.html:6 -#: motions/static/templates/motions/workflow-list.html:6 -#: topics/static/templates/topics/topic-detail.html:6 -#: topics/static/templates/topics/topic-import.html:6 -#: users/static/templates/users/group-list.html:6 -#: users/static/templates/users/user-change-password.html:6 -#: users/static/templates/users/user-detail.html:6 -#: users/static/templates/users/user-import.html:6 -#: users/static/templates/users/user-presence.html:6 -msgid "Back to overview" -msgstr "Volver a la vista general" - -#: users/static/templates/users/user-import.html:244 -#: users/static/templates/users/user-import.html:35 -msgid "Back to users overview" -msgstr "Volver a la descripción general de los usuarios" - -#: core/static/js/core/site.js:2114 -msgid "Background color of projector header and footer" -msgstr "Color de fondo del encabezado y pie del proyector" - -#: assignments/static/js/assignments/pdf.js:142 -#: assignments/static/js/assignments/pdf.js:306 -#: assignments/static/js/assignments/pdf.js:654 -#: assignments/static/templates/assignments/assignment-detail.html:139 -#: assignments/static/templates/assignments/assignmentpoll-form.html:1 -msgid "Ballot" -msgstr "Votación" - -#: assignments/static/js/assignments/site.js:909 -msgid "Ballot and ballot papers" -msgstr "Urnas y papeletas de votación" - -#: agenda/static/js/agenda/site.js:875 -msgid "Begin of event" -msgstr "Inicio del evento" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:91 -msgid "Begin speech" -msgstr "Iniciar discurso" - -#: core/static/templates/core/manage-projectors.html:165 -#: core/static/templates/core/projector-controls.html:89 -msgid "Bigger" -msgstr "Más grande" - -#: core/static/templates/core/manage-projectors.html:212 -#: core/static/templates/core/projector-controls.html:54 -msgid "Blank" -msgstr "En blanco" - -#: motions/static/js/motions/workflow.js:84 -msgid "Blue" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:206 -msgid "Broadcast" -msgstr "Trasmisión" - -#: core/static/templates/core/manage-projectors.html:203 -msgid "Broadcast the content of this projector to all other projectors." -msgstr "Transmite el contenido de este proyector a todos los proyectores" - -#: mediafiles/static/js/mediafiles/image-plugin.js:154 -#: mediafiles/static/js/mediafiles/image-plugin.js:161 -#: mediafiles/static/js/mediafiles/image-plugin.js:199 -msgid "Browse for images" -msgstr "" - -#: core/static/templates/csv-import.html:2 -msgid "CSV file" -msgstr "Fichero CSV" - -#: users/static/js/users/site.js:1836 -msgid "Can create motions" -msgstr "Puede crear mociones" - -#: users/static/js/users/site.js:1811 -msgid "Can manage agenda" -msgstr "Puede gestionar la agenda" - -#: users/static/js/users/site.js:1840 -msgid "Can manage comments" -msgstr "" - -#: users/static/js/users/site.js:1825 -msgid "Can manage configuration" -msgstr "Puede administrar la configuración" - -#: users/static/js/users/site.js:1819 -msgid "Can manage elections" -msgstr "Puede administrar las elecciones" - -#: users/static/js/users/site.js:1832 -msgid "Can manage files" -msgstr "Puede administrar archivos" - -#: users/static/js/users/site.js:1812 -msgid "Can manage list of speakers" -msgstr "" - -#: users/static/js/users/site.js:1828 -msgid "Can manage logos and fonts" -msgstr "" - -#: users/static/js/users/site.js:1838 -msgid "Can manage motions" -msgstr "Puede administrar las mociones" - -#: users/static/js/users/site.js:1824 -msgid "Can manage tags" -msgstr "Puede gestionar etiquetas" - -#: users/static/js/users/site.js:1827 -msgid "Can manage the chat" -msgstr "Puede gestionar la charla" - -#: users/static/js/users/site.js:1822 -msgid "Can manage the projector" -msgstr "Puede administrar el proyector" - -#: users/static/js/users/site.js:1844 -msgid "Can manage users" -msgstr "Puede administrar usuarios" - -#: users/static/js/users/site.js:1817 -msgid "Can nominate another participant" -msgstr "Puede designar a otro participante" - -#: users/static/js/users/site.js:1818 -msgid "Can nominate oneself" -msgstr "Puede designar a uno mismo" - -#: core/static/js/core/projector.js:154 -msgid "Can not open the projector." -msgstr "No puede abrir el proyector." - -#: users/static/js/users/site.js:1814 -msgid "Can put oneself on the list of speakers" -msgstr "Puede ponerse en la lista de oradores" - -#: users/static/js/users/site.js:1810 -msgid "Can see agenda" -msgstr "Puede ver la agenda" - -#: users/static/js/users/site.js:1839 -msgid "Can see comments" -msgstr "" - -#: users/static/js/users/site.js:1816 -msgid "Can see elections" -msgstr "Puede ver las elecciones" - -#: users/static/js/users/site.js:1843 -msgid "Can see extra data of users (e.g. present and comment)" -msgstr "Puede ver datos adicionales de los usuarios (por ejemplo, presencia y comentario)" - -#: users/static/js/users/site.js:1833 -msgid "Can see hidden files" -msgstr "Puede ver ficheros escondidos" - -#: users/static/js/users/site.js:1813 -msgid "Can see internal items and time scheduling of agenda" -msgstr "" - -#: users/static/js/users/site.js:1835 -msgid "Can see motions" -msgstr "Puede ver las mociones" - -#: users/static/js/users/site.js:1842 -msgid "Can see names of users" -msgstr "Puede ver los nombres de los usuarios" - -#: users/static/js/users/site.js:1823 -msgid "Can see the front page" -msgstr "Puede ver la página primera" - -#: users/static/js/users/site.js:1830 -msgid "Can see the list of files" -msgstr "Puede ver la lista de archivos" - -#: users/static/js/users/site.js:1821 -msgid "Can see the projector" -msgstr "Puede ver el proyector" - -#: users/static/js/users/site.js:1837 -msgid "Can support motions" -msgstr "Puede apoyar mociones" - -#: users/static/js/users/site.js:1831 -msgid "Can upload files" -msgstr "Puede cargar archivos" - -#: users/static/js/users/site.js:1826 -msgid "Can use the chat" -msgstr "Puede utilizar el chat" - -#: assignments/static/templates/assignments/assignment-form.html:18 -#: assignments/static/templates/assignments/assignmentpoll-form.html:18 -#: core/static/js/core/base.js:264 core/static/js/core/site.js:128 -#: core/static/js/core/site.js:129 -#: core/static/templates/core/projector-controls.html:198 -#: core/static/templates/core/projector-message-form.html:8 -#: core/static/templates/core/tag-form.html:13 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:19 -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:24 -#: motions/static/templates/motions/category-form.html:13 -#: motions/static/templates/motions/change-recommendation-form.html:13 -#: motions/static/templates/motions/motion-block-form.html:13 -#: motions/static/templates/motions/motion-comment-form.html:12 -#: motions/static/templates/motions/motion-export-form.html:10 -#: motions/static/templates/motions/motion-form.html:19 -#: motions/static/templates/motions/motion-poll-form.html:18 -#: motions/static/templates/motions/state-edit.html:24 -#: motions/static/templates/motions/workflow-edit.html:24 -#: topics/static/templates/topics/topic-form.html:13 -#: users/static/templates/users/group-edit.html:24 -#: users/static/templates/users/profile-password-form.html:12 -#: users/static/templates/users/user-change-password.html:51 -#: users/static/templates/users/user-form.html:13 -msgid "Cancel" -msgstr "Cancelar" - -#: assignments/static/js/assignments/pdf.js:150 -#: assignments/static/js/assignments/pdf.js:68 -#: assignments/static/templates/assignments/assignment-detail.html:192 -#: assignments/static/templates/assignments/assignment-detail.html:213 -#: assignments/static/templates/assignments/assignment-detail.html:86 -#: assignments/static/templates/assignments/assignment-list.html:322 -#: assignments/static/templates/assignments/slide_assignment.html:19 -#: assignments/static/templates/assignments/slide_assignment.html:36 -msgid "Candidates" -msgstr "Los candidatos" - -#: users/static/js/users/site.js:1119 -msgid "Cannot find the participant with the participant number" -msgstr "" - -#: core/static/js/core/pdf.js:100 -msgid "Cannot load image" -msgstr "" - -#: assignments/static/js/assignments/site.js:846 -#: assignments/static/templates/assignments/assignment-detail.html:280 -#: assignments/static/templates/assignments/slide_assignment.html:94 -msgid "Casted ballots" -msgstr "Papeletas entregadas" - -#: motions/static/js/motions/docx.js:46 motions/static/js/motions/site.js:136 -#: motions/static/templates/motions/category-list.html:13 -#: motions/static/templates/motions/motion-list.html:15 -msgid "Categories" -msgstr "Categorías" - -#: motions/static/templates/motions/motion-import.html:124 -msgid "Categories created" -msgstr "Categorías creadas" - -#: motions/static/js/motions/pdf.js:142 motions/static/js/motions/pdf.js:602 -#: motions/static/js/motions/site.js:1425 -#: motions/static/js/motions/site.js:600 motions/static/js/motions/site.js:867 -#: motions/static/templates/motions/category-sort.html:9 -#: motions/static/templates/motions/motion-detail.html:296 -#: motions/static/templates/motions/motion-detail.html:300 -#: motions/static/templates/motions/motion-import.html:27 -#: motions/static/templates/motions/motion-import.html:50 -#: motions/static/templates/motions/motion-table-filters.html:69 -msgid "Category" -msgstr "Categoría" - -#: core/static/js/core/site.js:2102 -msgid "Center" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:513 -msgid "Change item number ..." -msgstr "Cambie el número del tema ..." - -#: core/static/templates/index.html:106 -#: users/static/templates/users/user-change-password.html:48 -#: users/static/templates/users/user-list.html:362 -msgid "Change password" -msgstr "Cambiar contraseña" - -#: users/static/templates/users/user-change-password.html:9 -msgid "Change password for {{ user.get_short_name() }}" -msgstr "Cambie contraseña de {{ user.get_short_name() }}" - -#: users/static/templates/users/user-presence.html:26 -msgid "Change presence" -msgstr "" - -#: motions/static/templates/motions/motion-detail/change-summary.html:34 -msgid "Change recommendation" -msgstr "" - -#: motions/static/js/motions/site.js:955 motions/static/js/motions/site.js:969 -#: motions/static/templates/motions/motion-detail/toolbar.html:121 -#: motions/static/templates/motions/motion-detail/toolbar.html:76 -msgid "Change recommendations" -msgstr "Recomendaciones de modificación" - -#: agenda/static/templates/agenda/item-list.html:424 -msgid "Change visibility" -msgstr "" - -#: motions/static/js/motions/site.js:958 motions/static/js/motions/site.js:972 -#: motions/static/templates/motions/motion-detail/toolbar.html:133 -#: motions/static/templates/motions/motion-detail/toolbar.html:91 -msgid "Changed version" -msgstr "Versión cambiada" - -#: core/static/templates/index.html:50 -msgid "Chat" -msgstr "Charla" - -#: motions/static/js/motions/site.js:3284 -msgid "Choose 0 to disable the supporting system." -msgstr "Seleccione 0 para desactivar el sistema de apoyo." - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:1 -msgid "Choose the paragraph to amend!" -msgstr "" - -#: core/static/js/core/site.js:130 core/static/js/core/site.js:131 -msgid "Clear" -msgstr "Despejar" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:90 -msgid "Clear list" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:129 -#: topics/static/templates/topics/topic-import.html:120 -#: users/static/templates/users/user-import.html:231 -msgid "Clear preview" -msgstr "Borrar vista previa" - -#: core/static/templates/privacypolicydialog.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:93 -msgid "Close" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:11 -msgid "Close list of speakers" -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:53 -#: agenda/static/templates/agenda/item-detail.html:48 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:10 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:11 -msgid "Closed" -msgstr "Cerrado" - -#: agenda/static/js/agenda/site.js:176 agenda/static/js/agenda/site.js:177 -msgid "Closed items" -msgstr "Artículos cerrados" - -#: agenda/static/templates/agenda/item-list.html:208 -msgid "Collapse all" -msgstr "" - -#: core/static/js/core/site.js:2118 -msgid "Color for blanked projector" -msgstr "Color para el proyector en blanco" - -#: motions/static/templates/motions/motion-table-filters.html:117 -#: topics/static/templates/topics/topic-import.html:53 -#: topics/static/templates/topics/topic-import.html:72 -#: users/static/js/users/site.js:374 users/static/js/users/site.js:648 -#: users/static/templates/users/user-detail.html:48 -#: users/static/templates/users/user-import.html:56 -#: users/static/templates/users/user-import.html:89 -#: users/static/templates/users/user-list.html:441 -msgid "Comment" -msgstr "Comentario" - -#: motions/static/js/motions/site.js:3290 -msgid "Comment fields for motions" -msgstr "Campos de comentarios para mociones" - -#: motions/static/js/motions/docx.js:97 motions/static/js/motions/site.js:1014 -#: motions/static/js/motions/site.js:2051 -#: motions/static/js/motions/site.js:3289 -msgid "Comments" -msgstr "Comentarios" - -#: users/static/js/users/site.js:605 users/static/js/users/site.js:642 -msgid "Committee" -msgstr "Comité" - -#: users/static/js/users/base.js:174 -msgid "Committees" -msgstr "Comités" - -#: motions/static/js/motions/base.js:1616 -msgid "Complex Workflow" -msgstr "Flujo de trabajo complejo" - -#: users/static/js/users/site.js:527 -msgid "Confirm new password" -msgstr "Confirme contraseña nueva" - -#: motions/static/js/motions/site.js:983 -msgid "Content" -msgstr "" - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:21 -msgid "Continue" -msgstr "" - -#: core/static/templates/core/login-form.html:23 -msgid "Continue as guest" -msgstr "Continue como invitado" - -#: users/static/templates/users/user-import.html:19 -msgid "" -"Copy and paste your participant names in this textbox.\n" -" Keep each person in a single line." -msgstr "Copie y pegue sus nombres de participantes en esta casilla de texto.\nMantenga cada persona en una sola línea." - -#: topics/static/templates/topics/topic-import.html:15 -msgid "" -"Copy and paste your topic titles in this textbox. Keep each item in a single" -" line." -msgstr "Copie y pegue los títulos de su artículos de agenda en esta casilla de texto. Mantenga cada artículo en una sola línea." - -#: core/static/js/core/base.js:1444 core/static/js/core/site.js:422 -msgid "Countdown" -msgstr "Cuenta regresiva" - -#: core/static/js/core/base.js:1445 -#: core/static/templates/core/projector-controls.html:127 -msgid "Countdowns" -msgstr "Cuentas regresivas" - -#: agenda/static/js/agenda/site.js:882 -msgid "Couple countdown with the list of speakers" -msgstr "Enlace cuentas regresivas con la lista de oradores" - -#: motions/static/templates/motions/motion-detail.html:563 -msgid "Create final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:378 -msgid "Create modified amendment" -msgstr "" - -#: users/static/templates/users/group-edit.html:2 -msgid "Create new group" -msgstr "Crea un nuevo grupo" - -#: motions/static/templates/motions/state-edit.html:2 -msgid "Create new state" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:2 -msgid "Create new workflow" -msgstr "" - -#: motions/static/js/motions/site.js:1431 -msgid "Creation date" -msgstr "Fecha de creación" - -#: core/static/js/core/site.js:2110 -msgid "Current browser language" -msgstr "Lengua actual de navegador" - -#: agenda/static/js/agenda/site.js:74 agenda/static/js/agenda/site.js:835 -#: agenda/static/js/agenda/site.js:838 -#: agenda/static/templates/agenda/current-list-of-speakers.html:17 -#: agenda/static/templates/agenda/current-list-of-speakers.html:51 -#: agenda/static/templates/agenda/item-list.html:23 -#: core/static/templates/core/projector-controls.html:269 -msgid "Current list of speakers" -msgstr "Lista de oradores actual" - -#: assignments/static/js/assignments/site.js:924 -#: motions/static/js/motions/site.js:3312 -msgid "Custom number of ballot papers" -msgstr "Cantidad de papeletas arbitraria" - -#: core/static/js/core/site.js:2128 -msgid "Custom translations" -msgstr "" - -#: users/static/js/users/site.js:1875 -msgid "" -"Dear {name},\n" -"\n" -"this is your OpenSlides login for the event {event_name}:\n" -"\n" -" {url}\n" -" username: {username}\n" -" password: {password}\n" -"\n" -"This email was generated automatically." -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:44 -#: agenda/static/templates/agenda/item-detail.html:35 -#: agenda/static/templates/agenda/item-list.html:372 -#: agenda/static/templates/agenda/item-list.html:55 -#: core/static/templates/core/projector-controls.html:296 -#: core/static/templates/projector-button.html:23 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:292 -#: motions/static/templates/motions/motion-detail.html:56 -#: users/static/js/users/base.js:171 -msgid "Default" -msgstr "Predeterminado" - -#: assignments/static/js/assignments/site.js:157 -msgid "Default comment on the ballot paper" -msgstr "Comentario predeterminado en la papeleta de votación" - -#: motions/static/js/motions/site.js:3249 -msgid "Default line numbering" -msgstr "Numeración de líneas predeterminada" - -#: assignments/static/js/assignments/site.js:926 -msgid "" -"Default method to check whether a candidate has reached the required " -"majority." -msgstr "Método predeterminado de verificar si un candidato alcanzó la mayoría necesaria." - -#: motions/static/js/motions/site.js:3303 -msgid "" -"Default method to check whether a motion has reached the required majority." -msgstr "Método predeterminado para verificar si una moción alcanzó la mayoría necesaria." - -#: core/static/js/core/site.js:2131 -msgid "Default projector" -msgstr "Proyector predeterminado" - -#: motions/static/js/motions/site.js:3264 -msgid "Default text version for change recommendations" -msgstr "Texto inicial para las recomendaciones de cambio" - -#: agenda/static/js/agenda/site.js:886 -msgid "Default visibility for new agenda items (except topics)" -msgstr "" - -#: users/static/js/users/base.js:172 -msgid "Delegates" -msgstr "Delegados" - -#: agenda/static/templates/agenda/item-list.html:146 -#: agenda/static/templates/agenda/item-list.html:405 -#: assignments/static/templates/assignments/assignment-detail.html:154 -#: assignments/static/templates/assignments/assignment-list.html:266 -#: core/static/templates/core/tag-list.html:45 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:319 -#: motions/static/templates/motions/category-list.html:48 -#: motions/static/templates/motions/motion-amendment-list.html:116 -#: motions/static/templates/motions/motion-amendment-list.html:337 -#: motions/static/templates/motions/motion-block-list.html:44 -#: motions/static/templates/motions/motion-detail.html:384 -#: motions/static/templates/motions/motion-detail.html:633 -#: motions/static/templates/motions/motion-detail/view-diff.html:27 -#: motions/static/templates/motions/motion-detail/view-diff.html:81 -#: motions/static/templates/motions/motion-detail/view-original.html:36 -#: motions/static/templates/motions/motion-list.html:286 -#: motions/static/templates/motions/motion-list.html:78 -#: motions/static/templates/motions/workflow-list.html:37 -#: users/static/templates/users/user-list.html:363 -#: users/static/templates/users/user-list.html:82 -msgid "Delete" -msgstr "Eliminar" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:8 -msgid "Delete final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:166 -msgid "Delete selected amendments" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:58 -msgid "Delete selected elections" -msgstr "Eliminar elecciones seleccionadas" - -#: agenda/static/templates/agenda/item-list.html:185 -msgid "Delete selected items" -msgstr "Eliminar los elementos seleccionados." - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:136 -msgid "Delete selected mediafiles" -msgstr "Eliminar archivos multimedia seleccionado" - -#: motions/static/templates/motions/motion-list.html:128 -msgid "Delete selected motions" -msgstr "Eliminar mociones seleccionadas" - -#: users/static/templates/users/user-list.html:97 -msgid "Delete selected participants" -msgstr "Eliminar participantes seleccionados." - -#: motions/static/js/motions/base.js:1492 motions/static/js/motions/pdf.js:284 -#: motions/static/js/motions/site.js:372 -#: motions/static/templates/motions/motion-detail/change-summary.html:39 -msgid "Deletion" -msgstr "Eliminación" - -#: assignments/static/js/assignments/pdf.js:45 -#: assignments/static/js/assignments/site.js:137 -#: assignments/static/templates/assignments/assignment-detail.html:81 -#: core/static/templates/core/projector-controls.html:183 -#: motions/static/js/motions/site.js:381 -msgid "Description" -msgstr "Descripción" - -#: core/static/templates/csv-import.html:11 -msgid "Deselect file" -msgstr "Deseleccione fichero" - -#: users/static/js/users/site.js:394 -msgid "Designates whether this user is in the room or not." -msgstr "Indica si el usuario está en el cuarto." - -#: users/static/js/users/site.js:416 -msgid "Designates whether this user should be treated as a committee." -msgstr "Indica si el usuario será tratado como comité." - -#: users/static/js/users/site.js:404 -msgid "" -"Designates whether this user should be treated as active. Unselect this " -"instead of deleting the account." -msgstr "Indica si este usuario debe tratarse como activo. Deseleccione esta opción en lugar de la eliminación de la cuenta." - -#: users/static/js/users/site.js:613 -msgid "Didn't get an email" -msgstr "" - -#: motions/static/js/motions/site.js:959 motions/static/js/motions/site.js:973 -#: motions/static/templates/motions/motion-detail/toolbar.html:138 -#: motions/static/templates/motions/motion-detail/toolbar.html:97 -msgid "Diff version" -msgstr "Versión de diferencia" - -#: assignments/static/js/assignments/site.js:930 -#: motions/static/js/motions/site.js:3307 -msgid "Disabled" -msgstr "Desactivado" - -#: assignments/static/js/assignments/site.js:919 -#: motions/static/js/motions/site.js:3301 -msgid "Disabled (no percents)" -msgstr "Desactivado (sin porcentajes)" - -#: core/static/templates/core/manage-projectors.html:30 -msgid "" -"Display an identifier message on all projectors with the id and the name." -msgstr "Proyecte un mensaje identificador en todos los proyectores con este id y nombre." - -#: core/static/js/core/site.js:2112 -msgid "Display header and footer" -msgstr "" - -#: motions/static/js/motions/base.js:1633 -msgid "Do not concern" -msgstr "De no preocupación" - -#: motions/static/js/motions/base.js:1613 -msgid "Do not decide" -msgstr "No decidir" - -#: motions/static/templates/motions/motion-detail.html:560 -msgid "Do you want to copy the final version to the final print template?" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:539 -#: motions/static/templates/motions/motion-detail.html:569 -msgid "" -"Do you want to create a new version of this motion based on this changes?" -msgstr "¿Desea crear una versión nueva de esa moción, basada en esos cambios?" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:5 -msgid "Do you want to delete the final print template?" -msgstr "" - -#: motions/static/js/motions/site.js:540 -msgid "Don't create a new version." -msgstr "No crea una versión nueva." - -#: agenda/static/templates/agenda/item-list.html:172 -#: agenda/static/templates/agenda/item-list.html:524 -#: agenda/static/templates/agenda/item-list.html:530 -msgid "Done" -msgstr "Hecho" - -#: motions/static/templates/motions/motion-import.html:34 -#: topics/static/templates/topics/topic-import.html:58 -#: users/static/templates/users/user-import.html:66 -msgid "Download CSV example file" -msgstr "Descargar archivo CSV de ejemplo" - -#: agenda/static/templates/agenda/item-sort.html:14 -msgid "" -"Drag and drop items to change the order of the agenda. Your modification " -"will be saved immediately." -msgstr "Arrastre y suelte elementos para cambiar el orden de la agenda. La modificación se guardará inmediatamente." - -#: motions/static/templates/motions/category-sort.html:15 -msgid "" -"Drag and drop motions to reorder the category. Then click the button to " -"renumber." -msgstr "Arrastre y suelte mociones para cambiar el orden de la categoría. Después haga clic en el botón para numerar." - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:10 -msgid "Drop files into this area OR" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:197 -#: topics/static/templates/topics/topic-import.html:52 -#: topics/static/templates/topics/topic-import.html:71 -msgid "Duration" -msgstr "Duración" - -#: agenda/static/templates/agenda/item-list.html:404 -#: assignments/static/templates/assignments/assignment-detail.html:21 -#: assignments/static/templates/assignments/assignment-list.html:265 -#: core/static/templates/core/tag-list.html:44 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:318 -#: motions/static/templates/motions/category-list.html:46 -#: motions/static/templates/motions/motion-amendment-list.html:330 -#: motions/static/templates/motions/motion-block-detail.html:20 -#: motions/static/templates/motions/motion-block-list.html:42 -#: motions/static/templates/motions/motion-detail.html:376 -#: motions/static/templates/motions/motion-detail.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:33 -#: motions/static/templates/motions/motion-detail/view-diff.html:87 -#: motions/static/templates/motions/motion-list.html:278 -#: motions/static/templates/motions/workflow-list.html:35 -#: topics/static/templates/topics/topic-detail.html:20 -#: users/static/templates/users/user-detail.html:15 -#: users/static/templates/users/user-list.html:359 -msgid "Edit" -msgstr "Editar" - -#: mediafiles/static/templates/mediafiles/mediafile-form.html:1 -msgid "Edit File" -msgstr "" - -#: motions/static/templates/motions/category-form.html:1 -msgid "Edit category" -msgstr "Editar categoría" - -#: motions/static/templates/motions/change-recommendation-form.html:1 -msgid "Edit change recommendation" -msgstr "Editar recomendación de cambio" - -#: motions/static/js/motions/site.js:2494 -#: motions/static/js/motions/site.js:3266 -msgid "Edit comment %%comment%% of motion %%motion%%" -msgstr "" - -#: core/static/templates/core/projector-controls.html:143 -msgid "Edit countdown" -msgstr "Editar cuenta regresiva" - -#: core/static/templates/core/manage-projectors.html:152 -#: core/static/templates/core/projector-controls.html:76 -msgid "Edit current slide" -msgstr "Editar la diapositiva actual" - -#: assignments/static/templates/assignments/assignment-form.html:1 -msgid "Edit election" -msgstr "Editar elección" - -#: core/static/templates/core/projector-controls.html:233 -#: core/static/templates/core/projector-message-form.html:1 -msgid "Edit message" -msgstr "Editar mensaje" - -#: motions/static/templates/motions/motion-form.html:1 -msgid "Edit motion" -msgstr "Editar moción" - -#: motions/static/templates/motions/motion-block-form.html:1 -msgid "Edit motion block" -msgstr "Editar bloque de moción" - -#: motions/static/templates/motions/workflow-edit.html:1 -#: users/static/templates/users/group-edit.html:1 -msgid "Edit name" -msgstr "Editar nombre" - -#: users/static/templates/users/user-form.html:1 -msgid "Edit participant" -msgstr "Editar participante" - -#: core/static/templates/index.html:101 users/static/js/users/site.js:982 -msgid "Edit profile" -msgstr "Editar perfil" - -#: motions/static/templates/motions/state-edit.html:1 -msgid "Edit state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:332 -#: motions/static/templates/motions/motion-list.html:281 -msgid "Edit submitters" -msgstr "" - -#: core/static/templates/core/tag-form.html:1 -msgid "Edit tag" -msgstr "Editar etiqueta" - -#: motions/static/js/motions/site.js:3278 -msgid "Edit the whole motion text" -msgstr "" - -#: topics/static/templates/topics/topic-form.html:1 -msgid "Edit topic" -msgstr "Editar tema" - -#: motions/static/templates/motions/motion-detail/toolbar.html:16 -msgid "" -"Editing the text is not possible anymore once there are change " -"recommendations." -msgstr "Edición de textos ya no es posible cuando hayan recomendaciones de cambio." - -#: assignments/static/js/assignments/base.js:375 -#: assignments/static/js/assignments/pdf.js:617 -#: assignments/static/js/assignments/site.js:453 -#: assignments/static/templates/assignments/assignment-detail.html:33 -#: assignments/static/templates/assignments/slide_assignment.html:7 -msgid "Election" -msgstr "Elección" - -#: assignments/static/js/assignments/site.js:903 -#: assignments/static/templates/assignments/assignment-detail.html:286 -msgid "Election method" -msgstr "Método de elección" - -#: assignments/static/templates/assignments/assignment-detail.html:127 -msgid "Election result" -msgstr "Resultado Electoral" - -#: assignments/static/js/assignments/base.js:376 -#: assignments/static/js/assignments/pdf.js:618 -#: assignments/static/js/assignments/site.js:19 -#: assignments/static/js/assignments/site.js:31 -#: assignments/static/js/assignments/site.js:49 -#: assignments/static/js/assignments/site.js:908 -#: assignments/static/templates/assignments/assignment-list.html:14 -msgid "Elections" -msgstr "Elecciones" - -#: users/static/js/users/site.js:1869 users/static/js/users/site.js:313 -#: users/static/js/users/site.js:471 -#: users/static/templates/users/user-detail.html:36 -#: users/static/templates/users/user-import.html:61 -#: users/static/templates/users/user-import.html:94 -msgid "Email" -msgstr "" - -#: users/static/js/users/site.js:1874 -msgid "Email body" -msgstr "" - -#: users/static/js/users/site.js:1870 -msgid "Email sender" -msgstr "" - -#: users/static/js/users/site.js:1871 -msgid "Email subject" -msgstr "" - -#: motions/static/js/motions/site.js:3277 -msgid "Empty text field" -msgstr "" - -#: agenda/static/js/agenda/site.js:867 -msgid "Enable numbering for agenda items" -msgstr "" - -#: users/static/js/users/site.js:1849 -msgid "Enable participant presence view" -msgstr "" - -#: core/static/templates/csv-import.html:22 -msgid "Encoding" -msgstr "Codificación" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:334 -msgid "Encrypted" -msgstr "Cifrado" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:65 -msgid "End speech" -msgstr "Terminar discurso" - -#: agenda/static/js/agenda/site.js:881 -msgid "Enter duration in seconds. Choose 0 to disable warning color." -msgstr "Introducir la duración en segundos. Seleccione 0 para desactivar el color de advertencia." - -#: users/static/templates/users/user-presence.html:22 -msgid "Enter participant number" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:170 -msgid "Enter votes" -msgstr "Introducir votos" - -#: core/static/js/core/base.js:791 -msgid "Error" -msgstr "Error" - -#: core/static/js/core/pdf.js:1335 core/static/js/core/pdf.js:99 -msgid "Error while generating PDF file" -msgstr "Error produciendo el PDF" - -#: motions/static/js/motions/pdf.js:1382 -msgid "Error while generating ZIP file" -msgstr "" - -#: users/static/js/users/site.js:1212 -msgid "Error: Given name or surname is required." -msgstr "Error: Se requiere nombre o apellido." - -#: motions/static/js/motions/site.js:2880 -msgid "Error: Identifier already exists." -msgstr "Error: El identificador ya existe." - -#: motions/static/js/motions/site.js:2891 -msgid "Error: Text is required." -msgstr "Error: El texto es necesario." - -#: motions/static/js/motions/site.js:2886 topics/static/js/topics/site.js:297 -msgid "Error: Title is required." -msgstr "Error: El título es necesario." - -#: agenda/static/templates/agenda/item-list.html:200 -msgid "Estimated end:" -msgstr "Final estimado:" - -#: core/static/js/core/site.js:2086 -msgid "Event" -msgstr "Evento" - -#: core/static/js/core/site.js:2088 -msgid "Event date" -msgstr "Fecha del evento" - -#: core/static/js/core/site.js:2089 -msgid "Event location" -msgstr "Lugar del evento" - -#: core/static/js/core/site.js:2080 -msgid "Event name" -msgstr "Nombre del evento" - -#: core/static/js/core/site.js:2090 -msgid "Event organizer" -msgstr "Organizador del evento" - -#: motions/static/js/motions/site.js:918 -msgid "Exclude" -msgstr "" - -#: users/static/templates/users/user-import.html:234 -msgid "Exclude already imported users" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:14 -#: motions/static/templates/motions/workflow-detail.html:17 -msgid "Expand" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:207 -msgid "Expand all" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:132 -#: agenda/static/templates/agenda/item-list.html:95 -#: assignments/static/templates/assignments/assignment-list.html:31 -#: motions/static/templates/motions/motion-amendment-list.html:70 -#: motions/static/templates/motions/motion-list.html:53 -#: motions/static/templates/motions/motion-list.html:63 -#: users/static/templates/users/user-list.html:47 -msgid "Export all" -msgstr "Exportar todo" - -#: assignments/static/templates/assignments/assignment-detail.html:26 -#: motions/static/templates/motions/motion-detail.html:69 -msgid "Export as PDF" -msgstr "" - -#: motions/static/templates/motions/motion-export-form.html:7 -msgid "Export as {{ params.format.toUpperCase() | translate }}" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:7 -msgid "Export comments only" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:83 -msgid "Export dialog" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:135 -#: agenda/static/templates/agenda/item-list.html:98 -#: assignments/static/templates/assignments/assignment-list.html:34 -#: motions/static/templates/motions/motion-amendment-list.html:73 -#: motions/static/templates/motions/motion-list.html:56 -#: motions/static/templates/motions/motion-list.html:66 -#: users/static/templates/users/user-list.html:50 -msgid "Export filtered" -msgstr "Exportar filtrado" - -#: motions/static/templates/motions/motion-export-form.html:2 -#: motions/static/templates/motions/motion-export-form.html:3 -msgid "Export motion" -msgstr "" - -#: motions/static/templates/motions/motion-export-form.html:1 -msgid "Export motions" -msgstr "" - -#: motions/static/templates/motions/motion-detail/personal-note.html:7 -msgid "Export personal note only" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:21 -msgid "File information" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:104 -msgid "File size" -msgstr "Tamaño del fichero" - -#: mediafiles/static/js/mediafiles/resources.js:22 -#: mediafiles/static/js/mediafiles/resources.js:23 -#: mediafiles/static/js/mediafiles/states.js:18 -#: mediafiles/static/js/mediafiles/states.js:30 -#: mediafiles/static/js/mediafiles/states.js:48 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:9 -msgid "Files" -msgstr "Archivos" - -#: agenda/static/templates/agenda/item-list.html:241 -#: assignments/static/templates/assignments/assignment-list.html:98 -#: core/static/templates/core/tag-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:176 -#: motions/static/templates/motions/category-list.html:21 -#: motions/static/templates/motions/motion-block-detail.html:40 -#: motions/static/templates/motions/motion-block-list.html:21 -#: users/static/templates/users/user-list.html:202 -msgid "Filter" -msgstr "Filtrar" - -#: motions/static/templates/motions/motion-detail/toolbar.html:113 -#: motions/static/templates/motions/motion-detail/toolbar.html:148 -msgid "Final print template" -msgstr "" - -#: motions/static/js/motions/site.js:960 motions/static/js/motions/site.js:974 -#: motions/static/templates/motions/motion-detail/toolbar.html:104 -#: motions/static/templates/motions/motion-detail/toolbar.html:143 -msgid "Final version" -msgstr "Versión final" - -#: assignments/static/js/assignments/site.js:937 -msgid "Finished" -msgstr "Terminado" - -#: motions/static/templates/motions/workflow-detail.html:28 -msgid "First state" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:291 -msgid "Follow recommendation" -msgstr "Seguir la recomendación" - -#: motions/static/templates/motions/motion-block-detail.html:34 -msgid "Follow recommendations for all motions" -msgstr "Seguir las recomendaciones para todas mociones" - -#: core/static/js/core/site.js:2115 -msgid "Font color of projector header and footer" -msgstr "Color de fuente del encabezado y pie de proyector" - -#: core/static/js/core/site.js:2116 -msgid "Font color of projector headline" -msgstr "Color de fuente del encabezado del proyector" - -#: assignments/static/js/assignments/site.js:911 -msgid "" -"For Yes/No/Abstain per candidate and Yes/No per candidate the 100-%-base " -"depends on the election method: If there is only one option per candidate, " -"the sum of all votes of all candidates is 100 %. Otherwise for each " -"candidate the sum of all votes is 100 %." -msgstr "Para Si/No/Abstenerse por candidato y Si/No por candidato la base de 100% depende del método de elección: Si sólo existe una opción por candidato, la suma de todos votos de todos los candidatos son 100%. De lo contrario para cada candidato la suma de todos los votos son 100%." - -#: motions/static/js/motions/site.js:899 -msgid "Format" -msgstr "" - -#: motions/static/js/motions/site.js:352 -msgid "From Line" -msgstr "De línea" - -#: core/static/js/core/site.js:2095 -msgid "Front page text" -msgstr "Texto de la página principal" - -#: core/static/js/core/site.js:2093 -msgid "Front page title" -msgstr "Título de la página principal" - -#: core/static/js/core/site.js:2085 motions/static/js/motions/site.js:3241 -#: users/static/js/users/site.js:1498 users/static/js/users/site.js:1847 -msgid "General" -msgstr "Generál" - -#: users/static/js/users/site.js:361 -#: users/static/templates/users/user-change-password.html:33 -msgid "Generate" -msgstr "Generar" - -#: users/static/templates/users/user-list.html:121 -#: users/static/templates/users/user-list.html:85 -msgid "Generate new passwords" -msgstr "Genere contraseñas nuevas" - -#: core/static/js/core/pdf.js:1326 -msgid "Generating PDF file" -msgstr "Produciendo el PDF" - -#: motions/static/js/motions/pdf.js:1337 -msgid "Generating PDFs and ZIP archive" -msgstr "" - -#: users/static/js/users/site.js:1851 users/static/js/users/site.js:296 -#: users/static/js/users/site.js:634 -#: users/static/templates/users/user-import.html:51 -#: users/static/templates/users/user-import.html:84 -msgid "Given name" -msgstr "Nombre" - -#: users/static/js/users/site.js:612 -msgid "Got an email" -msgstr "" - -#: motions/static/js/motions/workflow.js:81 -msgid "Green" -msgstr "" - -#: motions/static/js/motions/workflow.js:83 -msgid "Grey" -msgstr "" - -#: users/static/js/users/pdf.js:73 users/static/js/users/site.js:348 -#: users/static/js/users/site.js:89 -#: users/static/templates/users/group-list.html:14 -#: users/static/templates/users/user-detail.html:30 -#: users/static/templates/users/user-import.html:55 -#: users/static/templates/users/user-import.html:88 -#: users/static/templates/users/user-list.html:16 -#: users/static/templates/users/user-list.html:209 -#: users/static/templates/users/user-list.html:378 -#: users/static/templates/users/user-list.html:407 -msgid "Groups" -msgstr "Grupos" - -#: users/static/templates/users/user-import.html:226 -msgid "Groups created" -msgstr "Grupos creados" - -#: users/static/js/users/site.js:1857 -msgid "Help text for access data and welcome PDF" -msgstr "Texto de ayuda para PDF de datos de acceso y de bienvenida" - -#: agenda/static/templates/agenda/item-list.html:159 -#: agenda/static/templates/agenda/item-list.html:436 -#: agenda/static/templates/agenda/item-list.html:472 -#: mediafiles/static/js/mediafiles/forms.js:51 -#: mediafiles/static/js/mediafiles/list.js:74 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:27 -msgid "Hidden" -msgstr "Ocultado" - -#: agenda/static/js/agenda/site.js:102 -#: agenda/static/templates/agenda/item-list.html:452 -msgid "Hidden item" -msgstr "" - -#: agenda/static/js/agenda/site.js:197 -#: agenda/static/templates/agenda/item-list.html:293 -msgid "Hidden items" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:37 -msgid "Hide" -msgstr "Ocultar" - -#: agenda/static/templates/agenda/item-sort.html:18 -msgid "Hide internal items" -msgstr "Ocultar artículos internos" - -#: agenda/static/js/agenda/site.js:877 -msgid "Hide internal items when projecting subitems" -msgstr "" - -#: motions/static/js/motions/site.js:3259 -msgid "Hide meta information box on projector" -msgstr "" - -#: motions/static/js/motions/site.js:3258 -msgid "Hide reason on projector" -msgstr "" - -#: motions/static/js/motions/site.js:3260 -msgid "Hide recommendation on projector" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:144 -msgid "Hint on the ballot paper." -msgstr "Aviso en la papeleta" - -#: core/static/js/core/site.js:189 core/static/js/core/site.js:331 -msgid "Home" -msgstr "Inicio" - -#: motions/static/js/motions/site.js:3276 -msgid "How to create new amendments" -msgstr "" - -#: motions/static/js/motions/site.js:1419 -#: motions/static/js/motions/site.js:259 -#: motions/static/js/motions/site.js:3243 -#: motions/static/js/motions/site.js:336 motions/static/js/motions/site.js:482 -#: motions/static/templates/motions/motion-import.html:22 -#: motions/static/templates/motions/motion-import.html:45 -msgid "Identifier" -msgstr "Identificador" - -#: motions/static/templates/motions/motion-import.html:31 -msgid "" -"Identifier, reason, submitter, category, origin and motion block are " -"optional and may be empty." -msgstr "" - -#: core/static/templates/core/manage-projectors.html:32 -msgid "Identify" -msgstr "Identificar" - -#: mediafiles/static/js/mediafiles/image-plugin.js:148 -#: mediafiles/static/js/mediafiles/image-plugin.js:198 -msgid "Image browser" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:16 -#: motions/static/templates/motions/motion-list.html:31 -#: topics/static/templates/topics/topic-import.html:24 -#: users/static/templates/users/user-import.html:29 -#: users/static/templates/users/user-list.html:20 -msgid "Import" -msgstr "Importar" - -#: topics/static/templates/topics/topic-import.html:41 -#: users/static/templates/users/user-import.html:41 -msgid "Import by CSV file" -msgstr "Importar archivo CSV" - -#: topics/static/templates/topics/topic-import.html:14 -#: users/static/templates/users/user-import.html:18 -msgid "Import by copy/paste" -msgstr "Importación por copiar/pegar" - -#: motions/static/templates/motions/motion-import.html:9 -msgid "Import motions" -msgstr "Importar mociones" - -#: users/static/templates/users/user-import.html:9 -msgid "Import participants" -msgstr "Importar participantes." - -#: topics/static/templates/topics/topic-import.html:9 -msgid "Import topics" -msgstr "Importar temas" - -#: topics/static/templates/topics/topic-import.html:123 -msgid "Import {{ itemsWillBeImported }} topics" -msgstr "Importar {{ itemsWillBeImported }} temas" - -#: motions/static/templates/motions/motion-import.html:132 -msgid "Import {{ motionsWillBeImported }} motions" -msgstr "Importar {{ motionsWillBeImported }} mociones" - -#: users/static/templates/users/user-import.html:237 -msgid "Import {{ usersWillBeImported }} participants" -msgstr "Importar {{ usersWillBeImported }} participantes" - -#: motions/static/js/motions/site.js:917 -msgid "Include" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:363 -msgid "Include all sub items" -msgstr "Incluir todos subelementos" - -#: motions/static/js/motions/site.js:3318 -msgid "Include the sequential number in PDF and DOCX" -msgstr "" - -#: users/static/js/users/pdf.js:201 users/static/js/users/site.js:358 -#: users/static/templates/users/user-change-password.html:37 -#: users/static/templates/users/user-import.html:60 -#: users/static/templates/users/user-import.html:93 -msgid "Initial password" -msgstr "Contraseña inicial" - -#: users/static/js/users/site.js:359 -#: users/static/templates/users/user-change-password.html:38 -msgid "Initial password can not be changed." -msgstr "La contraseña inicial no puede ser cambiada." - -#. Line numbering: Inline -#: motions/static/js/motions/site.js:3253 -msgid "Inline" -msgstr "En línea" - -#: motions/static/templates/motions/motion-detail/comments.html:15 -#: motions/static/templates/motions/motion-detail/comments.html:20 -#: motions/static/templates/motions/motion-detail/personal-note.html:14 -#: motions/static/templates/motions/motion-detail/personal-note.html:19 -#: motions/static/templates/motions/motion-detail/toolbar.html:13 -#: motions/static/templates/motions/motion-detail/toolbar.html:18 -#: motions/static/templates/motions/motion-detail/toolbar.html:29 -#: motions/static/templates/motions/motion-detail/toolbar.html:35 -#: motions/static/templates/motions/motion-detail/toolbar.html:8 -msgid "Inline editing" -msgstr "Revisar en línea" - -#: agenda/static/js/agenda/site.js:876 -msgid "Input format: DD.MM.YYYY HH:MM" -msgstr "Formato de entrada: DD.MM.AAAA HH:MM" - -#: motions/static/js/motions/base.js:1489 motions/static/js/motions/pdf.js:282 -#: motions/static/js/motions/site.js:371 -#: motions/static/templates/motions/motion-detail/change-summary.html:38 -msgid "Insertion" -msgstr "Inserción" - -#: core/static/templates/legalnotice.html:17 -msgid "Installed plugins:" -msgstr "Plugins instalados:" - -#: agenda/static/templates/agenda/item-list.html:156 -#: agenda/static/templates/agenda/item-list.html:432 -#: agenda/static/templates/agenda/item-list.html:468 -msgid "Internal" -msgstr "" - -#: agenda/static/js/agenda/site.js:101 -#: agenda/static/templates/agenda/item-list.html:447 -#: topics/static/templates/topics/topic-import.html:54 -#: topics/static/templates/topics/topic-import.html:73 -msgid "Internal item" -msgstr "Elemento interno" - -#: agenda/static/js/agenda/site.js:190 -#: agenda/static/templates/agenda/item-list.html:287 -msgid "Internal items" -msgstr "Elementos internos" - -#: assignments/static/js/assignments/site.js:836 -#: assignments/static/templates/assignments/assignment-detail.html:274 -#: assignments/static/templates/assignments/slide_assignment.html:88 -msgid "Invalid ballots" -msgstr "Papeletas inválidas" - -#: agenda/static/js/agenda/site.js:871 -msgid "Invalid input." -msgstr "Entrada inválida." - -#: motions/static/js/motions/pdf.js:216 motions/static/js/motions/site.js:799 -#: motions/static/templates/motions/motion-detail.html:450 -msgid "Invalid votes" -msgstr "Votos inválidos" - -#: mediafiles/static/js/mediafiles/list.js:81 -msgid "Is PDF" -msgstr "Es PDF" - -#: mediafiles/static/js/mediafiles/list.js:82 -msgid "Is PDF file" -msgstr "Es archivo PDF" - -#: users/static/js/users/site.js:415 users/static/js/users/site.js:606 -#: users/static/templates/users/user-list.html:341 -msgid "Is a committee" -msgstr "Es un comité" - -#: users/static/js/users/site.js:403 users/static/js/users/site.js:599 -#: users/static/templates/users/user-import.html:57 -#: users/static/templates/users/user-import.html:90 -#: users/static/templates/users/user-list.html:127 -msgid "Is active" -msgstr "Está activo" - -#: users/static/templates/users/user-import.html:59 -#: users/static/templates/users/user-import.html:92 -#: users/static/templates/users/user-list.html:129 -msgid "Is committee" -msgstr "Es comité" - -#: mediafiles/static/js/mediafiles/list.js:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:303 -msgid "Is hidden" -msgstr "Está oculto" - -#: users/static/templates/users/user-list.html:339 -msgid "Is inactive" -msgstr "Está inactivo" - -#: mediafiles/static/js/mediafiles/list.js:83 -msgid "Is no PDF file" -msgstr "No es archivo PDF" - -#: users/static/js/users/site.js:607 -#: users/static/templates/users/user-list.html:137 -msgid "Is not a committee" -msgstr "No es un comité" - -#: users/static/js/users/site.js:600 -#: users/static/templates/users/user-list.html:135 -msgid "Is not active" -msgstr "No está activo" - -#: mediafiles/static/js/mediafiles/list.js:76 -msgid "Is not hidden" -msgstr "No está oculto" - -#: users/static/js/users/site.js:593 -#: users/static/templates/users/user-list.html:136 -msgid "Is not present" -msgstr "No está presente" - -#: users/static/js/users/site.js:393 users/static/js/users/site.js:592 -#: users/static/templates/users/user-import.html:58 -#: users/static/templates/users/user-import.html:91 -#: users/static/templates/users/user-list.html:128 -msgid "Is present" -msgstr "Está presente" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:308 -msgid "Is used as a font" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:306 -msgid "Is used as a logo" -msgstr "" - -#. short form of agenda item -#: assignments/static/js/assignments/site.js:333 -#: motions/static/templates/motions/motion-table-filters.html:209 -msgid "Item" -msgstr "Tema" - -#: motions/static/templates/motions/workflow-detail.html:119 -msgid "Label color" -msgstr "" - -#: users/static/js/users/site.js:611 users/static/js/users/site.js:650 -#: users/static/templates/users/user-detail.html:38 -msgid "Last email send" -msgstr "" - -#: users/static/templates/users/user-list.html:448 -msgid "Last email send to the user" -msgstr "" - -#: motions/static/js/motions/site.js:1433 -#: motions/static/templates/motions/motion-detail.html:636 -msgid "Last modified" -msgstr "Última modificación" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:36 -msgid "Last speakers" -msgstr "Últimos oradores" - -#: core/static/templates/csv-import.html:33 -msgid "Leave empty for autodetection of the separator." -msgstr "Deje vacío para detección automática de caracter separador." - -#: motions/static/js/motions/workflow.js:70 -msgid "Leave old version active" -msgstr "" - -#: core/static/js/core/site.js:2101 -msgid "Left" -msgstr "" - -#: core/static/js/core/site.js:2091 core/static/js/core/site.js:371 -#: core/static/templates/index.html:227 -#: core/static/templates/legalnotice.html:3 -msgid "Legal notice" -msgstr "Aviso legal" - -#: core/static/templates/legalnotice.html:14 -#: core/static/templates/legalnotice.html:27 -msgid "License" -msgstr "" - -#: motions/static/js/motions/pdf.js:1083 motions/static/js/motions/pdf.js:275 -#: motions/static/templates/motions/motion-amendment-list.html:238 -#: motions/static/templates/motions/motion-amendment-list.html:241 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:28 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:31 -#: motions/static/templates/motions/motion-detail/change-summary.html:28 -#: motions/static/templates/motions/motion-detail/change-summary.html:31 -#: motions/static/templates/motions/motion-detail/toolbar.html:46 -#: motions/static/templates/motions/slide_motion.html:80 -#: motions/static/templates/motions/slide_motion.html:83 -msgid "Line" -msgstr "Línea" - -#: motions/static/js/motions/site.js:3256 -msgid "Line length" -msgstr "Longitud de línea" - -#: motions/static/js/motions/site.js:929 motions/static/js/motions/site.js:942 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:30 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:5 -msgid "Line numbering" -msgstr "Numeración de línea" - -#: users/static/js/users/pdf.js:313 -#: users/static/templates/users/user-list.html:64 -msgid "List of access data" -msgstr "Lista de los datos de acceso" - -#: users/static/js/users/pdf.js:17 users/static/js/users/pdf.js:302 -#: users/static/templates/users/user-list.html:59 -msgid "List of participants" -msgstr "Lista de participantes" - -#: agenda/static/js/agenda/site.js:562 agenda/static/js/agenda/site.js:879 -#: agenda/static/templates/agenda/item-detail.html:21 -#: agenda/static/templates/agenda/item-detail.html:47 -#: agenda/static/templates/agenda/item-list.html:402 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:2 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:5 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:5 -#: assignments/static/templates/assignments/assignment-detail.html:12 -#: core/static/templates/core/projector-controls.html:257 -#: motions/static/templates/motions/motion-block-detail.html:11 -#: motions/static/templates/motions/motion-detail.html:23 -#: topics/static/templates/topics/topic-detail.html:11 -msgid "List of speakers" -msgstr "Lista de oradores" - -#: core/static/js/core/site.js:2119 -msgid "List of speakers overlay" -msgstr "Lista de oradores sobrepuesta" - -#: core/static/templates/core/projector-controls.html:8 -msgid "Live view" -msgstr "Vista en vivo" - -#: core/static/templates/core/login-form.html:20 -#: core/static/templates/index.html:121 -msgid "Login" -msgstr "Login" - -#: core/static/templates/index.html:112 -msgid "Logout" -msgstr "Cerrar sesión" - -#: core/static/templates/core/projector-controls.html:59 -msgid "Manage" -msgstr "Gestionar" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:386 -msgid "Manage fonts" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:348 -msgid "Manage logos" -msgstr "" - -#: core/static/js/core/site.js:356 -#: core/static/templates/core/manage-projectors.html:35 -msgid "Manage projectors" -msgstr "Gestionar proyectores" - -#: core/static/templates/core/projector-controls.html:305 -msgid "Manage the current list of speakers" -msgstr "Administrar la lista de oradores actual" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:69 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:95 -msgid "Mark speaker" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:43 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:62 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:87 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:10 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:19 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:21 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:39 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:20 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:27 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:33 -msgid "Marked" -msgstr "" - -#: motions/static/js/motions/site.js:1360 -msgid "Marked as favorite" -msgstr "" - -#: core/static/js/core/base.js:1393 core/static/js/core/site.js:463 -#: core/static/templates/core/projector-controls.html:224 -msgid "Message" -msgstr "Mensaje" - -#: core/static/js/core/base.js:1394 -#: core/static/templates/core/projector-controls.html:218 -msgid "Messages" -msgstr "Mensajes" - -#: assignments/static/templates/assignments/assignment-detail.html:42 -#: motions/static/js/motions/site.js:1003 -#: motions/static/js/motions/site.js:994 -#: motions/static/templates/motions/motion-detail.html:133 -msgid "Meta information" -msgstr "Información meta" - -#: motions/static/templates/motions/motion-table-filters.html:166 -msgid "Misc" -msgstr "" - -#: motions/static/js/motions/base.js:293 motions/static/js/motions/base.js:328 -#: motions/static/js/motions/base.js:337 motions/static/js/motions/docx.js:92 -#: motions/static/js/motions/pdf.js:1076 motions/static/js/motions/pdf.js:1346 -#: motions/static/js/motions/pdf.js:1392 motions/static/js/motions/pdf.js:536 -#: motions/static/js/motions/pdf.js:70 motions/static/js/motions/pdf.js:732 -#: motions/static/js/motions/site.js:1627 -#: motions/static/js/motions/site.js:2039 -#: motions/static/js/motions/site.js:2052 -#: motions/static/js/motions/site.js:2058 -#: motions/static/js/motions/site.js:267 motions/static/js/motions/site.js:344 -#: motions/static/templates/motions/motion-block-detail.html:51 -#: motions/static/templates/motions/motion-detail.html:116 -#: motions/static/templates/motions/motion-detail.html:120 -#: motions/static/templates/motions/motion-detail.html:271 -#: motions/static/templates/motions/motion-detail.html:92 -#: motions/static/templates/motions/slide_motion.html:74 -msgid "Motion" -msgstr "Moción" - -#: motions/static/js/motions/motion-block.js:156 -#: motions/static/js/motions/motion-block.js:19 -#: motions/static/js/motions/pdf.js:155 motions/static/js/motions/site.js:1427 -#: motions/static/js/motions/site.js:614 motions/static/js/motions/site.js:874 -#: motions/static/templates/motions/motion-block-detail.html:25 -#: motions/static/templates/motions/motion-detail.html:318 -#: motions/static/templates/motions/motion-detail.html:322 -#: motions/static/templates/motions/motion-import.html:29 -#: motions/static/templates/motions/motion-import.html:52 -#: motions/static/templates/motions/motion-table-filters.html:93 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motion block" -msgstr "Bloque de mociones" - -#: motions/static/js/motions/site.js:156 -#: motions/static/templates/motions/motion-block-list.html:13 -#: motions/static/templates/motions/motion-list.html:19 -msgid "Motion blocks" -msgstr "Bloques de mociones" - -#: motions/static/templates/motions/motion-import.html:125 -msgid "Motion blocks created" -msgstr "" - -#: motions/static/js/motions/site.js:3247 -msgid "Motion preamble" -msgstr "Preámbulo de moción" - -#: motions/static/js/motions/base.js:294 motions/static/js/motions/site.js:23 -#: motions/static/js/motions/site.js:3238 motions/static/js/motions/site.js:35 -#: motions/static/js/motions/site.js:53 -#: motions/static/templates/motions/motion-block-list.html:30 -#: motions/static/templates/motions/motion-list.html:35 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motions" -msgstr "Mociones" - -#: motions/static/js/motions/site.js:1034 -msgid "Multiple PDFs in a zip arcive" -msgstr "" - -#: core/static/js/core/site.js:497 -#: core/static/templates/core/manage-projectors.html:62 -#: core/static/templates/core/tag-list.html:34 -#: motions/static/js/motions/site.js:739 -#: motions/static/templates/motions/category-list.html:29 -#: motions/static/templates/motions/motion-block-list.html:29 -#: motions/static/templates/motions/state-edit.html:8 -#: motions/static/templates/motions/workflow-list.html:25 -#: users/static/js/users/pdf.js:65 -msgid "Name" -msgstr "Nombre" - -#: motions/static/js/motions/site.js:3263 -msgid "Name of recommender" -msgstr "Nombre de recomendadero" - -#: motions/static/js/motions/base.js:1639 -msgid "Needs review" -msgstr "Necesita revisión" - -#: agenda/static/templates/agenda/item-list.html:8 -#: assignments/static/templates/assignments/assignment-list.html:6 -#: core/static/js/core/site.js:1288 core/static/js/core/site.js:1301 -#: core/static/js/core/site.js:1302 -#: core/static/templates/core/manage-projectors.html:8 -#: core/static/templates/core/tag-list.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:6 -#: motions/static/templates/motions/category-list.html:10 -#: motions/static/templates/motions/motion-block-list.html:10 -#: motions/static/templates/motions/motion-list.html:6 -#: motions/static/templates/motions/workflow-detail.html:11 -#: motions/static/templates/motions/workflow-list.html:10 -#: users/static/templates/users/group-list.html:11 -#: users/static/templates/users/user-list.html:6 -msgid "New" -msgstr "Nuevo" - -#: motions/static/templates/motions/motion-detail.html:181 -msgid "New amendment" -msgstr "Nueva Modificación" - -#: motions/static/templates/motions/motion-form.html:3 -msgid "New amendment to motion" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:133 -msgid "New ballot" -msgstr "Nueva papeleta" - -#: motions/static/templates/motions/category-form.html:2 -msgid "New category" -msgstr "Nueva categoría" - -#: motions/static/js/motions/site.js:2922 -msgid "New category will be created." -msgstr "Se creará la nueva categoría." - -#: motions/static/templates/motions/change-recommendation-form.html:2 -msgid "New change recommendation" -msgstr "Nueva Recomendación de cambio" - -#: assignments/static/templates/assignments/assignment-form.html:2 -msgid "New election" -msgstr "Nueva elección" - -#: motions/static/templates/motions/motion-form.html:2 -msgid "New motion" -msgstr "Nueva moción" - -#: motions/static/templates/motions/motion-block-form.html:2 -msgid "New motion block" -msgstr "Nuevo bloque de mociones" - -#: motions/static/js/motions/site.js:2935 -msgid "New motion block will be created." -msgstr "" - -#: users/static/templates/users/user-form.html:2 -msgid "New participant" -msgstr "Nuevo participante" - -#: motions/static/js/motions/site.js:2909 -msgid "New participant will be created." -msgstr "Nuevo participante será creado." - -#: users/static/js/users/site.js:519 -#: users/static/templates/users/user-change-password.html:23 -msgid "New password" -msgstr "Nueva contraseña" - -#: core/static/templates/core/tag-form.html:2 -msgid "New tag" -msgstr "Nueva etiqueta" - -#: motions/static/js/motions/pdf.js:377 motions/static/js/motions/site.js:275 -#: motions/static/templates/motions/motion-detail/view-diff.html:42 -#: motions/static/templates/motions/slide_motion.html:107 -msgid "New title" -msgstr "" - -#: topics/static/templates/topics/topic-form.html:2 -msgid "New topic" -msgstr "Tema nuevo" - -#: motions/static/templates/motions/motion-detail.html:542 -#: motions/static/templates/motions/motion-detail.html:572 -msgid "New version on these changes" -msgstr "Nueva versión de estos cambios" - -#: motions/static/templates/motions/motion-detail.html:495 -msgid "New vote" -msgstr "Nueva votación" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:39 -msgid "Next page" -msgstr "Página siguiente" - -#: motions/static/templates/motions/workflow-detail.html:170 -msgid "Next states" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:323 -#: assignments/static/js/assignments/pdf.js:358 -#: assignments/static/js/assignments/site.js:612 -#: assignments/static/js/assignments/site.js:743 -#: assignments/static/js/assignments/site.js:809 -#: assignments/static/templates/assignments/assignment-detail.html:262 -#: assignments/static/templates/assignments/slide_assignment.html:77 -#: motions/static/js/motions/pdf.js:198 motions/static/js/motions/pdf.js:740 -#: motions/static/js/motions/site.js:770 -#: motions/static/templates/motions/motion-detail.html:417 -#: motions/static/templates/motions/slide_motion.html:44 -msgid "No" -msgstr "No" - -#: motions/static/js/motions/docx.js:48 -msgid "No categories available." -msgstr "No hay categorías disponibles." - -#: motions/static/templates/motions/motion-amendment-list.html:140 -#: motions/static/templates/motions/motion-list.html:102 -msgid "No category" -msgstr "Sin categoría" - -#: motions/static/templates/motions/motion-table-filters.html:286 -#: motions/static/templates/motions/motion-table-filters.html:83 -msgid "No category set" -msgstr "Ninguna categoría puesta" - -#: motions/static/templates/motions/motion-detail/change-summary.html:53 -msgid "No change recommendations yet" -msgstr "Aún no hay recomendaciones de cambio" - -#: motions/static/js/motions/pdf.js:1094 motions/static/js/motions/pdf.js:370 -#: motions/static/templates/motions/motion-amendment-list.html:349 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:17 -msgid "No changes at the text." -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:131 -#: motions/static/templates/motions/motion-table-filters.html:312 -msgid "No comments set" -msgstr "" - -#: motions/static/js/motions/base.js:1634 -msgid "No concernment" -msgstr "Ningún interés" - -#: motions/static/js/motions/base.js:1614 -msgid "No decision" -msgstr "Sin decisión" - -#: users/static/js/users/site.js:818 -msgid "No emails were send." -msgstr "" - -#: users/static/js/users/site.js:1868 -msgid "No encryption" -msgstr "Ningún cifrado." - -#: users/static/templates/users/user-list.html:223 -#: users/static/templates/users/user-list.html:300 -msgid "No group set" -msgstr "Ningún grupo puesto" - -#: agenda/static/js/agenda/site.js:198 -msgid "No hidden items" -msgstr "" - -#: agenda/static/js/agenda/site.js:191 -msgid "No internal items" -msgstr "No hay artículos internos" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:107 -msgid "No media file projected." -msgstr "Ningún archivo media proyectado." - -#: motions/static/templates/motions/motion-amendment-list.html:153 -#: motions/static/templates/motions/motion-list.html:115 -msgid "No motion block" -msgstr "Ningún bloque de moción" - -#: motions/static/templates/motions/motion-table-filters.html:107 -#: motions/static/templates/motions/motion-table-filters.html:328 -msgid "No motion block set" -msgstr "Ningún bloque de moción puesto" - -#: motions/static/js/motions/docx.js:54 -msgid "No motions available." -msgstr "No hay mociones disponibles." - -#: agenda/static/js/agenda/site.js:185 -msgid "No public items" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:285 -#: motions/static/templates/motions/motion-amendment-list.html:296 -msgid "No recomendation set" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:59 -msgid "No recommendation set" -msgstr "Ninguna recomendación puesta" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: core/static/templates/core/select-multiple.html:2 -#: core/static/templates/core/select-single.html:2 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "No results available ..." -msgstr "No hay resultados disponibles ..." - -#: core/static/templates/search.html:41 -msgid "No results." -msgstr "No hay resultados." - -#: assignments/static/templates/assignments/assignment-list.html:120 -#: assignments/static/templates/assignments/assignment-list.html:192 -#: motions/static/templates/motions/motion-table-filters.html:155 -#: motions/static/templates/motions/motion-table-filters.html:344 -msgid "No tag set" -msgstr "Ninguna etiqueta puesta" - -#: motions/static/js/motions/site.js:2304 -msgid "No workflows exists. You will not be able to create a motion." -msgstr "" - -#. abbreviation for number -#: users/static/js/users/base.js:82 -#: users/static/templates/users/user-list.html:349 -#: users/static/templates/users/user-list.html:353 -msgid "No." -msgstr "No." - -#. Line numbering: None -#: motions/static/js/motions/site.js:3255 -#: motions/static/js/motions/site.js:931 motions/static/js/motions/site.js:944 -msgid "None" -msgstr "Ninguno" - -#: motions/static/js/motions/site.js:1361 -msgid "Not marked as favorite" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:8 -msgid "Not rejected" -msgstr "No rechazado" - -#: motions/static/templates/motions/motion-detail/change-summary.html:8 -msgid "" -"Note: You have to reject all change recommendations if the plenum does not " -"follow the recommendation. This does not affect amendments." -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-original.html:45 -msgid "Now choose the last line to be changed" -msgstr "Ahora seleccione la última línea que se cambiará" - -#: users/static/js/users/site.js:1280 users/static/js/users/site.js:644 -msgid "Number" -msgstr "Número" - -#: motions/static/js/motions/site.js:3283 -msgid "Number of (minimum) required supporters for a motion" -msgstr "El número (mínimo) de soportadores necesarios para apoyar una moción" - -#: assignments/static/js/assignments/site.js:921 -#: motions/static/js/motions/site.js:3309 -msgid "Number of all delegates" -msgstr "Cantidad de delegados" - -#: assignments/static/js/assignments/site.js:922 -#: motions/static/js/motions/site.js:3310 -msgid "Number of all participants" -msgstr "Cantidad de participantes" - -#: assignments/static/js/assignments/site.js:920 -#: motions/static/js/motions/site.js:3308 -msgid "Number of ballot papers (selection)" -msgstr "Número de papeletas (selección)" - -#: assignments/static/js/assignments/site.js:339 -msgid "Number of candidates" -msgstr "Número de candidatos" - -#: agenda/static/js/agenda/site.js:878 -msgid "Number of last speakers to be shown on the projector" -msgstr "Número de los últimos oradores que se muestran en el proyector" - -#: assignments/static/js/assignments/pdf.js:23 -#: assignments/static/js/assignments/site.js:147 -#: assignments/static/templates/assignments/assignment-detail.html:52 -msgid "Number of persons to be elected" -msgstr "Cantidad de personas que se elegirán" - -#: motions/static/js/motions/site.js:3244 -msgid "Numbered per category" -msgstr "Numerado por categoría." - -#: agenda/static/templates/agenda/item-list.html:88 -#: motions/static/templates/motions/category-sort.html:20 -msgid "Numbering" -msgstr "Numeración" - -#: agenda/static/js/agenda/site.js:868 -msgid "Numbering prefix for agenda items" -msgstr "Prefijo de la numeración de los temas" - -#: agenda/static/js/agenda/site.js:872 -msgid "Numeral system for agenda items" -msgstr "Sistema numérico para los temas" - -#: core/static/js/core/base.js:263 core/static/js/core/base.js:265 -msgid "OK" -msgstr "OK" - -#: core/static/js/core/base.js:811 -msgid "Offline mode: You can use OpenSlides but changes are not saved." -msgstr "" - -#: users/static/js/users/site.js:511 -msgid "Old password" -msgstr " Contraseña antigua" - -#: motions/static/js/motions/site.js:1033 -msgid "One PDF" -msgstr "" - -#: core/static/js/core/site.js:751 -msgid "One anonymous users is also editing this." -msgstr "" - -#: users/static/js/users/site.js:820 -msgid "One email was send sucessfully." -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:287 -msgid "One vote per candidate" -msgstr "Un voto por candidato" - -#: motions/static/templates/motions/motion-import.html:33 -#: topics/static/templates/topics/topic-import.html:57 -#: users/static/templates/users/user-import.html:65 -msgid "Only double quotes are accepted as text delimiter (no single quotes)." -msgstr "Sólo las comillas dobles son aceptados como delimitador de texto (no utilize comillas simples)." - -#: users/static/js/users/site.js:375 -msgid "Only for internal notes." -msgstr "Sólo para notas internas." - -#: agenda/static/templates/agenda/item-list.html:46 -msgid "Only main agenda items" -msgstr "Sólo los temas principales" - -#: agenda/static/templates/agenda/item-list.html:177 -msgid "Open" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:93 -msgid "Open amendment" -msgstr "" - -#: core/static/templates/core/projector-controls.html:147 -msgid "Open countdown in fullscreen" -msgstr "" - -#: assignments/static/templates/assignments/assignment-form.html:13 -msgid "Open election detail view after save." -msgstr "Abrir detalles de la elección después de guardar." - -#: mediafiles/static/js/mediafiles/image-plugin.js:138 -msgid "Open image browser" -msgstr "" - -#: agenda/static/js/agenda/site.js:178 -msgid "Open items" -msgstr "Temas abiertos" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:7 -msgid "Open list of speakers" -msgstr "" - -#: motions/static/templates/motions/motion-form.html:14 -msgid "Open motion detail view after save." -msgstr "Abrir detalles de la moción después de guardar." - -#: users/static/js/users/pdf.js:189 -msgid "OpenSlides access data" -msgstr "Datos de accesso de OpenSlides" - -#: motions/static/js/motions/pdf.js:168 motions/static/js/motions/site.js:627 -#: motions/static/js/motions/site.js:881 -#: motions/static/templates/motions/motion-detail.html:362 -#: motions/static/templates/motions/motion-import.html:28 -#: motions/static/templates/motions/motion-import.html:51 -#: motions/static/templates/motions/motion-list.html:407 -msgid "Origin" -msgstr "Origen" - -#: mediafiles/static/js/mediafiles/image-plugin.js:196 -#: mediafiles/static/js/mediafiles/image-plugin.js:94 -msgid "Original size" -msgstr "" - -#: motions/static/js/motions/site.js:957 motions/static/js/motions/site.js:971 -#: motions/static/templates/motions/motion-detail/toolbar.html:128 -#: motions/static/templates/motions/motion-detail/toolbar.html:83 -msgid "Original version" -msgstr "Versión original" - -#: motions/static/js/motions/site.js:373 -msgid "Other" -msgstr "" - -#. Line numbering: Outside -#: motions/static/js/motions/site.js:3251 -msgid "Outside" -msgstr "Afuera" - -#: assignments/static/templates/assignments/assignment-detail.html:28 -#: motions/static/templates/motions/motion-detail.html:71 -#: motions/static/templates/motions/motion-detail/comments.html:9 -#: motions/static/templates/motions/motion-detail/personal-note.html:9 -#: users/static/js/users/site.js:1853 -msgid "PDF" -msgstr "PDF" - -#: core/static/js/core/site.js:2127 -msgid "PDF ballot paper logo" -msgstr "" - -#: core/static/js/core/site.js:2124 -msgid "PDF footer logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2125 -msgid "PDF footer logo (right)" -msgstr "" - -#: motions/static/js/motions/site.js:1031 -msgid "PDF format" -msgstr "" - -#: core/static/js/core/site.js:2122 -msgid "PDF header logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2123 -msgid "PDF header logo (right)" -msgstr "" - -#: core/static/js/core/pdf.js:1330 -msgid "PDF successfully generated." -msgstr "PDF creado correctamente." - -#: agenda/static/templates/agenda/item-list.html:218 -#: assignments/static/templates/assignments/assignment-list.html:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:153 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:44 -#: motions/static/templates/motions/motion-amendment-list.html:180 -#: motions/static/templates/motions/motion-list.html:146 -#: users/static/templates/users/user-import.html:73 -#: users/static/templates/users/user-list.html:160 -msgid "Page" -msgstr "Página" - -#: core/static/js/core/site.js:2100 -msgid "Page number alignment in PDF" -msgstr "" - -#: motions/static/js/motions/site.js:3279 -msgid "Paragraph-based, Diff-enabled" -msgstr "" - -#: assignments/static/js/assignments/site.js:168 -#: motions/static/js/motions/motion-block.js:91 -#: motions/static/js/motions/site.js:553 topics/static/js/topics/site.js:130 -msgid "Parent item" -msgstr "Elemento padre" - -#: motions/static/js/motions/site.js:2780 -msgid "Parent motion and line number" -msgstr "" - -#: users/static/js/users/site.js:887 -#: users/static/templates/users/user-detail.html:20 -msgid "Participant" -msgstr "Participante" - -#: users/static/js/users/site.js:331 -#: users/static/templates/users/user-detail.html:34 -#: users/static/templates/users/user-import.html:54 -#: users/static/templates/users/user-import.html:87 -msgid "Participant number" -msgstr "Número de participante" - -#: users/static/js/users/base.js:19 users/static/js/users/base.js:20 -#: users/static/js/users/site.js:1850 users/static/js/users/site.js:19 -#: users/static/js/users/site.js:30 users/static/js/users/site.js:48 -#: users/static/templates/users/user-list.html:24 -msgid "Participants" -msgstr "Participantes" - -#: core/static/templates/core/login-form.html:17 -msgid "Password" -msgstr "Contraseña" - -#: users/static/js/users/site.js:1064 -msgid "Password confirmation does not match." -msgstr "La verificación no coincide con la contraseña nueva." - -#: core/static/templates/core/projector-controls.html:170 -msgid "Pause" -msgstr "Pausa" - -#: motions/static/js/motions/base.js:1620 -msgid "Permission" -msgstr "Permiso" - -#: motions/static/templates/motions/workflow-detail.html:42 -#: users/static/templates/users/group-list.html:26 -msgid "Permissions" -msgstr "Permisos" - -#: motions/static/js/motions/base.js:1619 -msgid "Permit" -msgstr "Permitir" - -#: motions/static/templates/motions/motion-detail.html:624 -msgid "Permit and activate" -msgstr "Permitir y activar" - -#: users/static/templates/users/user-detail.html:27 -msgid "Personal data" -msgstr "Datos personales" - -#: motions/static/js/motions/pdf.js:1403 -#: motions/static/templates/motions/motion-detail.html:500 -#: motions/static/templates/motions/motion-detail/personal-note.html:25 -msgid "Personal note" -msgstr "" - -#: motions/static/js/motions/site.js:1366 -msgid "Personal note not set" -msgstr "" - -#: motions/static/js/motions/site.js:1365 -msgid "Personal note set" -msgstr "" - -#: assignments/static/js/assignments/site.js:337 -#: assignments/static/templates/assignments/assignment-detail.html:62 -#: assignments/static/templates/assignments/assignment-list.html:130 -msgid "Phase" -msgstr "Fase" - -#: users/static/templates/users/group-edit.html:12 -msgid "Please enter a name for the new group:" -msgstr "Por favor entregue un nombre para el grupo nuevo:" - -#: core/static/templates/core/manage-projectors.html:5 -msgid "Please enter a name for the new projector" -msgstr "Por favor entregue un nombre para el proyector nuevo" - -#: motions/static/templates/motions/workflow-edit.html:12 -msgid "Please enter a name for the new workflow:" -msgstr "" - -#: users/static/templates/users/group-edit.html:10 -msgid "Please enter a new group name:" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:9 -msgid "Please enter a new workflow name:" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:18 -#: topics/static/templates/topics/topic-import.html:46 -#: users/static/templates/users/user-import.html:46 -msgid "Please note:" -msgstr "Por favor nota:" - -#: core/static/templates/core/manage-projectors.html:72 -msgid "Please select" -msgstr "" - -#: motions/static/js/motions/site.js:3316 -msgid "Preamble text for PDF and DOCX documents (all motions)" -msgstr "Texto inicial para los documentos de PDF y DOCX (todas mociones)" - -#: assignments/static/js/assignments/site.js:933 -msgid "Preamble text for PDF document (all elections)" -msgstr "Texto inicial para el documento PDF (todas las elecciones)" - -#: core/static/js/core/site.js:2117 -msgid "Predefined seconds of new countdowns" -msgstr "Tiempo (en segundos) predeterminada para nuevas cuentas regresivas" - -#: motions/static/js/motions/site.js:732 -#: motions/static/templates/motions/category-list.html:34 -msgid "Prefix" -msgstr "Prefijo" - -#: motions/static/js/motions/site.js:3272 -msgid "Prefix for the identifier for amendments" -msgstr "Prefijo para el identificador de modificaciones" - -#: users/static/templates/users/user-list.html:11 -#: users/static/templates/users/user-presence.html:9 -msgid "Presence" -msgstr "" - -#: users/static/js/users/site.js:591 users/static/js/users/site.js:638 -#: users/static/templates/users/user-list.html:460 -#: users/static/templates/users/user-list.html:466 -msgid "Present" -msgstr "Presente" - -#: core/static/js/core/site.js:2079 -msgid "Presentation and assembly system" -msgstr "Sistema de plenaria y presentación" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:17 -msgid "Presentation control elements" -msgstr "Elementos de control de presentación" - -#: motions/static/templates/motions/motion-import.html:38 -#: topics/static/templates/topics/topic-import.html:62 -#: users/static/templates/users/user-import.html:70 -msgid "Preview" -msgstr "Vista previa" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:34 -msgid "Previous page" -msgstr "Página anterior" - -#: assignments/static/templates/assignments/assignment-detail.html:163 -#: motions/static/templates/motions/motion-detail.html:390 -msgid "Print ballot paper" -msgstr "Imprimir papeletas" - -#: core/static/js/core/site.js:2092 core/static/js/core/site.js:380 -#: core/static/templates/core/login-form.html:28 -#: core/static/templates/index.html:228 -#: core/static/templates/privacypolicy.html:3 -#: core/static/templates/privacypolicydialog.html:1 -msgid "Privacy policy" -msgstr "" - -#: motions/static/js/motions/site.js:3292 -msgid "Private" -msgstr "Privado" - -#: assignments/static/templates/assignments/assignment-detail.html:16 -#: assignments/static/templates/assignments/assignment-detail.html:181 -#: motions/static/templates/motions/motion-detail.html:31 -#: topics/static/templates/topics/topic-detail.html:15 -#: users/static/templates/users/user-detail.html:10 -msgid "Project" -msgstr "Proyectar" - -#: agenda/static/templates/agenda/item-list.html:31 -msgid "Project agenda" -msgstr "Proyectar agenda" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:35 -#: core/static/templates/core/projector-controls.html:287 -msgid "Project as overlay" -msgstr "Proyectar sobre diapositivas" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:29 -#: core/static/templates/core/projector-controls.html:281 -msgid "Project as slide" -msgstr "Proyectar como diapositiva" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:13 -msgid "Project current list of speakers" -msgstr "Proyectar lista de oradores actual" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:10 -#: core/static/templates/core/projector-controls.html:263 -msgid "Project the current list of speakers" -msgstr "Proyectar lista de oradores actual" - -#: core/static/templates/core/manage-projectors.html:69 -msgid "Projection defaults" -msgstr "Predeterminaciones de proyección" - -#: agenda/static/templates/agenda/item-detail.html:14 -#: agenda/static/templates/agenda/item-list.html:27 -#: agenda/static/templates/agenda/item-list.html:345 -#: core/static/js/core/projector.js:401 core/static/js/core/site.js:2108 -#: core/static/templates/index.html:194 core/static/templates/index.html:207 -#: core/static/templates/index.html:244 -#: core/static/templates/projector-button.html:2 -#: core/static/templates/projector-container.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:273 -#: motions/static/templates/motions/motion-detail.html:27 -#: users/static/js/users/site.js:1496 -msgid "Projector" -msgstr "Proyector" - -#: core/static/js/core/site.js:2121 -msgid "Projector header image" -msgstr "" - -#: core/static/js/core/site.js:2109 -msgid "Projector language" -msgstr "Lengua de proyección" - -#: core/static/js/core/site.js:2120 -msgid "Projector logo" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:153 -#: agenda/static/templates/agenda/item-list.html:428 -#: agenda/static/templates/agenda/item-list.html:464 -#: motions/static/js/motions/site.js:3291 -msgid "Public" -msgstr "Público" - -#: agenda/static/js/agenda/site.js:100 -#: agenda/static/templates/agenda/item-list.html:442 -msgid "Public item" -msgstr "" - -#: agenda/static/js/agenda/site.js:184 -#: agenda/static/templates/agenda/item-list.html:281 -msgid "Public items" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:177 -msgid "Publish" -msgstr "Publicar" - -#: assignments/static/js/assignments/site.js:931 -msgid "Put all candidates on the list of speakers" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:215 -msgid "Quorum" -msgstr "Quórum" - -#: assignments/static/templates/assignments/assignment-detail.html:249 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) not reached." -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:246 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:484 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) not " -"reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:481 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) " -"reached." -msgstr "" - -#: motions/static/js/motions/docx.js:96 motions/static/js/motions/pdf.js:393 -#: motions/static/js/motions/site.js:529 motions/static/js/motions/site.js:986 -#: motions/static/templates/motions/motion-detail.html:594 -#: motions/static/templates/motions/motion-import.html:25 -#: motions/static/templates/motions/motion-import.html:48 -#: motions/static/templates/motions/slide_motion.html:151 -#: motions/static/templates/motions/slide_motion.html:166 -msgid "Reason" -msgstr "Razón" - -#: motions/static/js/motions/site.js:860 -#: motions/static/templates/motions/motion-block-detail.html:53 -#: motions/static/templates/motions/motion-table-filters.html:41 -msgid "Recommendation" -msgstr "Recomendación" - -#: motions/static/templates/motions/workflow-detail.html:89 -msgid "Recommendation label" -msgstr "" - -#: motions/static/js/motions/workflow.js:80 -msgid "Red" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:15 -#: motions/static/templates/motions/workflow-detail.html:18 -msgid "Reduce" -msgstr "" - -#: motions/static/js/motions/base.js:1636 -msgid "Refer to committee" -msgstr "Remitir a comité" - -#: core/static/templates/core/manage-projectors.html:16 -msgid "Reference for current list of speakers" -msgstr "Referencia de la lista de oradores actual" - -#: motions/static/js/motions/base.js:1637 -msgid "Referral to committee" -msgstr "Remisión al comité" - -#: motions/static/js/motions/base.js:1610 -#: motions/static/js/motions/base.js:1625 -msgid "Reject" -msgstr "Rechazar" - -#: motions/static/js/motions/base.js:1641 -msgid "Reject (not authorized)" -msgstr "Rechazar (no autorizado)" - -#: motions/static/templates/motions/motion-detail/change-summary.html:11 -msgid "Reject all change recommendations" -msgstr "Rechazar todas recomendaciones de cambio" - -#: motions/static/templates/motions/motion-detail/change-summary.html:20 -#: motions/static/templates/motions/motion-detail/change-summary.html:45 -#: motions/static/templates/motions/motion-detail/view-diff.html:100 -#: motions/static/templates/motions/motion-detail/view-diff.html:16 -#: motions/static/templates/motions/motion-detail/view-diff.html:38 -#: motions/static/templates/motions/motion-detail/view-diff.html:71 -msgid "Rejected" -msgstr "Rechazado" - -#: motions/static/js/motions/base.js:1611 -#: motions/static/js/motions/base.js:1626 -msgid "Rejection" -msgstr "Rechazo" - -#: motions/static/js/motions/base.js:1642 -msgid "Rejection (not authorized)" -msgstr "Rechazo (no autorizado)" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:50 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:73 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:99 -#: core/static/templates/config-form-field.html:123 -#: core/static/templates/config-form-field.html:42 -#: motions/static/templates/motions/motion-submitters.html:23 -msgid "Remove" -msgstr "Retirar" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:19 -msgid "Remove all speakers" -msgstr "Eliminar todos oradores" - -#: motions/static/js/motions/site.js:3285 -msgid "" -"Remove all supporters of a motion if a submitter edits his motion in early " -"state" -msgstr "Elimine todos los partidarios de una moción si un emisor edita su moción tempranamente" - -#: core/static/templates/core/projector-controls.html:137 -msgid "Remove countdown" -msgstr "Eliminar la cuenta regresiva" - -#: motions/static/templates/motions/motion-block-detail.html:62 -msgid "Remove from motion block" -msgstr "Eliminar del bloque de mociones" - -#: users/static/templates/users/user-list.html:115 -#: users/static/templates/users/user-list.html:84 -msgid "Remove group" -msgstr "Eliminar grupo" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:129 -#: assignments/static/templates/assignments/assignment-detail.html:122 -msgid "Remove me" -msgstr "Quitarme" - -#: core/static/templates/core/projector-controls.html:228 -msgid "Remove message" -msgstr "Eliminar mensaje" - -#: motions/static/js/motions/base.js:1495 motions/static/js/motions/pdf.js:280 -#: motions/static/js/motions/site.js:370 -#: motions/static/templates/motions/motion-detail/change-summary.html:18 -#: motions/static/templates/motions/motion-detail/change-summary.html:37 -msgid "Replacement" -msgstr "Reemplazo" - -#: motions/static/templates/motions/motion-import.html:20 -#: topics/static/templates/topics/topic-import.html:48 -#: users/static/templates/users/user-import.html:48 -msgid "" -"Required comma or semicolon separated values with these column header names " -"in the first row" -msgstr "Requiere valores separados por comas o punto y coma con estos nombres de encabezados de columna en la primera fila" - -#: assignments/static/js/assignments/site.js:925 -#: assignments/static/templates/assignments/assignment-detail.html:204 -#: motions/static/js/motions/site.js:3302 -#: motions/static/templates/motions/motion-detail.html:472 -msgid "Required majority" -msgstr "Mayoría necesaria" - -#: motions/static/templates/motions/workflow-detail.html:142 -msgid "Required permission to see" -msgstr "" - -#: core/static/templates/config-form-field.html:147 -msgid "Reset" -msgstr "Restablecer" - -#: core/static/templates/core/projector-controls.html:159 -msgid "Reset countdown" -msgstr "Restablecer la cuenta regresiva" - -#: motions/static/templates/motions/motion-amendment-list.html:311 -#: motions/static/templates/motions/motion-detail.html:246 -#: motions/static/templates/motions/motion-list.html:257 -msgid "Reset recommendation" -msgstr "Restablecer recomendación" - -#: core/static/templates/core/manage-projectors.html:170 -#: core/static/templates/core/projector-controls.html:94 -msgid "Reset scaling" -msgstr "Restablecer escala" - -#: core/static/templates/core/manage-projectors.html:190 -#: core/static/templates/core/projector-controls.html:114 -msgid "Reset scrolling" -msgstr "Restablece el desplazamiento" - -#: motions/static/templates/motions/motion-amendment-list.html:272 -#: motions/static/templates/motions/motion-detail.html:204 -#: motions/static/templates/motions/motion-list.html:231 -msgid "Reset state" -msgstr "Estado de restablecimiento." - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:61 -msgid "Reset zoom" -msgstr "Restablecer zoom" - -#: motions/static/templates/motions/motion-detail/comments.html:42 -#: motions/static/templates/motions/motion-detail/personal-note.html:38 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:20 -#: motions/static/templates/motions/motion-detail/view-original.html:12 -msgid "Revert" -msgstr "Revertir" - -#: core/static/js/core/site.js:2103 -msgid "Right" -msgstr "" - -#: agenda/static/js/agenda/site.js:874 -msgid "Roman" -msgstr "Romano" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:51 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:83 -msgid "Rotate clockwise" -msgstr "Rotar en el sentido de las agujas del reloj" - -#: assignments/static/templates/assignments/assignment-form.html:15 -#: assignments/static/templates/assignments/assignmentpoll-form.html:15 -#: core/static/templates/core/projector-controls.html:193 -#: core/static/templates/core/projector-message-form.html:5 -#: core/static/templates/core/tag-form.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:16 -#: motions/static/templates/motions/category-form.html:10 -#: motions/static/templates/motions/change-recommendation-form.html:10 -#: motions/static/templates/motions/motion-block-form.html:10 -#: motions/static/templates/motions/motion-comment-form.html:9 -#: motions/static/templates/motions/motion-detail/comments.html:39 -#: motions/static/templates/motions/motion-detail/personal-note.html:35 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:17 -#: motions/static/templates/motions/motion-detail/view-original.html:9 -#: motions/static/templates/motions/motion-form.html:16 -#: motions/static/templates/motions/motion-poll-form.html:15 -#: motions/static/templates/motions/state-edit.html:21 -#: motions/static/templates/motions/workflow-edit.html:21 -#: topics/static/templates/topics/topic-form.html:10 -#: users/static/templates/users/group-edit.html:21 -#: users/static/templates/users/profile-password-form.html:9 -#: users/static/templates/users/user-form.html:10 -msgid "Save" -msgstr "Guardar" - -#: mediafiles/static/js/mediafiles/image-plugin.js:197 -#: mediafiles/static/js/mediafiles/image-plugin.js:46 -msgid "Scale" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:107 -msgid "Scaling" -msgstr "" - -#: users/static/js/users/pdf.js:180 -msgid "Scan this QR code to connect to WLAN." -msgstr "Escanee este código QR para conectarse al WLAN." - -#: users/static/js/users/pdf.js:230 -msgid "Scan this QR code to open URL." -msgstr "Escanee este código QR para abrir el URL." - -#: core/static/templates/core/manage-projectors.html:185 -#: core/static/templates/core/projector-controls.html:109 -msgid "Scroll down" -msgstr "Desplazar hacia abajo" - -#: core/static/templates/core/manage-projectors.html:180 -#: core/static/templates/core/projector-controls.html:104 -msgid "Scroll up" -msgstr "Desplazar hacia arriba" - -#: agenda/static/templates/agenda/item-list.html:303 -#: assignments/static/templates/assignments/assignment-list.html:172 -#: core/static/js/core/site.js:400 core/static/templates/index.html:164 -#: core/static/templates/search.html:11 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:230 -#: motions/static/templates/motions/motion-table-filters.html:235 -#: users/static/templates/users/user-list.html:280 -msgid "Search" -msgstr "Buscar" - -#: core/static/templates/search.html:3 -msgid "Search results" -msgstr "Resultados de la búsqueda" - -#: assignments/static/js/assignments/site.js:935 -msgid "Searching for candidates" -msgstr "Buscando candidatos" - -#: agenda/static/templates/agenda/item-list.html:73 -#: assignments/static/templates/assignments/assignment-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:123 -#: motions/static/templates/motions/motion-amendment-list.html:64 -#: motions/static/templates/motions/motion-list.html:47 -#: users/static/templates/users/user-list.html:39 -msgid "Select ..." -msgstr "Seleccione ..." - -#: motions/static/templates/motions/motion-import.html:15 -#: topics/static/templates/topics/topic-import.html:43 -#: users/static/templates/users/user-import.html:43 -msgid "Select a CSV file" -msgstr "Seleccione un archivo CSV" - -#: core/static/templates/csv-import.html:8 -msgid "Select a file" -msgstr "Seleccione un archivo" - -#: assignments/static/js/assignments/site.js:171 -#: motions/static/js/motions/motion-block.js:94 -#: motions/static/js/motions/site.js:556 topics/static/js/topics/site.js:133 -msgid "Select a parent item ..." -msgstr "Seleccione un elemento padre..." - -#: motions/static/js/motions/site.js:603 -msgid "Select or search a category ..." -msgstr "Seleccione o busque una categoría ..." - -#: users/static/js/users/site.js:351 -msgid "Select or search a group ..." -msgstr "Seleccione o busque un grupo ..." - -#: motions/static/js/motions/site.js:617 -msgid "Select or search a motion block ..." -msgstr "Seleccione o busque un bloque de mociones ..." - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: mediafiles/static/js/mediafiles/forms.js:62 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "Select or search a participant ..." -msgstr "Seleccione o busque un participante ..." - -#: motions/static/js/motions/site.js:495 -msgid "Select or search a submitter ..." -msgstr "Seleccione o busque un emisor ..." - -#: motions/static/js/motions/site.js:654 -msgid "Select or search a supporter ..." -msgstr "Seleccione o busque un partidario ..." - -#: assignments/static/js/assignments/site.js:198 -#: motions/static/js/motions/site.js:640 -msgid "Select or search a tag ..." -msgstr "Seleccione o busque una etiqueta ..." - -#: motions/static/js/motions/site.js:669 -msgid "Select or search a workflow ..." -msgstr "Seleccione o busque un flujo de trabajo ..." - -#: motions/static/js/motions/site.js:589 topics/static/js/topics/site.js:118 -msgid "Select or search an attachment ..." -msgstr "Seleccione o busque un archivo adjunto ..." - -#: core/static/templates/core/manage-projectors.html:13 -msgid "Select the projector to which the current list of speakers refers to." -msgstr "Seleccione el proyector al que la lista de oradores se referirá." - -#: users/static/templates/users/user-list.html:142 -#: users/static/templates/users/user-list.html:89 -msgid "Send invitation emails" -msgstr "" - -#: core/static/templates/csv-import.html:27 -msgid "Separator" -msgstr "Separador" - -#: core/static/js/core/site.js:2099 -msgid "Separator used for all csv exports and examples" -msgstr "Separador usado para la exportación de todos archivos CSV y ejemplos" - -#: motions/static/js/motions/docx.js:93 motions/static/js/motions/pdf.js:549 -#: motions/static/js/motions/pdf.js:82 -#: motions/static/templates/motions/motion-detail.html:99 -msgid "Sequential number" -msgstr "Número secuencial" - -#: motions/static/js/motions/site.js:3245 -msgid "Serially numbered" -msgstr "Numerados en serie" - -#: motions/static/templates/motions/motion-list.html:305 -msgid "Set a category" -msgstr "Ponga una categoría" - -#: motions/static/templates/motions/motion-list.html:339 -msgid "Set a motion block" -msgstr "Ponga un bloque de mociones" - -#: motions/static/templates/motions/motion-amendment-list.html:248 -#: motions/static/templates/motions/motion-detail.html:86 -#: motions/static/templates/motions/motion-list.html:210 -msgid "Set as favorite" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:118 -#: motions/static/templates/motions/motion-amendment-list.html:145 -#: motions/static/templates/motions/motion-list.html:107 -#: motions/static/templates/motions/motion-list.html:80 -msgid "Set category" -msgstr "Ponga una categoría" - -#: agenda/static/templates/agenda/item-list.html:502 -#: users/static/templates/users/user-list.html:435 -msgid "Set comment ..." -msgstr "Ponga comentario ..." - -#: agenda/static/templates/agenda/item-list.html:481 -msgid "Set duration ..." -msgstr "Ponga duración ..." - -#: users/static/templates/users/user-import.html:102 -msgid "Set global action" -msgstr "Ponga acción global" - -#: assignments/static/templates/assignments/assignment-detail.html:145 -msgid "Set hint for ballot paper ..." -msgstr "Ponga aviso para las papeletas ..." - -#: motions/static/js/motions/workflow.js:72 -msgid "Set identifier" -msgstr "" - -#: motions/static/js/motions/site.js:3246 -msgid "Set it manually" -msgstr "Defínelo manualmente" - -#: agenda/static/templates/agenda/item-list.html:512 -msgid "Set item number ..." -msgstr "Ponga el número del tema ..." - -#: motions/static/templates/motions/motion-amendment-list.html:119 -#: motions/static/templates/motions/motion-amendment-list.html:158 -#: motions/static/templates/motions/motion-list.html:120 -#: motions/static/templates/motions/motion-list.html:81 -msgid "Set motion block" -msgstr "Ponga bloque de mociones" - -#: agenda/static/templates/agenda/item-list.html:148 -msgid "Set state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:117 -#: motions/static/templates/motions/motion-amendment-list.html:131 -#: motions/static/templates/motions/motion-list.html:79 -#: motions/static/templates/motions/motion-list.html:93 -msgid "Set status" -msgstr "Ponga estatus" - -#: users/static/templates/users/user-list.html:419 -msgid "Set structure level ..." -msgstr "Ponga nivel estructural ..." - -#: agenda/static/templates/agenda/item-list.html:147 -#: agenda/static/templates/agenda/item-list.html:166 -msgid "Set visibility" -msgstr "" - -#: users/static/templates/users/user-list.html:88 -msgid "Set/Unset 'is a committee'" -msgstr "Cambie 'es/no es comité'" - -#: users/static/templates/users/user-list.html:86 -msgid "Set/Unset 'is active'" -msgstr "Cambie 'Está/no está activo'" - -#: users/static/templates/users/user-list.html:87 -msgid "Set/Unset 'is present'" -msgstr "Cambie 'Está/no está presente'" - -#: core/static/js/core/site.js:197 core/static/js/core/site.js:389 -#: core/static/templates/config.html:3 -msgid "Settings" -msgstr "Configuración" - -#: core/static/js/core/site.js:2087 -msgid "Short description of event" -msgstr "Descripción breve del evento" - -#: motions/static/js/motions/site.js:3271 -msgid "Show amendments together with motions" -msgstr "" - -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:6 -msgid "Show entire motion text" -msgstr "" - -#: assignments/static/js/assignments/site.js:183 -#: motions/static/js/motions/site.js:571 users/static/js/users/site.js:382 -msgid "Show extended fields" -msgstr "Mostrar campos extendidos" - -#: motions/static/templates/motions/motion-detail/toolbar.html:59 -msgid "Show highlighted line also on projector." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:642 -msgid "Show history" -msgstr "Mostrar historial" - -#: agenda/static/templates/agenda/item-sort.html:19 -msgid "Show internal items" -msgstr "Mostrar elementos internos" - -#: core/static/js/core/site.js:2105 -msgid "Show logo on projector" -msgstr "Mostrar logotipo en proyector" - -#: agenda/static/js/agenda/site.js:880 -msgid "Show orange countdown in the last x seconds of speaking time" -msgstr "Mostrar en naranja la cuenta regresiva en los últimos x segundos de tiempo de palabra" - -#: users/static/templates/users/user-change-password.html:43 -msgid "Show password" -msgstr "" - -#: motions/static/js/motions/workflow.js:77 -msgid "Show recommendation extension field" -msgstr "" - -#: motions/static/js/motions/workflow.js:75 -msgid "Show state extension field" -msgstr "" - -#: core/static/js/core/site.js:2113 -msgid "Show the clock on projector" -msgstr "" - -#: core/static/js/core/site.js:2098 -msgid "Show this text on the login page" -msgstr "Mostrar este texto en la página de inicio de sesión." - -#: core/static/js/core/site.js:2111 -msgid "Show title and description of event on projector" -msgstr "Mostrar título y descripción del evento en el proyector" - -#: motions/static/js/motions/base.js:1604 -msgid "Simple Workflow" -msgstr "Flujo de trabajo sencillo" - -#: assignments/static/js/assignments/site.js:927 -#: motions/static/js/motions/site.js:3304 -msgid "Simple majority" -msgstr "Mayoría simple" - -#: core/static/templates/core/manage-projectors.html:160 -#: core/static/templates/core/projector-controls.html:84 -msgid "Smaller" -msgstr "Más pequeño" - -#: mediafiles/static/js/mediafiles/upload.js:128 -#: mediafiles/static/js/mediafiles/upload.js:150 -msgid "Some files could not be uploaded" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:148 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:207 -#: motions/static/templates/motions/category-list.html:44 -#: motions/static/templates/motions/motion-table-filters.html:202 -#: users/static/templates/users/user-list.html:257 -msgid "Sort" -msgstr "Ordenar" - -#: agenda/static/templates/agenda/item-list.html:79 -msgid "Sort ..." -msgstr "Ordenar ..." - -#: agenda/static/templates/agenda/item-sort.html:9 -msgid "Sort agenda" -msgstr "Ordenar la agenda" - -#: motions/static/js/motions/site.js:3317 -msgid "Sort categories by" -msgstr "" - -#: users/static/js/users/site.js:1848 -msgid "Sort name of participants by" -msgstr "Ordenar nombre de participantes por" - -#: motions/static/templates/motions/motion-detail.html:146 -#: motions/static/templates/motions/motion-submitters.html:10 -msgid "Sort submitters" -msgstr "" - -#: assignments/static/templates/assignments/assignmentpoll-form.html:8 -#: motions/static/templates/motions/motion-poll-form.html:8 -msgid "Special values" -msgstr "Valores especiales" - -#: users/static/js/users/base.js:173 -msgid "Staff" -msgstr "Personal" - -#: core/static/js/core/site.js:2104 -msgid "Standard font size in PDF" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:92 -#: core/static/templates/core/projector-controls.html:164 -msgid "Start" -msgstr "Inicio" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:46 -#: core/static/templates/core/projector-controls.html:187 -msgid "Start time" -msgstr "Tiempo de inicio" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:100 -msgid "Start/stop video" -msgstr "Iniciar/detener vídeo" - -#: agenda/static/templates/agenda/item-list.html:250 -#: motions/static/js/motions/pdf.js:1115 motions/static/js/motions/pdf.js:114 -#: motions/static/js/motions/pdf.js:575 motions/static/js/motions/site.js:1429 -#: motions/static/js/motions/site.js:856 -#: motions/static/templates/motions/motion-block-detail.html:52 -#: motions/static/templates/motions/motion-detail.html:187 -#: motions/static/templates/motions/motion-detail.html:191 -#: motions/static/templates/motions/motion-table-filters.html:7 -#: motions/static/templates/motions/slide_motion.html:4 -msgid "State" -msgstr "Estado" - -#: motions/static/js/motions/docx.js:95 -msgid "Status" -msgstr "Estatus" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:66 -msgid "Stop" -msgstr "Detener" - -#: motions/static/js/motions/site.js:3261 -msgid "Stop submitting new motions by non-staff users" -msgstr "Dejar de presentar nuevas propuestas por parte de usuarios no relacionados con el personal" - -#: users/static/js/users/pdf.js:69 users/static/js/users/site.js:1282 -#: users/static/js/users/site.js:324 users/static/js/users/site.js:646 -#: users/static/templates/users/user-detail.html:28 -#: users/static/templates/users/user-import.html:53 -#: users/static/templates/users/user-import.html:86 -#: users/static/templates/users/user-list.html:425 -msgid "Structure level" -msgstr "Nivel de estructura" - -#: core/static/js/core/site.js:132 core/static/js/core/site.js:133 -msgid "Submit" -msgstr "Entregar" - -#: motions/static/templates/motions/motion-import.html:26 -#: motions/static/templates/motions/motion-import.html:49 -msgid "Submitter" -msgstr "Entregador" - -#: motions/static/js/motions/docx.js:94 motions/static/js/motions/pdf.js:100 -#: motions/static/js/motions/pdf.js:1110 motions/static/js/motions/pdf.js:563 -#: motions/static/js/motions/site.js:102 -#: motions/static/js/motions/site.js:1423 -#: motions/static/js/motions/site.js:492 motions/static/js/motions/site.js:855 -#: motions/static/templates/motions/motion-detail.html:143 -#: motions/static/templates/motions/motion-detail.html:145 -#: motions/static/templates/motions/slide_motion.html:14 -msgid "Submitters" -msgstr "Entregadores" - -#: motions/static/js/motions/pdf.js:291 -msgid "Summary of change recommendations" -msgstr "Resumen de recomendaciones de cambio" - -#: motions/static/templates/motions/motion-detail/change-summary.html:4 -msgid "Summary of changes" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:164 -msgid "Support motion" -msgstr "Apoyar moción" - -#: motions/static/js/motions/site.js:3282 -#: motions/static/js/motions/site.js:651 -#: motions/static/templates/motions/motion-amendment-list.html:385 -#: motions/static/templates/motions/motion-detail.html:156 -#: motions/static/templates/motions/motion-list.html:419 -msgid "Supporters" -msgstr "Seguidores" - -#: users/static/js/users/site.js:1852 users/static/js/users/site.js:304 -#: users/static/js/users/site.js:636 -#: users/static/templates/users/user-import.html:52 -#: users/static/templates/users/user-import.html:85 -msgid "Surname" -msgstr "Apellido" - -#: users/static/js/users/site.js:1858 -msgid "System URL" -msgstr "URL del sistema" - -#: assignments/static/js/assignments/pdf.js:552 -#: motions/static/js/motions/docx.js:52 motions/static/js/motions/pdf.js:872 -msgid "Table of contents" -msgstr "Tabla de contenidos" - -#: assignments/static/templates/assignments/assignment-list.html:105 -#: motions/static/templates/motions/motion-table-filters.html:141 -msgid "Tag" -msgstr "Etiqueta" - -#: assignments/static/js/assignments/site.js:195 -#: assignments/static/templates/assignments/assignment-detail.html:55 -#: assignments/static/templates/assignments/assignment-list.html:10 -#: core/static/js/core/site.js:410 core/static/templates/core/tag-list.html:13 -#: motions/static/js/motions/site.js:637 -#: motions/static/templates/motions/motion-detail.html:340 -#: motions/static/templates/motions/motion-detail.html:344 -#: motions/static/templates/motions/motion-list.html:27 -msgid "Tags" -msgstr "Etiquetas" - -#: motions/static/js/motions/site.js:518 motions/static/js/motions/site.js:985 -#: motions/static/templates/motions/motion-import.html:24 -#: motions/static/templates/motions/motion-import.html:47 -#: topics/static/js/topics/site.js:103 -#: topics/static/templates/topics/topic-import.html:51 -#: topics/static/templates/topics/topic-import.html:70 -msgid "Text" -msgstr "Texto" - -#: motions/static/js/motions/site.js:392 -msgid "Text from line %from% to %to%" -msgstr "Texto de línea %from% a %to%" - -#: motions/static/js/motions/site.js:391 -msgid "Text in line %from%" -msgstr "Texto en línea %from%" - -#: motions/static/js/motions/site.js:3296 -msgid "The 100 % base of a voting result consists of" -msgstr "La base de 100% de un resultado de votación consiste de" - -#: assignments/static/js/assignments/site.js:910 -msgid "The 100-%-base of an election result consists of" -msgstr "La base de 100% de un resultado electoral consiste de" - -#: motions/static/js/motions/site.js:3248 -msgid "The assembly may decide:" -msgstr "La Asamblea podrá decidir:" - -#: core/static/js/core/site.js:1847 -msgid "The delete was successful." -msgstr "La eliminación fue exitosa." - -#: core/static/templates/privacypolicydialog.html:3 -msgid "The event manager hasn't set up a privacy policy yet." -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:26 -msgid "The list of speakers is empty." -msgstr "La lista de oradores está vacía." - -#: motions/static/js/motions/site.js:3257 -msgid "" -"The maximum number of characters per line. Relevant when line numbering is " -"enabled. Min: 40" -msgstr "La cantidad máxima de caracteres cada línea. Tiene relevancia si está activo numeración e lineas. Mínimo: 40" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:16 -msgid "The modified final version have been changed." -msgstr "" - -#: motions/static/templates/motions/motion-detail/personal-note.html:34 -msgid "The personal note has been changed." -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:364 -msgid "" -"The projector header should have a default size of 1024x70px. Adapt the " -"image width if you change the projector resolution." -msgstr "" - -#: core/static/js/core/base.js:794 -msgid "The server didn't respond." -msgstr "El servidor no respondió." - -#: motions/static/templates/motions/motion-detail/view-original.html:8 -msgid "The text or reason have been changed." -msgstr "" - -#: motions/static/js/motions/site.js:3274 -msgid "The title of the motion is always applied." -msgstr "El título de la moción siempre se aplica." - -#: users/static/js/users/site.js:830 -msgid "" -"The user %user% has no email, so the invitation email could not be send." -msgstr "" - -#: users/static/js/users/site.js:832 -msgid "" -"The users %user% have no email, so the invitation emails could not be send." -msgstr "" - -#: users/static/js/users/site.js:1265 -msgid "There are more than one duplicates of this user!" -msgstr "Hay más que un duplicado de este usuario!" - -#: motions/static/templates/motions/motion-detail/view-diff.html:57 -msgid "This change collides with another one." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:620 -msgid "This is the last active version." -msgstr "Esta es la última versión activa." - -#: agenda/static/js/agenda/site.js:869 -msgid "This prefix will be set if you run the automatic agenda numbering." -msgstr "Este prefijo se establecerá si ejecuta el programa automático de numeración." - -#: motions/static/templates/motions/motion-detail.html:96 -msgid "This version is not permitted." -msgstr "Esta versión no está permitida." - -#: assignments/static/js/assignments/site.js:929 -#: motions/static/js/motions/site.js:3306 -msgid "Three-quarters majority" -msgstr "Mayoría de tres-quartos" - -#: assignments/static/js/assignments/site.js:129 -#: assignments/static/js/assignments/site.js:335 -#: mediafiles/static/js/mediafiles/forms.js:44 -#: mediafiles/static/js/mediafiles/list.js:100 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:24 -#: motions/static/js/motions/motion-block.js:79 -#: motions/static/js/motions/pdf.js:264 motions/static/js/motions/site.js:1421 -#: motions/static/js/motions/site.js:506 -#: motions/static/templates/motions/motion-detail/change-summary.html:17 -#: motions/static/templates/motions/motion-import.html:23 -#: motions/static/templates/motions/motion-import.html:46 -#: topics/static/js/topics/site.js:95 -#: topics/static/templates/topics/topic-import.html:50 -#: topics/static/templates/topics/topic-import.html:69 -#: users/static/js/users/site.js:288 -#: users/static/templates/users/user-import.html:50 -#: users/static/templates/users/user-import.html:83 -msgid "Title" -msgstr "Título" - -#: motions/static/js/motions/site.js:3315 -msgid "Title for PDF and DOCX documents (all motions)" -msgstr "Título de documentos PDF y DOCX (todas las mociones)" - -#: assignments/static/js/assignments/site.js:932 -msgid "Title for PDF document (all elections)" -msgstr "Título de documento PDF (todas las elecciones)" - -#: users/static/js/users/site.js:1855 -msgid "Title for access data and welcome PDF" -msgstr "Título para PDF de datos de acceso y de bienvenida" - -#: topics/static/templates/topics/topic-import.html:56 -msgid "Title is required. All other fields are optional and may be empty." -msgstr "El título es obligatorio. Todos los demás campos son opcionales y pueden estar vacíos." - -#: motions/static/js/motions/site.js:360 -msgid "To Line" -msgstr "Hacia línea" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:76 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:93 -msgid "Toggle fullscreen" -msgstr "Pasar modo de pantalla" - -#: topics/static/js/topics/base.js:16 topics/static/js/topics/site.js:161 -#: topics/static/templates/topics/topic-detail.html:25 -msgid "Topic" -msgstr "Tema" - -#: topics/static/js/topics/site.js:17 -msgid "Topics" -msgstr "Temas" - -#: motions/static/js/motions/site.js:539 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:25 -#: motions/static/templates/motions/motion-detail/view-original.html:17 -msgid "Trivial change" -msgstr "Cambio trivial" - -#: assignments/static/js/assignments/site.js:928 -#: motions/static/js/motions/site.js:3305 -msgid "Two-thirds majority" -msgstr "Mayoría de dos tercios" - -#: mediafiles/static/js/mediafiles/list.js:102 -msgid "Type" -msgstr "Típo" - -#: motions/static/templates/motions/motion-detail.html:169 -msgid "Unsupport motion" -msgstr "Desapoye moción" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:87 -msgid "Upload" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:1 -msgid "Upload files" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:33 -msgid "Upload status" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:106 -msgid "Upload time" -msgstr "Tiempo de carga" - -#: mediafiles/static/js/mediafiles/forms.js:59 -#: mediafiles/static/js/mediafiles/list.js:108 -msgid "Uploaded by" -msgstr "Subido por" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:30 -msgid "Uploader" -msgstr "" - -#: assignments/static/js/assignments/site.js:923 -#: motions/static/js/motions/site.js:3311 -msgid "Use the following custom number" -msgstr "Utilizar el número siguiente" - -#: users/static/js/users/site.js:1876 -msgid "" -"Use these placeholders: {name}, {event_name}, {url}, {username}, {password}." -" The url referrs to the system url." -msgstr "" - -#: users/static/js/users/site.js:1859 -msgid "Used for QRCode in PDF of access data." -msgstr "Utilizado para QRCode en PDF de los datos de acceso." - -#: users/static/js/users/site.js:1861 users/static/js/users/site.js:1863 -#: users/static/js/users/site.js:1865 -msgid "Used for WLAN QRCode in PDF of access data." -msgstr "Utilizado para WLAN QRCode en PDF de los datos de acceso." - -#: core/static/templates/core/login-form.html:12 -#: users/static/js/users/pdf.js:193 users/static/js/users/site.js:1283 -#: users/static/js/users/site.js:340 users/static/js/users/site.js:463 -#: users/static/templates/users/user-change-password.html:41 -#: users/static/templates/users/user-detail.html:46 -msgid "Username" -msgstr "Nombre de usuario" - -#: motions/static/templates/motions/motion-import.html:123 -msgid "Users created" -msgstr "Usuarios creados" - -#: users/static/templates/users/group-list.html:35 -msgid "Users without any assigned group gain the permissions from this group." -msgstr "Usuarios sin grupo asignado tendrán las permisiones de este grupo" - -#: assignments/static/js/assignments/site.js:826 -#: assignments/static/templates/assignments/assignment-detail.html:268 -#: assignments/static/templates/assignments/slide_assignment.html:82 -msgid "Valid ballots" -msgstr "Papeletas válidas" - -#: motions/static/js/motions/pdf.js:209 motions/static/js/motions/site.js:790 -#: motions/static/templates/motions/motion-detail.html:441 -msgid "Valid votes" -msgstr "Votos válidos" - -#: motions/static/templates/motions/motion-detail.html:613 -#: motions/static/templates/motions/motion-detail.html:616 -msgid "Version" -msgstr "Versión" - -#: motions/static/templates/motions/motion-detail.html:609 -msgid "Version history" -msgstr "Historial de versiones" - -#: motions/static/js/motions/workflow.js:68 -msgid "Versioning" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:274 -msgid "Visibility" -msgstr "" - -#. ballot of a motion -#: motions/static/js/motions/pdf.js:186 -#: motions/static/templates/motions/motion-detail.html:372 -#: motions/static/templates/motions/motion-poll-form.html:1 -#: motions/static/templates/motions/slide_motion.html:24 -msgid "Vote" -msgstr "Votar" - -#: assignments/static/js/assignments/pdf.js:154 -#: assignments/static/templates/assignments/assignment-detail.html:214 -#: assignments/static/templates/assignments/slide_assignment.html:37 -msgid "Votes" -msgstr "Votos" - -#: motions/static/js/motions/pdf.js:223 motions/static/js/motions/site.js:808 -#: motions/static/templates/motions/motion-detail.html:459 -msgid "Votes cast" -msgstr "Votos " - -#: assignments/static/js/assignments/site.js:936 -msgid "Voting" -msgstr "Votación" - -#: motions/static/js/motions/site.js:3295 -msgid "Voting and ballot papers" -msgstr "Votación y papeletas de votación" - -#: motions/static/js/motions/pdf.js:231 motions/static/js/motions/site.js:887 -#: motions/static/templates/motions/motion-detail.html:367 -#: motions/static/templates/motions/slide_motion.html:20 -msgid "Voting result" -msgstr "Resultados de Votación" - -#: users/static/js/users/site.js:1866 -msgid "WEP" -msgstr "WEP" - -#: users/static/js/users/pdf.js:137 -msgid "WLAN access data" -msgstr "Datos de acceso WLAN" - -#: users/static/js/users/pdf.js:157 users/static/js/users/site.js:1864 -msgid "WLAN encryption" -msgstr "Codificación de WLAN" - -#: users/static/js/users/pdf.js:141 users/static/js/users/site.js:1860 -msgid "WLAN name (SSID)" -msgstr "Nombre (SSID) de WLAN" - -#: users/static/js/users/pdf.js:149 users/static/js/users/site.js:1862 -msgid "WLAN password" -msgstr "Contraseña de WLAN" - -#: users/static/js/users/site.js:1867 -msgid "WPA/WPA2" -msgstr "WPA/WPA2" - -#: assignments/static/templates/assignments/slide_assignment.html:29 -msgid "Waiting for results ..." -msgstr "Esperando resultados ..." - -#: core/static/js/core/site.js:747 -msgid "Warning" -msgstr "" - -#: core/static/js/core/site.js:2126 -msgid "Web interface header logo" -msgstr "" - -#: core/static/js/core/site.js:2094 users/static/js/users/site.js:1854 -msgid "Welcome to OpenSlides" -msgstr "Bienvenido a OpenSlides" - -#: motions/static/js/motions/site.js:3265 -msgid "" -"Will be displayed as label before selected recommendation. Use an empty " -"value to disable the recommendation system." -msgstr "Se mostrará como etiqueta antes de la recomendación seleccionada. Use un valor en blanco si desea desactivar el sistema de recomendaciones." - -#: motions/static/js/motions/base.js:1628 -msgid "Withdraw" -msgstr "Retirar" - -#: motions/static/js/motions/site.js:665 -msgid "Workflow" -msgstr "Flujo de trabajo" - -#: motions/static/js/motions/site.js:3242 -msgid "Workflow of new motions" -msgstr "Flujo de trabajo para mociones nuevas" - -#: motions/static/js/motions/site.js:199 -#: motions/static/templates/motions/motion-list.html:23 -#: motions/static/templates/motions/workflow-list.html:13 -msgid "Workflows" -msgstr "" - -#: motions/static/js/motions/workflow.js:82 -msgid "Yellow" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:317 -#: assignments/static/js/assignments/site.js:611 -#: assignments/static/js/assignments/site.js:729 -#: motions/static/js/motions/pdf.js:193 motions/static/js/motions/pdf.js:739 -#: motions/static/js/motions/site.js:760 -#: motions/static/templates/motions/motion-detail.html:405 -#: motions/static/templates/motions/slide_motion.html:32 -msgid "Yes" -msgstr "Sí" - -#: motions/static/js/motions/site.js:3298 -msgid "Yes/No" -msgstr "Sí/No" - -#: assignments/static/js/assignments/site.js:916 -#: assignments/static/templates/assignments/assignment-detail.html:289 -msgid "Yes/No per candidate" -msgstr "Sí/No por candidato" - -#: motions/static/js/motions/site.js:3297 -msgid "Yes/No/Abstain" -msgstr "Sí/No/Abstenerse" - -#: assignments/static/js/assignments/site.js:915 -#: assignments/static/templates/assignments/assignment-detail.html:288 -msgid "Yes/No/Abstain per candidate" -msgstr "Sí/No/Abstenerse por candidato" - -#: users/static/templates/users/group-list.html:69 -msgid "You are not allowed to lock yourself out of the configuration!" -msgstr "¡No se permite que se deje fuera de la configuración!" - -#: core/static/js/core/site.js:2106 -msgid "" -"You can replace the logo by uploading an image and set it as the \"Projector" -" logo\" in \"files\"." -msgstr "" - -#: users/static/js/users/site.js:1873 -msgid "You can use {event_name} as a placeholder." -msgstr "" - -#: users/static/js/users/site.js:1736 -msgid "You have to enable cookies to use OpenSlides." -msgstr "Tiene que permitir cookies para utilizar OpenSlides." - -#: users/static/templates/users/user-change-password.html:17 -msgid "You override the personally set password of" -msgstr "Está reemplazando la contraseña personal de" - -#: users/static/js/users/site.js:1872 -msgid "Your login for {event_name}" -msgstr "" - -#: motions/static/js/motions/pdf.js:1376 -msgid "ZIP successfully generated." -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:66 -msgid "Zoom in" -msgstr "Acercar" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:57 -msgid "Zoom out" -msgstr "Alejar" - -#: agenda/static/js/agenda/site.js:883 -msgid "[Begin speech] starts the countdown, [End speech] stops the countdown." -msgstr "[Iniciar discurso] comienza la cuenta regresiva, [Terminar discurso] detiene la cuenta regresiva." - -#: users/static/js/users/site.js:1856 -msgid "[Place for your welcome and help text.]" -msgstr "[espacio para su texto de bienvenida.]" - -#: core/static/js/core/site.js:2096 -msgid "[Space for your welcome text.]" -msgstr "[espacio para su texto de bienvenida.]" - -#: motions/static/js/motions/base.js:1606 -#: motions/static/js/motions/base.js:1621 -msgid "accepted" -msgstr "aceptado" - -#: motions/static/js/motions/base.js:1629 -msgid "adjourned" -msgstr "pospuesto" - -#: topics/static/js/topics/csv.js:26 -msgid "agenda-example" -msgstr "" - -#: users/static/js/users/site.js:1284 -msgid "already exists." -msgstr "ya existe." - -#: motions/static/templates/motions/motion-amendment-list.html:175 -#: motions/static/templates/motions/motion-list.html:438 -msgid "amendments" -msgstr "" - -#: users/static/js/users/site.js:852 -msgid "and" -msgstr "" - -#: core/static/js/core/site.js:753 -msgid "anonymous users are also editing this." -msgstr "" - -#: core/static/js/core/site.js:770 -msgid "are also editing this." -msgstr "" - -#: motions/static/js/motions/pdf.js:1392 -msgid "ballot-paper" -msgstr "papeleta" - -#: motions/static/templates/motions/motion-amendment-list.html:320 -#: motions/static/templates/motions/motion-list.html:267 -msgid "by" -msgstr "de" - -#: core/static/js/core/site.js:46 -msgid "clear" -msgstr "despejar" - -#: core/static/js/core/site.js:58 -msgid "close" -msgstr "cerrar" - -#: users/static/js/users/site.js:1178 -msgid "create duplicate" -msgstr "crear duplicado" - -#: core/static/js/core/site.js:50 -msgid "date" -msgstr "fecha" - -#: motions/static/templates/motions/motion-table-filters.html:25 -#: motions/static/templates/motions/motion-table-filters.html:263 -msgid "done" -msgstr "hecho" - -#: users/static/templates/users/user-import.html:97 -msgid "duplicate" -msgstr "duplicado" - -#: users/static/templates/users/user-import.html:210 -#: users/static/templates/users/user-import.html:98 -msgid "duplicates" -msgstr "duplicados" - -#: assignments/static/templates/assignments/assignment-list.html:66 -msgid "elections" -msgstr "elecciones" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:144 -msgid "files" -msgstr "Archivos" - -#: motions/static/templates/motions/motion-detail/toolbar.html:53 -msgid "go" -msgstr "ir" - -#. 'h' means time in hours -#: agenda/static/templates/agenda/item-list.html:484 -#: agenda/static/templates/agenda/item-list.html:492 -msgid "h" -msgstr "h" - -#: topics/static/templates/topics/topic-import.html:27 -msgid "imported" -msgstr "importado" - -#: motions/static/js/motions/site.js:932 motions/static/js/motions/site.js:945 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:17 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:43 -msgid "inline" -msgstr "en línea" - -#: motions/static/js/motions/docx.js:168 motions/static/js/motions/pdf.js:1421 -#: motions/static/js/motions/pdf.js:425 -#: motions/static/templates/motions/motion-detail/comments.html:25 -msgid "internal" -msgstr "interno" - -#: core/static/js/core/site.js:768 -msgid "is also editing this." -msgstr "" - -#: assignments/static/js/assignments/pdf.js:223 -#: assignments/static/templates/assignments/assignment-detail.html:224 -#: assignments/static/templates/assignments/assignment-detail.html:95 -#: assignments/static/templates/assignments/slide_assignment.html:23 -#: assignments/static/templates/assignments/slide_assignment.html:44 -msgid "is elected" -msgstr "es elegido" - -#: assignments/static/templates/assignments/assignment-detail.html:227 -msgid "is not elected" -msgstr "no es elegido" - -#: users/static/js/users/site.js:1106 -msgid "is now" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:124 -msgid "is set" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:193 -msgid "items" -msgstr "temas" - -#: users/static/js/users/site.js:1176 -msgid "keep original" -msgstr "quedarse con el original" - -#: assignments/static/js/assignments/base.js:280 -#: assignments/static/js/assignments/base.js:50 -#: assignments/static/templates/assignments/assignmentpoll-form.html:9 -#: motions/static/js/motions/base.js:157 -#: motions/static/templates/motions/motion-poll-form.html:9 -msgid "majority" -msgstr "mayoría" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:45 -msgid "minutes" -msgstr "minutos" - -#: motions/static/js/motions/csv.js:42 motions/static/js/motions/docx.js:188 -#: motions/static/js/motions/pdf.js:1325 motions/static/js/motions/pdf.js:1338 -#: motions/static/templates/motions/motion-block-detail.html:44 -#: motions/static/templates/motions/motion-list.html:137 -msgid "motions" -msgstr "mociones" - -#: motions/static/templates/motions/motion-import.html:122 -msgid "motions were successfully imported." -msgstr "mociones se han importado correctamente." - -#: motions/static/templates/motions/motion-import.html:115 -msgid "motions will be imported." -msgstr "mociones serán importadas." - -#: motions/static/templates/motions/motion-import.html:110 -msgid "motions will be not imported." -msgstr "mociones no serán importadas." - -#: motions/static/js/motions/csv.js:126 -msgid "motions-example" -msgstr "" - -#: motions/static/js/motions/site.js:3321 -msgid "needed" -msgstr "necesario" - -#: motions/static/js/motions/base.js:1638 -msgid "needs review" -msgstr "necesita revisión" - -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:11 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:37 -msgid "none" -msgstr "ninguno" - -#: motions/static/js/motions/base.js:1632 -msgid "not concerned" -msgstr "no afectado" - -#: motions/static/js/motions/base.js:1612 -msgid "not decided" -msgstr "no decidido" - -#: core/static/js/core/site.js:38 -msgid "now" -msgstr "ahora" - -#: agenda/static/js/agenda/site.js:563 agenda/static/js/agenda/site.js:836 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:47 -msgid "of" -msgstr "de" - -#: motions/static/js/motions/site.js:933 motions/static/js/motions/site.js:946 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:23 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:49 -msgid "outside" -msgstr "afuera" - -#: users/static/js/users/site.js:1177 -msgid "override new" -msgstr "anular nuevo" - -#: users/static/js/users/csv.js:44 -#: users/static/templates/users/user-list.html:150 -msgid "participants" -msgstr "participantes" - -#: users/static/templates/users/user-import.html:225 -msgid "participants were successfully imported." -msgstr "participantes se han importado correctamente." - -#: users/static/templates/users/user-import.html:215 -msgid "participants will be imported." -msgstr "participantes serán importados." - -#: users/static/templates/users/user-import.html:205 -msgid "participants will be not imported." -msgstr "participantes no serán importados." - -#: users/static/js/users/csv.js:68 -msgid "participants-example" -msgstr "" - -#: motions/static/js/motions/base.js:1618 -msgid "permitted" -msgstr "permitido" - -#: motions/static/js/motions/site.js:2057 -msgid "personal note" -msgstr "" - -#: motions/static/js/motions/base.js:1617 -msgid "published" -msgstr "publicado" - -#: motions/static/js/motions/base.js:1635 -msgid "refered to committee" -msgstr "remitido al comité" - -#: motions/static/js/motions/base.js:1609 -#: motions/static/js/motions/base.js:1624 -msgid "rejected" -msgstr "rechazado" - -#: motions/static/js/motions/base.js:1640 -msgid "rejected (not authorized)" -msgstr "rechazado (no autorizado)" - -#: core/static/templates/search.html:28 -msgid "results" -msgstr "resultados" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:11 -msgid "select files" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:194 -#: assignments/static/templates/assignments/assignment-list.html:67 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:176 -#: motions/static/templates/motions/motion-list.html:138 -#: users/static/templates/users/user-list.html:151 -msgid "selected" -msgstr "seleccionado" - -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:8 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:9 -#: motions/static/templates/motions/motion-list.html:430 -msgid "speakers" -msgstr "Oradores" - -#: motions/static/js/motions/base.js:1605 -msgid "submitted" -msgstr "presentado" - -#: core/static/js/core/site.js:54 -msgid "time" -msgstr "tiempo" - -#: core/static/js/core/site.js:42 -msgid "today" -msgstr "hoy" - -#: topics/static/templates/topics/topic-import.html:116 -msgid "topics were successfully imported." -msgstr "temas han sido importados correctamente." - -#: topics/static/templates/topics/topic-import.html:109 -msgid "topics will be imported." -msgstr "temas serán importados." - -#: topics/static/templates/topics/topic-import.html:104 -msgid "topics will be not imported." -msgstr "temas no serán importados." - -#: mediafiles/static/js/mediafiles/resources.js:141 -msgid "undefined" -msgstr "" - -#: assignments/static/js/assignments/base.js:283 -#: assignments/static/js/assignments/base.js:53 -#: assignments/static/templates/assignments/assignmentpoll-form.html:10 -#: motions/static/js/motions/base.js:160 -#: motions/static/templates/motions/motion-poll-form.html:10 -msgid "undocumented" -msgstr "indocumentado" - -#: motions/static/templates/motions/motion-table-filters.html:269 -#: motions/static/templates/motions/motion-table-filters.html:31 -msgid "undone" -msgstr "" - -#: motions/static/js/motions/base.js:1627 -msgid "withdrawed" -msgstr "retirado" diff --git a/openslides/locale/angular-gettext/fr.po b/openslides/locale/angular-gettext/fr.po deleted file mode 100644 index 75a3bc4de..000000000 --- a/openslides/locale/angular-gettext/fr.po +++ /dev/null @@ -1,4409 +0,0 @@ -# -# Translators: -# Emanuel Schütze , 2016 -# Moira Brülisauer , 2015-2018 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"PO-Revision-Date: 2018-08-30 12:47+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: French (http://www.transifex.com/openslides/openslides/language/fr/)\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: motions/static/templates/motions/motion-detail.html:47 -msgctxt "resolution" -msgid "Final version" -msgstr "Version finale" - -#: core/static/templates/csv-import.html:16 -msgctxt "special filetypes in a file open dialog" -msgid "Accepted file types" -msgstr "Types de fichiers acceptés" - -#: motions/static/js/motions/base.js:1483 -msgid "%TYPE% from line %FROM% to %TO%" -msgstr "%TYPE% de la ligne %FROM% à %TO%" - -#: motions/static/js/motions/base.js:1485 -msgid "%TYPE% in line %FROM%" -msgstr "%TYPE% dans la ligne %FROM%" - -#: users/static/js/users/site.js:822 -msgid "%num% emails were send sucessfully." -msgstr "%num% des courriels ont été envoyés avec succès." - -#: agenda/static/templates/agenda/item-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:115 -#: motions/static/templates/motions/motion-list.html:77 -#: users/static/templates/users/user-list.html:81 -msgid "--- Select action ---" -msgstr "--- Sélectionnez l'action ---" - -#: motions/static/templates/motions/motion-amendment-list.html:135 -#: motions/static/templates/motions/motion-list.html:97 -msgid "--- Select category ---" -msgstr "--- Séléctionnez une catégorie ---" - -#: users/static/templates/users/user-list.html:102 -msgid "--- Select group ---" -msgstr "--- Choisir le groupe ---" - -#: motions/static/templates/motions/motion-amendment-list.html:149 -#: motions/static/templates/motions/motion-list.html:111 -msgid "--- Select motion block ---" -msgstr "--- Sélectionnez un bloc de motions ---" - -#: assignments/static/templates/assignments/assignment-list.html:45 -msgid "--- Select phase ---" -msgstr "--- Choisir la phase ---" - -#: motions/static/templates/motions/motion-amendment-list.html:123 -#: motions/static/templates/motions/motion-list.html:85 -msgid "--- Select state ---" -msgstr "--- Choisir le statut ---" - -#: agenda/static/templates/agenda/item-list.html:152 -msgid "--- Select visibility ---" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:70 -msgid "--- Set phase ---" -msgstr "--- Définir la phase ---" - -#: core/static/js/core/site.js:2081 -msgid "" -"OpenSlides is a free web based " -"presentation and assembly system for visualizing and controlling agenda, " -"motions and elections of an assembly." -msgstr "OpenSlides est un system de présentation et d'assemblée libre, basé sur le Web. OpenSlides est un système de visualisation et de contrôle de l'ordre du jour, des motions et des élections d'une assemblée." - -#: motions/static/js/motions/base.js:239 -msgid "" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:38 -msgid "A comment has been changed." -msgstr "Un commentaire a été modifié." - -#: core/static/js/core/base.js:798 -msgid "A server error occurred (%%code%%). Please check the system logs." -msgstr "Une erreur de serveur s'est produite (%%code%%). Veuillez vérifier les logs du système." - -#: users/static/js/users/site.js:426 users/static/js/users/site.js:478 -#: users/static/templates/users/user-detail.html:40 -msgid "About me" -msgstr "A propos de moi" - -#: assignments/static/js/assignments/pdf.js:332 -#: assignments/static/js/assignments/site.js:613 -#: assignments/static/js/assignments/site.js:758 -#: assignments/static/js/assignments/site.js:799 -#: assignments/static/templates/assignments/assignment-detail.html:256 -#: assignments/static/templates/assignments/slide_assignment.html:72 -#: motions/static/js/motions/pdf.js:203 motions/static/js/motions/pdf.js:741 -#: motions/static/js/motions/site.js:780 -#: motions/static/templates/motions/motion-detail.html:429 -#: motions/static/templates/motions/slide_motion.html:56 -msgid "Abstain" -msgstr "Abstention" - -#: motions/static/js/motions/base.js:1607 -#: motions/static/js/motions/base.js:1622 -msgid "Accept" -msgstr "Accepter" - -#: motions/static/js/motions/base.js:1608 -#: motions/static/js/motions/base.js:1623 -msgid "Acceptance" -msgstr "Acceptation" - -#: motions/static/templates/motions/motion-detail/change-summary.html:46 -msgid "Accepted" -msgstr "" - -#: motions/static/templates/motions/state-edit.html:14 -#: motions/static/templates/motions/workflow-detail.html:70 -msgid "Action word" -msgstr "" - -#: motions/static/js/motions/site.js:3270 -msgid "Activate amendments" -msgstr "Activer amendements" - -#: users/static/js/users/site.js:598 users/static/js/users/site.js:640 -msgid "Active" -msgstr "Actif" - -#: assignments/static/templates/assignments/assignment-list.html:285 -#: motions/static/templates/motions/motion-list.html:373 -msgid "Add a tag" -msgstr "Ajouter un tag" - -#: core/static/templates/core/projector-controls.html:208 -msgid "Add countdown" -msgstr "Ajouter un compte à rebours " - -#: users/static/templates/users/user-list.html:109 -#: users/static/templates/users/user-list.html:83 -msgid "Add group" -msgstr "Ajouter un groupe" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:125 -#: assignments/static/templates/assignments/assignment-detail.html:118 -msgid "Add me" -msgstr "Ajouter moi-même" - -#: core/static/templates/core/projector-controls.html:248 -msgid "Add message" -msgstr "Ajouter un message" - -#: core/static/templates/config-form-field.html:50 -msgid "Add new comment field" -msgstr "Ajouter un nouveau champ de commentaires" - -#: core/static/templates/core/projector-controls.html:209 -msgid "Add new countdown" -msgstr "Ajouter un nouveau compte à rebours " - -#: core/static/templates/config-form-field.html:131 -msgid "Add new custom translation" -msgstr "Ajouter une nouvelle traduction personnalisée" - -#: core/static/templates/core/projector-controls.html:249 -msgid "Add new message" -msgstr "Ajouter un nouveau message" - -#: motions/static/templates/motions/motion-import.html:32 -msgid "" -"Additional columns after the required ones may be present and won't affect " -"the import." -msgstr "Des colonnes supplémentaires après les colonnes requises peuvent être présentes et n'affecteront pas l'importation." - -#: motions/static/js/motions/base.js:1630 -msgid "Adjourn" -msgstr "Ajourner" - -#: motions/static/js/motions/base.js:1631 -msgid "Adjournment" -msgstr "Ajournement" - -#: users/static/templates/users/user-detail.html:45 -msgid "Administrative data" -msgstr "Données administratives" - -#: agenda/static/js/agenda/base.js:41 agenda/static/js/agenda/csv.js:35 -#: agenda/static/js/agenda/docx.js:56 agenda/static/js/agenda/docx.js:64 -#: agenda/static/js/agenda/pdf.js:15 agenda/static/js/agenda/pdf.js:81 -#: agenda/static/js/agenda/site.js:20 agenda/static/js/agenda/site.js:32 -#: agenda/static/js/agenda/site.js:50 agenda/static/js/agenda/site.js:870 -#: agenda/static/templates/agenda/item-detail.html:6 -#: agenda/static/templates/agenda/item-list.html:35 -#: agenda/static/templates/agenda/item-list.html:61 -#: agenda/static/templates/agenda/slide-item-list.html:2 -msgid "Agenda" -msgstr "Ordre du jour" - -#: agenda/static/js/agenda/site.js:885 agenda/static/js/agenda/site.js:98 -msgid "Agenda visibility" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:247 -msgid "All Filters" -msgstr "Tous les filtres" - -#: assignments/static/js/assignments/site.js:918 -#: motions/static/js/motions/site.js:3300 -msgid "All casted ballots" -msgstr "Tous les bulletins de vote déposés" - -#: motions/static/templates/motions/motion-amendment-list.html:28 -#: motions/static/templates/motions/motion-amendment-list.html:35 -msgid "All motions" -msgstr "" - -#: assignments/static/js/assignments/site.js:917 -#: motions/static/js/motions/site.js:3299 -msgid "All valid ballots" -msgstr "Tous les bulletins de vote valides" - -#: users/static/templates/users/group-list.html:19 -msgid "" -"All your changes are saved immediately. Changes you make are only effective " -"once you (or the users concerned) reload the page." -msgstr "Toutes vos modifications sont enregistrées immédiatement. Les modifications que vous effectuez ne sont efficaces qu'une fois que vous (ou les utilisateurs concernés) avez rechargé la page." - -#: core/static/js/core/site.js:2097 -msgid "Allow access for anonymous guest users" -msgstr "Autoriser l'accès pour les utilisateurs anonymes" - -#: motions/static/js/motions/workflow.js:64 -msgid "Allow create poll" -msgstr "" - -#: motions/static/js/motions/workflow.js:66 -msgid "Allow submitter edit" -msgstr "" - -#: motions/static/js/motions/workflow.js:62 -msgid "Allow support" -msgstr "" - -#: motions/static/js/motions/site.js:3262 -msgid "Allow to disable versioning" -msgstr "Permettre de désactiver le versionnage" - -#: assignments/static/js/assignments/site.js:906 -msgid "Always Yes-No-Abstain per candidate" -msgstr "Toujours Oui-Non-Abstention par candidat" - -#: assignments/static/js/assignments/site.js:907 -msgid "Always Yes/No per candidate" -msgstr "Toujours Oui/Non par candidat" - -#: assignments/static/js/assignments/site.js:905 -msgid "Always one option per candidate" -msgstr "Toujours une option par candidat" - -#: motions/static/js/motions/site.js:3322 -msgid "Amendment" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:96 -msgid "Amendment list PDF" -msgstr "" - -#: motions/static/js/motions/site.js:2282 -#: motions/static/js/motions/site.js:3275 -#: motions/static/templates/motions/motion-detail.html:104 -msgid "Amendment to" -msgstr "" - -#: motions/static/js/motions/pdf.js:544 motions/static/js/motions/pdf.js:77 -#: motions/static/js/motions/site.js:2285 -msgid "Amendment to motion" -msgstr "" - -#: motions/static/js/motions/site.js:2824 -#: motions/static/js/motions/site.js:3269 -#: motions/static/js/motions/site.js:915 -#: motions/static/templates/motions/motion-amendment-list.html:18 -#: motions/static/templates/motions/motion-detail.html:17 -#: motions/static/templates/motions/motion-detail.html:175 -#: motions/static/templates/motions/motion-list.html:11 -msgid "Amendments" -msgstr "Amendements" - -#: motions/static/js/motions/site.js:2821 -msgid "Amendments to" -msgstr "" - -#: motions/static/js/motions/pdf.js:1136 -msgid "Amendments to motion" -msgstr "" - -#: motions/static/js/motions/site.js:3273 -msgid "Apply text for new amendments" -msgstr "Appliquer le texte pour les nouvelles modifications" - -#: agenda/static/js/agenda/site.js:873 -msgid "Arabic" -msgstr "Arabe" - -#: core/static/templates/index.html:79 -msgid "Are you sure to delete the chat history?" -msgstr "Voulez-vous vraiment supprimer l'historique du Chat?" - -#: agenda/static/templates/agenda/item-list.html:181 -msgid "Are you sure you want to delete all selected agenda items?" -msgstr "Voulez-vous vraiment supprimer tous les éléments de l'agenda sélectionnés?" - -#: motions/static/templates/motions/motion-amendment-list.html:162 -msgid "Are you sure you want to delete all selected amendments?" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:54 -msgid "Are you sure you want to delete all selected elections?" -msgstr "Voulez-vous vraiment supprimer toutes les élections sélectionnées?" - -#: motions/static/templates/motions/motion-list.html:124 -msgid "Are you sure you want to delete all selected motions?" -msgstr "Voulez-vous vraiment supprimer tous les motions sélectionnés?" - -#: users/static/templates/users/user-list.html:93 -msgid "Are you sure you want to delete all selected users?" -msgstr "Voulez-vous vraiment supprimer tous les utilisateurs sélectionnés?" - -#: assignments/static/templates/assignments/assignment-detail.html:151 -msgid "Are you sure you want to delete this ballot?" -msgstr "Êtes-vous sûr que vous voulez supprimer cette votation?" - -#: motions/static/templates/motions/motion-detail/view-diff.html:25 -#: motions/static/templates/motions/motion-detail/view-diff.html:79 -#: motions/static/templates/motions/motion-detail/view-original.html:34 -msgid "Are you sure you want to delete this change recommendation?" -msgstr "Voulez-vous vraiment supprimer cette recommandation de modification?" - -#: agenda/static/templates/agenda/item-list.html:406 -#: assignments/static/templates/assignments/assignment-list.html:267 -#: core/static/templates/core/manage-projectors.html:52 -#: core/static/templates/core/tag-list.html:46 -#: motions/static/templates/motions/category-list.html:49 -#: motions/static/templates/motions/motion-amendment-list.html:338 -#: motions/static/templates/motions/motion-block-list.html:45 -#: motions/static/templates/motions/motion-list.html:287 -#: motions/static/templates/motions/workflow-detail.html:58 -#: motions/static/templates/motions/workflow-list.html:38 -#: users/static/templates/users/group-list.html:45 -#: users/static/templates/users/user-list.html:364 -msgid "Are you sure you want to delete this entry?" -msgstr "Êtes-vous sûr que vous voulez supprimer cette entrée?" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:320 -msgid "Are you sure you want to delete this file?" -msgstr "Êtes-vous sûr que vous voulez supprimer ce fichier?" - -#: motions/static/templates/motions/motion-detail.html:382 -msgid "Are you sure you want to delete this poll?" -msgstr "Êtes-vous sûr que vous voulez supprimer ce sondage?" - -#: motions/static/templates/motions/motion-detail.html:630 -msgid "Are you sure you want to delete this version?" -msgstr "Êtes-vous sûr que vous voulez supprimer cette version?" - -#: agenda/static/templates/agenda/item-list.html:85 -msgid "Are you sure you want to number all agenda items?" -msgstr "" - -#: motions/static/templates/motions/motion-block-detail.html:31 -msgid "" -"Are you sure you want to override the state of all motions of this motion " -"block?" -msgstr "Voulez-vous vraiment ignorer l'état de toutes les motions de ce bloc de motions?" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:16 -msgid "Are you sure you want to remove all speakers from this list?" -msgstr "Voulez-vous vraiment supprimer tous les orateurs de cette liste?" - -#: motions/static/templates/motions/motion-block-detail.html:63 -msgid "Are you sure you want to remove this motion from motion block?" -msgstr "Voulez-vous vraiment supprimer ce motions du bloc de motions?" - -#: core/static/templates/core/manage-projectors.html:87 -msgid "Aspect ratio" -msgstr "Rapport d'aspect" - -#: users/static/templates/users/user-import.html:63 -msgid "" -"At least given name or surname have to be filled in. All\n" -" other fields are optional and may be empty." -msgstr "Au moins le prénom ou le nom doivent être remplir. \nTous les autres champs sont facultatifs et peuvent être vides." - -#: motions/static/templates/motions/motion-detail.html:551 -msgid "" -"At least two amendments or change recommendations affecting the same line are to be integrated.\n" -" This leads to undeterministic results.\n" -" Please resolve this conflict by not accepting multiple changes affecting the same line." -msgstr "" - -#: motions/static/js/motions/site.js:586 topics/static/js/topics/site.js:115 -msgid "Attachment" -msgstr "pièce jointe" - -#: motions/static/templates/motions/motion-detail.html:601 -#: topics/static/templates/topics/topic-detail.html:31 -msgid "Attachments" -msgstr "Pièces jointes" - -#: core/static/templates/csv-import.html:30 -msgid "Autodetection" -msgstr "Autodétection" - -#: assignments/static/js/assignments/site.js:904 -msgid "Automatic assign of method" -msgstr "Assignation automatique de la méthode." - -#: motions/static/templates/motions/motion-submitters.html:6 -msgid "Back" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:130 -#: topics/static/templates/topics/topic-import.html:35 -msgid "Back to agenda" -msgstr "Retourner vers l'agenda" - -#: motions/static/templates/motions/category-sort.html:6 -msgid "Back to categories" -msgstr "Rétour vers les catégories" - -#: motions/static/templates/motions/motion-amendment-list.html:8 -#: motions/static/templates/motions/motion-import.html:139 -msgid "Back to motions overview" -msgstr "Retour au sommaire des motions" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:6 -#: agenda/static/templates/agenda/item-sort.html:6 -#: assignments/static/templates/assignments/assignment-detail.html:6 -#: core/static/templates/core/tag-list.html:6 -#: motions/static/templates/motions/category-list.html:6 -#: motions/static/templates/motions/motion-block-detail.html:6 -#: motions/static/templates/motions/motion-block-list.html:6 -#: motions/static/templates/motions/motion-detail.html:12 -#: motions/static/templates/motions/motion-detail.html:7 -#: motions/static/templates/motions/motion-import.html:6 -#: motions/static/templates/motions/workflow-detail.html:6 -#: motions/static/templates/motions/workflow-list.html:6 -#: topics/static/templates/topics/topic-detail.html:6 -#: topics/static/templates/topics/topic-import.html:6 -#: users/static/templates/users/group-list.html:6 -#: users/static/templates/users/user-change-password.html:6 -#: users/static/templates/users/user-detail.html:6 -#: users/static/templates/users/user-import.html:6 -#: users/static/templates/users/user-presence.html:6 -msgid "Back to overview" -msgstr "Retour au sommaire" - -#: users/static/templates/users/user-import.html:244 -#: users/static/templates/users/user-import.html:35 -msgid "Back to users overview" -msgstr "Retour à l'aperçu des utilisateurs" - -#: core/static/js/core/site.js:2114 -msgid "Background color of projector header and footer" -msgstr "La couleur de fond d'en-tête du projecteur et pied de page" - -#: assignments/static/js/assignments/pdf.js:142 -#: assignments/static/js/assignments/pdf.js:306 -#: assignments/static/js/assignments/pdf.js:654 -#: assignments/static/templates/assignments/assignment-detail.html:139 -#: assignments/static/templates/assignments/assignmentpoll-form.html:1 -msgid "Ballot" -msgstr "Votation" - -#: assignments/static/js/assignments/site.js:909 -msgid "Ballot and ballot papers" -msgstr "Vote et les bulletins de vote" - -#: agenda/static/js/agenda/site.js:875 -msgid "Begin of event" -msgstr "Début de l'événement" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:91 -msgid "Begin speech" -msgstr "Commencer discours" - -#: core/static/templates/core/manage-projectors.html:165 -#: core/static/templates/core/projector-controls.html:89 -msgid "Bigger" -msgstr "Plus grand" - -#: core/static/templates/core/manage-projectors.html:212 -#: core/static/templates/core/projector-controls.html:54 -msgid "Blank" -msgstr "Vide" - -#: motions/static/js/motions/workflow.js:84 -msgid "Blue" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:206 -msgid "Broadcast" -msgstr "Emission" - -#: core/static/templates/core/manage-projectors.html:203 -msgid "Broadcast the content of this projector to all other projectors." -msgstr "Transmettez le contenu de ce projecteur à tous les autres projecteurs." - -#: mediafiles/static/js/mediafiles/image-plugin.js:154 -#: mediafiles/static/js/mediafiles/image-plugin.js:161 -#: mediafiles/static/js/mediafiles/image-plugin.js:199 -msgid "Browse for images" -msgstr "Rechercher des images" - -#: core/static/templates/csv-import.html:2 -msgid "CSV file" -msgstr "Fichier CSV" - -#: users/static/js/users/site.js:1836 -msgid "Can create motions" -msgstr "Peut créer des motions" - -#: users/static/js/users/site.js:1811 -msgid "Can manage agenda" -msgstr "Peut gérer l'ordre du jour" - -#: users/static/js/users/site.js:1840 -msgid "Can manage comments" -msgstr "Peut gérer les commentaires" - -#: users/static/js/users/site.js:1825 -msgid "Can manage configuration" -msgstr "Peut gérer la configuration" - -#: users/static/js/users/site.js:1819 -msgid "Can manage elections" -msgstr "Peut gérer les élections" - -#: users/static/js/users/site.js:1832 -msgid "Can manage files" -msgstr "Peut gérer les fichiers" - -#: users/static/js/users/site.js:1812 -msgid "Can manage list of speakers" -msgstr "Peut gérer la liste des orateurs" - -#: users/static/js/users/site.js:1828 -msgid "Can manage logos and fonts" -msgstr "Peut gérer les logos et les polices de caractères" - -#: users/static/js/users/site.js:1838 -msgid "Can manage motions" -msgstr "Peut gérer les motions" - -#: users/static/js/users/site.js:1824 -msgid "Can manage tags" -msgstr "Peut gérer les balises" - -#: users/static/js/users/site.js:1827 -msgid "Can manage the chat" -msgstr "Peut gérer le chat" - -#: users/static/js/users/site.js:1822 -msgid "Can manage the projector" -msgstr "Peut gérer le projecteur" - -#: users/static/js/users/site.js:1844 -msgid "Can manage users" -msgstr "Peut gérer les utilisateur" - -#: users/static/js/users/site.js:1817 -msgid "Can nominate another participant" -msgstr "Peut nonimer un autre participant" - -#: users/static/js/users/site.js:1818 -msgid "Can nominate oneself" -msgstr "Peut se nommer soi même" - -#: core/static/js/core/projector.js:154 -msgid "Can not open the projector." -msgstr "Ne peut pas voir le projecteur" - -#: users/static/js/users/site.js:1814 -msgid "Can put oneself on the list of speakers" -msgstr "Peut se mettre soi-même sur la liste des orateurs" - -#: users/static/js/users/site.js:1810 -msgid "Can see agenda" -msgstr "Peut voir l'ordre du jour" - -#: users/static/js/users/site.js:1839 -msgid "Can see comments" -msgstr "Peut voir les commentaires" - -#: users/static/js/users/site.js:1816 -msgid "Can see elections" -msgstr "Peut voir les élections" - -#: users/static/js/users/site.js:1843 -msgid "Can see extra data of users (e.g. present and comment)" -msgstr "Peut voir les données supplémentaires des utilisateurs (par exemple présent et commentaire)" - -#: users/static/js/users/site.js:1833 -msgid "Can see hidden files" -msgstr "Peut voir des fichiers cachés" - -#: users/static/js/users/site.js:1813 -msgid "Can see internal items and time scheduling of agenda" -msgstr "" - -#: users/static/js/users/site.js:1835 -msgid "Can see motions" -msgstr "Peut voir les motions" - -#: users/static/js/users/site.js:1842 -msgid "Can see names of users" -msgstr "Peut voir le nom des utilisateurs" - -#: users/static/js/users/site.js:1823 -msgid "Can see the front page" -msgstr "Peut voir la page d'acceuil" - -#: users/static/js/users/site.js:1830 -msgid "Can see the list of files" -msgstr "Peut voir la liste des fichiers" - -#: users/static/js/users/site.js:1821 -msgid "Can see the projector" -msgstr "Peut voir le projecteur" - -#: users/static/js/users/site.js:1837 -msgid "Can support motions" -msgstr "Peut soutenir les motions" - -#: users/static/js/users/site.js:1831 -msgid "Can upload files" -msgstr "Peut transferer des fichiers" - -#: users/static/js/users/site.js:1826 -msgid "Can use the chat" -msgstr "Peut utiliser le chat " - -#: assignments/static/templates/assignments/assignment-form.html:18 -#: assignments/static/templates/assignments/assignmentpoll-form.html:18 -#: core/static/js/core/base.js:264 core/static/js/core/site.js:128 -#: core/static/js/core/site.js:129 -#: core/static/templates/core/projector-controls.html:198 -#: core/static/templates/core/projector-message-form.html:8 -#: core/static/templates/core/tag-form.html:13 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:19 -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:24 -#: motions/static/templates/motions/category-form.html:13 -#: motions/static/templates/motions/change-recommendation-form.html:13 -#: motions/static/templates/motions/motion-block-form.html:13 -#: motions/static/templates/motions/motion-comment-form.html:12 -#: motions/static/templates/motions/motion-export-form.html:10 -#: motions/static/templates/motions/motion-form.html:19 -#: motions/static/templates/motions/motion-poll-form.html:18 -#: motions/static/templates/motions/state-edit.html:24 -#: motions/static/templates/motions/workflow-edit.html:24 -#: topics/static/templates/topics/topic-form.html:13 -#: users/static/templates/users/group-edit.html:24 -#: users/static/templates/users/profile-password-form.html:12 -#: users/static/templates/users/user-change-password.html:51 -#: users/static/templates/users/user-form.html:13 -msgid "Cancel" -msgstr "Annuler" - -#: assignments/static/js/assignments/pdf.js:150 -#: assignments/static/js/assignments/pdf.js:68 -#: assignments/static/templates/assignments/assignment-detail.html:192 -#: assignments/static/templates/assignments/assignment-detail.html:213 -#: assignments/static/templates/assignments/assignment-detail.html:86 -#: assignments/static/templates/assignments/assignment-list.html:322 -#: assignments/static/templates/assignments/slide_assignment.html:19 -#: assignments/static/templates/assignments/slide_assignment.html:36 -msgid "Candidates" -msgstr "Candidats" - -#: users/static/js/users/site.js:1119 -msgid "Cannot find the participant with the participant number" -msgstr "Impossible de trouver le participant avec le numéro de participant." - -#: core/static/js/core/pdf.js:100 -msgid "Cannot load image" -msgstr "" - -#: assignments/static/js/assignments/site.js:846 -#: assignments/static/templates/assignments/assignment-detail.html:280 -#: assignments/static/templates/assignments/slide_assignment.html:94 -msgid "Casted ballots" -msgstr "Bulletins de vote déposés" - -#: motions/static/js/motions/docx.js:46 motions/static/js/motions/site.js:136 -#: motions/static/templates/motions/category-list.html:13 -#: motions/static/templates/motions/motion-list.html:15 -msgid "Categories" -msgstr "Catégories" - -#: motions/static/templates/motions/motion-import.html:124 -msgid "Categories created" -msgstr "Catégories créées" - -#: motions/static/js/motions/pdf.js:142 motions/static/js/motions/pdf.js:602 -#: motions/static/js/motions/site.js:1425 -#: motions/static/js/motions/site.js:600 motions/static/js/motions/site.js:867 -#: motions/static/templates/motions/category-sort.html:9 -#: motions/static/templates/motions/motion-detail.html:296 -#: motions/static/templates/motions/motion-detail.html:300 -#: motions/static/templates/motions/motion-import.html:27 -#: motions/static/templates/motions/motion-import.html:50 -#: motions/static/templates/motions/motion-table-filters.html:69 -msgid "Category" -msgstr "Catégorie" - -#: core/static/js/core/site.js:2102 -msgid "Center" -msgstr "Centre" - -#: agenda/static/templates/agenda/item-list.html:513 -msgid "Change item number ..." -msgstr "Changer le numéro d'article ..." - -#: core/static/templates/index.html:106 -#: users/static/templates/users/user-change-password.html:48 -#: users/static/templates/users/user-list.html:362 -msgid "Change password" -msgstr "Changer le mot de passe" - -#: users/static/templates/users/user-change-password.html:9 -msgid "Change password for {{ user.get_short_name() }}" -msgstr "Changer le mot de passe de {{ user.get_short_name() }}" - -#: users/static/templates/users/user-presence.html:26 -msgid "Change presence" -msgstr "Changer la présence" - -#: motions/static/templates/motions/motion-detail/change-summary.html:34 -msgid "Change recommendation" -msgstr "" - -#: motions/static/js/motions/site.js:955 motions/static/js/motions/site.js:969 -#: motions/static/templates/motions/motion-detail/toolbar.html:121 -#: motions/static/templates/motions/motion-detail/toolbar.html:76 -msgid "Change recommendations" -msgstr "Modifier les recommandations" - -#: agenda/static/templates/agenda/item-list.html:424 -msgid "Change visibility" -msgstr "" - -#: motions/static/js/motions/site.js:958 motions/static/js/motions/site.js:972 -#: motions/static/templates/motions/motion-detail/toolbar.html:133 -#: motions/static/templates/motions/motion-detail/toolbar.html:91 -msgid "Changed version" -msgstr "Changer la version" - -#: core/static/templates/index.html:50 -msgid "Chat" -msgstr "Chat" - -#: motions/static/js/motions/site.js:3284 -msgid "Choose 0 to disable the supporting system." -msgstr "Choisissez 0 pour desactiver le système de soutien." - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:1 -msgid "Choose the paragraph to amend!" -msgstr "" - -#: core/static/js/core/site.js:130 core/static/js/core/site.js:131 -msgid "Clear" -msgstr "Effacer" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:90 -msgid "Clear list" -msgstr "Effacer la liste" - -#: motions/static/templates/motions/motion-import.html:129 -#: topics/static/templates/topics/topic-import.html:120 -#: users/static/templates/users/user-import.html:231 -msgid "Clear preview" -msgstr "Effacer aperçu" - -#: core/static/templates/privacypolicydialog.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:93 -msgid "Close" -msgstr "Fermer" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:11 -msgid "Close list of speakers" -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:53 -#: agenda/static/templates/agenda/item-detail.html:48 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:10 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:11 -msgid "Closed" -msgstr "Fermé" - -#: agenda/static/js/agenda/site.js:176 agenda/static/js/agenda/site.js:177 -msgid "Closed items" -msgstr "Elements terminés" - -#: agenda/static/templates/agenda/item-list.html:208 -msgid "Collapse all" -msgstr "Réduire tout" - -#: core/static/js/core/site.js:2118 -msgid "Color for blanked projector" -msgstr "Couleur pour le projecteur blanchi" - -#: motions/static/templates/motions/motion-table-filters.html:117 -#: topics/static/templates/topics/topic-import.html:53 -#: topics/static/templates/topics/topic-import.html:72 -#: users/static/js/users/site.js:374 users/static/js/users/site.js:648 -#: users/static/templates/users/user-detail.html:48 -#: users/static/templates/users/user-import.html:56 -#: users/static/templates/users/user-import.html:89 -#: users/static/templates/users/user-list.html:441 -msgid "Comment" -msgstr "Commentaire" - -#: motions/static/js/motions/site.js:3290 -msgid "Comment fields for motions" -msgstr "Champs de commentaires pour les motions" - -#: motions/static/js/motions/docx.js:97 motions/static/js/motions/site.js:1014 -#: motions/static/js/motions/site.js:2051 -#: motions/static/js/motions/site.js:3289 -msgid "Comments" -msgstr "Commentaires" - -#: users/static/js/users/site.js:605 users/static/js/users/site.js:642 -msgid "Committee" -msgstr "Comité" - -#: users/static/js/users/base.js:174 -msgid "Committees" -msgstr "Comités" - -#: motions/static/js/motions/base.js:1616 -msgid "Complex Workflow" -msgstr "Flux de travail complexe" - -#: users/static/js/users/site.js:527 -msgid "Confirm new password" -msgstr "Confirmer le nouveau mot de passe" - -#: motions/static/js/motions/site.js:983 -msgid "Content" -msgstr "Contenu" - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:21 -msgid "Continue" -msgstr "" - -#: core/static/templates/core/login-form.html:23 -msgid "Continue as guest" -msgstr "Continuer en tant qu'invité" - -#: users/static/templates/users/user-import.html:19 -msgid "" -"Copy and paste your participant names in this textbox.\n" -" Keep each person in a single line." -msgstr "Copier et coller vos noms des participants dans ce textbox.\nGardez chaque personne sur une seule ligne." - -#: topics/static/templates/topics/topic-import.html:15 -msgid "" -"Copy and paste your topic titles in this textbox. Keep each item in a single" -" line." -msgstr "Copiez et collez vos titres de rubrique dans cette zone de texte. Gardez chaque élément dans une seule ligne." - -#: core/static/js/core/base.js:1444 core/static/js/core/site.js:422 -msgid "Countdown" -msgstr " Compte à rebours " - -#: core/static/js/core/base.js:1445 -#: core/static/templates/core/projector-controls.html:127 -msgid "Countdowns" -msgstr " Comptes à rebours " - -#: agenda/static/js/agenda/site.js:882 -msgid "Couple countdown with the list of speakers" -msgstr "Couple compte à rebours avec la liste des orateurs" - -#: motions/static/templates/motions/motion-detail.html:563 -msgid "Create final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:378 -msgid "Create modified amendment" -msgstr "" - -#: users/static/templates/users/group-edit.html:2 -msgid "Create new group" -msgstr "Créer un nouveau groupe" - -#: motions/static/templates/motions/state-edit.html:2 -msgid "Create new state" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:2 -msgid "Create new workflow" -msgstr "" - -#: motions/static/js/motions/site.js:1431 -msgid "Creation date" -msgstr "Date de création" - -#: core/static/js/core/site.js:2110 -msgid "Current browser language" -msgstr "Langue actuelle du navigateur internet" - -#: agenda/static/js/agenda/site.js:74 agenda/static/js/agenda/site.js:835 -#: agenda/static/js/agenda/site.js:838 -#: agenda/static/templates/agenda/current-list-of-speakers.html:17 -#: agenda/static/templates/agenda/current-list-of-speakers.html:51 -#: agenda/static/templates/agenda/item-list.html:23 -#: core/static/templates/core/projector-controls.html:269 -msgid "Current list of speakers" -msgstr "La liste actuelle des orateurs" - -#: assignments/static/js/assignments/site.js:924 -#: motions/static/js/motions/site.js:3312 -msgid "Custom number of ballot papers" -msgstr "Nombre personnalisé de bulletins de vote" - -#: core/static/js/core/site.js:2128 -msgid "Custom translations" -msgstr " Traductions personnalisées" - -#: users/static/js/users/site.js:1875 -msgid "" -"Dear {name},\n" -"\n" -"this is your OpenSlides login for the event {event_name}:\n" -"\n" -" {url}\n" -" username: {username}\n" -" password: {password}\n" -"\n" -"This email was generated automatically." -msgstr "Cher {name},\n\nc'est votre login OpenSlides pour l'événement {event_name} :\n\n{url}\nnom d'utilisateur : {username}.\nmot de passe : {password}.\n\nCe courriel a été généré automatiquement." - -#: agenda/static/templates/agenda/current-list-of-speakers.html:44 -#: agenda/static/templates/agenda/item-detail.html:35 -#: agenda/static/templates/agenda/item-list.html:372 -#: agenda/static/templates/agenda/item-list.html:55 -#: core/static/templates/core/projector-controls.html:296 -#: core/static/templates/projector-button.html:23 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:292 -#: motions/static/templates/motions/motion-detail.html:56 -#: users/static/js/users/base.js:171 -msgid "Default" -msgstr "Par défaut" - -#: assignments/static/js/assignments/site.js:157 -msgid "Default comment on the ballot paper" -msgstr "Commentaire par défaut sur le bulletin de vote" - -#: motions/static/js/motions/site.js:3249 -msgid "Default line numbering" -msgstr "Numérotation par ligne par défaut" - -#: assignments/static/js/assignments/site.js:926 -msgid "" -"Default method to check whether a candidate has reached the required " -"majority." -msgstr "Méthode par défaut pour vérifier si un candidat a atteint la majorité requise." - -#: motions/static/js/motions/site.js:3303 -msgid "" -"Default method to check whether a motion has reached the required majority." -msgstr "Méthode par défaut pour vérifier si une motion a atteint la majorité requise." - -#: core/static/js/core/site.js:2131 -msgid "Default projector" -msgstr "Projecteur par défaut" - -#: motions/static/js/motions/site.js:3264 -msgid "Default text version for change recommendations" -msgstr "Version de texte par défaut pour les recommandations de modification" - -#: agenda/static/js/agenda/site.js:886 -msgid "Default visibility for new agenda items (except topics)" -msgstr "" - -#: users/static/js/users/base.js:172 -msgid "Delegates" -msgstr "Délégués" - -#: agenda/static/templates/agenda/item-list.html:146 -#: agenda/static/templates/agenda/item-list.html:405 -#: assignments/static/templates/assignments/assignment-detail.html:154 -#: assignments/static/templates/assignments/assignment-list.html:266 -#: core/static/templates/core/tag-list.html:45 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:319 -#: motions/static/templates/motions/category-list.html:48 -#: motions/static/templates/motions/motion-amendment-list.html:116 -#: motions/static/templates/motions/motion-amendment-list.html:337 -#: motions/static/templates/motions/motion-block-list.html:44 -#: motions/static/templates/motions/motion-detail.html:384 -#: motions/static/templates/motions/motion-detail.html:633 -#: motions/static/templates/motions/motion-detail/view-diff.html:27 -#: motions/static/templates/motions/motion-detail/view-diff.html:81 -#: motions/static/templates/motions/motion-detail/view-original.html:36 -#: motions/static/templates/motions/motion-list.html:286 -#: motions/static/templates/motions/motion-list.html:78 -#: motions/static/templates/motions/workflow-list.html:37 -#: users/static/templates/users/user-list.html:363 -#: users/static/templates/users/user-list.html:82 -msgid "Delete" -msgstr "Supprimer" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:8 -msgid "Delete final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:166 -msgid "Delete selected amendments" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:58 -msgid "Delete selected elections" -msgstr "Supprimer les élections sélectionnés" - -#: agenda/static/templates/agenda/item-list.html:185 -msgid "Delete selected items" -msgstr "Supprimer les éléments sélectionnés" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:136 -msgid "Delete selected mediafiles" -msgstr "Supprimer les fichiers multimedias sélectionnés" - -#: motions/static/templates/motions/motion-list.html:128 -msgid "Delete selected motions" -msgstr "Supprimer les motions sélectionnés" - -#: users/static/templates/users/user-list.html:97 -msgid "Delete selected participants" -msgstr "Supprimer les participants sélectionnés" - -#: motions/static/js/motions/base.js:1492 motions/static/js/motions/pdf.js:284 -#: motions/static/js/motions/site.js:372 -#: motions/static/templates/motions/motion-detail/change-summary.html:39 -msgid "Deletion" -msgstr "Suppression" - -#: assignments/static/js/assignments/pdf.js:45 -#: assignments/static/js/assignments/site.js:137 -#: assignments/static/templates/assignments/assignment-detail.html:81 -#: core/static/templates/core/projector-controls.html:183 -#: motions/static/js/motions/site.js:381 -msgid "Description" -msgstr "Description" - -#: core/static/templates/csv-import.html:11 -msgid "Deselect file" -msgstr "Sélectionnez le fichier" - -#: users/static/js/users/site.js:394 -msgid "Designates whether this user is in the room or not." -msgstr "Indique si cet utilisateur est dans la salle ou non." - -#: users/static/js/users/site.js:416 -msgid "Designates whether this user should be treated as a committee." -msgstr "Indique si cet utilisateur doit être considéré comme un membre de comité." - -#: users/static/js/users/site.js:404 -msgid "" -"Designates whether this user should be treated as active. Unselect this " -"instead of deleting the account." -msgstr "Indique si cet utilisateur doit être traitée comme actif. Désélectionner cette option au lieu de suprimer le compte d'ulisateur." - -#: users/static/js/users/site.js:613 -msgid "Didn't get an email" -msgstr "Je n'ai pas reçu de courriel." - -#: motions/static/js/motions/site.js:959 motions/static/js/motions/site.js:973 -#: motions/static/templates/motions/motion-detail/toolbar.html:138 -#: motions/static/templates/motions/motion-detail/toolbar.html:97 -msgid "Diff version" -msgstr "Diff version" - -#: assignments/static/js/assignments/site.js:930 -#: motions/static/js/motions/site.js:3307 -msgid "Disabled" -msgstr "Desactivé" - -#: assignments/static/js/assignments/site.js:919 -#: motions/static/js/motions/site.js:3301 -msgid "Disabled (no percents)" -msgstr "Désactivé (pas de pourcentages)" - -#: core/static/templates/core/manage-projectors.html:30 -msgid "" -"Display an identifier message on all projectors with the id and the name." -msgstr "Affiche un message d'identification sur tous les projecteurs avec l'identifiant et le nom." - -#: core/static/js/core/site.js:2112 -msgid "Display header and footer" -msgstr "Afficher l'en-tête et le pied de page" - -#: motions/static/js/motions/base.js:1633 -msgid "Do not concern" -msgstr "Ne pas concerner" - -#: motions/static/js/motions/base.js:1613 -msgid "Do not decide" -msgstr "Ne decidér pas" - -#: motions/static/templates/motions/motion-detail.html:560 -msgid "Do you want to copy the final version to the final print template?" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:539 -#: motions/static/templates/motions/motion-detail.html:569 -msgid "" -"Do you want to create a new version of this motion based on this changes?" -msgstr "Voulez-vous créer une nouvelle version de cette motion en fonction de cette modification?" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:5 -msgid "Do you want to delete the final print template?" -msgstr "" - -#: motions/static/js/motions/site.js:540 -msgid "Don't create a new version." -msgstr "Ne créez pas une nouvelle version" - -#: agenda/static/templates/agenda/item-list.html:172 -#: agenda/static/templates/agenda/item-list.html:524 -#: agenda/static/templates/agenda/item-list.html:530 -msgid "Done" -msgstr "Terminé" - -#: motions/static/templates/motions/motion-import.html:34 -#: topics/static/templates/topics/topic-import.html:58 -#: users/static/templates/users/user-import.html:66 -msgid "Download CSV example file" -msgstr "Télécharger fichier CSV d'exemple " - -#: agenda/static/templates/agenda/item-sort.html:14 -msgid "" -"Drag and drop items to change the order of the agenda. Your modification " -"will be saved immediately." -msgstr "Glisser-déposer des éléments pour modifier l'ordre de l'ordre du jour. Votre modification est enregistrée immédiatement." - -#: motions/static/templates/motions/category-sort.html:15 -msgid "" -"Drag and drop motions to reorder the category. Then click the button to " -"renumber." -msgstr "Faites glisser et déposer des motions pour réorganiser la catégorie. Cliquez ensuite sur le bouton pour numéroter." - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:10 -msgid "Drop files into this area OR" -msgstr "Déposer des fichiers dans cette zone OU" - -#: agenda/static/templates/agenda/item-list.html:197 -#: topics/static/templates/topics/topic-import.html:52 -#: topics/static/templates/topics/topic-import.html:71 -msgid "Duration" -msgstr "Durée" - -#: agenda/static/templates/agenda/item-list.html:404 -#: assignments/static/templates/assignments/assignment-detail.html:21 -#: assignments/static/templates/assignments/assignment-list.html:265 -#: core/static/templates/core/tag-list.html:44 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:318 -#: motions/static/templates/motions/category-list.html:46 -#: motions/static/templates/motions/motion-amendment-list.html:330 -#: motions/static/templates/motions/motion-block-detail.html:20 -#: motions/static/templates/motions/motion-block-list.html:42 -#: motions/static/templates/motions/motion-detail.html:376 -#: motions/static/templates/motions/motion-detail.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:33 -#: motions/static/templates/motions/motion-detail/view-diff.html:87 -#: motions/static/templates/motions/motion-list.html:278 -#: motions/static/templates/motions/workflow-list.html:35 -#: topics/static/templates/topics/topic-detail.html:20 -#: users/static/templates/users/user-detail.html:15 -#: users/static/templates/users/user-list.html:359 -msgid "Edit" -msgstr "Modifier" - -#: mediafiles/static/templates/mediafiles/mediafile-form.html:1 -msgid "Edit File" -msgstr "Modifier le fichier" - -#: motions/static/templates/motions/category-form.html:1 -msgid "Edit category" -msgstr "Modifier cette catégorie" - -#: motions/static/templates/motions/change-recommendation-form.html:1 -msgid "Edit change recommendation" -msgstr "Modifier changement de recommandation" - -#: motions/static/js/motions/site.js:2494 -#: motions/static/js/motions/site.js:3266 -msgid "Edit comment %%comment%% of motion %%motion%%" -msgstr "" - -#: core/static/templates/core/projector-controls.html:143 -msgid "Edit countdown" -msgstr "Modifier le compte à rebours" - -#: core/static/templates/core/manage-projectors.html:152 -#: core/static/templates/core/projector-controls.html:76 -msgid "Edit current slide" -msgstr "Modifier la diapositive en cours" - -#: assignments/static/templates/assignments/assignment-form.html:1 -msgid "Edit election" -msgstr "Modifier l'élection" - -#: core/static/templates/core/projector-controls.html:233 -#: core/static/templates/core/projector-message-form.html:1 -msgid "Edit message" -msgstr "Modifier le message" - -#: motions/static/templates/motions/motion-form.html:1 -msgid "Edit motion" -msgstr "Modifier la motion" - -#: motions/static/templates/motions/motion-block-form.html:1 -msgid "Edit motion block" -msgstr "Modifier le block de motions" - -#: motions/static/templates/motions/workflow-edit.html:1 -#: users/static/templates/users/group-edit.html:1 -msgid "Edit name" -msgstr "Modifier le nom" - -#: users/static/templates/users/user-form.html:1 -msgid "Edit participant" -msgstr "Modifier le participant" - -#: core/static/templates/index.html:101 users/static/js/users/site.js:982 -msgid "Edit profile" -msgstr "Modifier le profile..." - -#: motions/static/templates/motions/state-edit.html:1 -msgid "Edit state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:332 -#: motions/static/templates/motions/motion-list.html:281 -msgid "Edit submitters" -msgstr "" - -#: core/static/templates/core/tag-form.html:1 -msgid "Edit tag" -msgstr "Modifier l'etiquette" - -#: motions/static/js/motions/site.js:3278 -msgid "Edit the whole motion text" -msgstr "" - -#: topics/static/templates/topics/topic-form.html:1 -msgid "Edit topic" -msgstr "Modifier le sujet" - -#: motions/static/templates/motions/motion-detail/toolbar.html:16 -msgid "" -"Editing the text is not possible anymore once there are change " -"recommendations." -msgstr "Il n'est plus possible de modifier le texte une fois qu'il y a des recommandations de changement." - -#: assignments/static/js/assignments/base.js:375 -#: assignments/static/js/assignments/pdf.js:617 -#: assignments/static/js/assignments/site.js:453 -#: assignments/static/templates/assignments/assignment-detail.html:33 -#: assignments/static/templates/assignments/slide_assignment.html:7 -msgid "Election" -msgstr "Election" - -#: assignments/static/js/assignments/site.js:903 -#: assignments/static/templates/assignments/assignment-detail.html:286 -msgid "Election method" -msgstr "Méthode d'élection" - -#: assignments/static/templates/assignments/assignment-detail.html:127 -msgid "Election result" -msgstr "Résultat de l'élection" - -#: assignments/static/js/assignments/base.js:376 -#: assignments/static/js/assignments/pdf.js:618 -#: assignments/static/js/assignments/site.js:19 -#: assignments/static/js/assignments/site.js:31 -#: assignments/static/js/assignments/site.js:49 -#: assignments/static/js/assignments/site.js:908 -#: assignments/static/templates/assignments/assignment-list.html:14 -msgid "Elections" -msgstr "Elections" - -#: users/static/js/users/site.js:1869 users/static/js/users/site.js:313 -#: users/static/js/users/site.js:471 -#: users/static/templates/users/user-detail.html:36 -#: users/static/templates/users/user-import.html:61 -#: users/static/templates/users/user-import.html:94 -msgid "Email" -msgstr "Courriel" - -#: users/static/js/users/site.js:1874 -msgid "Email body" -msgstr "Corps du courriel" - -#: users/static/js/users/site.js:1870 -msgid "Email sender" -msgstr "" - -#: users/static/js/users/site.js:1871 -msgid "Email subject" -msgstr "" - -#: motions/static/js/motions/site.js:3277 -msgid "Empty text field" -msgstr "" - -#: agenda/static/js/agenda/site.js:867 -msgid "Enable numbering for agenda items" -msgstr "" - -#: users/static/js/users/site.js:1849 -msgid "Enable participant presence view" -msgstr "" - -#: core/static/templates/csv-import.html:22 -msgid "Encoding" -msgstr "Codage" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:334 -msgid "Encrypted" -msgstr "Crypté" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:65 -msgid "End speech" -msgstr "Terminer le discours" - -#: agenda/static/js/agenda/site.js:881 -msgid "Enter duration in seconds. Choose 0 to disable warning color." -msgstr "Entrez la durée en secondes. Choisissez 0 pour désactiver la couleur d'avertissement." - -#: users/static/templates/users/user-presence.html:22 -msgid "Enter participant number" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:170 -msgid "Enter votes" -msgstr "Entrer les votes" - -#: core/static/js/core/base.js:791 -msgid "Error" -msgstr "Erreurs" - -#: core/static/js/core/pdf.js:1335 core/static/js/core/pdf.js:99 -msgid "Error while generating PDF file" -msgstr "Erreur lors de la génération du fichier PDF" - -#: motions/static/js/motions/pdf.js:1382 -msgid "Error while generating ZIP file" -msgstr "" - -#: users/static/js/users/site.js:1212 -msgid "Error: Given name or surname is required." -msgstr "Erreur: Le prénom ou nom est nécessaire." - -#: motions/static/js/motions/site.js:2880 -msgid "Error: Identifier already exists." -msgstr "Erreur: Identificateur existe déjà." - -#: motions/static/js/motions/site.js:2891 -msgid "Error: Text is required." -msgstr "Erreur: Un texte est nécessaire." - -#: motions/static/js/motions/site.js:2886 topics/static/js/topics/site.js:297 -msgid "Error: Title is required." -msgstr "Erreur: Un titre est nécessaire." - -#: agenda/static/templates/agenda/item-list.html:200 -msgid "Estimated end:" -msgstr "Fin prévue" - -#: core/static/js/core/site.js:2086 -msgid "Event" -msgstr "Evénement" - -#: core/static/js/core/site.js:2088 -msgid "Event date" -msgstr "Date de l'événement" - -#: core/static/js/core/site.js:2089 -msgid "Event location" -msgstr "Lieu de l'événement" - -#: core/static/js/core/site.js:2080 -msgid "Event name" -msgstr "Nom de l'événement" - -#: core/static/js/core/site.js:2090 -msgid "Event organizer" -msgstr "Organisateur de l'événement" - -#: motions/static/js/motions/site.js:918 -msgid "Exclude" -msgstr "" - -#: users/static/templates/users/user-import.html:234 -msgid "Exclude already imported users" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:14 -#: motions/static/templates/motions/workflow-detail.html:17 -msgid "Expand" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:207 -msgid "Expand all" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:132 -#: agenda/static/templates/agenda/item-list.html:95 -#: assignments/static/templates/assignments/assignment-list.html:31 -#: motions/static/templates/motions/motion-amendment-list.html:70 -#: motions/static/templates/motions/motion-list.html:53 -#: motions/static/templates/motions/motion-list.html:63 -#: users/static/templates/users/user-list.html:47 -msgid "Export all" -msgstr "Exporter tout" - -#: assignments/static/templates/assignments/assignment-detail.html:26 -#: motions/static/templates/motions/motion-detail.html:69 -msgid "Export as PDF" -msgstr "" - -#: motions/static/templates/motions/motion-export-form.html:7 -msgid "Export as {{ params.format.toUpperCase() | translate }}" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:7 -msgid "Export comments only" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:83 -msgid "Export dialog" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:135 -#: agenda/static/templates/agenda/item-list.html:98 -#: assignments/static/templates/assignments/assignment-list.html:34 -#: motions/static/templates/motions/motion-amendment-list.html:73 -#: motions/static/templates/motions/motion-list.html:56 -#: motions/static/templates/motions/motion-list.html:66 -#: users/static/templates/users/user-list.html:50 -msgid "Export filtered" -msgstr "Exporter les filtrés" - -#: motions/static/templates/motions/motion-export-form.html:2 -#: motions/static/templates/motions/motion-export-form.html:3 -msgid "Export motion" -msgstr "" - -#: motions/static/templates/motions/motion-export-form.html:1 -msgid "Export motions" -msgstr "" - -#: motions/static/templates/motions/motion-detail/personal-note.html:7 -msgid "Export personal note only" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:21 -msgid "File information" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:104 -msgid "File size" -msgstr "Taille du fichier" - -#: mediafiles/static/js/mediafiles/resources.js:22 -#: mediafiles/static/js/mediafiles/resources.js:23 -#: mediafiles/static/js/mediafiles/states.js:18 -#: mediafiles/static/js/mediafiles/states.js:30 -#: mediafiles/static/js/mediafiles/states.js:48 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:9 -msgid "Files" -msgstr "Fichiers" - -#: agenda/static/templates/agenda/item-list.html:241 -#: assignments/static/templates/assignments/assignment-list.html:98 -#: core/static/templates/core/tag-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:176 -#: motions/static/templates/motions/category-list.html:21 -#: motions/static/templates/motions/motion-block-detail.html:40 -#: motions/static/templates/motions/motion-block-list.html:21 -#: users/static/templates/users/user-list.html:202 -msgid "Filter" -msgstr "Filtre" - -#: motions/static/templates/motions/motion-detail/toolbar.html:113 -#: motions/static/templates/motions/motion-detail/toolbar.html:148 -msgid "Final print template" -msgstr "" - -#: motions/static/js/motions/site.js:960 motions/static/js/motions/site.js:974 -#: motions/static/templates/motions/motion-detail/toolbar.html:104 -#: motions/static/templates/motions/motion-detail/toolbar.html:143 -msgid "Final version" -msgstr "Version finale" - -#: assignments/static/js/assignments/site.js:937 -msgid "Finished" -msgstr "Terminé" - -#: motions/static/templates/motions/workflow-detail.html:28 -msgid "First state" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:291 -msgid "Follow recommendation" -msgstr "Suivre la recommandation" - -#: motions/static/templates/motions/motion-block-detail.html:34 -msgid "Follow recommendations for all motions" -msgstr "Suivre les recommandations pour tous les motions" - -#: core/static/js/core/site.js:2115 -msgid "Font color of projector header and footer" -msgstr "Couleur de la police d'en-tête et pied de page du projecteur" - -#: core/static/js/core/site.js:2116 -msgid "Font color of projector headline" -msgstr "Couleur de la police du projecteur titre" - -#: assignments/static/js/assignments/site.js:911 -msgid "" -"For Yes/No/Abstain per candidate and Yes/No per candidate the 100-%-base " -"depends on the election method: If there is only one option per candidate, " -"the sum of all votes of all candidates is 100 %. Otherwise for each " -"candidate the sum of all votes is 100 %." -msgstr "Pour Oui / Non / Abstention par candidat et Oui / Non par candidat, la base de 100% dépend de la méthode d'élection: S'il n'y a qu'une option par candidat, la somme de tous les votes de tous les candidats est de 100%. Sinon pour chaque candidat la somme de tous les votes est de 100%." - -#: motions/static/js/motions/site.js:899 -msgid "Format" -msgstr "" - -#: motions/static/js/motions/site.js:352 -msgid "From Line" -msgstr "De la ligne" - -#: core/static/js/core/site.js:2095 -msgid "Front page text" -msgstr "Texte de la première page" - -#: core/static/js/core/site.js:2093 -msgid "Front page title" -msgstr "Titre de la première page" - -#: core/static/js/core/site.js:2085 motions/static/js/motions/site.js:3241 -#: users/static/js/users/site.js:1498 users/static/js/users/site.js:1847 -msgid "General" -msgstr "Général" - -#: users/static/js/users/site.js:361 -#: users/static/templates/users/user-change-password.html:33 -msgid "Generate" -msgstr "Générer" - -#: users/static/templates/users/user-list.html:121 -#: users/static/templates/users/user-list.html:85 -msgid "Generate new passwords" -msgstr "Générer un nouveau mot de passe" - -#: core/static/js/core/pdf.js:1326 -msgid "Generating PDF file" -msgstr "Génération du fichier PDF en cours" - -#: motions/static/js/motions/pdf.js:1337 -msgid "Generating PDFs and ZIP archive" -msgstr "" - -#: users/static/js/users/site.js:1851 users/static/js/users/site.js:296 -#: users/static/js/users/site.js:634 -#: users/static/templates/users/user-import.html:51 -#: users/static/templates/users/user-import.html:84 -msgid "Given name" -msgstr "Nom" - -#: users/static/js/users/site.js:612 -msgid "Got an email" -msgstr "" - -#: motions/static/js/motions/workflow.js:81 -msgid "Green" -msgstr "" - -#: motions/static/js/motions/workflow.js:83 -msgid "Grey" -msgstr "" - -#: users/static/js/users/pdf.js:73 users/static/js/users/site.js:348 -#: users/static/js/users/site.js:89 -#: users/static/templates/users/group-list.html:14 -#: users/static/templates/users/user-detail.html:30 -#: users/static/templates/users/user-import.html:55 -#: users/static/templates/users/user-import.html:88 -#: users/static/templates/users/user-list.html:16 -#: users/static/templates/users/user-list.html:209 -#: users/static/templates/users/user-list.html:378 -#: users/static/templates/users/user-list.html:407 -msgid "Groups" -msgstr "Groupes" - -#: users/static/templates/users/user-import.html:226 -msgid "Groups created" -msgstr "Groupes créés" - -#: users/static/js/users/site.js:1857 -msgid "Help text for access data and welcome PDF" -msgstr "Le texte d'aide pour les données d'accès et PDF de bienvenue" - -#: agenda/static/templates/agenda/item-list.html:159 -#: agenda/static/templates/agenda/item-list.html:436 -#: agenda/static/templates/agenda/item-list.html:472 -#: mediafiles/static/js/mediafiles/forms.js:51 -#: mediafiles/static/js/mediafiles/list.js:74 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:27 -msgid "Hidden" -msgstr "Caché" - -#: agenda/static/js/agenda/site.js:102 -#: agenda/static/templates/agenda/item-list.html:452 -msgid "Hidden item" -msgstr "" - -#: agenda/static/js/agenda/site.js:197 -#: agenda/static/templates/agenda/item-list.html:293 -msgid "Hidden items" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:37 -msgid "Hide" -msgstr "Cacher" - -#: agenda/static/templates/agenda/item-sort.html:18 -msgid "Hide internal items" -msgstr "Cacher les éléments internes" - -#: agenda/static/js/agenda/site.js:877 -msgid "Hide internal items when projecting subitems" -msgstr "" - -#: motions/static/js/motions/site.js:3259 -msgid "Hide meta information box on projector" -msgstr "" - -#: motions/static/js/motions/site.js:3258 -msgid "Hide reason on projector" -msgstr "" - -#: motions/static/js/motions/site.js:3260 -msgid "Hide recommendation on projector" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:144 -msgid "Hint on the ballot paper." -msgstr "Indication sur le bulletin de vote." - -#: core/static/js/core/site.js:189 core/static/js/core/site.js:331 -msgid "Home" -msgstr "Accueil" - -#: motions/static/js/motions/site.js:3276 -msgid "How to create new amendments" -msgstr "" - -#: motions/static/js/motions/site.js:1419 -#: motions/static/js/motions/site.js:259 -#: motions/static/js/motions/site.js:3243 -#: motions/static/js/motions/site.js:336 motions/static/js/motions/site.js:482 -#: motions/static/templates/motions/motion-import.html:22 -#: motions/static/templates/motions/motion-import.html:45 -msgid "Identifier" -msgstr "Identificateur" - -#: motions/static/templates/motions/motion-import.html:31 -msgid "" -"Identifier, reason, submitter, category, origin and motion block are " -"optional and may be empty." -msgstr "" - -#: core/static/templates/core/manage-projectors.html:32 -msgid "Identify" -msgstr "Identifier" - -#: mediafiles/static/js/mediafiles/image-plugin.js:148 -#: mediafiles/static/js/mediafiles/image-plugin.js:198 -msgid "Image browser" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:16 -#: motions/static/templates/motions/motion-list.html:31 -#: topics/static/templates/topics/topic-import.html:24 -#: users/static/templates/users/user-import.html:29 -#: users/static/templates/users/user-list.html:20 -msgid "Import" -msgstr "Importation" - -#: topics/static/templates/topics/topic-import.html:41 -#: users/static/templates/users/user-import.html:41 -msgid "Import by CSV file" -msgstr "Importation par fichier CSV" - -#: topics/static/templates/topics/topic-import.html:14 -#: users/static/templates/users/user-import.html:18 -msgid "Import by copy/paste" -msgstr "Importation par copier/coller" - -#: motions/static/templates/motions/motion-import.html:9 -msgid "Import motions" -msgstr "Importer des motions" - -#: users/static/templates/users/user-import.html:9 -msgid "Import participants" -msgstr "Importer des participants" - -#: topics/static/templates/topics/topic-import.html:9 -msgid "Import topics" -msgstr "Importer les sujets" - -#: topics/static/templates/topics/topic-import.html:123 -msgid "Import {{ itemsWillBeImported }} topics" -msgstr "Importer des {{ itemsWillBeImported }} sujets" - -#: motions/static/templates/motions/motion-import.html:132 -msgid "Import {{ motionsWillBeImported }} motions" -msgstr "Importer les motions {{ motionsWillBeImported }}" - -#: users/static/templates/users/user-import.html:237 -msgid "Import {{ usersWillBeImported }} participants" -msgstr "Import les participants {{ usersWillBeImported }} " - -#: motions/static/js/motions/site.js:917 -msgid "Include" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:363 -msgid "Include all sub items" -msgstr "Inclure tous les sous-éléments" - -#: motions/static/js/motions/site.js:3318 -msgid "Include the sequential number in PDF and DOCX" -msgstr "" - -#: users/static/js/users/pdf.js:201 users/static/js/users/site.js:358 -#: users/static/templates/users/user-change-password.html:37 -#: users/static/templates/users/user-import.html:60 -#: users/static/templates/users/user-import.html:93 -msgid "Initial password" -msgstr "Mot de passe initial" - -#: users/static/js/users/site.js:359 -#: users/static/templates/users/user-change-password.html:38 -msgid "Initial password can not be changed." -msgstr "Le mot de passe initial ne peut pas être modifié." - -#. Line numbering: Inline -#: motions/static/js/motions/site.js:3253 -msgid "Inline" -msgstr "En ligne" - -#: motions/static/templates/motions/motion-detail/comments.html:15 -#: motions/static/templates/motions/motion-detail/comments.html:20 -#: motions/static/templates/motions/motion-detail/personal-note.html:14 -#: motions/static/templates/motions/motion-detail/personal-note.html:19 -#: motions/static/templates/motions/motion-detail/toolbar.html:13 -#: motions/static/templates/motions/motion-detail/toolbar.html:18 -#: motions/static/templates/motions/motion-detail/toolbar.html:29 -#: motions/static/templates/motions/motion-detail/toolbar.html:35 -#: motions/static/templates/motions/motion-detail/toolbar.html:8 -msgid "Inline editing" -msgstr "editer en ligne" - -#: agenda/static/js/agenda/site.js:876 -msgid "Input format: DD.MM.YYYY HH:MM" -msgstr "Format d'entrée: DD.MM.YYYY HH:MM" - -#: motions/static/js/motions/base.js:1489 motions/static/js/motions/pdf.js:282 -#: motions/static/js/motions/site.js:371 -#: motions/static/templates/motions/motion-detail/change-summary.html:38 -msgid "Insertion" -msgstr "Insertion" - -#: core/static/templates/legalnotice.html:17 -msgid "Installed plugins:" -msgstr "Plugins installés:" - -#: agenda/static/templates/agenda/item-list.html:156 -#: agenda/static/templates/agenda/item-list.html:432 -#: agenda/static/templates/agenda/item-list.html:468 -msgid "Internal" -msgstr "" - -#: agenda/static/js/agenda/site.js:101 -#: agenda/static/templates/agenda/item-list.html:447 -#: topics/static/templates/topics/topic-import.html:54 -#: topics/static/templates/topics/topic-import.html:73 -msgid "Internal item" -msgstr "Element interne" - -#: agenda/static/js/agenda/site.js:190 -#: agenda/static/templates/agenda/item-list.html:287 -msgid "Internal items" -msgstr "Eléments internes" - -#: assignments/static/js/assignments/site.js:836 -#: assignments/static/templates/assignments/assignment-detail.html:274 -#: assignments/static/templates/assignments/slide_assignment.html:88 -msgid "Invalid ballots" -msgstr "Votes non valables" - -#: agenda/static/js/agenda/site.js:871 -msgid "Invalid input." -msgstr "Entrée invalide." - -#: motions/static/js/motions/pdf.js:216 motions/static/js/motions/site.js:799 -#: motions/static/templates/motions/motion-detail.html:450 -msgid "Invalid votes" -msgstr "Votes invalides" - -#: mediafiles/static/js/mediafiles/list.js:81 -msgid "Is PDF" -msgstr "Est PDF" - -#: mediafiles/static/js/mediafiles/list.js:82 -msgid "Is PDF file" -msgstr "Est un fichier PDF" - -#: users/static/js/users/site.js:415 users/static/js/users/site.js:606 -#: users/static/templates/users/user-list.html:341 -msgid "Is a committee" -msgstr "Est un Comité" - -#: users/static/js/users/site.js:403 users/static/js/users/site.js:599 -#: users/static/templates/users/user-import.html:57 -#: users/static/templates/users/user-import.html:90 -#: users/static/templates/users/user-list.html:127 -msgid "Is active" -msgstr "C'est actif" - -#: users/static/templates/users/user-import.html:59 -#: users/static/templates/users/user-import.html:92 -#: users/static/templates/users/user-list.html:129 -msgid "Is committee" -msgstr "Est Comité" - -#: mediafiles/static/js/mediafiles/list.js:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:303 -msgid "Is hidden" -msgstr "Est caché" - -#: users/static/templates/users/user-list.html:339 -msgid "Is inactive" -msgstr "Est inactif" - -#: mediafiles/static/js/mediafiles/list.js:83 -msgid "Is no PDF file" -msgstr "N'est pas un fichier PDF" - -#: users/static/js/users/site.js:607 -#: users/static/templates/users/user-list.html:137 -msgid "Is not a committee" -msgstr "N'est pas un Comité" - -#: users/static/js/users/site.js:600 -#: users/static/templates/users/user-list.html:135 -msgid "Is not active" -msgstr "N'est pas actif" - -#: mediafiles/static/js/mediafiles/list.js:76 -msgid "Is not hidden" -msgstr "N'est pas caché" - -#: users/static/js/users/site.js:593 -#: users/static/templates/users/user-list.html:136 -msgid "Is not present" -msgstr "N'est pas présent" - -#: users/static/js/users/site.js:393 users/static/js/users/site.js:592 -#: users/static/templates/users/user-import.html:58 -#: users/static/templates/users/user-import.html:91 -#: users/static/templates/users/user-list.html:128 -msgid "Is present" -msgstr "Est présent" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:308 -msgid "Is used as a font" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:306 -msgid "Is used as a logo" -msgstr "" - -#. short form of agenda item -#: assignments/static/js/assignments/site.js:333 -#: motions/static/templates/motions/motion-table-filters.html:209 -msgid "Item" -msgstr "Elément" - -#: motions/static/templates/motions/workflow-detail.html:119 -msgid "Label color" -msgstr "" - -#: users/static/js/users/site.js:611 users/static/js/users/site.js:650 -#: users/static/templates/users/user-detail.html:38 -msgid "Last email send" -msgstr "" - -#: users/static/templates/users/user-list.html:448 -msgid "Last email send to the user" -msgstr "" - -#: motions/static/js/motions/site.js:1433 -#: motions/static/templates/motions/motion-detail.html:636 -msgid "Last modified" -msgstr "dernière mise à jour" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:36 -msgid "Last speakers" -msgstr "Dernier orateur" - -#: core/static/templates/csv-import.html:33 -msgid "Leave empty for autodetection of the separator." -msgstr "Laissez vide pour voir le séparateur de champ automatiquement." - -#: motions/static/js/motions/workflow.js:70 -msgid "Leave old version active" -msgstr "" - -#: core/static/js/core/site.js:2101 -msgid "Left" -msgstr "" - -#: core/static/js/core/site.js:2091 core/static/js/core/site.js:371 -#: core/static/templates/index.html:227 -#: core/static/templates/legalnotice.html:3 -msgid "Legal notice" -msgstr "Mention légale" - -#: core/static/templates/legalnotice.html:14 -#: core/static/templates/legalnotice.html:27 -msgid "License" -msgstr "" - -#: motions/static/js/motions/pdf.js:1083 motions/static/js/motions/pdf.js:275 -#: motions/static/templates/motions/motion-amendment-list.html:238 -#: motions/static/templates/motions/motion-amendment-list.html:241 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:28 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:31 -#: motions/static/templates/motions/motion-detail/change-summary.html:28 -#: motions/static/templates/motions/motion-detail/change-summary.html:31 -#: motions/static/templates/motions/motion-detail/toolbar.html:46 -#: motions/static/templates/motions/slide_motion.html:80 -#: motions/static/templates/motions/slide_motion.html:83 -msgid "Line" -msgstr "Ligne" - -#: motions/static/js/motions/site.js:3256 -msgid "Line length" -msgstr "Longeur de la ligne" - -#: motions/static/js/motions/site.js:929 motions/static/js/motions/site.js:942 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:30 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:5 -msgid "Line numbering" -msgstr "Numérotation par ligne" - -#: users/static/js/users/pdf.js:313 -#: users/static/templates/users/user-list.html:64 -msgid "List of access data" -msgstr "Liste des données d'accès" - -#: users/static/js/users/pdf.js:17 users/static/js/users/pdf.js:302 -#: users/static/templates/users/user-list.html:59 -msgid "List of participants" -msgstr "Liste des participants" - -#: agenda/static/js/agenda/site.js:562 agenda/static/js/agenda/site.js:879 -#: agenda/static/templates/agenda/item-detail.html:21 -#: agenda/static/templates/agenda/item-detail.html:47 -#: agenda/static/templates/agenda/item-list.html:402 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:2 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:5 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:5 -#: assignments/static/templates/assignments/assignment-detail.html:12 -#: core/static/templates/core/projector-controls.html:257 -#: motions/static/templates/motions/motion-block-detail.html:11 -#: motions/static/templates/motions/motion-detail.html:23 -#: topics/static/templates/topics/topic-detail.html:11 -msgid "List of speakers" -msgstr "Liste des orateurs" - -#: core/static/js/core/site.js:2119 -msgid "List of speakers overlay" -msgstr "Liste des orateurs superposées" - -#: core/static/templates/core/projector-controls.html:8 -msgid "Live view" -msgstr "La vue en direct" - -#: core/static/templates/core/login-form.html:20 -#: core/static/templates/index.html:121 -msgid "Login" -msgstr "Connexion" - -#: core/static/templates/index.html:112 -msgid "Logout" -msgstr "Déconnection" - -#: core/static/templates/core/projector-controls.html:59 -msgid "Manage" -msgstr "Gérer" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:386 -msgid "Manage fonts" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:348 -msgid "Manage logos" -msgstr "" - -#: core/static/js/core/site.js:356 -#: core/static/templates/core/manage-projectors.html:35 -msgid "Manage projectors" -msgstr "Gérer les projecteurs" - -#: core/static/templates/core/projector-controls.html:305 -msgid "Manage the current list of speakers" -msgstr "Gérer la liste actuelle des orateurs" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:69 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:95 -msgid "Mark speaker" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:43 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:62 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:87 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:10 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:19 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:21 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:39 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:20 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:27 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:33 -msgid "Marked" -msgstr "" - -#: motions/static/js/motions/site.js:1360 -msgid "Marked as favorite" -msgstr "" - -#: core/static/js/core/base.js:1393 core/static/js/core/site.js:463 -#: core/static/templates/core/projector-controls.html:224 -msgid "Message" -msgstr "Message" - -#: core/static/js/core/base.js:1394 -#: core/static/templates/core/projector-controls.html:218 -msgid "Messages" -msgstr "Messages" - -#: assignments/static/templates/assignments/assignment-detail.html:42 -#: motions/static/js/motions/site.js:1003 -#: motions/static/js/motions/site.js:994 -#: motions/static/templates/motions/motion-detail.html:133 -msgid "Meta information" -msgstr "Meta informations" - -#: motions/static/templates/motions/motion-table-filters.html:166 -msgid "Misc" -msgstr "" - -#: motions/static/js/motions/base.js:293 motions/static/js/motions/base.js:328 -#: motions/static/js/motions/base.js:337 motions/static/js/motions/docx.js:92 -#: motions/static/js/motions/pdf.js:1076 motions/static/js/motions/pdf.js:1346 -#: motions/static/js/motions/pdf.js:1392 motions/static/js/motions/pdf.js:536 -#: motions/static/js/motions/pdf.js:70 motions/static/js/motions/pdf.js:732 -#: motions/static/js/motions/site.js:1627 -#: motions/static/js/motions/site.js:2039 -#: motions/static/js/motions/site.js:2052 -#: motions/static/js/motions/site.js:2058 -#: motions/static/js/motions/site.js:267 motions/static/js/motions/site.js:344 -#: motions/static/templates/motions/motion-block-detail.html:51 -#: motions/static/templates/motions/motion-detail.html:116 -#: motions/static/templates/motions/motion-detail.html:120 -#: motions/static/templates/motions/motion-detail.html:271 -#: motions/static/templates/motions/motion-detail.html:92 -#: motions/static/templates/motions/slide_motion.html:74 -msgid "Motion" -msgstr "Motion" - -#: motions/static/js/motions/motion-block.js:156 -#: motions/static/js/motions/motion-block.js:19 -#: motions/static/js/motions/pdf.js:155 motions/static/js/motions/site.js:1427 -#: motions/static/js/motions/site.js:614 motions/static/js/motions/site.js:874 -#: motions/static/templates/motions/motion-block-detail.html:25 -#: motions/static/templates/motions/motion-detail.html:318 -#: motions/static/templates/motions/motion-detail.html:322 -#: motions/static/templates/motions/motion-import.html:29 -#: motions/static/templates/motions/motion-import.html:52 -#: motions/static/templates/motions/motion-table-filters.html:93 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motion block" -msgstr " Block de motions" - -#: motions/static/js/motions/site.js:156 -#: motions/static/templates/motions/motion-block-list.html:13 -#: motions/static/templates/motions/motion-list.html:19 -msgid "Motion blocks" -msgstr " Blocks de motions" - -#: motions/static/templates/motions/motion-import.html:125 -msgid "Motion blocks created" -msgstr "" - -#: motions/static/js/motions/site.js:3247 -msgid "Motion preamble" -msgstr "Préambule de la motion" - -#: motions/static/js/motions/base.js:294 motions/static/js/motions/site.js:23 -#: motions/static/js/motions/site.js:3238 motions/static/js/motions/site.js:35 -#: motions/static/js/motions/site.js:53 -#: motions/static/templates/motions/motion-block-list.html:30 -#: motions/static/templates/motions/motion-list.html:35 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motions" -msgstr "Motions" - -#: motions/static/js/motions/site.js:1034 -msgid "Multiple PDFs in a zip arcive" -msgstr "" - -#: core/static/js/core/site.js:497 -#: core/static/templates/core/manage-projectors.html:62 -#: core/static/templates/core/tag-list.html:34 -#: motions/static/js/motions/site.js:739 -#: motions/static/templates/motions/category-list.html:29 -#: motions/static/templates/motions/motion-block-list.html:29 -#: motions/static/templates/motions/state-edit.html:8 -#: motions/static/templates/motions/workflow-list.html:25 -#: users/static/js/users/pdf.js:65 -msgid "Name" -msgstr "Nom" - -#: motions/static/js/motions/site.js:3263 -msgid "Name of recommender" -msgstr "Nom du conseiller" - -#: motions/static/js/motions/base.js:1639 -msgid "Needs review" -msgstr "Doit être revu" - -#: agenda/static/templates/agenda/item-list.html:8 -#: assignments/static/templates/assignments/assignment-list.html:6 -#: core/static/js/core/site.js:1288 core/static/js/core/site.js:1301 -#: core/static/js/core/site.js:1302 -#: core/static/templates/core/manage-projectors.html:8 -#: core/static/templates/core/tag-list.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:6 -#: motions/static/templates/motions/category-list.html:10 -#: motions/static/templates/motions/motion-block-list.html:10 -#: motions/static/templates/motions/motion-list.html:6 -#: motions/static/templates/motions/workflow-detail.html:11 -#: motions/static/templates/motions/workflow-list.html:10 -#: users/static/templates/users/group-list.html:11 -#: users/static/templates/users/user-list.html:6 -msgid "New" -msgstr "Nouveau" - -#: motions/static/templates/motions/motion-detail.html:181 -msgid "New amendment" -msgstr "Nouveau amendement" - -#: motions/static/templates/motions/motion-form.html:3 -msgid "New amendment to motion" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:133 -msgid "New ballot" -msgstr "Nouveau vote" - -#: motions/static/templates/motions/category-form.html:2 -msgid "New category" -msgstr "Nouvelle catégorie" - -#: motions/static/js/motions/site.js:2922 -msgid "New category will be created." -msgstr "Une nouvelle catégorie sera créée." - -#: motions/static/templates/motions/change-recommendation-form.html:2 -msgid "New change recommendation" -msgstr "Nouveau changement de recommandation" - -#: assignments/static/templates/assignments/assignment-form.html:2 -msgid "New election" -msgstr "Nouvelle élection" - -#: motions/static/templates/motions/motion-form.html:2 -msgid "New motion" -msgstr "Nouvelle motion" - -#: motions/static/templates/motions/motion-block-form.html:2 -msgid "New motion block" -msgstr "Nouveau block de motions" - -#: motions/static/js/motions/site.js:2935 -msgid "New motion block will be created." -msgstr "" - -#: users/static/templates/users/user-form.html:2 -msgid "New participant" -msgstr "Nouveau participant" - -#: motions/static/js/motions/site.js:2909 -msgid "New participant will be created." -msgstr "Un nouveau participant sera créé." - -#: users/static/js/users/site.js:519 -#: users/static/templates/users/user-change-password.html:23 -msgid "New password" -msgstr "Nouveau mot de passe" - -#: core/static/templates/core/tag-form.html:2 -msgid "New tag" -msgstr "nouvel identificateur" - -#: motions/static/js/motions/pdf.js:377 motions/static/js/motions/site.js:275 -#: motions/static/templates/motions/motion-detail/view-diff.html:42 -#: motions/static/templates/motions/slide_motion.html:107 -msgid "New title" -msgstr "" - -#: topics/static/templates/topics/topic-form.html:2 -msgid "New topic" -msgstr "Nouveau sujet" - -#: motions/static/templates/motions/motion-detail.html:542 -#: motions/static/templates/motions/motion-detail.html:572 -msgid "New version on these changes" -msgstr "Nouvelle version sur ces changements" - -#: motions/static/templates/motions/motion-detail.html:495 -msgid "New vote" -msgstr "Nouveau vote" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:39 -msgid "Next page" -msgstr "Page suivante" - -#: motions/static/templates/motions/workflow-detail.html:170 -msgid "Next states" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:323 -#: assignments/static/js/assignments/pdf.js:358 -#: assignments/static/js/assignments/site.js:612 -#: assignments/static/js/assignments/site.js:743 -#: assignments/static/js/assignments/site.js:809 -#: assignments/static/templates/assignments/assignment-detail.html:262 -#: assignments/static/templates/assignments/slide_assignment.html:77 -#: motions/static/js/motions/pdf.js:198 motions/static/js/motions/pdf.js:740 -#: motions/static/js/motions/site.js:770 -#: motions/static/templates/motions/motion-detail.html:417 -#: motions/static/templates/motions/slide_motion.html:44 -msgid "No" -msgstr "Non" - -#: motions/static/js/motions/docx.js:48 -msgid "No categories available." -msgstr "Aucune catégorie n'est disponible." - -#: motions/static/templates/motions/motion-amendment-list.html:140 -#: motions/static/templates/motions/motion-list.html:102 -msgid "No category" -msgstr "Aucune catégorie" - -#: motions/static/templates/motions/motion-table-filters.html:286 -#: motions/static/templates/motions/motion-table-filters.html:83 -msgid "No category set" -msgstr "Aucune catégorie a été defini" - -#: motions/static/templates/motions/motion-detail/change-summary.html:53 -msgid "No change recommendations yet" -msgstr "Aucun changement de recommandation jusqu'à présent" - -#: motions/static/js/motions/pdf.js:1094 motions/static/js/motions/pdf.js:370 -#: motions/static/templates/motions/motion-amendment-list.html:349 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:17 -msgid "No changes at the text." -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:131 -#: motions/static/templates/motions/motion-table-filters.html:312 -msgid "No comments set" -msgstr "" - -#: motions/static/js/motions/base.js:1634 -msgid "No concernment" -msgstr "Pas de concernment" - -#: motions/static/js/motions/base.js:1614 -msgid "No decision" -msgstr "Pas de décision" - -#: users/static/js/users/site.js:818 -msgid "No emails were send." -msgstr "" - -#: users/static/js/users/site.js:1868 -msgid "No encryption" -msgstr "Pas de chiffrement" - -#: users/static/templates/users/user-list.html:223 -#: users/static/templates/users/user-list.html:300 -msgid "No group set" -msgstr "Aucun groupe a été defini" - -#: agenda/static/js/agenda/site.js:198 -msgid "No hidden items" -msgstr "" - -#: agenda/static/js/agenda/site.js:191 -msgid "No internal items" -msgstr "Pas d'élément interne" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:107 -msgid "No media file projected." -msgstr "Pas de fichier multimedia est projeté" - -#: motions/static/templates/motions/motion-amendment-list.html:153 -#: motions/static/templates/motions/motion-list.html:115 -msgid "No motion block" -msgstr "Pas de block de motions" - -#: motions/static/templates/motions/motion-table-filters.html:107 -#: motions/static/templates/motions/motion-table-filters.html:328 -msgid "No motion block set" -msgstr "Pas de block de motions a été défini" - -#: motions/static/js/motions/docx.js:54 -msgid "No motions available." -msgstr "Aucune motion disponible." - -#: agenda/static/js/agenda/site.js:185 -msgid "No public items" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:285 -#: motions/static/templates/motions/motion-amendment-list.html:296 -msgid "No recomendation set" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:59 -msgid "No recommendation set" -msgstr "Pas de recommandation définie" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: core/static/templates/core/select-multiple.html:2 -#: core/static/templates/core/select-single.html:2 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "No results available ..." -msgstr "Pas de résultat disponible ...." - -#: core/static/templates/search.html:41 -msgid "No results." -msgstr "Pas de résultat" - -#: assignments/static/templates/assignments/assignment-list.html:120 -#: assignments/static/templates/assignments/assignment-list.html:192 -#: motions/static/templates/motions/motion-table-filters.html:155 -#: motions/static/templates/motions/motion-table-filters.html:344 -msgid "No tag set" -msgstr "Aucun tag a été defini" - -#: motions/static/js/motions/site.js:2304 -msgid "No workflows exists. You will not be able to create a motion." -msgstr "" - -#. abbreviation for number -#: users/static/js/users/base.js:82 -#: users/static/templates/users/user-list.html:349 -#: users/static/templates/users/user-list.html:353 -msgid "No." -msgstr "Non." - -#. Line numbering: None -#: motions/static/js/motions/site.js:3255 -#: motions/static/js/motions/site.js:931 motions/static/js/motions/site.js:944 -msgid "None" -msgstr "Aucun" - -#: motions/static/js/motions/site.js:1361 -msgid "Not marked as favorite" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:8 -msgid "Not rejected" -msgstr "N'été pas rejeté" - -#: motions/static/templates/motions/motion-detail/change-summary.html:8 -msgid "" -"Note: You have to reject all change recommendations if the plenum does not " -"follow the recommendation. This does not affect amendments." -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-original.html:45 -msgid "Now choose the last line to be changed" -msgstr "Choisissez maintenant la dernière ligne à changer" - -#: users/static/js/users/site.js:1280 users/static/js/users/site.js:644 -msgid "Number" -msgstr "Numéro" - -#: motions/static/js/motions/site.js:3283 -msgid "Number of (minimum) required supporters for a motion" -msgstr "Nombre de supporteurs (minimum) requis pour une motion" - -#: assignments/static/js/assignments/site.js:921 -#: motions/static/js/motions/site.js:3309 -msgid "Number of all delegates" -msgstr "Nombre de tout les délégués" - -#: assignments/static/js/assignments/site.js:922 -#: motions/static/js/motions/site.js:3310 -msgid "Number of all participants" -msgstr "Nombre de tout les participants" - -#: assignments/static/js/assignments/site.js:920 -#: motions/static/js/motions/site.js:3308 -msgid "Number of ballot papers (selection)" -msgstr "Nombre de bulletins de vote (sélection)" - -#: assignments/static/js/assignments/site.js:339 -msgid "Number of candidates" -msgstr "Nombre de candidats" - -#: agenda/static/js/agenda/site.js:878 -msgid "Number of last speakers to be shown on the projector" -msgstr "Nombre de derniers orateurs à faire figurer sur le projecteur" - -#: assignments/static/js/assignments/pdf.js:23 -#: assignments/static/js/assignments/site.js:147 -#: assignments/static/templates/assignments/assignment-detail.html:52 -msgid "Number of persons to be elected" -msgstr "Nombre de personnes à élire" - -#: motions/static/js/motions/site.js:3244 -msgid "Numbered per category" -msgstr "Numérotée par catégorie" - -#: agenda/static/templates/agenda/item-list.html:88 -#: motions/static/templates/motions/category-sort.html:20 -msgid "Numbering" -msgstr "Numérotage" - -#: agenda/static/js/agenda/site.js:868 -msgid "Numbering prefix for agenda items" -msgstr "Numérotation préfixe pour points de l'ordre du jour" - -#: agenda/static/js/agenda/site.js:872 -msgid "Numeral system for agenda items" -msgstr "système de numération de points de l'ordre du jour" - -#: core/static/js/core/base.js:263 core/static/js/core/base.js:265 -msgid "OK" -msgstr "OK" - -#: core/static/js/core/base.js:811 -msgid "Offline mode: You can use OpenSlides but changes are not saved." -msgstr "" - -#: users/static/js/users/site.js:511 -msgid "Old password" -msgstr "Ancien mot de passe" - -#: motions/static/js/motions/site.js:1033 -msgid "One PDF" -msgstr "" - -#: core/static/js/core/site.js:751 -msgid "One anonymous users is also editing this." -msgstr "" - -#: users/static/js/users/site.js:820 -msgid "One email was send sucessfully." -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:287 -msgid "One vote per candidate" -msgstr "Un vote par candidat" - -#: motions/static/templates/motions/motion-import.html:33 -#: topics/static/templates/topics/topic-import.html:57 -#: users/static/templates/users/user-import.html:65 -msgid "Only double quotes are accepted as text delimiter (no single quotes)." -msgstr "Seuls les guillemets sont acceptés comme délimiteur de texte (pas de guillemets simples)." - -#: users/static/js/users/site.js:375 -msgid "Only for internal notes." -msgstr "Seulement pour des notes internes." - -#: agenda/static/templates/agenda/item-list.html:46 -msgid "Only main agenda items" -msgstr "Seulement les points principaux de l'ordre du jour" - -#: agenda/static/templates/agenda/item-list.html:177 -msgid "Open" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:93 -msgid "Open amendment" -msgstr "" - -#: core/static/templates/core/projector-controls.html:147 -msgid "Open countdown in fullscreen" -msgstr "" - -#: assignments/static/templates/assignments/assignment-form.html:13 -msgid "Open election detail view after save." -msgstr "Ouvrir la vue détaillée des élections après l'enregistrement." - -#: mediafiles/static/js/mediafiles/image-plugin.js:138 -msgid "Open image browser" -msgstr "" - -#: agenda/static/js/agenda/site.js:178 -msgid "Open items" -msgstr "Eléments ouverts" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:7 -msgid "Open list of speakers" -msgstr "" - -#: motions/static/templates/motions/motion-form.html:14 -msgid "Open motion detail view after save." -msgstr "Ouvrir la vue détaillée des motions après l'enregistrement." - -#: users/static/js/users/pdf.js:189 -msgid "OpenSlides access data" -msgstr " Données d'accès OpenSlides" - -#: motions/static/js/motions/pdf.js:168 motions/static/js/motions/site.js:627 -#: motions/static/js/motions/site.js:881 -#: motions/static/templates/motions/motion-detail.html:362 -#: motions/static/templates/motions/motion-import.html:28 -#: motions/static/templates/motions/motion-import.html:51 -#: motions/static/templates/motions/motion-list.html:407 -msgid "Origin" -msgstr "Origine" - -#: mediafiles/static/js/mediafiles/image-plugin.js:196 -#: mediafiles/static/js/mediafiles/image-plugin.js:94 -msgid "Original size" -msgstr "" - -#: motions/static/js/motions/site.js:957 motions/static/js/motions/site.js:971 -#: motions/static/templates/motions/motion-detail/toolbar.html:128 -#: motions/static/templates/motions/motion-detail/toolbar.html:83 -msgid "Original version" -msgstr "Version originale" - -#: motions/static/js/motions/site.js:373 -msgid "Other" -msgstr "" - -#. Line numbering: Outside -#: motions/static/js/motions/site.js:3251 -msgid "Outside" -msgstr "À l'extérieur" - -#: assignments/static/templates/assignments/assignment-detail.html:28 -#: motions/static/templates/motions/motion-detail.html:71 -#: motions/static/templates/motions/motion-detail/comments.html:9 -#: motions/static/templates/motions/motion-detail/personal-note.html:9 -#: users/static/js/users/site.js:1853 -msgid "PDF" -msgstr "PDF" - -#: core/static/js/core/site.js:2127 -msgid "PDF ballot paper logo" -msgstr "" - -#: core/static/js/core/site.js:2124 -msgid "PDF footer logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2125 -msgid "PDF footer logo (right)" -msgstr "" - -#: motions/static/js/motions/site.js:1031 -msgid "PDF format" -msgstr "" - -#: core/static/js/core/site.js:2122 -msgid "PDF header logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2123 -msgid "PDF header logo (right)" -msgstr "" - -#: core/static/js/core/pdf.js:1330 -msgid "PDF successfully generated." -msgstr "Le fichier PDF a été généré avec succès" - -#: agenda/static/templates/agenda/item-list.html:218 -#: assignments/static/templates/assignments/assignment-list.html:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:153 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:44 -#: motions/static/templates/motions/motion-amendment-list.html:180 -#: motions/static/templates/motions/motion-list.html:146 -#: users/static/templates/users/user-import.html:73 -#: users/static/templates/users/user-list.html:160 -msgid "Page" -msgstr "Page" - -#: core/static/js/core/site.js:2100 -msgid "Page number alignment in PDF" -msgstr "" - -#: motions/static/js/motions/site.js:3279 -msgid "Paragraph-based, Diff-enabled" -msgstr "" - -#: assignments/static/js/assignments/site.js:168 -#: motions/static/js/motions/motion-block.js:91 -#: motions/static/js/motions/site.js:553 topics/static/js/topics/site.js:130 -msgid "Parent item" -msgstr "Elément parent" - -#: motions/static/js/motions/site.js:2780 -msgid "Parent motion and line number" -msgstr "" - -#: users/static/js/users/site.js:887 -#: users/static/templates/users/user-detail.html:20 -msgid "Participant" -msgstr "Participant" - -#: users/static/js/users/site.js:331 -#: users/static/templates/users/user-detail.html:34 -#: users/static/templates/users/user-import.html:54 -#: users/static/templates/users/user-import.html:87 -msgid "Participant number" -msgstr "Numéro de participant" - -#: users/static/js/users/base.js:19 users/static/js/users/base.js:20 -#: users/static/js/users/site.js:1850 users/static/js/users/site.js:19 -#: users/static/js/users/site.js:30 users/static/js/users/site.js:48 -#: users/static/templates/users/user-list.html:24 -msgid "Participants" -msgstr "Participants" - -#: core/static/templates/core/login-form.html:17 -msgid "Password" -msgstr "Mot de passe" - -#: users/static/js/users/site.js:1064 -msgid "Password confirmation does not match." -msgstr "La confirmation du mot de passe ne correspond pas." - -#: core/static/templates/core/projector-controls.html:170 -msgid "Pause" -msgstr "Pause" - -#: motions/static/js/motions/base.js:1620 -msgid "Permission" -msgstr "Permission" - -#: motions/static/templates/motions/workflow-detail.html:42 -#: users/static/templates/users/group-list.html:26 -msgid "Permissions" -msgstr "Permissions" - -#: motions/static/js/motions/base.js:1619 -msgid "Permit" -msgstr "Permettre" - -#: motions/static/templates/motions/motion-detail.html:624 -msgid "Permit and activate" -msgstr "Permettre et activer" - -#: users/static/templates/users/user-detail.html:27 -msgid "Personal data" -msgstr "Données personnelles" - -#: motions/static/js/motions/pdf.js:1403 -#: motions/static/templates/motions/motion-detail.html:500 -#: motions/static/templates/motions/motion-detail/personal-note.html:25 -msgid "Personal note" -msgstr "" - -#: motions/static/js/motions/site.js:1366 -msgid "Personal note not set" -msgstr "" - -#: motions/static/js/motions/site.js:1365 -msgid "Personal note set" -msgstr "" - -#: assignments/static/js/assignments/site.js:337 -#: assignments/static/templates/assignments/assignment-detail.html:62 -#: assignments/static/templates/assignments/assignment-list.html:130 -msgid "Phase" -msgstr "Phase" - -#: users/static/templates/users/group-edit.html:12 -msgid "Please enter a name for the new group:" -msgstr "S'il vous plait entrez un nom pour le nouveau groupe:" - -#: core/static/templates/core/manage-projectors.html:5 -msgid "Please enter a name for the new projector" -msgstr "S'il vous plait entrez un nom pour le nouveau projecteur:" - -#: motions/static/templates/motions/workflow-edit.html:12 -msgid "Please enter a name for the new workflow:" -msgstr "" - -#: users/static/templates/users/group-edit.html:10 -msgid "Please enter a new group name:" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:9 -msgid "Please enter a new workflow name:" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:18 -#: topics/static/templates/topics/topic-import.html:46 -#: users/static/templates/users/user-import.html:46 -msgid "Please note:" -msgstr "Notez s'il vous plait:" - -#: core/static/templates/core/manage-projectors.html:72 -msgid "Please select" -msgstr "" - -#: motions/static/js/motions/site.js:3316 -msgid "Preamble text for PDF and DOCX documents (all motions)" -msgstr "Texte de préambule pour le document PDF et le fichier DOCX (toutes les motions)" - -#: assignments/static/js/assignments/site.js:933 -msgid "Preamble text for PDF document (all elections)" -msgstr "Texte de préambule pour le fichier PDF (toutes les élections)" - -#: core/static/js/core/site.js:2117 -msgid "Predefined seconds of new countdowns" -msgstr "Secondes prédéfinies de nouveaux décomptes" - -#: motions/static/js/motions/site.js:732 -#: motions/static/templates/motions/category-list.html:34 -msgid "Prefix" -msgstr "Préfixe" - -#: motions/static/js/motions/site.js:3272 -msgid "Prefix for the identifier for amendments" -msgstr "Préfixe pour l'identificateur d'amendements" - -#: users/static/templates/users/user-list.html:11 -#: users/static/templates/users/user-presence.html:9 -msgid "Presence" -msgstr "" - -#: users/static/js/users/site.js:591 users/static/js/users/site.js:638 -#: users/static/templates/users/user-list.html:460 -#: users/static/templates/users/user-list.html:466 -msgid "Present" -msgstr "Présent" - -#: core/static/js/core/site.js:2079 -msgid "Presentation and assembly system" -msgstr "Système de présentation et d'assemblée" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:17 -msgid "Presentation control elements" -msgstr "des éléments de commande de la présentation" - -#: motions/static/templates/motions/motion-import.html:38 -#: topics/static/templates/topics/topic-import.html:62 -#: users/static/templates/users/user-import.html:70 -msgid "Preview" -msgstr "Aperçu" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:34 -msgid "Previous page" -msgstr "Page précédente" - -#: assignments/static/templates/assignments/assignment-detail.html:163 -#: motions/static/templates/motions/motion-detail.html:390 -msgid "Print ballot paper" -msgstr "Imprimer les bulletins de vote" - -#: core/static/js/core/site.js:2092 core/static/js/core/site.js:380 -#: core/static/templates/core/login-form.html:28 -#: core/static/templates/index.html:228 -#: core/static/templates/privacypolicy.html:3 -#: core/static/templates/privacypolicydialog.html:1 -msgid "Privacy policy" -msgstr "" - -#: motions/static/js/motions/site.js:3292 -msgid "Private" -msgstr "Privé" - -#: assignments/static/templates/assignments/assignment-detail.html:16 -#: assignments/static/templates/assignments/assignment-detail.html:181 -#: motions/static/templates/motions/motion-detail.html:31 -#: topics/static/templates/topics/topic-detail.html:15 -#: users/static/templates/users/user-detail.html:10 -msgid "Project" -msgstr "Projeter" - -#: agenda/static/templates/agenda/item-list.html:31 -msgid "Project agenda" -msgstr "Projeter l'odre du jour" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:35 -#: core/static/templates/core/projector-controls.html:287 -msgid "Project as overlay" -msgstr "Projeter comme superposition" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:29 -#: core/static/templates/core/projector-controls.html:281 -msgid "Project as slide" -msgstr "Projeter comme diapositive" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:13 -msgid "Project current list of speakers" -msgstr "Projeter la liste actuelle des orateurs" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:10 -#: core/static/templates/core/projector-controls.html:263 -msgid "Project the current list of speakers" -msgstr "Projeter la liste actuelle des orateurs" - -#: core/static/templates/core/manage-projectors.html:69 -msgid "Projection defaults" -msgstr "Défauts de projection" - -#: agenda/static/templates/agenda/item-detail.html:14 -#: agenda/static/templates/agenda/item-list.html:27 -#: agenda/static/templates/agenda/item-list.html:345 -#: core/static/js/core/projector.js:401 core/static/js/core/site.js:2108 -#: core/static/templates/index.html:194 core/static/templates/index.html:207 -#: core/static/templates/index.html:244 -#: core/static/templates/projector-button.html:2 -#: core/static/templates/projector-container.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:273 -#: motions/static/templates/motions/motion-detail.html:27 -#: users/static/js/users/site.js:1496 -msgid "Projector" -msgstr "Projecteur" - -#: core/static/js/core/site.js:2121 -msgid "Projector header image" -msgstr "" - -#: core/static/js/core/site.js:2109 -msgid "Projector language" -msgstr "Langue du projecteur" - -#: core/static/js/core/site.js:2120 -msgid "Projector logo" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:153 -#: agenda/static/templates/agenda/item-list.html:428 -#: agenda/static/templates/agenda/item-list.html:464 -#: motions/static/js/motions/site.js:3291 -msgid "Public" -msgstr "Publique" - -#: agenda/static/js/agenda/site.js:100 -#: agenda/static/templates/agenda/item-list.html:442 -msgid "Public item" -msgstr "" - -#: agenda/static/js/agenda/site.js:184 -#: agenda/static/templates/agenda/item-list.html:281 -msgid "Public items" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:177 -msgid "Publish" -msgstr "Publier" - -#: assignments/static/js/assignments/site.js:931 -msgid "Put all candidates on the list of speakers" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:215 -msgid "Quorum" -msgstr "Quorum" - -#: assignments/static/templates/assignments/assignment-detail.html:249 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) not reached." -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:246 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:484 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) not " -"reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:481 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) " -"reached." -msgstr "" - -#: motions/static/js/motions/docx.js:96 motions/static/js/motions/pdf.js:393 -#: motions/static/js/motions/site.js:529 motions/static/js/motions/site.js:986 -#: motions/static/templates/motions/motion-detail.html:594 -#: motions/static/templates/motions/motion-import.html:25 -#: motions/static/templates/motions/motion-import.html:48 -#: motions/static/templates/motions/slide_motion.html:151 -#: motions/static/templates/motions/slide_motion.html:166 -msgid "Reason" -msgstr "Motivation" - -#: motions/static/js/motions/site.js:860 -#: motions/static/templates/motions/motion-block-detail.html:53 -#: motions/static/templates/motions/motion-table-filters.html:41 -msgid "Recommendation" -msgstr "Recommandation" - -#: motions/static/templates/motions/workflow-detail.html:89 -msgid "Recommendation label" -msgstr "" - -#: motions/static/js/motions/workflow.js:80 -msgid "Red" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:15 -#: motions/static/templates/motions/workflow-detail.html:18 -msgid "Reduce" -msgstr "" - -#: motions/static/js/motions/base.js:1636 -msgid "Refer to committee" -msgstr "Renvoyer à un comité." - -#: core/static/templates/core/manage-projectors.html:16 -msgid "Reference for current list of speakers" -msgstr "Référence pour la liste actuelle des orateurs" - -#: motions/static/js/motions/base.js:1637 -msgid "Referral to committee" -msgstr "Renvoi au comité" - -#: motions/static/js/motions/base.js:1610 -#: motions/static/js/motions/base.js:1625 -msgid "Reject" -msgstr "Rejeter" - -#: motions/static/js/motions/base.js:1641 -msgid "Reject (not authorized)" -msgstr "Rejeter (non autorisé)" - -#: motions/static/templates/motions/motion-detail/change-summary.html:11 -msgid "Reject all change recommendations" -msgstr "Rejeter toutes les recommandations de modification" - -#: motions/static/templates/motions/motion-detail/change-summary.html:20 -#: motions/static/templates/motions/motion-detail/change-summary.html:45 -#: motions/static/templates/motions/motion-detail/view-diff.html:100 -#: motions/static/templates/motions/motion-detail/view-diff.html:16 -#: motions/static/templates/motions/motion-detail/view-diff.html:38 -#: motions/static/templates/motions/motion-detail/view-diff.html:71 -msgid "Rejected" -msgstr "Rejeté" - -#: motions/static/js/motions/base.js:1611 -#: motions/static/js/motions/base.js:1626 -msgid "Rejection" -msgstr "Rejet" - -#: motions/static/js/motions/base.js:1642 -msgid "Rejection (not authorized)" -msgstr "Rejet (non autorisé)" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:50 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:73 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:99 -#: core/static/templates/config-form-field.html:123 -#: core/static/templates/config-form-field.html:42 -#: motions/static/templates/motions/motion-submitters.html:23 -msgid "Remove" -msgstr "Enlever" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:19 -msgid "Remove all speakers" -msgstr "Supprimer tous les orateurs" - -#: motions/static/js/motions/site.js:3285 -msgid "" -"Remove all supporters of a motion if a submitter edits his motion in early " -"state" -msgstr "Supprimer tous les partisans d'une motion si un expéditeur édite sa motion dans un statut précoce" - -#: core/static/templates/core/projector-controls.html:137 -msgid "Remove countdown" -msgstr "Enlever le compte à rebours " - -#: motions/static/templates/motions/motion-block-detail.html:62 -msgid "Remove from motion block" -msgstr "Retirer du bloc de motion" - -#: users/static/templates/users/user-list.html:115 -#: users/static/templates/users/user-list.html:84 -msgid "Remove group" -msgstr "Enlever le groupe" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:129 -#: assignments/static/templates/assignments/assignment-detail.html:122 -msgid "Remove me" -msgstr "Enlever moi-même" - -#: core/static/templates/core/projector-controls.html:228 -msgid "Remove message" -msgstr "Enlever le message" - -#: motions/static/js/motions/base.js:1495 motions/static/js/motions/pdf.js:280 -#: motions/static/js/motions/site.js:370 -#: motions/static/templates/motions/motion-detail/change-summary.html:18 -#: motions/static/templates/motions/motion-detail/change-summary.html:37 -msgid "Replacement" -msgstr "Remplacement" - -#: motions/static/templates/motions/motion-import.html:20 -#: topics/static/templates/topics/topic-import.html:48 -#: users/static/templates/users/user-import.html:48 -msgid "" -"Required comma or semicolon separated values with these column header names " -"in the first row" -msgstr "Requis des valeurs séparées par virgule ou point-virgule, avec ces noms d'en-tête de colonne dans la première rangée" - -#: assignments/static/js/assignments/site.js:925 -#: assignments/static/templates/assignments/assignment-detail.html:204 -#: motions/static/js/motions/site.js:3302 -#: motions/static/templates/motions/motion-detail.html:472 -msgid "Required majority" -msgstr "Majorité requise" - -#: motions/static/templates/motions/workflow-detail.html:142 -msgid "Required permission to see" -msgstr "" - -#: core/static/templates/config-form-field.html:147 -msgid "Reset" -msgstr "Réinitialiser" - -#: core/static/templates/core/projector-controls.html:159 -msgid "Reset countdown" -msgstr "Remettre le compte à rebours à zéro" - -#: motions/static/templates/motions/motion-amendment-list.html:311 -#: motions/static/templates/motions/motion-detail.html:246 -#: motions/static/templates/motions/motion-list.html:257 -msgid "Reset recommendation" -msgstr "Réinitialiser la recommandation" - -#: core/static/templates/core/manage-projectors.html:170 -#: core/static/templates/core/projector-controls.html:94 -msgid "Reset scaling" -msgstr "Réinitialiser l'échelle" - -#: core/static/templates/core/manage-projectors.html:190 -#: core/static/templates/core/projector-controls.html:114 -msgid "Reset scrolling" -msgstr "Réinitialiser le défilement" - -#: motions/static/templates/motions/motion-amendment-list.html:272 -#: motions/static/templates/motions/motion-detail.html:204 -#: motions/static/templates/motions/motion-list.html:231 -msgid "Reset state" -msgstr "Réinitialiser le statut" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:61 -msgid "Reset zoom" -msgstr "Réinitialiser le zoom" - -#: motions/static/templates/motions/motion-detail/comments.html:42 -#: motions/static/templates/motions/motion-detail/personal-note.html:38 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:20 -#: motions/static/templates/motions/motion-detail/view-original.html:12 -msgid "Revert" -msgstr "Revenir" - -#: core/static/js/core/site.js:2103 -msgid "Right" -msgstr "" - -#: agenda/static/js/agenda/site.js:874 -msgid "Roman" -msgstr "Romain" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:51 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:83 -msgid "Rotate clockwise" -msgstr "tourner vers la droite" - -#: assignments/static/templates/assignments/assignment-form.html:15 -#: assignments/static/templates/assignments/assignmentpoll-form.html:15 -#: core/static/templates/core/projector-controls.html:193 -#: core/static/templates/core/projector-message-form.html:5 -#: core/static/templates/core/tag-form.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:16 -#: motions/static/templates/motions/category-form.html:10 -#: motions/static/templates/motions/change-recommendation-form.html:10 -#: motions/static/templates/motions/motion-block-form.html:10 -#: motions/static/templates/motions/motion-comment-form.html:9 -#: motions/static/templates/motions/motion-detail/comments.html:39 -#: motions/static/templates/motions/motion-detail/personal-note.html:35 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:17 -#: motions/static/templates/motions/motion-detail/view-original.html:9 -#: motions/static/templates/motions/motion-form.html:16 -#: motions/static/templates/motions/motion-poll-form.html:15 -#: motions/static/templates/motions/state-edit.html:21 -#: motions/static/templates/motions/workflow-edit.html:21 -#: topics/static/templates/topics/topic-form.html:10 -#: users/static/templates/users/group-edit.html:21 -#: users/static/templates/users/profile-password-form.html:9 -#: users/static/templates/users/user-form.html:10 -msgid "Save" -msgstr "Enregistrer" - -#: mediafiles/static/js/mediafiles/image-plugin.js:197 -#: mediafiles/static/js/mediafiles/image-plugin.js:46 -msgid "Scale" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:107 -msgid "Scaling" -msgstr "" - -#: users/static/js/users/pdf.js:180 -msgid "Scan this QR code to connect to WLAN." -msgstr "Scannez ce code QR pour se connecter au réseau sans fil." - -#: users/static/js/users/pdf.js:230 -msgid "Scan this QR code to open URL." -msgstr "Scannez ce code QR pour ouvrir URL." - -#: core/static/templates/core/manage-projectors.html:185 -#: core/static/templates/core/projector-controls.html:109 -msgid "Scroll down" -msgstr "Faire défiler vers le bas" - -#: core/static/templates/core/manage-projectors.html:180 -#: core/static/templates/core/projector-controls.html:104 -msgid "Scroll up" -msgstr "Faire défiler vers le haut" - -#: agenda/static/templates/agenda/item-list.html:303 -#: assignments/static/templates/assignments/assignment-list.html:172 -#: core/static/js/core/site.js:400 core/static/templates/index.html:164 -#: core/static/templates/search.html:11 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:230 -#: motions/static/templates/motions/motion-table-filters.html:235 -#: users/static/templates/users/user-list.html:280 -msgid "Search" -msgstr "Rechercher" - -#: core/static/templates/search.html:3 -msgid "Search results" -msgstr "Résultats de la recherche" - -#: assignments/static/js/assignments/site.js:935 -msgid "Searching for candidates" -msgstr "Recherche de candidats" - -#: agenda/static/templates/agenda/item-list.html:73 -#: assignments/static/templates/assignments/assignment-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:123 -#: motions/static/templates/motions/motion-amendment-list.html:64 -#: motions/static/templates/motions/motion-list.html:47 -#: users/static/templates/users/user-list.html:39 -msgid "Select ..." -msgstr "Selectionner ..." - -#: motions/static/templates/motions/motion-import.html:15 -#: topics/static/templates/topics/topic-import.html:43 -#: users/static/templates/users/user-import.html:43 -msgid "Select a CSV file" -msgstr "Sélectionnez un fichier CSV" - -#: core/static/templates/csv-import.html:8 -msgid "Select a file" -msgstr "Sélectionnez un fichier" - -#: assignments/static/js/assignments/site.js:171 -#: motions/static/js/motions/motion-block.js:94 -#: motions/static/js/motions/site.js:556 topics/static/js/topics/site.js:133 -msgid "Select a parent item ..." -msgstr "Sélectionnez un élément parent ..." - -#: motions/static/js/motions/site.js:603 -msgid "Select or search a category ..." -msgstr "Selectionner ou rechercher une catégorie ..." - -#: users/static/js/users/site.js:351 -msgid "Select or search a group ..." -msgstr "Sélectionner ou rechercher un groupe ..." - -#: motions/static/js/motions/site.js:617 -msgid "Select or search a motion block ..." -msgstr "Sélectionner ou rechercher un block de motions ..." - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: mediafiles/static/js/mediafiles/forms.js:62 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "Select or search a participant ..." -msgstr "Sélectionner ou rechercher un participant ..." - -#: motions/static/js/motions/site.js:495 -msgid "Select or search a submitter ..." -msgstr "Selectionner ou rechercher un Requérant ..." - -#: motions/static/js/motions/site.js:654 -msgid "Select or search a supporter ..." -msgstr "Sélectionner ou rechercher un partisan ..." - -#: assignments/static/js/assignments/site.js:198 -#: motions/static/js/motions/site.js:640 -msgid "Select or search a tag ..." -msgstr "Sélectionner ou rechercher une balise ..." - -#: motions/static/js/motions/site.js:669 -msgid "Select or search a workflow ..." -msgstr "Sélectionner ou rechercher un flux de travail ..." - -#: motions/static/js/motions/site.js:589 topics/static/js/topics/site.js:118 -msgid "Select or search an attachment ..." -msgstr "Sélectionner ou rechercher une annexe ..." - -#: core/static/templates/core/manage-projectors.html:13 -msgid "Select the projector to which the current list of speakers refers to." -msgstr "Sélectionnez le projecteur auquel se réfère la liste actuelle des orateurs." - -#: users/static/templates/users/user-list.html:142 -#: users/static/templates/users/user-list.html:89 -msgid "Send invitation emails" -msgstr "" - -#: core/static/templates/csv-import.html:27 -msgid "Separator" -msgstr "Séparateur" - -#: core/static/js/core/site.js:2099 -msgid "Separator used for all csv exports and examples" -msgstr "Séparateur utilisé pour toutes les exportations csv et exemples" - -#: motions/static/js/motions/docx.js:93 motions/static/js/motions/pdf.js:549 -#: motions/static/js/motions/pdf.js:82 -#: motions/static/templates/motions/motion-detail.html:99 -msgid "Sequential number" -msgstr "Nombre séquentiel" - -#: motions/static/js/motions/site.js:3245 -msgid "Serially numbered" -msgstr "Numérotés en série" - -#: motions/static/templates/motions/motion-list.html:305 -msgid "Set a category" -msgstr "Définir une catégorie" - -#: motions/static/templates/motions/motion-list.html:339 -msgid "Set a motion block" -msgstr "Définir un block de motions" - -#: motions/static/templates/motions/motion-amendment-list.html:248 -#: motions/static/templates/motions/motion-detail.html:86 -#: motions/static/templates/motions/motion-list.html:210 -msgid "Set as favorite" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:118 -#: motions/static/templates/motions/motion-amendment-list.html:145 -#: motions/static/templates/motions/motion-list.html:107 -#: motions/static/templates/motions/motion-list.html:80 -msgid "Set category" -msgstr "Définir la catégorie" - -#: agenda/static/templates/agenda/item-list.html:502 -#: users/static/templates/users/user-list.html:435 -msgid "Set comment ..." -msgstr "Définir un commentaire ..." - -#: agenda/static/templates/agenda/item-list.html:481 -msgid "Set duration ..." -msgstr "Définir la durée ..." - -#: users/static/templates/users/user-import.html:102 -msgid "Set global action" -msgstr "Définir une action globale" - -#: assignments/static/templates/assignments/assignment-detail.html:145 -msgid "Set hint for ballot paper ..." -msgstr "Définir un indice pour le bulletin de vote ..." - -#: motions/static/js/motions/workflow.js:72 -msgid "Set identifier" -msgstr "" - -#: motions/static/js/motions/site.js:3246 -msgid "Set it manually" -msgstr "Réglez-le manuellement" - -#: agenda/static/templates/agenda/item-list.html:512 -msgid "Set item number ..." -msgstr "Définir le numéro d'article ..." - -#: motions/static/templates/motions/motion-amendment-list.html:119 -#: motions/static/templates/motions/motion-amendment-list.html:158 -#: motions/static/templates/motions/motion-list.html:120 -#: motions/static/templates/motions/motion-list.html:81 -msgid "Set motion block" -msgstr "Définir le block de motions" - -#: agenda/static/templates/agenda/item-list.html:148 -msgid "Set state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:117 -#: motions/static/templates/motions/motion-amendment-list.html:131 -#: motions/static/templates/motions/motion-list.html:79 -#: motions/static/templates/motions/motion-list.html:93 -msgid "Set status" -msgstr "Défénir le statut" - -#: users/static/templates/users/user-list.html:419 -msgid "Set structure level ..." -msgstr "Définir le niveau de structure" - -#: agenda/static/templates/agenda/item-list.html:147 -#: agenda/static/templates/agenda/item-list.html:166 -msgid "Set visibility" -msgstr "" - -#: users/static/templates/users/user-list.html:88 -msgid "Set/Unset 'is a committee'" -msgstr "Définir / Désélectionner 'est un comité'" - -#: users/static/templates/users/user-list.html:86 -msgid "Set/Unset 'is active'" -msgstr "Définir / Désélectionner 'est actif`" - -#: users/static/templates/users/user-list.html:87 -msgid "Set/Unset 'is present'" -msgstr "Définir / Désélectionner 'est présent'" - -#: core/static/js/core/site.js:197 core/static/js/core/site.js:389 -#: core/static/templates/config.html:3 -msgid "Settings" -msgstr "Paramètres " - -#: core/static/js/core/site.js:2087 -msgid "Short description of event" -msgstr "Une courte description de l'événement" - -#: motions/static/js/motions/site.js:3271 -msgid "Show amendments together with motions" -msgstr "" - -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:6 -msgid "Show entire motion text" -msgstr "" - -#: assignments/static/js/assignments/site.js:183 -#: motions/static/js/motions/site.js:571 users/static/js/users/site.js:382 -msgid "Show extended fields" -msgstr "Afficher les champs étendus" - -#: motions/static/templates/motions/motion-detail/toolbar.html:59 -msgid "Show highlighted line also on projector." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:642 -msgid "Show history" -msgstr "Afficher l'histoire" - -#: agenda/static/templates/agenda/item-sort.html:19 -msgid "Show internal items" -msgstr "Afficher les éléments internes" - -#: core/static/js/core/site.js:2105 -msgid "Show logo on projector" -msgstr "Afficher le logo sur le projecteur" - -#: agenda/static/js/agenda/site.js:880 -msgid "Show orange countdown in the last x seconds of speaking time" -msgstr "Afficher le compte à rebours orange dans les x dernières secondes de temps de parole" - -#: users/static/templates/users/user-change-password.html:43 -msgid "Show password" -msgstr "" - -#: motions/static/js/motions/workflow.js:77 -msgid "Show recommendation extension field" -msgstr "" - -#: motions/static/js/motions/workflow.js:75 -msgid "Show state extension field" -msgstr "" - -#: core/static/js/core/site.js:2113 -msgid "Show the clock on projector" -msgstr "" - -#: core/static/js/core/site.js:2098 -msgid "Show this text on the login page" -msgstr "Montrer ce texte sur la page de connexion" - -#: core/static/js/core/site.js:2111 -msgid "Show title and description of event on projector" -msgstr "Afficher le titre et la description de l'événement sur ​​le projecteur" - -#: motions/static/js/motions/base.js:1604 -msgid "Simple Workflow" -msgstr "Workflow simple" - -#: assignments/static/js/assignments/site.js:927 -#: motions/static/js/motions/site.js:3304 -msgid "Simple majority" -msgstr "Majorité simple" - -#: core/static/templates/core/manage-projectors.html:160 -#: core/static/templates/core/projector-controls.html:84 -msgid "Smaller" -msgstr "Plus petit" - -#: mediafiles/static/js/mediafiles/upload.js:128 -#: mediafiles/static/js/mediafiles/upload.js:150 -msgid "Some files could not be uploaded" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:148 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:207 -#: motions/static/templates/motions/category-list.html:44 -#: motions/static/templates/motions/motion-table-filters.html:202 -#: users/static/templates/users/user-list.html:257 -msgid "Sort" -msgstr "Triage" - -#: agenda/static/templates/agenda/item-list.html:79 -msgid "Sort ..." -msgstr "Triage...." - -#: agenda/static/templates/agenda/item-sort.html:9 -msgid "Sort agenda" -msgstr "Trier l'ordre du jour" - -#: motions/static/js/motions/site.js:3317 -msgid "Sort categories by" -msgstr "" - -#: users/static/js/users/site.js:1848 -msgid "Sort name of participants by" -msgstr "Trier le nom des participants par" - -#: motions/static/templates/motions/motion-detail.html:146 -#: motions/static/templates/motions/motion-submitters.html:10 -msgid "Sort submitters" -msgstr "" - -#: assignments/static/templates/assignments/assignmentpoll-form.html:8 -#: motions/static/templates/motions/motion-poll-form.html:8 -msgid "Special values" -msgstr "Valeurs spéciales" - -#: users/static/js/users/base.js:173 -msgid "Staff" -msgstr "Personnel" - -#: core/static/js/core/site.js:2104 -msgid "Standard font size in PDF" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:92 -#: core/static/templates/core/projector-controls.html:164 -msgid "Start" -msgstr "Début" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:46 -#: core/static/templates/core/projector-controls.html:187 -msgid "Start time" -msgstr "Heure de début" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:100 -msgid "Start/stop video" -msgstr "Démarrer / arrêter la vidéo" - -#: agenda/static/templates/agenda/item-list.html:250 -#: motions/static/js/motions/pdf.js:1115 motions/static/js/motions/pdf.js:114 -#: motions/static/js/motions/pdf.js:575 motions/static/js/motions/site.js:1429 -#: motions/static/js/motions/site.js:856 -#: motions/static/templates/motions/motion-block-detail.html:52 -#: motions/static/templates/motions/motion-detail.html:187 -#: motions/static/templates/motions/motion-detail.html:191 -#: motions/static/templates/motions/motion-table-filters.html:7 -#: motions/static/templates/motions/slide_motion.html:4 -msgid "State" -msgstr "Statut" - -#: motions/static/js/motions/docx.js:95 -msgid "Status" -msgstr "Statut" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:66 -msgid "Stop" -msgstr "Arreter" - -#: motions/static/js/motions/site.js:3261 -msgid "Stop submitting new motions by non-staff users" -msgstr "Arrêtez de soumettre de nouvelles motions par les utilisateurs non-employés" - -#: users/static/js/users/pdf.js:69 users/static/js/users/site.js:1282 -#: users/static/js/users/site.js:324 users/static/js/users/site.js:646 -#: users/static/templates/users/user-detail.html:28 -#: users/static/templates/users/user-import.html:53 -#: users/static/templates/users/user-import.html:86 -#: users/static/templates/users/user-list.html:425 -msgid "Structure level" -msgstr "Niveau de structure" - -#: core/static/js/core/site.js:132 core/static/js/core/site.js:133 -msgid "Submit" -msgstr "Proposer" - -#: motions/static/templates/motions/motion-import.html:26 -#: motions/static/templates/motions/motion-import.html:49 -msgid "Submitter" -msgstr "Requérant" - -#: motions/static/js/motions/docx.js:94 motions/static/js/motions/pdf.js:100 -#: motions/static/js/motions/pdf.js:1110 motions/static/js/motions/pdf.js:563 -#: motions/static/js/motions/site.js:102 -#: motions/static/js/motions/site.js:1423 -#: motions/static/js/motions/site.js:492 motions/static/js/motions/site.js:855 -#: motions/static/templates/motions/motion-detail.html:143 -#: motions/static/templates/motions/motion-detail.html:145 -#: motions/static/templates/motions/slide_motion.html:14 -msgid "Submitters" -msgstr "Requérant" - -#: motions/static/js/motions/pdf.js:291 -msgid "Summary of change recommendations" -msgstr "Résumé des recommandations de changement" - -#: motions/static/templates/motions/motion-detail/change-summary.html:4 -msgid "Summary of changes" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:164 -msgid "Support motion" -msgstr "Soutenir la motion" - -#: motions/static/js/motions/site.js:3282 -#: motions/static/js/motions/site.js:651 -#: motions/static/templates/motions/motion-amendment-list.html:385 -#: motions/static/templates/motions/motion-detail.html:156 -#: motions/static/templates/motions/motion-list.html:419 -msgid "Supporters" -msgstr "Partisants" - -#: users/static/js/users/site.js:1852 users/static/js/users/site.js:304 -#: users/static/js/users/site.js:636 -#: users/static/templates/users/user-import.html:52 -#: users/static/templates/users/user-import.html:85 -msgid "Surname" -msgstr "Nom" - -#: users/static/js/users/site.js:1858 -msgid "System URL" -msgstr "URL du système" - -#: assignments/static/js/assignments/pdf.js:552 -#: motions/static/js/motions/docx.js:52 motions/static/js/motions/pdf.js:872 -msgid "Table of contents" -msgstr "Table de matière" - -#: assignments/static/templates/assignments/assignment-list.html:105 -#: motions/static/templates/motions/motion-table-filters.html:141 -msgid "Tag" -msgstr "Balise" - -#: assignments/static/js/assignments/site.js:195 -#: assignments/static/templates/assignments/assignment-detail.html:55 -#: assignments/static/templates/assignments/assignment-list.html:10 -#: core/static/js/core/site.js:410 core/static/templates/core/tag-list.html:13 -#: motions/static/js/motions/site.js:637 -#: motions/static/templates/motions/motion-detail.html:340 -#: motions/static/templates/motions/motion-detail.html:344 -#: motions/static/templates/motions/motion-list.html:27 -msgid "Tags" -msgstr "Balises" - -#: motions/static/js/motions/site.js:518 motions/static/js/motions/site.js:985 -#: motions/static/templates/motions/motion-import.html:24 -#: motions/static/templates/motions/motion-import.html:47 -#: topics/static/js/topics/site.js:103 -#: topics/static/templates/topics/topic-import.html:51 -#: topics/static/templates/topics/topic-import.html:70 -msgid "Text" -msgstr "Texte" - -#: motions/static/js/motions/site.js:392 -msgid "Text from line %from% to %to%" -msgstr "Texte de la ligne %from% à %to%" - -#: motions/static/js/motions/site.js:391 -msgid "Text in line %from%" -msgstr "Texte de la ligne %from%" - -#: motions/static/js/motions/site.js:3296 -msgid "The 100 % base of a voting result consists of" -msgstr "La base d'un résultat de vote de 100% est constitué de" - -#: assignments/static/js/assignments/site.js:910 -msgid "The 100-%-base of an election result consists of" -msgstr "La base d'un résultat de l'élection de 100% est constitué de" - -#: motions/static/js/motions/site.js:3248 -msgid "The assembly may decide:" -msgstr "Je demande a l'Assemblée de décider sur," - -#: core/static/js/core/site.js:1847 -msgid "The delete was successful." -msgstr "La suppression a réussi." - -#: core/static/templates/privacypolicydialog.html:3 -msgid "The event manager hasn't set up a privacy policy yet." -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:26 -msgid "The list of speakers is empty." -msgstr "La liste des orateurs est vide." - -#: motions/static/js/motions/site.js:3257 -msgid "" -"The maximum number of characters per line. Relevant when line numbering is " -"enabled. Min: 40" -msgstr "Nombre maximal de caractères par ligne. Relevant lorsque la numérotation des lignes est activée. Min: 40 caractères." - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:16 -msgid "The modified final version have been changed." -msgstr "" - -#: motions/static/templates/motions/motion-detail/personal-note.html:34 -msgid "The personal note has been changed." -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:364 -msgid "" -"The projector header should have a default size of 1024x70px. Adapt the " -"image width if you change the projector resolution." -msgstr "" - -#: core/static/js/core/base.js:794 -msgid "The server didn't respond." -msgstr "Le serveur n'a pas répondu." - -#: motions/static/templates/motions/motion-detail/view-original.html:8 -msgid "The text or reason have been changed." -msgstr "" - -#: motions/static/js/motions/site.js:3274 -msgid "The title of the motion is always applied." -msgstr "Le titre de la motion est toujours appliqué." - -#: users/static/js/users/site.js:830 -msgid "" -"The user %user% has no email, so the invitation email could not be send." -msgstr "" - -#: users/static/js/users/site.js:832 -msgid "" -"The users %user% have no email, so the invitation emails could not be send." -msgstr "" - -#: users/static/js/users/site.js:1265 -msgid "There are more than one duplicates of this user!" -msgstr "Il y a plus d'un double de cet utilisateur!" - -#: motions/static/templates/motions/motion-detail/view-diff.html:57 -msgid "This change collides with another one." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:620 -msgid "This is the last active version." -msgstr "Ce n'est pas la version active." - -#: agenda/static/js/agenda/site.js:869 -msgid "This prefix will be set if you run the automatic agenda numbering." -msgstr "Ce préfixe sera fixé si vous exécutez la numérotation automatique pour l'ordre du jour." - -#: motions/static/templates/motions/motion-detail.html:96 -msgid "This version is not permitted." -msgstr "Cette version n'est pas permis." - -#: assignments/static/js/assignments/site.js:929 -#: motions/static/js/motions/site.js:3306 -msgid "Three-quarters majority" -msgstr "La majorité des trois quarts" - -#: assignments/static/js/assignments/site.js:129 -#: assignments/static/js/assignments/site.js:335 -#: mediafiles/static/js/mediafiles/forms.js:44 -#: mediafiles/static/js/mediafiles/list.js:100 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:24 -#: motions/static/js/motions/motion-block.js:79 -#: motions/static/js/motions/pdf.js:264 motions/static/js/motions/site.js:1421 -#: motions/static/js/motions/site.js:506 -#: motions/static/templates/motions/motion-detail/change-summary.html:17 -#: motions/static/templates/motions/motion-import.html:23 -#: motions/static/templates/motions/motion-import.html:46 -#: topics/static/js/topics/site.js:95 -#: topics/static/templates/topics/topic-import.html:50 -#: topics/static/templates/topics/topic-import.html:69 -#: users/static/js/users/site.js:288 -#: users/static/templates/users/user-import.html:50 -#: users/static/templates/users/user-import.html:83 -msgid "Title" -msgstr "Titre" - -#: motions/static/js/motions/site.js:3315 -msgid "Title for PDF and DOCX documents (all motions)" -msgstr "Titre pour les document PDF et DOCX (toutes les motions)" - -#: assignments/static/js/assignments/site.js:932 -msgid "Title for PDF document (all elections)" -msgstr "Titre du fichier PDF (toutes les élections)" - -#: users/static/js/users/site.js:1855 -msgid "Title for access data and welcome PDF" -msgstr "Titre de données d'accès et PDF de bienvenue" - -#: topics/static/templates/topics/topic-import.html:56 -msgid "Title is required. All other fields are optional and may be empty." -msgstr "Le titre doit être remplis. Tous les autres champs sont factultatifs et peuvent être vides." - -#: motions/static/js/motions/site.js:360 -msgid "To Line" -msgstr "À la ligne" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:76 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:93 -msgid "Toggle fullscreen" -msgstr "Basculer en plein écran" - -#: topics/static/js/topics/base.js:16 topics/static/js/topics/site.js:161 -#: topics/static/templates/topics/topic-detail.html:25 -msgid "Topic" -msgstr "Sujet" - -#: topics/static/js/topics/site.js:17 -msgid "Topics" -msgstr "Les sujets" - -#: motions/static/js/motions/site.js:539 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:25 -#: motions/static/templates/motions/motion-detail/view-original.html:17 -msgid "Trivial change" -msgstr "Changement trivial" - -#: assignments/static/js/assignments/site.js:928 -#: motions/static/js/motions/site.js:3305 -msgid "Two-thirds majority" -msgstr "La majorité des deux tiers" - -#: mediafiles/static/js/mediafiles/list.js:102 -msgid "Type" -msgstr "Type" - -#: motions/static/templates/motions/motion-detail.html:169 -msgid "Unsupport motion" -msgstr "Ne plus soutenir cette motion" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:87 -msgid "Upload" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:1 -msgid "Upload files" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:33 -msgid "Upload status" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:106 -msgid "Upload time" -msgstr "Durée de transfer" - -#: mediafiles/static/js/mediafiles/forms.js:59 -#: mediafiles/static/js/mediafiles/list.js:108 -msgid "Uploaded by" -msgstr "transféré par" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:30 -msgid "Uploader" -msgstr "" - -#: assignments/static/js/assignments/site.js:923 -#: motions/static/js/motions/site.js:3311 -msgid "Use the following custom number" -msgstr "Utilisez le nombre personnalisé suivant" - -#: users/static/js/users/site.js:1876 -msgid "" -"Use these placeholders: {name}, {event_name}, {url}, {username}, {password}." -" The url referrs to the system url." -msgstr "" - -#: users/static/js/users/site.js:1859 -msgid "Used for QRCode in PDF of access data." -msgstr "Utilisé pour le code QR dans le PDF des données d'accès." - -#: users/static/js/users/site.js:1861 users/static/js/users/site.js:1863 -#: users/static/js/users/site.js:1865 -msgid "Used for WLAN QRCode in PDF of access data." -msgstr "Utilisé pour accès au réseau sans fil le QR Code dans le PDF des données d'accès." - -#: core/static/templates/core/login-form.html:12 -#: users/static/js/users/pdf.js:193 users/static/js/users/site.js:1283 -#: users/static/js/users/site.js:340 users/static/js/users/site.js:463 -#: users/static/templates/users/user-change-password.html:41 -#: users/static/templates/users/user-detail.html:46 -msgid "Username" -msgstr "Nom d'utilisateur" - -#: motions/static/templates/motions/motion-import.html:123 -msgid "Users created" -msgstr "Utilisateurs créés" - -#: users/static/templates/users/group-list.html:35 -msgid "Users without any assigned group gain the permissions from this group." -msgstr "Les utilisateurs sans groupe assigné obtiennent les autorisations de ce groupe." - -#: assignments/static/js/assignments/site.js:826 -#: assignments/static/templates/assignments/assignment-detail.html:268 -#: assignments/static/templates/assignments/slide_assignment.html:82 -msgid "Valid ballots" -msgstr "Bulletins valables" - -#: motions/static/js/motions/pdf.js:209 motions/static/js/motions/site.js:790 -#: motions/static/templates/motions/motion-detail.html:441 -msgid "Valid votes" -msgstr "Votes valides" - -#: motions/static/templates/motions/motion-detail.html:613 -#: motions/static/templates/motions/motion-detail.html:616 -msgid "Version" -msgstr "Version" - -#: motions/static/templates/motions/motion-detail.html:609 -msgid "Version history" -msgstr "Historique des versions" - -#: motions/static/js/motions/workflow.js:68 -msgid "Versioning" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:274 -msgid "Visibility" -msgstr "" - -#. ballot of a motion -#: motions/static/js/motions/pdf.js:186 -#: motions/static/templates/motions/motion-detail.html:372 -#: motions/static/templates/motions/motion-poll-form.html:1 -#: motions/static/templates/motions/slide_motion.html:24 -msgid "Vote" -msgstr "Vote" - -#: assignments/static/js/assignments/pdf.js:154 -#: assignments/static/templates/assignments/assignment-detail.html:214 -#: assignments/static/templates/assignments/slide_assignment.html:37 -msgid "Votes" -msgstr "Votes" - -#: motions/static/js/motions/pdf.js:223 motions/static/js/motions/site.js:808 -#: motions/static/templates/motions/motion-detail.html:459 -msgid "Votes cast" -msgstr "Nombre de votants" - -#: assignments/static/js/assignments/site.js:936 -msgid "Voting" -msgstr "Vote" - -#: motions/static/js/motions/site.js:3295 -msgid "Voting and ballot papers" -msgstr "Bulletins de vote et d'élection" - -#: motions/static/js/motions/pdf.js:231 motions/static/js/motions/site.js:887 -#: motions/static/templates/motions/motion-detail.html:367 -#: motions/static/templates/motions/slide_motion.html:20 -msgid "Voting result" -msgstr "Résultat de la votation" - -#: users/static/js/users/site.js:1866 -msgid "WEP" -msgstr "WEP" - -#: users/static/js/users/pdf.js:137 -msgid "WLAN access data" -msgstr "Données d'accès du réseau sans fil" - -#: users/static/js/users/pdf.js:157 users/static/js/users/site.js:1864 -msgid "WLAN encryption" -msgstr "cryptage du réseau sans fil" - -#: users/static/js/users/pdf.js:141 users/static/js/users/site.js:1860 -msgid "WLAN name (SSID)" -msgstr "Nom du réseau sans fil (SSID)" - -#: users/static/js/users/pdf.js:149 users/static/js/users/site.js:1862 -msgid "WLAN password" -msgstr "Mot de passe du réseau sans fils" - -#: users/static/js/users/site.js:1867 -msgid "WPA/WPA2" -msgstr "WPA/WPA2" - -#: assignments/static/templates/assignments/slide_assignment.html:29 -msgid "Waiting for results ..." -msgstr "En attente de résultats ..." - -#: core/static/js/core/site.js:747 -msgid "Warning" -msgstr "" - -#: core/static/js/core/site.js:2126 -msgid "Web interface header logo" -msgstr "" - -#: core/static/js/core/site.js:2094 users/static/js/users/site.js:1854 -msgid "Welcome to OpenSlides" -msgstr "Bienvenue sur OpenSlides" - -#: motions/static/js/motions/site.js:3265 -msgid "" -"Will be displayed as label before selected recommendation. Use an empty " -"value to disable the recommendation system." -msgstr "Affiché comme une étiquette avant la recommandation sélectionnée. Utilisez une entrée vide pour désactiver le système de recommandation." - -#: motions/static/js/motions/base.js:1628 -msgid "Withdraw" -msgstr "Retirer" - -#: motions/static/js/motions/site.js:665 -msgid "Workflow" -msgstr "Workflow" - -#: motions/static/js/motions/site.js:3242 -msgid "Workflow of new motions" -msgstr "Workflow de nouvelles motions" - -#: motions/static/js/motions/site.js:199 -#: motions/static/templates/motions/motion-list.html:23 -#: motions/static/templates/motions/workflow-list.html:13 -msgid "Workflows" -msgstr "" - -#: motions/static/js/motions/workflow.js:82 -msgid "Yellow" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:317 -#: assignments/static/js/assignments/site.js:611 -#: assignments/static/js/assignments/site.js:729 -#: motions/static/js/motions/pdf.js:193 motions/static/js/motions/pdf.js:739 -#: motions/static/js/motions/site.js:760 -#: motions/static/templates/motions/motion-detail.html:405 -#: motions/static/templates/motions/slide_motion.html:32 -msgid "Yes" -msgstr "Oui" - -#: motions/static/js/motions/site.js:3298 -msgid "Yes/No" -msgstr "Oui/Non" - -#: assignments/static/js/assignments/site.js:916 -#: assignments/static/templates/assignments/assignment-detail.html:289 -msgid "Yes/No per candidate" -msgstr "Oui/Non par candidat" - -#: motions/static/js/motions/site.js:3297 -msgid "Yes/No/Abstain" -msgstr "Oui / Non / Absence" - -#: assignments/static/js/assignments/site.js:915 -#: assignments/static/templates/assignments/assignment-detail.html:288 -msgid "Yes/No/Abstain per candidate" -msgstr "Oui/Non par candidat" - -#: users/static/templates/users/group-list.html:69 -msgid "You are not allowed to lock yourself out of the configuration!" -msgstr "Vous n'êtes pas autorisé à vous verrouiller hors de la configuration!" - -#: core/static/js/core/site.js:2106 -msgid "" -"You can replace the logo by uploading an image and set it as the \"Projector" -" logo\" in \"files\"." -msgstr "" - -#: users/static/js/users/site.js:1873 -msgid "You can use {event_name} as a placeholder." -msgstr "" - -#: users/static/js/users/site.js:1736 -msgid "You have to enable cookies to use OpenSlides." -msgstr "Vous devez activer les cookies pour utiliser OpenSlides." - -#: users/static/templates/users/user-change-password.html:17 -msgid "You override the personally set password of" -msgstr "Vous remplacez le mot de passe de" - -#: users/static/js/users/site.js:1872 -msgid "Your login for {event_name}" -msgstr "" - -#: motions/static/js/motions/pdf.js:1376 -msgid "ZIP successfully generated." -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:66 -msgid "Zoom in" -msgstr "Zoom avant" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:57 -msgid "Zoom out" -msgstr "Zoom arrière" - -#: agenda/static/js/agenda/site.js:883 -msgid "[Begin speech] starts the countdown, [End speech] stops the countdown." -msgstr "[Discours démarrer] commencer le compte à rebours, [discours de fin] arrête le compte à rebours." - -#: users/static/js/users/site.js:1856 -msgid "[Place for your welcome and help text.]" -msgstr "[Insérer votre texte de bienvenue ici.]" - -#: core/static/js/core/site.js:2096 -msgid "[Space for your welcome text.]" -msgstr "[Espace pour votre texte de bienvenue ici.]" - -#: motions/static/js/motions/base.js:1606 -#: motions/static/js/motions/base.js:1621 -msgid "accepted" -msgstr "accepté" - -#: motions/static/js/motions/base.js:1629 -msgid "adjourned" -msgstr "ajourné" - -#: topics/static/js/topics/csv.js:26 -msgid "agenda-example" -msgstr "" - -#: users/static/js/users/site.js:1284 -msgid "already exists." -msgstr "Existe déja" - -#: motions/static/templates/motions/motion-amendment-list.html:175 -#: motions/static/templates/motions/motion-list.html:438 -msgid "amendments" -msgstr "" - -#: users/static/js/users/site.js:852 -msgid "and" -msgstr "" - -#: core/static/js/core/site.js:753 -msgid "anonymous users are also editing this." -msgstr "" - -#: core/static/js/core/site.js:770 -msgid "are also editing this." -msgstr "" - -#: motions/static/js/motions/pdf.js:1392 -msgid "ballot-paper" -msgstr "bulletin de vote" - -#: motions/static/templates/motions/motion-amendment-list.html:320 -#: motions/static/templates/motions/motion-list.html:267 -msgid "by" -msgstr "par" - -#: core/static/js/core/site.js:46 -msgid "clear" -msgstr "Effacer" - -#: core/static/js/core/site.js:58 -msgid "close" -msgstr "Fermer" - -#: users/static/js/users/site.js:1178 -msgid "create duplicate" -msgstr "créer en double" - -#: core/static/js/core/site.js:50 -msgid "date" -msgstr "date" - -#: motions/static/templates/motions/motion-table-filters.html:25 -#: motions/static/templates/motions/motion-table-filters.html:263 -msgid "done" -msgstr "terminé" - -#: users/static/templates/users/user-import.html:97 -msgid "duplicate" -msgstr "double" - -#: users/static/templates/users/user-import.html:210 -#: users/static/templates/users/user-import.html:98 -msgid "duplicates" -msgstr "doubles" - -#: assignments/static/templates/assignments/assignment-list.html:66 -msgid "elections" -msgstr "élections" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:144 -msgid "files" -msgstr "fichiers" - -#: motions/static/templates/motions/motion-detail/toolbar.html:53 -msgid "go" -msgstr "aller" - -#. 'h' means time in hours -#: agenda/static/templates/agenda/item-list.html:484 -#: agenda/static/templates/agenda/item-list.html:492 -msgid "h" -msgstr "h" - -#: topics/static/templates/topics/topic-import.html:27 -msgid "imported" -msgstr "importé" - -#: motions/static/js/motions/site.js:932 motions/static/js/motions/site.js:945 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:17 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:43 -msgid "inline" -msgstr "en ligne" - -#: motions/static/js/motions/docx.js:168 motions/static/js/motions/pdf.js:1421 -#: motions/static/js/motions/pdf.js:425 -#: motions/static/templates/motions/motion-detail/comments.html:25 -msgid "internal" -msgstr "interne" - -#: core/static/js/core/site.js:768 -msgid "is also editing this." -msgstr "" - -#: assignments/static/js/assignments/pdf.js:223 -#: assignments/static/templates/assignments/assignment-detail.html:224 -#: assignments/static/templates/assignments/assignment-detail.html:95 -#: assignments/static/templates/assignments/slide_assignment.html:23 -#: assignments/static/templates/assignments/slide_assignment.html:44 -msgid "is elected" -msgstr "est élu" - -#: assignments/static/templates/assignments/assignment-detail.html:227 -msgid "is not elected" -msgstr "n'est pas élu" - -#: users/static/js/users/site.js:1106 -msgid "is now" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:124 -msgid "is set" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:193 -msgid "items" -msgstr "éléments" - -#: users/static/js/users/site.js:1176 -msgid "keep original" -msgstr "Conservez l'original" - -#: assignments/static/js/assignments/base.js:280 -#: assignments/static/js/assignments/base.js:50 -#: assignments/static/templates/assignments/assignmentpoll-form.html:9 -#: motions/static/js/motions/base.js:157 -#: motions/static/templates/motions/motion-poll-form.html:9 -msgid "majority" -msgstr "majorité" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:45 -msgid "minutes" -msgstr "minutes" - -#: motions/static/js/motions/csv.js:42 motions/static/js/motions/docx.js:188 -#: motions/static/js/motions/pdf.js:1325 motions/static/js/motions/pdf.js:1338 -#: motions/static/templates/motions/motion-block-detail.html:44 -#: motions/static/templates/motions/motion-list.html:137 -msgid "motions" -msgstr "motions" - -#: motions/static/templates/motions/motion-import.html:122 -msgid "motions were successfully imported." -msgstr "motions ont été importées avec succès." - -#: motions/static/templates/motions/motion-import.html:115 -msgid "motions will be imported." -msgstr "les motions seront importer." - -#: motions/static/templates/motions/motion-import.html:110 -msgid "motions will be not imported." -msgstr "les motions ne seront pas importer." - -#: motions/static/js/motions/csv.js:126 -msgid "motions-example" -msgstr "" - -#: motions/static/js/motions/site.js:3321 -msgid "needed" -msgstr "nécessaire" - -#: motions/static/js/motions/base.js:1638 -msgid "needs review" -msgstr "doit être revu" - -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:11 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:37 -msgid "none" -msgstr "aucun" - -#: motions/static/js/motions/base.js:1632 -msgid "not concerned" -msgstr "non concerné" - -#: motions/static/js/motions/base.js:1612 -msgid "not decided" -msgstr "ne pas decidé" - -#: core/static/js/core/site.js:38 -msgid "now" -msgstr "à présent" - -#: agenda/static/js/agenda/site.js:563 agenda/static/js/agenda/site.js:836 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:47 -msgid "of" -msgstr "de" - -#: motions/static/js/motions/site.js:933 motions/static/js/motions/site.js:946 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:23 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:49 -msgid "outside" -msgstr "à l'extérieur" - -#: users/static/js/users/site.js:1177 -msgid "override new" -msgstr "Passer outre" - -#: users/static/js/users/csv.js:44 -#: users/static/templates/users/user-list.html:150 -msgid "participants" -msgstr "participants" - -#: users/static/templates/users/user-import.html:225 -msgid "participants were successfully imported." -msgstr "les participants on été importer avec succès-" - -#: users/static/templates/users/user-import.html:215 -msgid "participants will be imported." -msgstr "les participants seront importer." - -#: users/static/templates/users/user-import.html:205 -msgid "participants will be not imported." -msgstr "les participants ne seront pas importer." - -#: users/static/js/users/csv.js:68 -msgid "participants-example" -msgstr "" - -#: motions/static/js/motions/base.js:1618 -msgid "permitted" -msgstr "permis" - -#: motions/static/js/motions/site.js:2057 -msgid "personal note" -msgstr "" - -#: motions/static/js/motions/base.js:1617 -msgid "published" -msgstr "publié" - -#: motions/static/js/motions/base.js:1635 -msgid "refered to committee" -msgstr "refered to committee" - -#: motions/static/js/motions/base.js:1609 -#: motions/static/js/motions/base.js:1624 -msgid "rejected" -msgstr "rejeté" - -#: motions/static/js/motions/base.js:1640 -msgid "rejected (not authorized)" -msgstr "rejeté (non autorisé)" - -#: core/static/templates/search.html:28 -msgid "results" -msgstr "résultats" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:11 -msgid "select files" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:194 -#: assignments/static/templates/assignments/assignment-list.html:67 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:176 -#: motions/static/templates/motions/motion-list.html:138 -#: users/static/templates/users/user-list.html:151 -msgid "selected" -msgstr "sélectionné" - -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:8 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:9 -#: motions/static/templates/motions/motion-list.html:430 -msgid "speakers" -msgstr "orateurs" - -#: motions/static/js/motions/base.js:1605 -msgid "submitted" -msgstr "présenté" - -#: core/static/js/core/site.js:54 -msgid "time" -msgstr "temps" - -#: core/static/js/core/site.js:42 -msgid "today" -msgstr "aujourd'hui" - -#: topics/static/templates/topics/topic-import.html:116 -msgid "topics were successfully imported." -msgstr "Les sujets ont été importés avec succès." - -#: topics/static/templates/topics/topic-import.html:109 -msgid "topics will be imported." -msgstr "Les sujets seront importés." - -#: topics/static/templates/topics/topic-import.html:104 -msgid "topics will be not imported." -msgstr "Les sujets ne seront pas importés." - -#: mediafiles/static/js/mediafiles/resources.js:141 -msgid "undefined" -msgstr "" - -#: assignments/static/js/assignments/base.js:283 -#: assignments/static/js/assignments/base.js:53 -#: assignments/static/templates/assignments/assignmentpoll-form.html:10 -#: motions/static/js/motions/base.js:160 -#: motions/static/templates/motions/motion-poll-form.html:10 -msgid "undocumented" -msgstr "non documenté" - -#: motions/static/templates/motions/motion-table-filters.html:269 -#: motions/static/templates/motions/motion-table-filters.html:31 -msgid "undone" -msgstr "" - -#: motions/static/js/motions/base.js:1627 -msgid "withdrawed" -msgstr "retiré" diff --git a/openslides/locale/angular-gettext/pt.po b/openslides/locale/angular-gettext/pt.po deleted file mode 100644 index 24fb37bf5..000000000 --- a/openslides/locale/angular-gettext/pt.po +++ /dev/null @@ -1,4409 +0,0 @@ -# -# Translators: -# Emanuel Schütze , 2017 -# Marco A.G.Pinto , 2015-2017 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"PO-Revision-Date: 2018-08-30 12:47+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/openslides/openslides/language/pt_PT/)\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: motions/static/templates/motions/motion-detail.html:47 -msgctxt "resolution" -msgid "Final version" -msgstr "Versão final" - -#: core/static/templates/csv-import.html:16 -msgctxt "special filetypes in a file open dialog" -msgid "Accepted file types" -msgstr "Tipos de ficheiros aceites" - -#: motions/static/js/motions/base.js:1483 -msgid "%TYPE% from line %FROM% to %TO%" -msgstr "%TYPE% desde a linha %FROM% à %TO%" - -#: motions/static/js/motions/base.js:1485 -msgid "%TYPE% in line %FROM%" -msgstr "%TYPE% na linha %FROM%" - -#: users/static/js/users/site.js:822 -msgid "%num% emails were send sucessfully." -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:115 -#: motions/static/templates/motions/motion-list.html:77 -#: users/static/templates/users/user-list.html:81 -msgid "--- Select action ---" -msgstr "--- Seleccionar acção ---" - -#: motions/static/templates/motions/motion-amendment-list.html:135 -#: motions/static/templates/motions/motion-list.html:97 -msgid "--- Select category ---" -msgstr "--- Selecciona a categoria ---" - -#: users/static/templates/users/user-list.html:102 -msgid "--- Select group ---" -msgstr "--- Seleccionar grupo ---" - -#: motions/static/templates/motions/motion-amendment-list.html:149 -#: motions/static/templates/motions/motion-list.html:111 -msgid "--- Select motion block ---" -msgstr "--- Selecciona bloco da moção ---" - -#: assignments/static/templates/assignments/assignment-list.html:45 -msgid "--- Select phase ---" -msgstr "--- Seleccionar fase ---" - -#: motions/static/templates/motions/motion-amendment-list.html:123 -#: motions/static/templates/motions/motion-list.html:85 -msgid "--- Select state ---" -msgstr "--- Selecciona estado ---" - -#: agenda/static/templates/agenda/item-list.html:152 -msgid "--- Select visibility ---" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:70 -msgid "--- Set phase ---" -msgstr "--- Definir fase ---" - -#: core/static/js/core/site.js:2081 -msgid "" -"OpenSlides is a free web based " -"presentation and assembly system for visualizing and controlling agenda, " -"motions and elections of an assembly." -msgstr "OpenSlides é um sistema de apresentação e assembleia livre web para visualizar e controlar a agenda, moções e eleições de uma assembleia." - -#: motions/static/js/motions/base.js:239 -msgid "" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:38 -msgid "A comment has been changed." -msgstr "Um comentário foi alterado." - -#: core/static/js/core/base.js:798 -msgid "A server error occurred (%%code%%). Please check the system logs." -msgstr "" - -#: users/static/js/users/site.js:426 users/static/js/users/site.js:478 -#: users/static/templates/users/user-detail.html:40 -msgid "About me" -msgstr "Sobre mim" - -#: assignments/static/js/assignments/pdf.js:332 -#: assignments/static/js/assignments/site.js:613 -#: assignments/static/js/assignments/site.js:758 -#: assignments/static/js/assignments/site.js:799 -#: assignments/static/templates/assignments/assignment-detail.html:256 -#: assignments/static/templates/assignments/slide_assignment.html:72 -#: motions/static/js/motions/pdf.js:203 motions/static/js/motions/pdf.js:741 -#: motions/static/js/motions/site.js:780 -#: motions/static/templates/motions/motion-detail.html:429 -#: motions/static/templates/motions/slide_motion.html:56 -msgid "Abstain" -msgstr "Abster" - -#: motions/static/js/motions/base.js:1607 -#: motions/static/js/motions/base.js:1622 -msgid "Accept" -msgstr "Aceitar" - -#: motions/static/js/motions/base.js:1608 -#: motions/static/js/motions/base.js:1623 -msgid "Acceptance" -msgstr "Aceitação" - -#: motions/static/templates/motions/motion-detail/change-summary.html:46 -msgid "Accepted" -msgstr "" - -#: motions/static/templates/motions/state-edit.html:14 -#: motions/static/templates/motions/workflow-detail.html:70 -msgid "Action word" -msgstr "" - -#: motions/static/js/motions/site.js:3270 -msgid "Activate amendments" -msgstr "Activar emendas" - -#: users/static/js/users/site.js:598 users/static/js/users/site.js:640 -msgid "Active" -msgstr "Activo" - -#: assignments/static/templates/assignments/assignment-list.html:285 -#: motions/static/templates/motions/motion-list.html:373 -msgid "Add a tag" -msgstr "Adicionar uma marca" - -#: core/static/templates/core/projector-controls.html:208 -msgid "Add countdown" -msgstr "Adicionar contagem regressiva" - -#: users/static/templates/users/user-list.html:109 -#: users/static/templates/users/user-list.html:83 -msgid "Add group" -msgstr "Adicionar grupo" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:125 -#: assignments/static/templates/assignments/assignment-detail.html:118 -msgid "Add me" -msgstr "Adicionar-me" - -#: core/static/templates/core/projector-controls.html:248 -msgid "Add message" -msgstr "Adicionar mensagem" - -#: core/static/templates/config-form-field.html:50 -msgid "Add new comment field" -msgstr "Adicionar novo campo de comentário" - -#: core/static/templates/core/projector-controls.html:209 -msgid "Add new countdown" -msgstr "Adicionar nova contagem regressiva" - -#: core/static/templates/config-form-field.html:131 -msgid "Add new custom translation" -msgstr "" - -#: core/static/templates/core/projector-controls.html:249 -msgid "Add new message" -msgstr "Adicionar nova mensagem" - -#: motions/static/templates/motions/motion-import.html:32 -msgid "" -"Additional columns after the required ones may be present and won't affect " -"the import." -msgstr "" - -#: motions/static/js/motions/base.js:1630 -msgid "Adjourn" -msgstr "Adiar" - -#: motions/static/js/motions/base.js:1631 -msgid "Adjournment" -msgstr "Adiamento" - -#: users/static/templates/users/user-detail.html:45 -msgid "Administrative data" -msgstr "Dados administrativos" - -#: agenda/static/js/agenda/base.js:41 agenda/static/js/agenda/csv.js:35 -#: agenda/static/js/agenda/docx.js:56 agenda/static/js/agenda/docx.js:64 -#: agenda/static/js/agenda/pdf.js:15 agenda/static/js/agenda/pdf.js:81 -#: agenda/static/js/agenda/site.js:20 agenda/static/js/agenda/site.js:32 -#: agenda/static/js/agenda/site.js:50 agenda/static/js/agenda/site.js:870 -#: agenda/static/templates/agenda/item-detail.html:6 -#: agenda/static/templates/agenda/item-list.html:35 -#: agenda/static/templates/agenda/item-list.html:61 -#: agenda/static/templates/agenda/slide-item-list.html:2 -msgid "Agenda" -msgstr "Agenda" - -#: agenda/static/js/agenda/site.js:885 agenda/static/js/agenda/site.js:98 -msgid "Agenda visibility" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:247 -msgid "All Filters" -msgstr "" - -#: assignments/static/js/assignments/site.js:918 -#: motions/static/js/motions/site.js:3300 -msgid "All casted ballots" -msgstr "Todas as votações lançadas" - -#: motions/static/templates/motions/motion-amendment-list.html:28 -#: motions/static/templates/motions/motion-amendment-list.html:35 -msgid "All motions" -msgstr "" - -#: assignments/static/js/assignments/site.js:917 -#: motions/static/js/motions/site.js:3299 -msgid "All valid ballots" -msgstr "Todas as votações válidas" - -#: users/static/templates/users/group-list.html:19 -msgid "" -"All your changes are saved immediately. Changes you make are only effective " -"once you (or the users concerned) reload the page." -msgstr "Todas as alterações são gravadas imediatamente. As alterações feitas só são aplicadas quando tu (ou os utilizadores em causa) recarregarem a página." - -#: core/static/js/core/site.js:2097 -msgid "Allow access for anonymous guest users" -msgstr "Permitir o acesso a utilizadores convidados anónimos" - -#: motions/static/js/motions/workflow.js:64 -msgid "Allow create poll" -msgstr "" - -#: motions/static/js/motions/workflow.js:66 -msgid "Allow submitter edit" -msgstr "" - -#: motions/static/js/motions/workflow.js:62 -msgid "Allow support" -msgstr "" - -#: motions/static/js/motions/site.js:3262 -msgid "Allow to disable versioning" -msgstr "Permitir desactivar versões" - -#: assignments/static/js/assignments/site.js:906 -msgid "Always Yes-No-Abstain per candidate" -msgstr "Sempre Sim-Não-Abstenção por candidato" - -#: assignments/static/js/assignments/site.js:907 -msgid "Always Yes/No per candidate" -msgstr "Sempre Sim/Não por candidato" - -#: assignments/static/js/assignments/site.js:905 -msgid "Always one option per candidate" -msgstr "Sempre uma opção por candidato" - -#: motions/static/js/motions/site.js:3322 -msgid "Amendment" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:96 -msgid "Amendment list PDF" -msgstr "" - -#: motions/static/js/motions/site.js:2282 -#: motions/static/js/motions/site.js:3275 -#: motions/static/templates/motions/motion-detail.html:104 -msgid "Amendment to" -msgstr "" - -#: motions/static/js/motions/pdf.js:544 motions/static/js/motions/pdf.js:77 -#: motions/static/js/motions/site.js:2285 -msgid "Amendment to motion" -msgstr "" - -#: motions/static/js/motions/site.js:2824 -#: motions/static/js/motions/site.js:3269 -#: motions/static/js/motions/site.js:915 -#: motions/static/templates/motions/motion-amendment-list.html:18 -#: motions/static/templates/motions/motion-detail.html:17 -#: motions/static/templates/motions/motion-detail.html:175 -#: motions/static/templates/motions/motion-list.html:11 -msgid "Amendments" -msgstr "Emendas" - -#: motions/static/js/motions/site.js:2821 -msgid "Amendments to" -msgstr "" - -#: motions/static/js/motions/pdf.js:1136 -msgid "Amendments to motion" -msgstr "" - -#: motions/static/js/motions/site.js:3273 -msgid "Apply text for new amendments" -msgstr "Aplicar texto para novas modificações" - -#: agenda/static/js/agenda/site.js:873 -msgid "Arabic" -msgstr "Arábico" - -#: core/static/templates/index.html:79 -msgid "Are you sure to delete the chat history?" -msgstr "Tens a certeza que queres apagar o histórico de chat?" - -#: agenda/static/templates/agenda/item-list.html:181 -msgid "Are you sure you want to delete all selected agenda items?" -msgstr "Tens a certeza que queres apagar todos os itens seleccionados da agenda?" - -#: motions/static/templates/motions/motion-amendment-list.html:162 -msgid "Are you sure you want to delete all selected amendments?" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:54 -msgid "Are you sure you want to delete all selected elections?" -msgstr "Tens a certeza que queres apagar todas as eleições seleccionadas?" - -#: motions/static/templates/motions/motion-list.html:124 -msgid "Are you sure you want to delete all selected motions?" -msgstr "Tens a certeza que queres apagar todas as moções seleccionadas?" - -#: users/static/templates/users/user-list.html:93 -msgid "Are you sure you want to delete all selected users?" -msgstr "Tens a certeza que queres apagar todos os utilizadores seleccionados?" - -#: assignments/static/templates/assignments/assignment-detail.html:151 -msgid "Are you sure you want to delete this ballot?" -msgstr "Tens a certeza que queres apagar esta votação?" - -#: motions/static/templates/motions/motion-detail/view-diff.html:25 -#: motions/static/templates/motions/motion-detail/view-diff.html:79 -#: motions/static/templates/motions/motion-detail/view-original.html:34 -msgid "Are you sure you want to delete this change recommendation?" -msgstr "Tens a certeza que queres eliminar esta recomendação de alteração?" - -#: agenda/static/templates/agenda/item-list.html:406 -#: assignments/static/templates/assignments/assignment-list.html:267 -#: core/static/templates/core/manage-projectors.html:52 -#: core/static/templates/core/tag-list.html:46 -#: motions/static/templates/motions/category-list.html:49 -#: motions/static/templates/motions/motion-amendment-list.html:338 -#: motions/static/templates/motions/motion-block-list.html:45 -#: motions/static/templates/motions/motion-list.html:287 -#: motions/static/templates/motions/workflow-detail.html:58 -#: motions/static/templates/motions/workflow-list.html:38 -#: users/static/templates/users/group-list.html:45 -#: users/static/templates/users/user-list.html:364 -msgid "Are you sure you want to delete this entry?" -msgstr "Tens a certeza que queres apagar esta entrada?" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:320 -msgid "Are you sure you want to delete this file?" -msgstr "Tens a certeza que queres apagar este ficheiro?" - -#: motions/static/templates/motions/motion-detail.html:382 -msgid "Are you sure you want to delete this poll?" -msgstr "Tens a certeza que queres apagar esta sondagem?" - -#: motions/static/templates/motions/motion-detail.html:630 -msgid "Are you sure you want to delete this version?" -msgstr "Tens a certeza que queres apagar esta versão?" - -#: agenda/static/templates/agenda/item-list.html:85 -msgid "Are you sure you want to number all agenda items?" -msgstr "" - -#: motions/static/templates/motions/motion-block-detail.html:31 -msgid "" -"Are you sure you want to override the state of all motions of this motion " -"block?" -msgstr "Tens a certeza que queres sobrepor o estado de todas as moções deste bloco de moção?" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:16 -msgid "Are you sure you want to remove all speakers from this list?" -msgstr "Tens a certeza que desejas remover todos os oradores desta lista?" - -#: motions/static/templates/motions/motion-block-detail.html:63 -msgid "Are you sure you want to remove this motion from motion block?" -msgstr "Tens a certeza que queres remover esta moção do bloco de moção?" - -#: core/static/templates/core/manage-projectors.html:87 -msgid "Aspect ratio" -msgstr "" - -#: users/static/templates/users/user-import.html:63 -msgid "" -"At least given name or surname have to be filled in. All\n" -" other fields are optional and may be empty." -msgstr "Pelo menos o primeiro nome ou o apelido tem que ser preenchido.\nTodos os outros campos são opcionais e podem estar vazios." - -#: motions/static/templates/motions/motion-detail.html:551 -msgid "" -"At least two amendments or change recommendations affecting the same line are to be integrated.\n" -" This leads to undeterministic results.\n" -" Please resolve this conflict by not accepting multiple changes affecting the same line." -msgstr "" - -#: motions/static/js/motions/site.js:586 topics/static/js/topics/site.js:115 -msgid "Attachment" -msgstr "Anexo" - -#: motions/static/templates/motions/motion-detail.html:601 -#: topics/static/templates/topics/topic-detail.html:31 -msgid "Attachments" -msgstr "Anexos" - -#: core/static/templates/csv-import.html:30 -msgid "Autodetection" -msgstr "Autodetecção" - -#: assignments/static/js/assignments/site.js:904 -msgid "Automatic assign of method" -msgstr "Atribuição automática de método" - -#: motions/static/templates/motions/motion-submitters.html:6 -msgid "Back" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:130 -#: topics/static/templates/topics/topic-import.html:35 -msgid "Back to agenda" -msgstr "Voltar à agenda" - -#: motions/static/templates/motions/category-sort.html:6 -msgid "Back to categories" -msgstr "Voltar às categorias" - -#: motions/static/templates/motions/motion-amendment-list.html:8 -#: motions/static/templates/motions/motion-import.html:139 -msgid "Back to motions overview" -msgstr "Voltar à vista geral das moções" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:6 -#: agenda/static/templates/agenda/item-sort.html:6 -#: assignments/static/templates/assignments/assignment-detail.html:6 -#: core/static/templates/core/tag-list.html:6 -#: motions/static/templates/motions/category-list.html:6 -#: motions/static/templates/motions/motion-block-detail.html:6 -#: motions/static/templates/motions/motion-block-list.html:6 -#: motions/static/templates/motions/motion-detail.html:12 -#: motions/static/templates/motions/motion-detail.html:7 -#: motions/static/templates/motions/motion-import.html:6 -#: motions/static/templates/motions/workflow-detail.html:6 -#: motions/static/templates/motions/workflow-list.html:6 -#: topics/static/templates/topics/topic-detail.html:6 -#: topics/static/templates/topics/topic-import.html:6 -#: users/static/templates/users/group-list.html:6 -#: users/static/templates/users/user-change-password.html:6 -#: users/static/templates/users/user-detail.html:6 -#: users/static/templates/users/user-import.html:6 -#: users/static/templates/users/user-presence.html:6 -msgid "Back to overview" -msgstr "Voltar à vista geral" - -#: users/static/templates/users/user-import.html:244 -#: users/static/templates/users/user-import.html:35 -msgid "Back to users overview" -msgstr "Voltar à vista geral dos participantes" - -#: core/static/js/core/site.js:2114 -msgid "Background color of projector header and footer" -msgstr "Cor de fundo do cabeçalho e rodapé do projector" - -#: assignments/static/js/assignments/pdf.js:142 -#: assignments/static/js/assignments/pdf.js:306 -#: assignments/static/js/assignments/pdf.js:654 -#: assignments/static/templates/assignments/assignment-detail.html:139 -#: assignments/static/templates/assignments/assignmentpoll-form.html:1 -msgid "Ballot" -msgstr "Votação" - -#: assignments/static/js/assignments/site.js:909 -msgid "Ballot and ballot papers" -msgstr "Votos e boletins de voto" - -#: agenda/static/js/agenda/site.js:875 -msgid "Begin of event" -msgstr "Começo do evento" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:91 -msgid "Begin speech" -msgstr "Começar discurso" - -#: core/static/templates/core/manage-projectors.html:165 -#: core/static/templates/core/projector-controls.html:89 -msgid "Bigger" -msgstr "Maior" - -#: core/static/templates/core/manage-projectors.html:212 -#: core/static/templates/core/projector-controls.html:54 -msgid "Blank" -msgstr "Em branco" - -#: motions/static/js/motions/workflow.js:84 -msgid "Blue" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:206 -msgid "Broadcast" -msgstr "Transmitir" - -#: core/static/templates/core/manage-projectors.html:203 -msgid "Broadcast the content of this projector to all other projectors." -msgstr "Transmitir o conteúdo deste projector para todos os outros projectores." - -#: mediafiles/static/js/mediafiles/image-plugin.js:154 -#: mediafiles/static/js/mediafiles/image-plugin.js:161 -#: mediafiles/static/js/mediafiles/image-plugin.js:199 -msgid "Browse for images" -msgstr "" - -#: core/static/templates/csv-import.html:2 -msgid "CSV file" -msgstr "Ficheiro CSV" - -#: users/static/js/users/site.js:1836 -msgid "Can create motions" -msgstr "Pode criar moções" - -#: users/static/js/users/site.js:1811 -msgid "Can manage agenda" -msgstr "Pode gerir a agenda" - -#: users/static/js/users/site.js:1840 -msgid "Can manage comments" -msgstr "" - -#: users/static/js/users/site.js:1825 -msgid "Can manage configuration" -msgstr "Pode gerir a configuração" - -#: users/static/js/users/site.js:1819 -msgid "Can manage elections" -msgstr "Pode gerir as eleições" - -#: users/static/js/users/site.js:1832 -msgid "Can manage files" -msgstr "Pode gerir ficheiros" - -#: users/static/js/users/site.js:1812 -msgid "Can manage list of speakers" -msgstr "" - -#: users/static/js/users/site.js:1828 -msgid "Can manage logos and fonts" -msgstr "" - -#: users/static/js/users/site.js:1838 -msgid "Can manage motions" -msgstr "Pode gerir moções" - -#: users/static/js/users/site.js:1824 -msgid "Can manage tags" -msgstr "Pode gerir as tags" - -#: users/static/js/users/site.js:1827 -msgid "Can manage the chat" -msgstr "Pode gerir o chat" - -#: users/static/js/users/site.js:1822 -msgid "Can manage the projector" -msgstr "Pode gerir o projector" - -#: users/static/js/users/site.js:1844 -msgid "Can manage users" -msgstr "Pode gerir os utilizadores" - -#: users/static/js/users/site.js:1817 -msgid "Can nominate another participant" -msgstr "Pode nomear outro participante" - -#: users/static/js/users/site.js:1818 -msgid "Can nominate oneself" -msgstr "Pode nomear a si mesmo" - -#: core/static/js/core/projector.js:154 -msgid "Can not open the projector." -msgstr "Não é possível abrir o projector." - -#: users/static/js/users/site.js:1814 -msgid "Can put oneself on the list of speakers" -msgstr "Pode colocar-se na lista de oradores" - -#: users/static/js/users/site.js:1810 -msgid "Can see agenda" -msgstr "Pode ver a agenda" - -#: users/static/js/users/site.js:1839 -msgid "Can see comments" -msgstr "" - -#: users/static/js/users/site.js:1816 -msgid "Can see elections" -msgstr "Pode ver as eleições" - -#: users/static/js/users/site.js:1843 -msgid "Can see extra data of users (e.g. present and comment)" -msgstr "Pode ver os dados extra dos utilizadores (ex: presentes e comentar)" - -#: users/static/js/users/site.js:1833 -msgid "Can see hidden files" -msgstr "Pode ver ficheiros ocultos" - -#: users/static/js/users/site.js:1813 -msgid "Can see internal items and time scheduling of agenda" -msgstr "" - -#: users/static/js/users/site.js:1835 -msgid "Can see motions" -msgstr "Pode ver moções" - -#: users/static/js/users/site.js:1842 -msgid "Can see names of users" -msgstr "Pode ver os nomes dos utilizadores" - -#: users/static/js/users/site.js:1823 -msgid "Can see the front page" -msgstr "Pode ver a primeira página" - -#: users/static/js/users/site.js:1830 -msgid "Can see the list of files" -msgstr "Pode ver a lista de ficheiros" - -#: users/static/js/users/site.js:1821 -msgid "Can see the projector" -msgstr "Pode ver o projector" - -#: users/static/js/users/site.js:1837 -msgid "Can support motions" -msgstr "Pode apoiar moções" - -#: users/static/js/users/site.js:1831 -msgid "Can upload files" -msgstr "Pode fazer upload de ficheiros" - -#: users/static/js/users/site.js:1826 -msgid "Can use the chat" -msgstr "Pode usar o chat" - -#: assignments/static/templates/assignments/assignment-form.html:18 -#: assignments/static/templates/assignments/assignmentpoll-form.html:18 -#: core/static/js/core/base.js:264 core/static/js/core/site.js:128 -#: core/static/js/core/site.js:129 -#: core/static/templates/core/projector-controls.html:198 -#: core/static/templates/core/projector-message-form.html:8 -#: core/static/templates/core/tag-form.html:13 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:19 -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:24 -#: motions/static/templates/motions/category-form.html:13 -#: motions/static/templates/motions/change-recommendation-form.html:13 -#: motions/static/templates/motions/motion-block-form.html:13 -#: motions/static/templates/motions/motion-comment-form.html:12 -#: motions/static/templates/motions/motion-export-form.html:10 -#: motions/static/templates/motions/motion-form.html:19 -#: motions/static/templates/motions/motion-poll-form.html:18 -#: motions/static/templates/motions/state-edit.html:24 -#: motions/static/templates/motions/workflow-edit.html:24 -#: topics/static/templates/topics/topic-form.html:13 -#: users/static/templates/users/group-edit.html:24 -#: users/static/templates/users/profile-password-form.html:12 -#: users/static/templates/users/user-change-password.html:51 -#: users/static/templates/users/user-form.html:13 -msgid "Cancel" -msgstr "Cancelar" - -#: assignments/static/js/assignments/pdf.js:150 -#: assignments/static/js/assignments/pdf.js:68 -#: assignments/static/templates/assignments/assignment-detail.html:192 -#: assignments/static/templates/assignments/assignment-detail.html:213 -#: assignments/static/templates/assignments/assignment-detail.html:86 -#: assignments/static/templates/assignments/assignment-list.html:322 -#: assignments/static/templates/assignments/slide_assignment.html:19 -#: assignments/static/templates/assignments/slide_assignment.html:36 -msgid "Candidates" -msgstr "Candidatos" - -#: users/static/js/users/site.js:1119 -msgid "Cannot find the participant with the participant number" -msgstr "" - -#: core/static/js/core/pdf.js:100 -msgid "Cannot load image" -msgstr "" - -#: assignments/static/js/assignments/site.js:846 -#: assignments/static/templates/assignments/assignment-detail.html:280 -#: assignments/static/templates/assignments/slide_assignment.html:94 -msgid "Casted ballots" -msgstr "Votos lançados" - -#: motions/static/js/motions/docx.js:46 motions/static/js/motions/site.js:136 -#: motions/static/templates/motions/category-list.html:13 -#: motions/static/templates/motions/motion-list.html:15 -msgid "Categories" -msgstr "Categorias" - -#: motions/static/templates/motions/motion-import.html:124 -msgid "Categories created" -msgstr "Categorias criadas" - -#: motions/static/js/motions/pdf.js:142 motions/static/js/motions/pdf.js:602 -#: motions/static/js/motions/site.js:1425 -#: motions/static/js/motions/site.js:600 motions/static/js/motions/site.js:867 -#: motions/static/templates/motions/category-sort.html:9 -#: motions/static/templates/motions/motion-detail.html:296 -#: motions/static/templates/motions/motion-detail.html:300 -#: motions/static/templates/motions/motion-import.html:27 -#: motions/static/templates/motions/motion-import.html:50 -#: motions/static/templates/motions/motion-table-filters.html:69 -msgid "Category" -msgstr "Categoria" - -#: core/static/js/core/site.js:2102 -msgid "Center" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:513 -msgid "Change item number ..." -msgstr "Alterar número de item..." - -#: core/static/templates/index.html:106 -#: users/static/templates/users/user-change-password.html:48 -#: users/static/templates/users/user-list.html:362 -msgid "Change password" -msgstr "Alterar senha" - -#: users/static/templates/users/user-change-password.html:9 -msgid "Change password for {{ user.get_short_name() }}" -msgstr "Alterar senha para {{ user.get_short_name() }}" - -#: users/static/templates/users/user-presence.html:26 -msgid "Change presence" -msgstr "" - -#: motions/static/templates/motions/motion-detail/change-summary.html:34 -msgid "Change recommendation" -msgstr "" - -#: motions/static/js/motions/site.js:955 motions/static/js/motions/site.js:969 -#: motions/static/templates/motions/motion-detail/toolbar.html:121 -#: motions/static/templates/motions/motion-detail/toolbar.html:76 -msgid "Change recommendations" -msgstr "Recomendações de alteração" - -#: agenda/static/templates/agenda/item-list.html:424 -msgid "Change visibility" -msgstr "" - -#: motions/static/js/motions/site.js:958 motions/static/js/motions/site.js:972 -#: motions/static/templates/motions/motion-detail/toolbar.html:133 -#: motions/static/templates/motions/motion-detail/toolbar.html:91 -msgid "Changed version" -msgstr "Versão alterada" - -#: core/static/templates/index.html:50 -msgid "Chat" -msgstr "Chat" - -#: motions/static/js/motions/site.js:3284 -msgid "Choose 0 to disable the supporting system." -msgstr "Escolhe 0 para desactivar o sistema de apoio." - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:1 -msgid "Choose the paragraph to amend!" -msgstr "" - -#: core/static/js/core/site.js:130 core/static/js/core/site.js:131 -msgid "Clear" -msgstr "Limpar" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:90 -msgid "Clear list" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:129 -#: topics/static/templates/topics/topic-import.html:120 -#: users/static/templates/users/user-import.html:231 -msgid "Clear preview" -msgstr "Limpar pré-visualização" - -#: core/static/templates/privacypolicydialog.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:93 -msgid "Close" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:11 -msgid "Close list of speakers" -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:53 -#: agenda/static/templates/agenda/item-detail.html:48 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:10 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:11 -msgid "Closed" -msgstr "Fechado" - -#: agenda/static/js/agenda/site.js:176 agenda/static/js/agenda/site.js:177 -msgid "Closed items" -msgstr "Itens fechados" - -#: agenda/static/templates/agenda/item-list.html:208 -msgid "Collapse all" -msgstr "" - -#: core/static/js/core/site.js:2118 -msgid "Color for blanked projector" -msgstr "Cor para o projector apagado" - -#: motions/static/templates/motions/motion-table-filters.html:117 -#: topics/static/templates/topics/topic-import.html:53 -#: topics/static/templates/topics/topic-import.html:72 -#: users/static/js/users/site.js:374 users/static/js/users/site.js:648 -#: users/static/templates/users/user-detail.html:48 -#: users/static/templates/users/user-import.html:56 -#: users/static/templates/users/user-import.html:89 -#: users/static/templates/users/user-list.html:441 -msgid "Comment" -msgstr "Comentar" - -#: motions/static/js/motions/site.js:3290 -msgid "Comment fields for motions" -msgstr "Comentar campos para moções" - -#: motions/static/js/motions/docx.js:97 motions/static/js/motions/site.js:1014 -#: motions/static/js/motions/site.js:2051 -#: motions/static/js/motions/site.js:3289 -msgid "Comments" -msgstr "Comentários" - -#: users/static/js/users/site.js:605 users/static/js/users/site.js:642 -msgid "Committee" -msgstr "Comité" - -#: users/static/js/users/base.js:174 -msgid "Committees" -msgstr "Comités" - -#: motions/static/js/motions/base.js:1616 -msgid "Complex Workflow" -msgstr "Fluxo de Trabalho complexo" - -#: users/static/js/users/site.js:527 -msgid "Confirm new password" -msgstr "Confirmar a nova senha" - -#: motions/static/js/motions/site.js:983 -msgid "Content" -msgstr "" - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:21 -msgid "Continue" -msgstr "" - -#: core/static/templates/core/login-form.html:23 -msgid "Continue as guest" -msgstr "Continuar como convidado" - -#: users/static/templates/users/user-import.html:19 -msgid "" -"Copy and paste your participant names in this textbox.\n" -" Keep each person in a single line." -msgstr "Copia e cola os nomes dos teus participantes nesta caixa de texto.\nMantém cada pessoa numa única linha." - -#: topics/static/templates/topics/topic-import.html:15 -msgid "" -"Copy and paste your topic titles in this textbox. Keep each item in a single" -" line." -msgstr "Copia e cola os teus títulos de tópicos nesta caixa de texto. Mantém cada item numa única linha." - -#: core/static/js/core/base.js:1444 core/static/js/core/site.js:422 -msgid "Countdown" -msgstr "Contagem regressiva" - -#: core/static/js/core/base.js:1445 -#: core/static/templates/core/projector-controls.html:127 -msgid "Countdowns" -msgstr "Contagens regressivas" - -#: agenda/static/js/agenda/site.js:882 -msgid "Couple countdown with the list of speakers" -msgstr "Associar a contagem regressiva com a lista de oradores" - -#: motions/static/templates/motions/motion-detail.html:563 -msgid "Create final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:378 -msgid "Create modified amendment" -msgstr "" - -#: users/static/templates/users/group-edit.html:2 -msgid "Create new group" -msgstr "Criar novo grupo" - -#: motions/static/templates/motions/state-edit.html:2 -msgid "Create new state" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:2 -msgid "Create new workflow" -msgstr "" - -#: motions/static/js/motions/site.js:1431 -msgid "Creation date" -msgstr "Data de criação" - -#: core/static/js/core/site.js:2110 -msgid "Current browser language" -msgstr "Idioma actual do navegador" - -#: agenda/static/js/agenda/site.js:74 agenda/static/js/agenda/site.js:835 -#: agenda/static/js/agenda/site.js:838 -#: agenda/static/templates/agenda/current-list-of-speakers.html:17 -#: agenda/static/templates/agenda/current-list-of-speakers.html:51 -#: agenda/static/templates/agenda/item-list.html:23 -#: core/static/templates/core/projector-controls.html:269 -msgid "Current list of speakers" -msgstr "Lista actual de oradores" - -#: assignments/static/js/assignments/site.js:924 -#: motions/static/js/motions/site.js:3312 -msgid "Custom number of ballot papers" -msgstr "Número personalizado de boletins de voto" - -#: core/static/js/core/site.js:2128 -msgid "Custom translations" -msgstr "" - -#: users/static/js/users/site.js:1875 -msgid "" -"Dear {name},\n" -"\n" -"this is your OpenSlides login for the event {event_name}:\n" -"\n" -" {url}\n" -" username: {username}\n" -" password: {password}\n" -"\n" -"This email was generated automatically." -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:44 -#: agenda/static/templates/agenda/item-detail.html:35 -#: agenda/static/templates/agenda/item-list.html:372 -#: agenda/static/templates/agenda/item-list.html:55 -#: core/static/templates/core/projector-controls.html:296 -#: core/static/templates/projector-button.html:23 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:292 -#: motions/static/templates/motions/motion-detail.html:56 -#: users/static/js/users/base.js:171 -msgid "Default" -msgstr "Predefinido" - -#: assignments/static/js/assignments/site.js:157 -msgid "Default comment on the ballot paper" -msgstr "Comentário predefinido no boletim de voto" - -#: motions/static/js/motions/site.js:3249 -msgid "Default line numbering" -msgstr "Numeração de linha predefinida" - -#: assignments/static/js/assignments/site.js:926 -msgid "" -"Default method to check whether a candidate has reached the required " -"majority." -msgstr "Método predefinido para verificar se um candidato atingiu a maioria necessária." - -#: motions/static/js/motions/site.js:3303 -msgid "" -"Default method to check whether a motion has reached the required majority." -msgstr "Método predefinido para verificar se uma moção atingiu a maioria necessária." - -#: core/static/js/core/site.js:2131 -msgid "Default projector" -msgstr "Projector predefinido" - -#: motions/static/js/motions/site.js:3264 -msgid "Default text version for change recommendations" -msgstr "Versão de texto predefinido para recomendações de alterações" - -#: agenda/static/js/agenda/site.js:886 -msgid "Default visibility for new agenda items (except topics)" -msgstr "" - -#: users/static/js/users/base.js:172 -msgid "Delegates" -msgstr "Delega" - -#: agenda/static/templates/agenda/item-list.html:146 -#: agenda/static/templates/agenda/item-list.html:405 -#: assignments/static/templates/assignments/assignment-detail.html:154 -#: assignments/static/templates/assignments/assignment-list.html:266 -#: core/static/templates/core/tag-list.html:45 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:319 -#: motions/static/templates/motions/category-list.html:48 -#: motions/static/templates/motions/motion-amendment-list.html:116 -#: motions/static/templates/motions/motion-amendment-list.html:337 -#: motions/static/templates/motions/motion-block-list.html:44 -#: motions/static/templates/motions/motion-detail.html:384 -#: motions/static/templates/motions/motion-detail.html:633 -#: motions/static/templates/motions/motion-detail/view-diff.html:27 -#: motions/static/templates/motions/motion-detail/view-diff.html:81 -#: motions/static/templates/motions/motion-detail/view-original.html:36 -#: motions/static/templates/motions/motion-list.html:286 -#: motions/static/templates/motions/motion-list.html:78 -#: motions/static/templates/motions/workflow-list.html:37 -#: users/static/templates/users/user-list.html:363 -#: users/static/templates/users/user-list.html:82 -msgid "Delete" -msgstr "Apagar" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:8 -msgid "Delete final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:166 -msgid "Delete selected amendments" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:58 -msgid "Delete selected elections" -msgstr "Apagar eleições seleccionadas" - -#: agenda/static/templates/agenda/item-list.html:185 -msgid "Delete selected items" -msgstr "Apagar itens seleccionados" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:136 -msgid "Delete selected mediafiles" -msgstr "Apagar mediafiles seleccionados" - -#: motions/static/templates/motions/motion-list.html:128 -msgid "Delete selected motions" -msgstr "Apagar moções seleccionadas" - -#: users/static/templates/users/user-list.html:97 -msgid "Delete selected participants" -msgstr "Apagar participantes seleccionados" - -#: motions/static/js/motions/base.js:1492 motions/static/js/motions/pdf.js:284 -#: motions/static/js/motions/site.js:372 -#: motions/static/templates/motions/motion-detail/change-summary.html:39 -msgid "Deletion" -msgstr "Eliminação" - -#: assignments/static/js/assignments/pdf.js:45 -#: assignments/static/js/assignments/site.js:137 -#: assignments/static/templates/assignments/assignment-detail.html:81 -#: core/static/templates/core/projector-controls.html:183 -#: motions/static/js/motions/site.js:381 -msgid "Description" -msgstr "Descrição" - -#: core/static/templates/csv-import.html:11 -msgid "Deselect file" -msgstr "Desseleccionar ficheiro" - -#: users/static/js/users/site.js:394 -msgid "Designates whether this user is in the room or not." -msgstr "Designa se este utilizador está na sala ou não." - -#: users/static/js/users/site.js:416 -msgid "Designates whether this user should be treated as a committee." -msgstr "Designa se este utilizador deve ser tratado como um comité." - -#: users/static/js/users/site.js:404 -msgid "" -"Designates whether this user should be treated as active. Unselect this " -"instead of deleting the account." -msgstr "Designa se este utilizador deve ser tratado como activo. Desmarca isto em vez de apagar a conta." - -#: users/static/js/users/site.js:613 -msgid "Didn't get an email" -msgstr "" - -#: motions/static/js/motions/site.js:959 motions/static/js/motions/site.js:973 -#: motions/static/templates/motions/motion-detail/toolbar.html:138 -#: motions/static/templates/motions/motion-detail/toolbar.html:97 -msgid "Diff version" -msgstr "Versão diff" - -#: assignments/static/js/assignments/site.js:930 -#: motions/static/js/motions/site.js:3307 -msgid "Disabled" -msgstr "Desactivado" - -#: assignments/static/js/assignments/site.js:919 -#: motions/static/js/motions/site.js:3301 -msgid "Disabled (no percents)" -msgstr "Desactivado (sem percentagens)" - -#: core/static/templates/core/manage-projectors.html:30 -msgid "" -"Display an identifier message on all projectors with the id and the name." -msgstr "Exibir uma mensagem de identificação em todos os projectores com o id e o nome." - -#: core/static/js/core/site.js:2112 -msgid "Display header and footer" -msgstr "" - -#: motions/static/js/motions/base.js:1633 -msgid "Do not concern" -msgstr "Não preocupar-se" - -#: motions/static/js/motions/base.js:1613 -msgid "Do not decide" -msgstr "Não decidir" - -#: motions/static/templates/motions/motion-detail.html:560 -msgid "Do you want to copy the final version to the final print template?" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:539 -#: motions/static/templates/motions/motion-detail.html:569 -msgid "" -"Do you want to create a new version of this motion based on this changes?" -msgstr "Queres criar uma nova versão desta moção com base nestas alterações?" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:5 -msgid "Do you want to delete the final print template?" -msgstr "" - -#: motions/static/js/motions/site.js:540 -msgid "Don't create a new version." -msgstr "Não criar uma versão nova." - -#: agenda/static/templates/agenda/item-list.html:172 -#: agenda/static/templates/agenda/item-list.html:524 -#: agenda/static/templates/agenda/item-list.html:530 -msgid "Done" -msgstr "Feito" - -#: motions/static/templates/motions/motion-import.html:34 -#: topics/static/templates/topics/topic-import.html:58 -#: users/static/templates/users/user-import.html:66 -msgid "Download CSV example file" -msgstr "Descarregar o ficheiro de exemplo CSV" - -#: agenda/static/templates/agenda/item-sort.html:14 -msgid "" -"Drag and drop items to change the order of the agenda. Your modification " -"will be saved immediately." -msgstr "Arrasta e larga os itens para alterar a ordem da agenda. A modificação será gravada imediatamente." - -#: motions/static/templates/motions/category-sort.html:15 -msgid "" -"Drag and drop motions to reorder the category. Then click the button to " -"renumber." -msgstr "Arrasta e solta moções para reordenar a categoria. Depois, clica no botão para renumerar." - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:10 -msgid "Drop files into this area OR" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:197 -#: topics/static/templates/topics/topic-import.html:52 -#: topics/static/templates/topics/topic-import.html:71 -msgid "Duration" -msgstr "Duração" - -#: agenda/static/templates/agenda/item-list.html:404 -#: assignments/static/templates/assignments/assignment-detail.html:21 -#: assignments/static/templates/assignments/assignment-list.html:265 -#: core/static/templates/core/tag-list.html:44 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:318 -#: motions/static/templates/motions/category-list.html:46 -#: motions/static/templates/motions/motion-amendment-list.html:330 -#: motions/static/templates/motions/motion-block-detail.html:20 -#: motions/static/templates/motions/motion-block-list.html:42 -#: motions/static/templates/motions/motion-detail.html:376 -#: motions/static/templates/motions/motion-detail.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:33 -#: motions/static/templates/motions/motion-detail/view-diff.html:87 -#: motions/static/templates/motions/motion-list.html:278 -#: motions/static/templates/motions/workflow-list.html:35 -#: topics/static/templates/topics/topic-detail.html:20 -#: users/static/templates/users/user-detail.html:15 -#: users/static/templates/users/user-list.html:359 -msgid "Edit" -msgstr "Editar" - -#: mediafiles/static/templates/mediafiles/mediafile-form.html:1 -msgid "Edit File" -msgstr "" - -#: motions/static/templates/motions/category-form.html:1 -msgid "Edit category" -msgstr "Editar categoria" - -#: motions/static/templates/motions/change-recommendation-form.html:1 -msgid "Edit change recommendation" -msgstr "Editar recomendação de alteração" - -#: motions/static/js/motions/site.js:2494 -#: motions/static/js/motions/site.js:3266 -msgid "Edit comment %%comment%% of motion %%motion%%" -msgstr "" - -#: core/static/templates/core/projector-controls.html:143 -msgid "Edit countdown" -msgstr "Editar contagem regressiva" - -#: core/static/templates/core/manage-projectors.html:152 -#: core/static/templates/core/projector-controls.html:76 -msgid "Edit current slide" -msgstr "Editar o slide actual" - -#: assignments/static/templates/assignments/assignment-form.html:1 -msgid "Edit election" -msgstr "Editar eleição" - -#: core/static/templates/core/projector-controls.html:233 -#: core/static/templates/core/projector-message-form.html:1 -msgid "Edit message" -msgstr "Editar mensagem" - -#: motions/static/templates/motions/motion-form.html:1 -msgid "Edit motion" -msgstr "Editar moção" - -#: motions/static/templates/motions/motion-block-form.html:1 -msgid "Edit motion block" -msgstr "Editar bloco de moção" - -#: motions/static/templates/motions/workflow-edit.html:1 -#: users/static/templates/users/group-edit.html:1 -msgid "Edit name" -msgstr "Editar nome" - -#: users/static/templates/users/user-form.html:1 -msgid "Edit participant" -msgstr "Editar participante" - -#: core/static/templates/index.html:101 users/static/js/users/site.js:982 -msgid "Edit profile" -msgstr "Editar perfil" - -#: motions/static/templates/motions/state-edit.html:1 -msgid "Edit state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:332 -#: motions/static/templates/motions/motion-list.html:281 -msgid "Edit submitters" -msgstr "" - -#: core/static/templates/core/tag-form.html:1 -msgid "Edit tag" -msgstr "Editar tag" - -#: motions/static/js/motions/site.js:3278 -msgid "Edit the whole motion text" -msgstr "" - -#: topics/static/templates/topics/topic-form.html:1 -msgid "Edit topic" -msgstr "Editar tópico" - -#: motions/static/templates/motions/motion-detail/toolbar.html:16 -msgid "" -"Editing the text is not possible anymore once there are change " -"recommendations." -msgstr "Editar o texto não é mais possível uma vez que há recomendações de alteração." - -#: assignments/static/js/assignments/base.js:375 -#: assignments/static/js/assignments/pdf.js:617 -#: assignments/static/js/assignments/site.js:453 -#: assignments/static/templates/assignments/assignment-detail.html:33 -#: assignments/static/templates/assignments/slide_assignment.html:7 -msgid "Election" -msgstr "Eleição" - -#: assignments/static/js/assignments/site.js:903 -#: assignments/static/templates/assignments/assignment-detail.html:286 -msgid "Election method" -msgstr "Método de eleição" - -#: assignments/static/templates/assignments/assignment-detail.html:127 -msgid "Election result" -msgstr "Resultado da eleição" - -#: assignments/static/js/assignments/base.js:376 -#: assignments/static/js/assignments/pdf.js:618 -#: assignments/static/js/assignments/site.js:19 -#: assignments/static/js/assignments/site.js:31 -#: assignments/static/js/assignments/site.js:49 -#: assignments/static/js/assignments/site.js:908 -#: assignments/static/templates/assignments/assignment-list.html:14 -msgid "Elections" -msgstr "Eleições" - -#: users/static/js/users/site.js:1869 users/static/js/users/site.js:313 -#: users/static/js/users/site.js:471 -#: users/static/templates/users/user-detail.html:36 -#: users/static/templates/users/user-import.html:61 -#: users/static/templates/users/user-import.html:94 -msgid "Email" -msgstr "" - -#: users/static/js/users/site.js:1874 -msgid "Email body" -msgstr "" - -#: users/static/js/users/site.js:1870 -msgid "Email sender" -msgstr "" - -#: users/static/js/users/site.js:1871 -msgid "Email subject" -msgstr "" - -#: motions/static/js/motions/site.js:3277 -msgid "Empty text field" -msgstr "" - -#: agenda/static/js/agenda/site.js:867 -msgid "Enable numbering for agenda items" -msgstr "" - -#: users/static/js/users/site.js:1849 -msgid "Enable participant presence view" -msgstr "" - -#: core/static/templates/csv-import.html:22 -msgid "Encoding" -msgstr "Codificação" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:334 -msgid "Encrypted" -msgstr "Encriptado" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:65 -msgid "End speech" -msgstr "Terminar discurso" - -#: agenda/static/js/agenda/site.js:881 -msgid "Enter duration in seconds. Choose 0 to disable warning color." -msgstr "Insere a duração em segundos. Escolhe 0 para desactivar a cor de aviso." - -#: users/static/templates/users/user-presence.html:22 -msgid "Enter participant number" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:170 -msgid "Enter votes" -msgstr "Introduza votos" - -#: core/static/js/core/base.js:791 -msgid "Error" -msgstr "Erro" - -#: core/static/js/core/pdf.js:1335 core/static/js/core/pdf.js:99 -msgid "Error while generating PDF file" -msgstr "Erro ao gerar ficheiro PDF" - -#: motions/static/js/motions/pdf.js:1382 -msgid "Error while generating ZIP file" -msgstr "" - -#: users/static/js/users/site.js:1212 -msgid "Error: Given name or surname is required." -msgstr "Erro: Primeiro nome ou apelido é necessário." - -#: motions/static/js/motions/site.js:2880 -msgid "Error: Identifier already exists." -msgstr "Erro: Identificador já existe." - -#: motions/static/js/motions/site.js:2891 -msgid "Error: Text is required." -msgstr "Erro: Texto é necessário." - -#: motions/static/js/motions/site.js:2886 topics/static/js/topics/site.js:297 -msgid "Error: Title is required." -msgstr "Erro: Título é necessário." - -#: agenda/static/templates/agenda/item-list.html:200 -msgid "Estimated end:" -msgstr "Fim estimado:" - -#: core/static/js/core/site.js:2086 -msgid "Event" -msgstr "Evento" - -#: core/static/js/core/site.js:2088 -msgid "Event date" -msgstr "Data do evento" - -#: core/static/js/core/site.js:2089 -msgid "Event location" -msgstr "Localização do evento" - -#: core/static/js/core/site.js:2080 -msgid "Event name" -msgstr "Nome do evento" - -#: core/static/js/core/site.js:2090 -msgid "Event organizer" -msgstr "Organizador do evento" - -#: motions/static/js/motions/site.js:918 -msgid "Exclude" -msgstr "" - -#: users/static/templates/users/user-import.html:234 -msgid "Exclude already imported users" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:14 -#: motions/static/templates/motions/workflow-detail.html:17 -msgid "Expand" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:207 -msgid "Expand all" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:132 -#: agenda/static/templates/agenda/item-list.html:95 -#: assignments/static/templates/assignments/assignment-list.html:31 -#: motions/static/templates/motions/motion-amendment-list.html:70 -#: motions/static/templates/motions/motion-list.html:53 -#: motions/static/templates/motions/motion-list.html:63 -#: users/static/templates/users/user-list.html:47 -msgid "Export all" -msgstr "Exportar tudo" - -#: assignments/static/templates/assignments/assignment-detail.html:26 -#: motions/static/templates/motions/motion-detail.html:69 -msgid "Export as PDF" -msgstr "" - -#: motions/static/templates/motions/motion-export-form.html:7 -msgid "Export as {{ params.format.toUpperCase() | translate }}" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:7 -msgid "Export comments only" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:83 -msgid "Export dialog" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:135 -#: agenda/static/templates/agenda/item-list.html:98 -#: assignments/static/templates/assignments/assignment-list.html:34 -#: motions/static/templates/motions/motion-amendment-list.html:73 -#: motions/static/templates/motions/motion-list.html:56 -#: motions/static/templates/motions/motion-list.html:66 -#: users/static/templates/users/user-list.html:50 -msgid "Export filtered" -msgstr "Exportar filtrado" - -#: motions/static/templates/motions/motion-export-form.html:2 -#: motions/static/templates/motions/motion-export-form.html:3 -msgid "Export motion" -msgstr "" - -#: motions/static/templates/motions/motion-export-form.html:1 -msgid "Export motions" -msgstr "" - -#: motions/static/templates/motions/motion-detail/personal-note.html:7 -msgid "Export personal note only" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:21 -msgid "File information" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:104 -msgid "File size" -msgstr "Tamanho de ficheiro" - -#: mediafiles/static/js/mediafiles/resources.js:22 -#: mediafiles/static/js/mediafiles/resources.js:23 -#: mediafiles/static/js/mediafiles/states.js:18 -#: mediafiles/static/js/mediafiles/states.js:30 -#: mediafiles/static/js/mediafiles/states.js:48 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:9 -msgid "Files" -msgstr "Ficheiros" - -#: agenda/static/templates/agenda/item-list.html:241 -#: assignments/static/templates/assignments/assignment-list.html:98 -#: core/static/templates/core/tag-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:176 -#: motions/static/templates/motions/category-list.html:21 -#: motions/static/templates/motions/motion-block-detail.html:40 -#: motions/static/templates/motions/motion-block-list.html:21 -#: users/static/templates/users/user-list.html:202 -msgid "Filter" -msgstr "Filtrar" - -#: motions/static/templates/motions/motion-detail/toolbar.html:113 -#: motions/static/templates/motions/motion-detail/toolbar.html:148 -msgid "Final print template" -msgstr "" - -#: motions/static/js/motions/site.js:960 motions/static/js/motions/site.js:974 -#: motions/static/templates/motions/motion-detail/toolbar.html:104 -#: motions/static/templates/motions/motion-detail/toolbar.html:143 -msgid "Final version" -msgstr "Versão final" - -#: assignments/static/js/assignments/site.js:937 -msgid "Finished" -msgstr "Concluído" - -#: motions/static/templates/motions/workflow-detail.html:28 -msgid "First state" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:291 -msgid "Follow recommendation" -msgstr "Seguir recomendação" - -#: motions/static/templates/motions/motion-block-detail.html:34 -msgid "Follow recommendations for all motions" -msgstr "Seguir as recomendações para todas as moções" - -#: core/static/js/core/site.js:2115 -msgid "Font color of projector header and footer" -msgstr "Cor da font do cabeçalho e rodapé do projector" - -#: core/static/js/core/site.js:2116 -msgid "Font color of projector headline" -msgstr "Cor da font da manchete do projector" - -#: assignments/static/js/assignments/site.js:911 -msgid "" -"For Yes/No/Abstain per candidate and Yes/No per candidate the 100-%-base " -"depends on the election method: If there is only one option per candidate, " -"the sum of all votes of all candidates is 100 %. Otherwise for each " -"candidate the sum of all votes is 100 %." -msgstr "Para Sim/Não/Abster por candidato e Sim/Não por candidato a 100-%-base depende do método de eleição: Se houver apenas uma opção por candidato, a soma de todos os votos de todos os candidatos é de 100%. Caso contrário, por cada candidato a soma de todos os votos é 100%." - -#: motions/static/js/motions/site.js:899 -msgid "Format" -msgstr "" - -#: motions/static/js/motions/site.js:352 -msgid "From Line" -msgstr "Desde a linha" - -#: core/static/js/core/site.js:2095 -msgid "Front page text" -msgstr "Texto da página inicial" - -#: core/static/js/core/site.js:2093 -msgid "Front page title" -msgstr "Título da página inicial" - -#: core/static/js/core/site.js:2085 motions/static/js/motions/site.js:3241 -#: users/static/js/users/site.js:1498 users/static/js/users/site.js:1847 -msgid "General" -msgstr "Geral" - -#: users/static/js/users/site.js:361 -#: users/static/templates/users/user-change-password.html:33 -msgid "Generate" -msgstr "Gerar" - -#: users/static/templates/users/user-list.html:121 -#: users/static/templates/users/user-list.html:85 -msgid "Generate new passwords" -msgstr "Gerar novas senhas" - -#: core/static/js/core/pdf.js:1326 -msgid "Generating PDF file" -msgstr "A gerar ficheiro PDF" - -#: motions/static/js/motions/pdf.js:1337 -msgid "Generating PDFs and ZIP archive" -msgstr "" - -#: users/static/js/users/site.js:1851 users/static/js/users/site.js:296 -#: users/static/js/users/site.js:634 -#: users/static/templates/users/user-import.html:51 -#: users/static/templates/users/user-import.html:84 -msgid "Given name" -msgstr "Primeiro nome" - -#: users/static/js/users/site.js:612 -msgid "Got an email" -msgstr "" - -#: motions/static/js/motions/workflow.js:81 -msgid "Green" -msgstr "" - -#: motions/static/js/motions/workflow.js:83 -msgid "Grey" -msgstr "" - -#: users/static/js/users/pdf.js:73 users/static/js/users/site.js:348 -#: users/static/js/users/site.js:89 -#: users/static/templates/users/group-list.html:14 -#: users/static/templates/users/user-detail.html:30 -#: users/static/templates/users/user-import.html:55 -#: users/static/templates/users/user-import.html:88 -#: users/static/templates/users/user-list.html:16 -#: users/static/templates/users/user-list.html:209 -#: users/static/templates/users/user-list.html:378 -#: users/static/templates/users/user-list.html:407 -msgid "Groups" -msgstr "Grupos" - -#: users/static/templates/users/user-import.html:226 -msgid "Groups created" -msgstr "Grupos criados" - -#: users/static/js/users/site.js:1857 -msgid "Help text for access data and welcome PDF" -msgstr "Texto de ajuda para os dados de acesso e PDF de boas-vindas" - -#: agenda/static/templates/agenda/item-list.html:159 -#: agenda/static/templates/agenda/item-list.html:436 -#: agenda/static/templates/agenda/item-list.html:472 -#: mediafiles/static/js/mediafiles/forms.js:51 -#: mediafiles/static/js/mediafiles/list.js:74 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:27 -msgid "Hidden" -msgstr "Oculto" - -#: agenda/static/js/agenda/site.js:102 -#: agenda/static/templates/agenda/item-list.html:452 -msgid "Hidden item" -msgstr "" - -#: agenda/static/js/agenda/site.js:197 -#: agenda/static/templates/agenda/item-list.html:293 -msgid "Hidden items" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:37 -msgid "Hide" -msgstr "Ocultar" - -#: agenda/static/templates/agenda/item-sort.html:18 -msgid "Hide internal items" -msgstr "Ocultar itens internos" - -#: agenda/static/js/agenda/site.js:877 -msgid "Hide internal items when projecting subitems" -msgstr "" - -#: motions/static/js/motions/site.js:3259 -msgid "Hide meta information box on projector" -msgstr "" - -#: motions/static/js/motions/site.js:3258 -msgid "Hide reason on projector" -msgstr "" - -#: motions/static/js/motions/site.js:3260 -msgid "Hide recommendation on projector" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:144 -msgid "Hint on the ballot paper." -msgstr "Dica no boletim de voto." - -#: core/static/js/core/site.js:189 core/static/js/core/site.js:331 -msgid "Home" -msgstr "Casa" - -#: motions/static/js/motions/site.js:3276 -msgid "How to create new amendments" -msgstr "" - -#: motions/static/js/motions/site.js:1419 -#: motions/static/js/motions/site.js:259 -#: motions/static/js/motions/site.js:3243 -#: motions/static/js/motions/site.js:336 motions/static/js/motions/site.js:482 -#: motions/static/templates/motions/motion-import.html:22 -#: motions/static/templates/motions/motion-import.html:45 -msgid "Identifier" -msgstr "Identificador" - -#: motions/static/templates/motions/motion-import.html:31 -msgid "" -"Identifier, reason, submitter, category, origin and motion block are " -"optional and may be empty." -msgstr "" - -#: core/static/templates/core/manage-projectors.html:32 -msgid "Identify" -msgstr "Identificar" - -#: mediafiles/static/js/mediafiles/image-plugin.js:148 -#: mediafiles/static/js/mediafiles/image-plugin.js:198 -msgid "Image browser" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:16 -#: motions/static/templates/motions/motion-list.html:31 -#: topics/static/templates/topics/topic-import.html:24 -#: users/static/templates/users/user-import.html:29 -#: users/static/templates/users/user-list.html:20 -msgid "Import" -msgstr "Importar" - -#: topics/static/templates/topics/topic-import.html:41 -#: users/static/templates/users/user-import.html:41 -msgid "Import by CSV file" -msgstr "Importar por ficheiro CSV" - -#: topics/static/templates/topics/topic-import.html:14 -#: users/static/templates/users/user-import.html:18 -msgid "Import by copy/paste" -msgstr "Importar por copiar/colar" - -#: motions/static/templates/motions/motion-import.html:9 -msgid "Import motions" -msgstr "Importar moções" - -#: users/static/templates/users/user-import.html:9 -msgid "Import participants" -msgstr "Importar participantes" - -#: topics/static/templates/topics/topic-import.html:9 -msgid "Import topics" -msgstr "Importar tópicos" - -#: topics/static/templates/topics/topic-import.html:123 -msgid "Import {{ itemsWillBeImported }} topics" -msgstr "Importar {{ itemsWillBeImported }} tópicos" - -#: motions/static/templates/motions/motion-import.html:132 -msgid "Import {{ motionsWillBeImported }} motions" -msgstr "Importar {{ motionsWillBeImported }} moções" - -#: users/static/templates/users/user-import.html:237 -msgid "Import {{ usersWillBeImported }} participants" -msgstr "Importar {{ usersWillBeImported }} participantes" - -#: motions/static/js/motions/site.js:917 -msgid "Include" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:363 -msgid "Include all sub items" -msgstr "Incluir todos os subitens" - -#: motions/static/js/motions/site.js:3318 -msgid "Include the sequential number in PDF and DOCX" -msgstr "" - -#: users/static/js/users/pdf.js:201 users/static/js/users/site.js:358 -#: users/static/templates/users/user-change-password.html:37 -#: users/static/templates/users/user-import.html:60 -#: users/static/templates/users/user-import.html:93 -msgid "Initial password" -msgstr "Senha inicial" - -#: users/static/js/users/site.js:359 -#: users/static/templates/users/user-change-password.html:38 -msgid "Initial password can not be changed." -msgstr "A senha inicial não pode ser alterada." - -#. Line numbering: Inline -#: motions/static/js/motions/site.js:3253 -msgid "Inline" -msgstr "Inline" - -#: motions/static/templates/motions/motion-detail/comments.html:15 -#: motions/static/templates/motions/motion-detail/comments.html:20 -#: motions/static/templates/motions/motion-detail/personal-note.html:14 -#: motions/static/templates/motions/motion-detail/personal-note.html:19 -#: motions/static/templates/motions/motion-detail/toolbar.html:13 -#: motions/static/templates/motions/motion-detail/toolbar.html:18 -#: motions/static/templates/motions/motion-detail/toolbar.html:29 -#: motions/static/templates/motions/motion-detail/toolbar.html:35 -#: motions/static/templates/motions/motion-detail/toolbar.html:8 -msgid "Inline editing" -msgstr "Edição inline" - -#: agenda/static/js/agenda/site.js:876 -msgid "Input format: DD.MM.YYYY HH:MM" -msgstr "Formato de input: DD.MM.AAAA HH:MM" - -#: motions/static/js/motions/base.js:1489 motions/static/js/motions/pdf.js:282 -#: motions/static/js/motions/site.js:371 -#: motions/static/templates/motions/motion-detail/change-summary.html:38 -msgid "Insertion" -msgstr "Inserção" - -#: core/static/templates/legalnotice.html:17 -msgid "Installed plugins:" -msgstr "Plugins instalados:" - -#: agenda/static/templates/agenda/item-list.html:156 -#: agenda/static/templates/agenda/item-list.html:432 -#: agenda/static/templates/agenda/item-list.html:468 -msgid "Internal" -msgstr "" - -#: agenda/static/js/agenda/site.js:101 -#: agenda/static/templates/agenda/item-list.html:447 -#: topics/static/templates/topics/topic-import.html:54 -#: topics/static/templates/topics/topic-import.html:73 -msgid "Internal item" -msgstr "Item interno" - -#: agenda/static/js/agenda/site.js:190 -#: agenda/static/templates/agenda/item-list.html:287 -msgid "Internal items" -msgstr "Itens internos" - -#: assignments/static/js/assignments/site.js:836 -#: assignments/static/templates/assignments/assignment-detail.html:274 -#: assignments/static/templates/assignments/slide_assignment.html:88 -msgid "Invalid ballots" -msgstr "Votações inválidas" - -#: agenda/static/js/agenda/site.js:871 -msgid "Invalid input." -msgstr "Input inválido." - -#: motions/static/js/motions/pdf.js:216 motions/static/js/motions/site.js:799 -#: motions/static/templates/motions/motion-detail.html:450 -msgid "Invalid votes" -msgstr "Votos inválidos" - -#: mediafiles/static/js/mediafiles/list.js:81 -msgid "Is PDF" -msgstr "É PDF" - -#: mediafiles/static/js/mediafiles/list.js:82 -msgid "Is PDF file" -msgstr "É ficheiro PDF" - -#: users/static/js/users/site.js:415 users/static/js/users/site.js:606 -#: users/static/templates/users/user-list.html:341 -msgid "Is a committee" -msgstr "É um comité" - -#: users/static/js/users/site.js:403 users/static/js/users/site.js:599 -#: users/static/templates/users/user-import.html:57 -#: users/static/templates/users/user-import.html:90 -#: users/static/templates/users/user-list.html:127 -msgid "Is active" -msgstr "Está activo" - -#: users/static/templates/users/user-import.html:59 -#: users/static/templates/users/user-import.html:92 -#: users/static/templates/users/user-list.html:129 -msgid "Is committee" -msgstr "É comité" - -#: mediafiles/static/js/mediafiles/list.js:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:303 -msgid "Is hidden" -msgstr "está oculto" - -#: users/static/templates/users/user-list.html:339 -msgid "Is inactive" -msgstr "Está inactivo" - -#: mediafiles/static/js/mediafiles/list.js:83 -msgid "Is no PDF file" -msgstr "Não é ficheiro PDF" - -#: users/static/js/users/site.js:607 -#: users/static/templates/users/user-list.html:137 -msgid "Is not a committee" -msgstr "Não é um comité" - -#: users/static/js/users/site.js:600 -#: users/static/templates/users/user-list.html:135 -msgid "Is not active" -msgstr "Não está activo" - -#: mediafiles/static/js/mediafiles/list.js:76 -msgid "Is not hidden" -msgstr "Não está oculto" - -#: users/static/js/users/site.js:593 -#: users/static/templates/users/user-list.html:136 -msgid "Is not present" -msgstr "Não está presente" - -#: users/static/js/users/site.js:393 users/static/js/users/site.js:592 -#: users/static/templates/users/user-import.html:58 -#: users/static/templates/users/user-import.html:91 -#: users/static/templates/users/user-list.html:128 -msgid "Is present" -msgstr "Está presente" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:308 -msgid "Is used as a font" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:306 -msgid "Is used as a logo" -msgstr "" - -#. short form of agenda item -#: assignments/static/js/assignments/site.js:333 -#: motions/static/templates/motions/motion-table-filters.html:209 -msgid "Item" -msgstr "Item" - -#: motions/static/templates/motions/workflow-detail.html:119 -msgid "Label color" -msgstr "" - -#: users/static/js/users/site.js:611 users/static/js/users/site.js:650 -#: users/static/templates/users/user-detail.html:38 -msgid "Last email send" -msgstr "" - -#: users/static/templates/users/user-list.html:448 -msgid "Last email send to the user" -msgstr "" - -#: motions/static/js/motions/site.js:1433 -#: motions/static/templates/motions/motion-detail.html:636 -msgid "Last modified" -msgstr "Última alteração" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:36 -msgid "Last speakers" -msgstr "Últimos oradores" - -#: core/static/templates/csv-import.html:33 -msgid "Leave empty for autodetection of the separator." -msgstr "Deixar vazio para detecção automática do separador." - -#: motions/static/js/motions/workflow.js:70 -msgid "Leave old version active" -msgstr "" - -#: core/static/js/core/site.js:2101 -msgid "Left" -msgstr "" - -#: core/static/js/core/site.js:2091 core/static/js/core/site.js:371 -#: core/static/templates/index.html:227 -#: core/static/templates/legalnotice.html:3 -msgid "Legal notice" -msgstr "Aviso legal" - -#: core/static/templates/legalnotice.html:14 -#: core/static/templates/legalnotice.html:27 -msgid "License" -msgstr "" - -#: motions/static/js/motions/pdf.js:1083 motions/static/js/motions/pdf.js:275 -#: motions/static/templates/motions/motion-amendment-list.html:238 -#: motions/static/templates/motions/motion-amendment-list.html:241 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:28 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:31 -#: motions/static/templates/motions/motion-detail/change-summary.html:28 -#: motions/static/templates/motions/motion-detail/change-summary.html:31 -#: motions/static/templates/motions/motion-detail/toolbar.html:46 -#: motions/static/templates/motions/slide_motion.html:80 -#: motions/static/templates/motions/slide_motion.html:83 -msgid "Line" -msgstr "Linha" - -#: motions/static/js/motions/site.js:3256 -msgid "Line length" -msgstr "Comprimento da linha" - -#: motions/static/js/motions/site.js:929 motions/static/js/motions/site.js:942 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:30 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:5 -msgid "Line numbering" -msgstr "Numeração de linhas" - -#: users/static/js/users/pdf.js:313 -#: users/static/templates/users/user-list.html:64 -msgid "List of access data" -msgstr "Lista de dados de acesso" - -#: users/static/js/users/pdf.js:17 users/static/js/users/pdf.js:302 -#: users/static/templates/users/user-list.html:59 -msgid "List of participants" -msgstr "Lista de participantes" - -#: agenda/static/js/agenda/site.js:562 agenda/static/js/agenda/site.js:879 -#: agenda/static/templates/agenda/item-detail.html:21 -#: agenda/static/templates/agenda/item-detail.html:47 -#: agenda/static/templates/agenda/item-list.html:402 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:2 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:5 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:5 -#: assignments/static/templates/assignments/assignment-detail.html:12 -#: core/static/templates/core/projector-controls.html:257 -#: motions/static/templates/motions/motion-block-detail.html:11 -#: motions/static/templates/motions/motion-detail.html:23 -#: topics/static/templates/topics/topic-detail.html:11 -msgid "List of speakers" -msgstr "Lista de oradores" - -#: core/static/js/core/site.js:2119 -msgid "List of speakers overlay" -msgstr "Lista de oradores sobreposta" - -#: core/static/templates/core/projector-controls.html:8 -msgid "Live view" -msgstr "Visualização ao vivo" - -#: core/static/templates/core/login-form.html:20 -#: core/static/templates/index.html:121 -msgid "Login" -msgstr "Login" - -#: core/static/templates/index.html:112 -msgid "Logout" -msgstr "Logout" - -#: core/static/templates/core/projector-controls.html:59 -msgid "Manage" -msgstr "Gerir" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:386 -msgid "Manage fonts" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:348 -msgid "Manage logos" -msgstr "" - -#: core/static/js/core/site.js:356 -#: core/static/templates/core/manage-projectors.html:35 -msgid "Manage projectors" -msgstr "Gerir projectores" - -#: core/static/templates/core/projector-controls.html:305 -msgid "Manage the current list of speakers" -msgstr "Gerir a lista actual de oradores" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:69 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:95 -msgid "Mark speaker" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:43 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:62 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:87 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:10 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:19 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:21 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:39 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:20 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:27 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:33 -msgid "Marked" -msgstr "" - -#: motions/static/js/motions/site.js:1360 -msgid "Marked as favorite" -msgstr "" - -#: core/static/js/core/base.js:1393 core/static/js/core/site.js:463 -#: core/static/templates/core/projector-controls.html:224 -msgid "Message" -msgstr "Mensagem" - -#: core/static/js/core/base.js:1394 -#: core/static/templates/core/projector-controls.html:218 -msgid "Messages" -msgstr "Mensagens" - -#: assignments/static/templates/assignments/assignment-detail.html:42 -#: motions/static/js/motions/site.js:1003 -#: motions/static/js/motions/site.js:994 -#: motions/static/templates/motions/motion-detail.html:133 -msgid "Meta information" -msgstr "Informação meta" - -#: motions/static/templates/motions/motion-table-filters.html:166 -msgid "Misc" -msgstr "" - -#: motions/static/js/motions/base.js:293 motions/static/js/motions/base.js:328 -#: motions/static/js/motions/base.js:337 motions/static/js/motions/docx.js:92 -#: motions/static/js/motions/pdf.js:1076 motions/static/js/motions/pdf.js:1346 -#: motions/static/js/motions/pdf.js:1392 motions/static/js/motions/pdf.js:536 -#: motions/static/js/motions/pdf.js:70 motions/static/js/motions/pdf.js:732 -#: motions/static/js/motions/site.js:1627 -#: motions/static/js/motions/site.js:2039 -#: motions/static/js/motions/site.js:2052 -#: motions/static/js/motions/site.js:2058 -#: motions/static/js/motions/site.js:267 motions/static/js/motions/site.js:344 -#: motions/static/templates/motions/motion-block-detail.html:51 -#: motions/static/templates/motions/motion-detail.html:116 -#: motions/static/templates/motions/motion-detail.html:120 -#: motions/static/templates/motions/motion-detail.html:271 -#: motions/static/templates/motions/motion-detail.html:92 -#: motions/static/templates/motions/slide_motion.html:74 -msgid "Motion" -msgstr "Moção" - -#: motions/static/js/motions/motion-block.js:156 -#: motions/static/js/motions/motion-block.js:19 -#: motions/static/js/motions/pdf.js:155 motions/static/js/motions/site.js:1427 -#: motions/static/js/motions/site.js:614 motions/static/js/motions/site.js:874 -#: motions/static/templates/motions/motion-block-detail.html:25 -#: motions/static/templates/motions/motion-detail.html:318 -#: motions/static/templates/motions/motion-detail.html:322 -#: motions/static/templates/motions/motion-import.html:29 -#: motions/static/templates/motions/motion-import.html:52 -#: motions/static/templates/motions/motion-table-filters.html:93 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motion block" -msgstr "Bloco de moção" - -#: motions/static/js/motions/site.js:156 -#: motions/static/templates/motions/motion-block-list.html:13 -#: motions/static/templates/motions/motion-list.html:19 -msgid "Motion blocks" -msgstr "Blocos de moção" - -#: motions/static/templates/motions/motion-import.html:125 -msgid "Motion blocks created" -msgstr "" - -#: motions/static/js/motions/site.js:3247 -msgid "Motion preamble" -msgstr "Preâmbulo da moção" - -#: motions/static/js/motions/base.js:294 motions/static/js/motions/site.js:23 -#: motions/static/js/motions/site.js:3238 motions/static/js/motions/site.js:35 -#: motions/static/js/motions/site.js:53 -#: motions/static/templates/motions/motion-block-list.html:30 -#: motions/static/templates/motions/motion-list.html:35 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motions" -msgstr "Moções" - -#: motions/static/js/motions/site.js:1034 -msgid "Multiple PDFs in a zip arcive" -msgstr "" - -#: core/static/js/core/site.js:497 -#: core/static/templates/core/manage-projectors.html:62 -#: core/static/templates/core/tag-list.html:34 -#: motions/static/js/motions/site.js:739 -#: motions/static/templates/motions/category-list.html:29 -#: motions/static/templates/motions/motion-block-list.html:29 -#: motions/static/templates/motions/state-edit.html:8 -#: motions/static/templates/motions/workflow-list.html:25 -#: users/static/js/users/pdf.js:65 -msgid "Name" -msgstr "Nome" - -#: motions/static/js/motions/site.js:3263 -msgid "Name of recommender" -msgstr "Nome do recomendador" - -#: motions/static/js/motions/base.js:1639 -msgid "Needs review" -msgstr "Necessita de revisão" - -#: agenda/static/templates/agenda/item-list.html:8 -#: assignments/static/templates/assignments/assignment-list.html:6 -#: core/static/js/core/site.js:1288 core/static/js/core/site.js:1301 -#: core/static/js/core/site.js:1302 -#: core/static/templates/core/manage-projectors.html:8 -#: core/static/templates/core/tag-list.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:6 -#: motions/static/templates/motions/category-list.html:10 -#: motions/static/templates/motions/motion-block-list.html:10 -#: motions/static/templates/motions/motion-list.html:6 -#: motions/static/templates/motions/workflow-detail.html:11 -#: motions/static/templates/motions/workflow-list.html:10 -#: users/static/templates/users/group-list.html:11 -#: users/static/templates/users/user-list.html:6 -msgid "New" -msgstr "Novo" - -#: motions/static/templates/motions/motion-detail.html:181 -msgid "New amendment" -msgstr "Nova emenda" - -#: motions/static/templates/motions/motion-form.html:3 -msgid "New amendment to motion" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:133 -msgid "New ballot" -msgstr "Nova votação" - -#: motions/static/templates/motions/category-form.html:2 -msgid "New category" -msgstr "Nova categoria" - -#: motions/static/js/motions/site.js:2922 -msgid "New category will be created." -msgstr "Nova categoria será criada." - -#: motions/static/templates/motions/change-recommendation-form.html:2 -msgid "New change recommendation" -msgstr "Nova recomendação de alteração" - -#: assignments/static/templates/assignments/assignment-form.html:2 -msgid "New election" -msgstr "Nova eleição" - -#: motions/static/templates/motions/motion-form.html:2 -msgid "New motion" -msgstr "Nova moção" - -#: motions/static/templates/motions/motion-block-form.html:2 -msgid "New motion block" -msgstr "Novo bloco de moção" - -#: motions/static/js/motions/site.js:2935 -msgid "New motion block will be created." -msgstr "" - -#: users/static/templates/users/user-form.html:2 -msgid "New participant" -msgstr "Novo participante" - -#: motions/static/js/motions/site.js:2909 -msgid "New participant will be created." -msgstr "Novo participante será criado." - -#: users/static/js/users/site.js:519 -#: users/static/templates/users/user-change-password.html:23 -msgid "New password" -msgstr "Nova senha" - -#: core/static/templates/core/tag-form.html:2 -msgid "New tag" -msgstr "Nova tag" - -#: motions/static/js/motions/pdf.js:377 motions/static/js/motions/site.js:275 -#: motions/static/templates/motions/motion-detail/view-diff.html:42 -#: motions/static/templates/motions/slide_motion.html:107 -msgid "New title" -msgstr "" - -#: topics/static/templates/topics/topic-form.html:2 -msgid "New topic" -msgstr "Novo tópico" - -#: motions/static/templates/motions/motion-detail.html:542 -#: motions/static/templates/motions/motion-detail.html:572 -msgid "New version on these changes" -msgstr "Nova versão nessas alterações" - -#: motions/static/templates/motions/motion-detail.html:495 -msgid "New vote" -msgstr "Novo voto" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:39 -msgid "Next page" -msgstr "Próxima página" - -#: motions/static/templates/motions/workflow-detail.html:170 -msgid "Next states" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:323 -#: assignments/static/js/assignments/pdf.js:358 -#: assignments/static/js/assignments/site.js:612 -#: assignments/static/js/assignments/site.js:743 -#: assignments/static/js/assignments/site.js:809 -#: assignments/static/templates/assignments/assignment-detail.html:262 -#: assignments/static/templates/assignments/slide_assignment.html:77 -#: motions/static/js/motions/pdf.js:198 motions/static/js/motions/pdf.js:740 -#: motions/static/js/motions/site.js:770 -#: motions/static/templates/motions/motion-detail.html:417 -#: motions/static/templates/motions/slide_motion.html:44 -msgid "No" -msgstr "Não" - -#: motions/static/js/motions/docx.js:48 -msgid "No categories available." -msgstr "Sem categorias disponíveis." - -#: motions/static/templates/motions/motion-amendment-list.html:140 -#: motions/static/templates/motions/motion-list.html:102 -msgid "No category" -msgstr "Sem categoria" - -#: motions/static/templates/motions/motion-table-filters.html:286 -#: motions/static/templates/motions/motion-table-filters.html:83 -msgid "No category set" -msgstr "Nenhuma categoria definida" - -#: motions/static/templates/motions/motion-detail/change-summary.html:53 -msgid "No change recommendations yet" -msgstr "Nenhumas recomendações de alteração ainda" - -#: motions/static/js/motions/pdf.js:1094 motions/static/js/motions/pdf.js:370 -#: motions/static/templates/motions/motion-amendment-list.html:349 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:17 -msgid "No changes at the text." -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:131 -#: motions/static/templates/motions/motion-table-filters.html:312 -msgid "No comments set" -msgstr "" - -#: motions/static/js/motions/base.js:1634 -msgid "No concernment" -msgstr "Sem interesse" - -#: motions/static/js/motions/base.js:1614 -msgid "No decision" -msgstr "Sem decisão" - -#: users/static/js/users/site.js:818 -msgid "No emails were send." -msgstr "" - -#: users/static/js/users/site.js:1868 -msgid "No encryption" -msgstr "Sem encriptação" - -#: users/static/templates/users/user-list.html:223 -#: users/static/templates/users/user-list.html:300 -msgid "No group set" -msgstr "Nenhum grupo definido" - -#: agenda/static/js/agenda/site.js:198 -msgid "No hidden items" -msgstr "" - -#: agenda/static/js/agenda/site.js:191 -msgid "No internal items" -msgstr "Sem itens internos" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:107 -msgid "No media file projected." -msgstr "Nenhum ficheiro de media projectado." - -#: motions/static/templates/motions/motion-amendment-list.html:153 -#: motions/static/templates/motions/motion-list.html:115 -msgid "No motion block" -msgstr "Sem bloco de moção" - -#: motions/static/templates/motions/motion-table-filters.html:107 -#: motions/static/templates/motions/motion-table-filters.html:328 -msgid "No motion block set" -msgstr "Nenhum bloco de moção definido" - -#: motions/static/js/motions/docx.js:54 -msgid "No motions available." -msgstr "Não há moções disponíveis." - -#: agenda/static/js/agenda/site.js:185 -msgid "No public items" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:285 -#: motions/static/templates/motions/motion-amendment-list.html:296 -msgid "No recomendation set" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:59 -msgid "No recommendation set" -msgstr "Nenhuma recomendação definida" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: core/static/templates/core/select-multiple.html:2 -#: core/static/templates/core/select-single.html:2 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "No results available ..." -msgstr "Sem resultados disponíveis..." - -#: core/static/templates/search.html:41 -msgid "No results." -msgstr "Sem resultados." - -#: assignments/static/templates/assignments/assignment-list.html:120 -#: assignments/static/templates/assignments/assignment-list.html:192 -#: motions/static/templates/motions/motion-table-filters.html:155 -#: motions/static/templates/motions/motion-table-filters.html:344 -msgid "No tag set" -msgstr "Nenhuma tag definida" - -#: motions/static/js/motions/site.js:2304 -msgid "No workflows exists. You will not be able to create a motion." -msgstr "" - -#. abbreviation for number -#: users/static/js/users/base.js:82 -#: users/static/templates/users/user-list.html:349 -#: users/static/templates/users/user-list.html:353 -msgid "No." -msgstr "Não." - -#. Line numbering: None -#: motions/static/js/motions/site.js:3255 -#: motions/static/js/motions/site.js:931 motions/static/js/motions/site.js:944 -msgid "None" -msgstr "Nenhuma" - -#: motions/static/js/motions/site.js:1361 -msgid "Not marked as favorite" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:8 -msgid "Not rejected" -msgstr "Não rejeitado" - -#: motions/static/templates/motions/motion-detail/change-summary.html:8 -msgid "" -"Note: You have to reject all change recommendations if the plenum does not " -"follow the recommendation. This does not affect amendments." -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-original.html:45 -msgid "Now choose the last line to be changed" -msgstr "Agora escolhe a última linha a ser alterada" - -#: users/static/js/users/site.js:1280 users/static/js/users/site.js:644 -msgid "Number" -msgstr "Número" - -#: motions/static/js/motions/site.js:3283 -msgid "Number of (minimum) required supporters for a motion" -msgstr "Número (mínimo) de apoiantes exigidos para uma moção" - -#: assignments/static/js/assignments/site.js:921 -#: motions/static/js/motions/site.js:3309 -msgid "Number of all delegates" -msgstr "Número de todos os delegados" - -#: assignments/static/js/assignments/site.js:922 -#: motions/static/js/motions/site.js:3310 -msgid "Number of all participants" -msgstr "Número de todos os participantes" - -#: assignments/static/js/assignments/site.js:920 -#: motions/static/js/motions/site.js:3308 -msgid "Number of ballot papers (selection)" -msgstr "Número de boletins de voto (selecção)" - -#: assignments/static/js/assignments/site.js:339 -msgid "Number of candidates" -msgstr "Número de candidatos" - -#: agenda/static/js/agenda/site.js:878 -msgid "Number of last speakers to be shown on the projector" -msgstr "Número dos últimos oradores a serem mostrados no projector" - -#: assignments/static/js/assignments/pdf.js:23 -#: assignments/static/js/assignments/site.js:147 -#: assignments/static/templates/assignments/assignment-detail.html:52 -msgid "Number of persons to be elected" -msgstr "Número de pessoas a serem eleitas" - -#: motions/static/js/motions/site.js:3244 -msgid "Numbered per category" -msgstr "Numerado por categoria" - -#: agenda/static/templates/agenda/item-list.html:88 -#: motions/static/templates/motions/category-sort.html:20 -msgid "Numbering" -msgstr "Numeração" - -#: agenda/static/js/agenda/site.js:868 -msgid "Numbering prefix for agenda items" -msgstr "Numeração de prefixo para itens da agenda" - -#: agenda/static/js/agenda/site.js:872 -msgid "Numeral system for agenda items" -msgstr "Sistema de numeração para itens da agenda" - -#: core/static/js/core/base.js:263 core/static/js/core/base.js:265 -msgid "OK" -msgstr "OK" - -#: core/static/js/core/base.js:811 -msgid "Offline mode: You can use OpenSlides but changes are not saved." -msgstr "" - -#: users/static/js/users/site.js:511 -msgid "Old password" -msgstr "Senha antiga" - -#: motions/static/js/motions/site.js:1033 -msgid "One PDF" -msgstr "" - -#: core/static/js/core/site.js:751 -msgid "One anonymous users is also editing this." -msgstr "" - -#: users/static/js/users/site.js:820 -msgid "One email was send sucessfully." -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:287 -msgid "One vote per candidate" -msgstr "Um voto por candidato" - -#: motions/static/templates/motions/motion-import.html:33 -#: topics/static/templates/topics/topic-import.html:57 -#: users/static/templates/users/user-import.html:65 -msgid "Only double quotes are accepted as text delimiter (no single quotes)." -msgstr "Somente aspas duplas são aceites como delimitador de texto (sem aspas simples)." - -#: users/static/js/users/site.js:375 -msgid "Only for internal notes." -msgstr "Apenas para notas internas." - -#: agenda/static/templates/agenda/item-list.html:46 -msgid "Only main agenda items" -msgstr "Apenas os itens principais de agenda" - -#: agenda/static/templates/agenda/item-list.html:177 -msgid "Open" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:93 -msgid "Open amendment" -msgstr "" - -#: core/static/templates/core/projector-controls.html:147 -msgid "Open countdown in fullscreen" -msgstr "" - -#: assignments/static/templates/assignments/assignment-form.html:13 -msgid "Open election detail view after save." -msgstr "Abrir a vista de detalhe da eleição após gravar." - -#: mediafiles/static/js/mediafiles/image-plugin.js:138 -msgid "Open image browser" -msgstr "" - -#: agenda/static/js/agenda/site.js:178 -msgid "Open items" -msgstr "Itens abertos" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:7 -msgid "Open list of speakers" -msgstr "" - -#: motions/static/templates/motions/motion-form.html:14 -msgid "Open motion detail view after save." -msgstr "Abrir a vista de detalhe da moção após gravar." - -#: users/static/js/users/pdf.js:189 -msgid "OpenSlides access data" -msgstr " OpenSlides dados de acesso" - -#: motions/static/js/motions/pdf.js:168 motions/static/js/motions/site.js:627 -#: motions/static/js/motions/site.js:881 -#: motions/static/templates/motions/motion-detail.html:362 -#: motions/static/templates/motions/motion-import.html:28 -#: motions/static/templates/motions/motion-import.html:51 -#: motions/static/templates/motions/motion-list.html:407 -msgid "Origin" -msgstr "Origem" - -#: mediafiles/static/js/mediafiles/image-plugin.js:196 -#: mediafiles/static/js/mediafiles/image-plugin.js:94 -msgid "Original size" -msgstr "" - -#: motions/static/js/motions/site.js:957 motions/static/js/motions/site.js:971 -#: motions/static/templates/motions/motion-detail/toolbar.html:128 -#: motions/static/templates/motions/motion-detail/toolbar.html:83 -msgid "Original version" -msgstr "Versão original" - -#: motions/static/js/motions/site.js:373 -msgid "Other" -msgstr "" - -#. Line numbering: Outside -#: motions/static/js/motions/site.js:3251 -msgid "Outside" -msgstr "Fora" - -#: assignments/static/templates/assignments/assignment-detail.html:28 -#: motions/static/templates/motions/motion-detail.html:71 -#: motions/static/templates/motions/motion-detail/comments.html:9 -#: motions/static/templates/motions/motion-detail/personal-note.html:9 -#: users/static/js/users/site.js:1853 -msgid "PDF" -msgstr "PDF" - -#: core/static/js/core/site.js:2127 -msgid "PDF ballot paper logo" -msgstr "" - -#: core/static/js/core/site.js:2124 -msgid "PDF footer logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2125 -msgid "PDF footer logo (right)" -msgstr "" - -#: motions/static/js/motions/site.js:1031 -msgid "PDF format" -msgstr "" - -#: core/static/js/core/site.js:2122 -msgid "PDF header logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2123 -msgid "PDF header logo (right)" -msgstr "" - -#: core/static/js/core/pdf.js:1330 -msgid "PDF successfully generated." -msgstr "PDF gerado com sucesso." - -#: agenda/static/templates/agenda/item-list.html:218 -#: assignments/static/templates/assignments/assignment-list.html:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:153 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:44 -#: motions/static/templates/motions/motion-amendment-list.html:180 -#: motions/static/templates/motions/motion-list.html:146 -#: users/static/templates/users/user-import.html:73 -#: users/static/templates/users/user-list.html:160 -msgid "Page" -msgstr "Página" - -#: core/static/js/core/site.js:2100 -msgid "Page number alignment in PDF" -msgstr "" - -#: motions/static/js/motions/site.js:3279 -msgid "Paragraph-based, Diff-enabled" -msgstr "" - -#: assignments/static/js/assignments/site.js:168 -#: motions/static/js/motions/motion-block.js:91 -#: motions/static/js/motions/site.js:553 topics/static/js/topics/site.js:130 -msgid "Parent item" -msgstr "Item pai" - -#: motions/static/js/motions/site.js:2780 -msgid "Parent motion and line number" -msgstr "" - -#: users/static/js/users/site.js:887 -#: users/static/templates/users/user-detail.html:20 -msgid "Participant" -msgstr "Participante" - -#: users/static/js/users/site.js:331 -#: users/static/templates/users/user-detail.html:34 -#: users/static/templates/users/user-import.html:54 -#: users/static/templates/users/user-import.html:87 -msgid "Participant number" -msgstr "Número de participante" - -#: users/static/js/users/base.js:19 users/static/js/users/base.js:20 -#: users/static/js/users/site.js:1850 users/static/js/users/site.js:19 -#: users/static/js/users/site.js:30 users/static/js/users/site.js:48 -#: users/static/templates/users/user-list.html:24 -msgid "Participants" -msgstr "Participantes" - -#: core/static/templates/core/login-form.html:17 -msgid "Password" -msgstr "Senha" - -#: users/static/js/users/site.js:1064 -msgid "Password confirmation does not match." -msgstr "A confirmação da senha não corresponde." - -#: core/static/templates/core/projector-controls.html:170 -msgid "Pause" -msgstr "Pausar" - -#: motions/static/js/motions/base.js:1620 -msgid "Permission" -msgstr "Permissão" - -#: motions/static/templates/motions/workflow-detail.html:42 -#: users/static/templates/users/group-list.html:26 -msgid "Permissions" -msgstr "Permissões" - -#: motions/static/js/motions/base.js:1619 -msgid "Permit" -msgstr "Permitir" - -#: motions/static/templates/motions/motion-detail.html:624 -msgid "Permit and activate" -msgstr "Permitir e activar" - -#: users/static/templates/users/user-detail.html:27 -msgid "Personal data" -msgstr "Dados pessoais" - -#: motions/static/js/motions/pdf.js:1403 -#: motions/static/templates/motions/motion-detail.html:500 -#: motions/static/templates/motions/motion-detail/personal-note.html:25 -msgid "Personal note" -msgstr "" - -#: motions/static/js/motions/site.js:1366 -msgid "Personal note not set" -msgstr "" - -#: motions/static/js/motions/site.js:1365 -msgid "Personal note set" -msgstr "" - -#: assignments/static/js/assignments/site.js:337 -#: assignments/static/templates/assignments/assignment-detail.html:62 -#: assignments/static/templates/assignments/assignment-list.html:130 -msgid "Phase" -msgstr "Fase" - -#: users/static/templates/users/group-edit.html:12 -msgid "Please enter a name for the new group:" -msgstr "Por favor insere um nome para o novo grupo:" - -#: core/static/templates/core/manage-projectors.html:5 -msgid "Please enter a name for the new projector" -msgstr "Por favor insere um nome para o novo projector" - -#: motions/static/templates/motions/workflow-edit.html:12 -msgid "Please enter a name for the new workflow:" -msgstr "" - -#: users/static/templates/users/group-edit.html:10 -msgid "Please enter a new group name:" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:9 -msgid "Please enter a new workflow name:" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:18 -#: topics/static/templates/topics/topic-import.html:46 -#: users/static/templates/users/user-import.html:46 -msgid "Please note:" -msgstr "Por favor nota" - -#: core/static/templates/core/manage-projectors.html:72 -msgid "Please select" -msgstr "" - -#: motions/static/js/motions/site.js:3316 -msgid "Preamble text for PDF and DOCX documents (all motions)" -msgstr "Texto preâmbulo para os documentos PDF e DOCX (todas as moções)" - -#: assignments/static/js/assignments/site.js:933 -msgid "Preamble text for PDF document (all elections)" -msgstr "Texto preâmbulo para o documento PDF (todas as eleições)" - -#: core/static/js/core/site.js:2117 -msgid "Predefined seconds of new countdowns" -msgstr "Segundos predefinidos de novas contagens regressivas" - -#: motions/static/js/motions/site.js:732 -#: motions/static/templates/motions/category-list.html:34 -msgid "Prefix" -msgstr "Prefixo" - -#: motions/static/js/motions/site.js:3272 -msgid "Prefix for the identifier for amendments" -msgstr "Prefixo para o identificador para emendas" - -#: users/static/templates/users/user-list.html:11 -#: users/static/templates/users/user-presence.html:9 -msgid "Presence" -msgstr "" - -#: users/static/js/users/site.js:591 users/static/js/users/site.js:638 -#: users/static/templates/users/user-list.html:460 -#: users/static/templates/users/user-list.html:466 -msgid "Present" -msgstr "Presente" - -#: core/static/js/core/site.js:2079 -msgid "Presentation and assembly system" -msgstr "Apresentação e sistema de assembleia" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:17 -msgid "Presentation control elements" -msgstr "Elementos de controlo da apresentação" - -#: motions/static/templates/motions/motion-import.html:38 -#: topics/static/templates/topics/topic-import.html:62 -#: users/static/templates/users/user-import.html:70 -msgid "Preview" -msgstr "Visualização" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:34 -msgid "Previous page" -msgstr "Página anterior" - -#: assignments/static/templates/assignments/assignment-detail.html:163 -#: motions/static/templates/motions/motion-detail.html:390 -msgid "Print ballot paper" -msgstr "Imprimir boletim de voto" - -#: core/static/js/core/site.js:2092 core/static/js/core/site.js:380 -#: core/static/templates/core/login-form.html:28 -#: core/static/templates/index.html:228 -#: core/static/templates/privacypolicy.html:3 -#: core/static/templates/privacypolicydialog.html:1 -msgid "Privacy policy" -msgstr "" - -#: motions/static/js/motions/site.js:3292 -msgid "Private" -msgstr "Privado" - -#: assignments/static/templates/assignments/assignment-detail.html:16 -#: assignments/static/templates/assignments/assignment-detail.html:181 -#: motions/static/templates/motions/motion-detail.html:31 -#: topics/static/templates/topics/topic-detail.html:15 -#: users/static/templates/users/user-detail.html:10 -msgid "Project" -msgstr "Projecto" - -#: agenda/static/templates/agenda/item-list.html:31 -msgid "Project agenda" -msgstr "Agenda de projectos" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:35 -#: core/static/templates/core/projector-controls.html:287 -msgid "Project as overlay" -msgstr "Projecto como overlay" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:29 -#: core/static/templates/core/projector-controls.html:281 -msgid "Project as slide" -msgstr "Projecto como slide" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:13 -msgid "Project current list of speakers" -msgstr "Lista actual de oradores do projecto" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:10 -#: core/static/templates/core/projector-controls.html:263 -msgid "Project the current list of speakers" -msgstr "Projectar a lista actual de oradores" - -#: core/static/templates/core/manage-projectors.html:69 -msgid "Projection defaults" -msgstr "Predefinições de projecção" - -#: agenda/static/templates/agenda/item-detail.html:14 -#: agenda/static/templates/agenda/item-list.html:27 -#: agenda/static/templates/agenda/item-list.html:345 -#: core/static/js/core/projector.js:401 core/static/js/core/site.js:2108 -#: core/static/templates/index.html:194 core/static/templates/index.html:207 -#: core/static/templates/index.html:244 -#: core/static/templates/projector-button.html:2 -#: core/static/templates/projector-container.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:273 -#: motions/static/templates/motions/motion-detail.html:27 -#: users/static/js/users/site.js:1496 -msgid "Projector" -msgstr "Projector" - -#: core/static/js/core/site.js:2121 -msgid "Projector header image" -msgstr "" - -#: core/static/js/core/site.js:2109 -msgid "Projector language" -msgstr "Idioma do projector" - -#: core/static/js/core/site.js:2120 -msgid "Projector logo" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:153 -#: agenda/static/templates/agenda/item-list.html:428 -#: agenda/static/templates/agenda/item-list.html:464 -#: motions/static/js/motions/site.js:3291 -msgid "Public" -msgstr "Público" - -#: agenda/static/js/agenda/site.js:100 -#: agenda/static/templates/agenda/item-list.html:442 -msgid "Public item" -msgstr "" - -#: agenda/static/js/agenda/site.js:184 -#: agenda/static/templates/agenda/item-list.html:281 -msgid "Public items" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:177 -msgid "Publish" -msgstr "Publicar" - -#: assignments/static/js/assignments/site.js:931 -msgid "Put all candidates on the list of speakers" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:215 -msgid "Quorum" -msgstr "Quórum" - -#: assignments/static/templates/assignments/assignment-detail.html:249 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) not reached." -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:246 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:484 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) not " -"reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:481 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) " -"reached." -msgstr "" - -#: motions/static/js/motions/docx.js:96 motions/static/js/motions/pdf.js:393 -#: motions/static/js/motions/site.js:529 motions/static/js/motions/site.js:986 -#: motions/static/templates/motions/motion-detail.html:594 -#: motions/static/templates/motions/motion-import.html:25 -#: motions/static/templates/motions/motion-import.html:48 -#: motions/static/templates/motions/slide_motion.html:151 -#: motions/static/templates/motions/slide_motion.html:166 -msgid "Reason" -msgstr "Razão" - -#: motions/static/js/motions/site.js:860 -#: motions/static/templates/motions/motion-block-detail.html:53 -#: motions/static/templates/motions/motion-table-filters.html:41 -msgid "Recommendation" -msgstr "Recomendação" - -#: motions/static/templates/motions/workflow-detail.html:89 -msgid "Recommendation label" -msgstr "" - -#: motions/static/js/motions/workflow.js:80 -msgid "Red" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:15 -#: motions/static/templates/motions/workflow-detail.html:18 -msgid "Reduce" -msgstr "" - -#: motions/static/js/motions/base.js:1636 -msgid "Refer to committee" -msgstr "Referir à comissão" - -#: core/static/templates/core/manage-projectors.html:16 -msgid "Reference for current list of speakers" -msgstr "Referência para lista actual de oradores" - -#: motions/static/js/motions/base.js:1637 -msgid "Referral to committee" -msgstr "Referência à comissão" - -#: motions/static/js/motions/base.js:1610 -#: motions/static/js/motions/base.js:1625 -msgid "Reject" -msgstr "Rejeitar" - -#: motions/static/js/motions/base.js:1641 -msgid "Reject (not authorized)" -msgstr "Rejeitar (não autorizado)" - -#: motions/static/templates/motions/motion-detail/change-summary.html:11 -msgid "Reject all change recommendations" -msgstr "Rejeitar todas as recomendações de alteração" - -#: motions/static/templates/motions/motion-detail/change-summary.html:20 -#: motions/static/templates/motions/motion-detail/change-summary.html:45 -#: motions/static/templates/motions/motion-detail/view-diff.html:100 -#: motions/static/templates/motions/motion-detail/view-diff.html:16 -#: motions/static/templates/motions/motion-detail/view-diff.html:38 -#: motions/static/templates/motions/motion-detail/view-diff.html:71 -msgid "Rejected" -msgstr "Rejeitado" - -#: motions/static/js/motions/base.js:1611 -#: motions/static/js/motions/base.js:1626 -msgid "Rejection" -msgstr "Rejeição" - -#: motions/static/js/motions/base.js:1642 -msgid "Rejection (not authorized)" -msgstr "Rejeição (não autorizado)" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:50 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:73 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:99 -#: core/static/templates/config-form-field.html:123 -#: core/static/templates/config-form-field.html:42 -#: motions/static/templates/motions/motion-submitters.html:23 -msgid "Remove" -msgstr "Remover" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:19 -msgid "Remove all speakers" -msgstr "Remover todos os oradores" - -#: motions/static/js/motions/site.js:3285 -msgid "" -"Remove all supporters of a motion if a submitter edits his motion in early " -"state" -msgstr "Remove todos os apoiantes de uma moção, se um submissor editar a sua moção no estado inicial" - -#: core/static/templates/core/projector-controls.html:137 -msgid "Remove countdown" -msgstr "Remover contagem regressiva" - -#: motions/static/templates/motions/motion-block-detail.html:62 -msgid "Remove from motion block" -msgstr "Remover do bloco da moção" - -#: users/static/templates/users/user-list.html:115 -#: users/static/templates/users/user-list.html:84 -msgid "Remove group" -msgstr "Remover grupo" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:129 -#: assignments/static/templates/assignments/assignment-detail.html:122 -msgid "Remove me" -msgstr "Remover-me" - -#: core/static/templates/core/projector-controls.html:228 -msgid "Remove message" -msgstr "Remover mensagem" - -#: motions/static/js/motions/base.js:1495 motions/static/js/motions/pdf.js:280 -#: motions/static/js/motions/site.js:370 -#: motions/static/templates/motions/motion-detail/change-summary.html:18 -#: motions/static/templates/motions/motion-detail/change-summary.html:37 -msgid "Replacement" -msgstr "Substituição" - -#: motions/static/templates/motions/motion-import.html:20 -#: topics/static/templates/topics/topic-import.html:48 -#: users/static/templates/users/user-import.html:48 -msgid "" -"Required comma or semicolon separated values with these column header names " -"in the first row" -msgstr "Necessário valores separados por vírgula ou ponto e vírgula com esses nomes de cabeçalho de coluna na primeira linha" - -#: assignments/static/js/assignments/site.js:925 -#: assignments/static/templates/assignments/assignment-detail.html:204 -#: motions/static/js/motions/site.js:3302 -#: motions/static/templates/motions/motion-detail.html:472 -msgid "Required majority" -msgstr "Maioria necessária" - -#: motions/static/templates/motions/workflow-detail.html:142 -msgid "Required permission to see" -msgstr "" - -#: core/static/templates/config-form-field.html:147 -msgid "Reset" -msgstr "Redefinir" - -#: core/static/templates/core/projector-controls.html:159 -msgid "Reset countdown" -msgstr "Redefinir contagem regressiva" - -#: motions/static/templates/motions/motion-amendment-list.html:311 -#: motions/static/templates/motions/motion-detail.html:246 -#: motions/static/templates/motions/motion-list.html:257 -msgid "Reset recommendation" -msgstr "Redefinir recomendação" - -#: core/static/templates/core/manage-projectors.html:170 -#: core/static/templates/core/projector-controls.html:94 -msgid "Reset scaling" -msgstr "Redefinir dimensionamento" - -#: core/static/templates/core/manage-projectors.html:190 -#: core/static/templates/core/projector-controls.html:114 -msgid "Reset scrolling" -msgstr "Redefinir scroll" - -#: motions/static/templates/motions/motion-amendment-list.html:272 -#: motions/static/templates/motions/motion-detail.html:204 -#: motions/static/templates/motions/motion-list.html:231 -msgid "Reset state" -msgstr "Redefinir estado" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:61 -msgid "Reset zoom" -msgstr "Redefinir o zoom" - -#: motions/static/templates/motions/motion-detail/comments.html:42 -#: motions/static/templates/motions/motion-detail/personal-note.html:38 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:20 -#: motions/static/templates/motions/motion-detail/view-original.html:12 -msgid "Revert" -msgstr "Reverter" - -#: core/static/js/core/site.js:2103 -msgid "Right" -msgstr "" - -#: agenda/static/js/agenda/site.js:874 -msgid "Roman" -msgstr "Romano" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:51 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:83 -msgid "Rotate clockwise" -msgstr "Rodar no sentido dos ponteiros do relógio" - -#: assignments/static/templates/assignments/assignment-form.html:15 -#: assignments/static/templates/assignments/assignmentpoll-form.html:15 -#: core/static/templates/core/projector-controls.html:193 -#: core/static/templates/core/projector-message-form.html:5 -#: core/static/templates/core/tag-form.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:16 -#: motions/static/templates/motions/category-form.html:10 -#: motions/static/templates/motions/change-recommendation-form.html:10 -#: motions/static/templates/motions/motion-block-form.html:10 -#: motions/static/templates/motions/motion-comment-form.html:9 -#: motions/static/templates/motions/motion-detail/comments.html:39 -#: motions/static/templates/motions/motion-detail/personal-note.html:35 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:17 -#: motions/static/templates/motions/motion-detail/view-original.html:9 -#: motions/static/templates/motions/motion-form.html:16 -#: motions/static/templates/motions/motion-poll-form.html:15 -#: motions/static/templates/motions/state-edit.html:21 -#: motions/static/templates/motions/workflow-edit.html:21 -#: topics/static/templates/topics/topic-form.html:10 -#: users/static/templates/users/group-edit.html:21 -#: users/static/templates/users/profile-password-form.html:9 -#: users/static/templates/users/user-form.html:10 -msgid "Save" -msgstr "Gravar" - -#: mediafiles/static/js/mediafiles/image-plugin.js:197 -#: mediafiles/static/js/mediafiles/image-plugin.js:46 -msgid "Scale" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:107 -msgid "Scaling" -msgstr "" - -#: users/static/js/users/pdf.js:180 -msgid "Scan this QR code to connect to WLAN." -msgstr "Digitaliza este QR code para conectar à WLAN." - -#: users/static/js/users/pdf.js:230 -msgid "Scan this QR code to open URL." -msgstr "Digitaliza este QR code para abrir a URL." - -#: core/static/templates/core/manage-projectors.html:185 -#: core/static/templates/core/projector-controls.html:109 -msgid "Scroll down" -msgstr "Scroll para baixo" - -#: core/static/templates/core/manage-projectors.html:180 -#: core/static/templates/core/projector-controls.html:104 -msgid "Scroll up" -msgstr "Scroll para cima" - -#: agenda/static/templates/agenda/item-list.html:303 -#: assignments/static/templates/assignments/assignment-list.html:172 -#: core/static/js/core/site.js:400 core/static/templates/index.html:164 -#: core/static/templates/search.html:11 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:230 -#: motions/static/templates/motions/motion-table-filters.html:235 -#: users/static/templates/users/user-list.html:280 -msgid "Search" -msgstr "Pesquisar" - -#: core/static/templates/search.html:3 -msgid "Search results" -msgstr "Resultados da pesquisa" - -#: assignments/static/js/assignments/site.js:935 -msgid "Searching for candidates" -msgstr "A procurar candidatos" - -#: agenda/static/templates/agenda/item-list.html:73 -#: assignments/static/templates/assignments/assignment-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:123 -#: motions/static/templates/motions/motion-amendment-list.html:64 -#: motions/static/templates/motions/motion-list.html:47 -#: users/static/templates/users/user-list.html:39 -msgid "Select ..." -msgstr "Seleccionar ..." - -#: motions/static/templates/motions/motion-import.html:15 -#: topics/static/templates/topics/topic-import.html:43 -#: users/static/templates/users/user-import.html:43 -msgid "Select a CSV file" -msgstr "Seleccionar um ficheiro CSV" - -#: core/static/templates/csv-import.html:8 -msgid "Select a file" -msgstr "Seleccionar um ficheiro" - -#: assignments/static/js/assignments/site.js:171 -#: motions/static/js/motions/motion-block.js:94 -#: motions/static/js/motions/site.js:556 topics/static/js/topics/site.js:133 -msgid "Select a parent item ..." -msgstr "Seleccionar um item pai..." - -#: motions/static/js/motions/site.js:603 -msgid "Select or search a category ..." -msgstr "Seleccionar ou pesquisar uma categoria ..." - -#: users/static/js/users/site.js:351 -msgid "Select or search a group ..." -msgstr "Seleccionar ou pesquisar um grupo ..." - -#: motions/static/js/motions/site.js:617 -msgid "Select or search a motion block ..." -msgstr "Seleccionar ou pesquisar um bloco de moção..." - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: mediafiles/static/js/mediafiles/forms.js:62 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "Select or search a participant ..." -msgstr "Seleccionar ou pesquisar um participante ..." - -#: motions/static/js/motions/site.js:495 -msgid "Select or search a submitter ..." -msgstr "Seleccionar ou pesquisar um submissor ..." - -#: motions/static/js/motions/site.js:654 -msgid "Select or search a supporter ..." -msgstr "Seleccionar ou pesquisar um apoiante ..." - -#: assignments/static/js/assignments/site.js:198 -#: motions/static/js/motions/site.js:640 -msgid "Select or search a tag ..." -msgstr "Seleccionar ou pesquisar uma tag ..." - -#: motions/static/js/motions/site.js:669 -msgid "Select or search a workflow ..." -msgstr "Seleccionar ou pesquisar um workflow ..." - -#: motions/static/js/motions/site.js:589 topics/static/js/topics/site.js:118 -msgid "Select or search an attachment ..." -msgstr "Seleccionar ou pesquisar um anexo ..." - -#: core/static/templates/core/manage-projectors.html:13 -msgid "Select the projector to which the current list of speakers refers to." -msgstr "Selecciona o projector para o qual a lista actual de oradores se refere." - -#: users/static/templates/users/user-list.html:142 -#: users/static/templates/users/user-list.html:89 -msgid "Send invitation emails" -msgstr "" - -#: core/static/templates/csv-import.html:27 -msgid "Separator" -msgstr "Separador" - -#: core/static/js/core/site.js:2099 -msgid "Separator used for all csv exports and examples" -msgstr "Separador usado para todas as exportações csv e exemplos" - -#: motions/static/js/motions/docx.js:93 motions/static/js/motions/pdf.js:549 -#: motions/static/js/motions/pdf.js:82 -#: motions/static/templates/motions/motion-detail.html:99 -msgid "Sequential number" -msgstr "Número sequencial" - -#: motions/static/js/motions/site.js:3245 -msgid "Serially numbered" -msgstr "Numerado sequencialmente" - -#: motions/static/templates/motions/motion-list.html:305 -msgid "Set a category" -msgstr "Definir uma categoria" - -#: motions/static/templates/motions/motion-list.html:339 -msgid "Set a motion block" -msgstr "Definir um bloco de moção" - -#: motions/static/templates/motions/motion-amendment-list.html:248 -#: motions/static/templates/motions/motion-detail.html:86 -#: motions/static/templates/motions/motion-list.html:210 -msgid "Set as favorite" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:118 -#: motions/static/templates/motions/motion-amendment-list.html:145 -#: motions/static/templates/motions/motion-list.html:107 -#: motions/static/templates/motions/motion-list.html:80 -msgid "Set category" -msgstr "Definir categoria" - -#: agenda/static/templates/agenda/item-list.html:502 -#: users/static/templates/users/user-list.html:435 -msgid "Set comment ..." -msgstr "Definir comentário ..." - -#: agenda/static/templates/agenda/item-list.html:481 -msgid "Set duration ..." -msgstr "Definir duração ..." - -#: users/static/templates/users/user-import.html:102 -msgid "Set global action" -msgstr "Definir acção global" - -#: assignments/static/templates/assignments/assignment-detail.html:145 -msgid "Set hint for ballot paper ..." -msgstr "Definir sugestão para o boletim de voto ..." - -#: motions/static/js/motions/workflow.js:72 -msgid "Set identifier" -msgstr "" - -#: motions/static/js/motions/site.js:3246 -msgid "Set it manually" -msgstr "Definir manualmente" - -#: agenda/static/templates/agenda/item-list.html:512 -msgid "Set item number ..." -msgstr "Definir número de item ..." - -#: motions/static/templates/motions/motion-amendment-list.html:119 -#: motions/static/templates/motions/motion-amendment-list.html:158 -#: motions/static/templates/motions/motion-list.html:120 -#: motions/static/templates/motions/motion-list.html:81 -msgid "Set motion block" -msgstr "Definir bloco de moção" - -#: agenda/static/templates/agenda/item-list.html:148 -msgid "Set state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:117 -#: motions/static/templates/motions/motion-amendment-list.html:131 -#: motions/static/templates/motions/motion-list.html:79 -#: motions/static/templates/motions/motion-list.html:93 -msgid "Set status" -msgstr "Definir status" - -#: users/static/templates/users/user-list.html:419 -msgid "Set structure level ..." -msgstr "Definir nível de estrutura ..." - -#: agenda/static/templates/agenda/item-list.html:147 -#: agenda/static/templates/agenda/item-list.html:166 -msgid "Set visibility" -msgstr "" - -#: users/static/templates/users/user-list.html:88 -msgid "Set/Unset 'is a committee'" -msgstr "Definir/Desdefinir 'é um comité'" - -#: users/static/templates/users/user-list.html:86 -msgid "Set/Unset 'is active'" -msgstr "Definir/Desdefinir 'está activo'" - -#: users/static/templates/users/user-list.html:87 -msgid "Set/Unset 'is present'" -msgstr "Definir/Desdefinir 'está presente'" - -#: core/static/js/core/site.js:197 core/static/js/core/site.js:389 -#: core/static/templates/config.html:3 -msgid "Settings" -msgstr "Definições" - -#: core/static/js/core/site.js:2087 -msgid "Short description of event" -msgstr "Descrição breve do evento" - -#: motions/static/js/motions/site.js:3271 -msgid "Show amendments together with motions" -msgstr "" - -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:6 -msgid "Show entire motion text" -msgstr "" - -#: assignments/static/js/assignments/site.js:183 -#: motions/static/js/motions/site.js:571 users/static/js/users/site.js:382 -msgid "Show extended fields" -msgstr "Mostrar campos alargados" - -#: motions/static/templates/motions/motion-detail/toolbar.html:59 -msgid "Show highlighted line also on projector." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:642 -msgid "Show history" -msgstr "Mostrar histórico" - -#: agenda/static/templates/agenda/item-sort.html:19 -msgid "Show internal items" -msgstr "Mostrar itens internos" - -#: core/static/js/core/site.js:2105 -msgid "Show logo on projector" -msgstr "Mostrar logótipo no projector" - -#: agenda/static/js/agenda/site.js:880 -msgid "Show orange countdown in the last x seconds of speaking time" -msgstr "Mostrar contagem regressiva laranja nos últimos x segundos do tempo de intervenção" - -#: users/static/templates/users/user-change-password.html:43 -msgid "Show password" -msgstr "" - -#: motions/static/js/motions/workflow.js:77 -msgid "Show recommendation extension field" -msgstr "" - -#: motions/static/js/motions/workflow.js:75 -msgid "Show state extension field" -msgstr "" - -#: core/static/js/core/site.js:2113 -msgid "Show the clock on projector" -msgstr "" - -#: core/static/js/core/site.js:2098 -msgid "Show this text on the login page" -msgstr "Mostrar este texto na página de login" - -#: core/static/js/core/site.js:2111 -msgid "Show title and description of event on projector" -msgstr "Mostrar o título e a descrição do evento no projector" - -#: motions/static/js/motions/base.js:1604 -msgid "Simple Workflow" -msgstr "Fluxo de Trabalho simples" - -#: assignments/static/js/assignments/site.js:927 -#: motions/static/js/motions/site.js:3304 -msgid "Simple majority" -msgstr "Maioria simples" - -#: core/static/templates/core/manage-projectors.html:160 -#: core/static/templates/core/projector-controls.html:84 -msgid "Smaller" -msgstr "Menor" - -#: mediafiles/static/js/mediafiles/upload.js:128 -#: mediafiles/static/js/mediafiles/upload.js:150 -msgid "Some files could not be uploaded" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:148 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:207 -#: motions/static/templates/motions/category-list.html:44 -#: motions/static/templates/motions/motion-table-filters.html:202 -#: users/static/templates/users/user-list.html:257 -msgid "Sort" -msgstr "Ordenar" - -#: agenda/static/templates/agenda/item-list.html:79 -msgid "Sort ..." -msgstr "Ordenar..." - -#: agenda/static/templates/agenda/item-sort.html:9 -msgid "Sort agenda" -msgstr "Ordenar agenda" - -#: motions/static/js/motions/site.js:3317 -msgid "Sort categories by" -msgstr "" - -#: users/static/js/users/site.js:1848 -msgid "Sort name of participants by" -msgstr "Ordenar o nome dos participantes por" - -#: motions/static/templates/motions/motion-detail.html:146 -#: motions/static/templates/motions/motion-submitters.html:10 -msgid "Sort submitters" -msgstr "" - -#: assignments/static/templates/assignments/assignmentpoll-form.html:8 -#: motions/static/templates/motions/motion-poll-form.html:8 -msgid "Special values" -msgstr "Valores especiais" - -#: users/static/js/users/base.js:173 -msgid "Staff" -msgstr "Staff" - -#: core/static/js/core/site.js:2104 -msgid "Standard font size in PDF" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:92 -#: core/static/templates/core/projector-controls.html:164 -msgid "Start" -msgstr "Início" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:46 -#: core/static/templates/core/projector-controls.html:187 -msgid "Start time" -msgstr "Tempo de início" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:100 -msgid "Start/stop video" -msgstr "Iniciar/parar vídeo" - -#: agenda/static/templates/agenda/item-list.html:250 -#: motions/static/js/motions/pdf.js:1115 motions/static/js/motions/pdf.js:114 -#: motions/static/js/motions/pdf.js:575 motions/static/js/motions/site.js:1429 -#: motions/static/js/motions/site.js:856 -#: motions/static/templates/motions/motion-block-detail.html:52 -#: motions/static/templates/motions/motion-detail.html:187 -#: motions/static/templates/motions/motion-detail.html:191 -#: motions/static/templates/motions/motion-table-filters.html:7 -#: motions/static/templates/motions/slide_motion.html:4 -msgid "State" -msgstr "Estado" - -#: motions/static/js/motions/docx.js:95 -msgid "Status" -msgstr "Status" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:66 -msgid "Stop" -msgstr "Parar" - -#: motions/static/js/motions/site.js:3261 -msgid "Stop submitting new motions by non-staff users" -msgstr "Parar a submissão de novas moções por utilizadores não-staff" - -#: users/static/js/users/pdf.js:69 users/static/js/users/site.js:1282 -#: users/static/js/users/site.js:324 users/static/js/users/site.js:646 -#: users/static/templates/users/user-detail.html:28 -#: users/static/templates/users/user-import.html:53 -#: users/static/templates/users/user-import.html:86 -#: users/static/templates/users/user-list.html:425 -msgid "Structure level" -msgstr "Nível da Estrutura" - -#: core/static/js/core/site.js:132 core/static/js/core/site.js:133 -msgid "Submit" -msgstr "Submeter" - -#: motions/static/templates/motions/motion-import.html:26 -#: motions/static/templates/motions/motion-import.html:49 -msgid "Submitter" -msgstr "Submissor" - -#: motions/static/js/motions/docx.js:94 motions/static/js/motions/pdf.js:100 -#: motions/static/js/motions/pdf.js:1110 motions/static/js/motions/pdf.js:563 -#: motions/static/js/motions/site.js:102 -#: motions/static/js/motions/site.js:1423 -#: motions/static/js/motions/site.js:492 motions/static/js/motions/site.js:855 -#: motions/static/templates/motions/motion-detail.html:143 -#: motions/static/templates/motions/motion-detail.html:145 -#: motions/static/templates/motions/slide_motion.html:14 -msgid "Submitters" -msgstr "Submissores" - -#: motions/static/js/motions/pdf.js:291 -msgid "Summary of change recommendations" -msgstr "Sumário das recomendações de alteração" - -#: motions/static/templates/motions/motion-detail/change-summary.html:4 -msgid "Summary of changes" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:164 -msgid "Support motion" -msgstr "Moção de apoio" - -#: motions/static/js/motions/site.js:3282 -#: motions/static/js/motions/site.js:651 -#: motions/static/templates/motions/motion-amendment-list.html:385 -#: motions/static/templates/motions/motion-detail.html:156 -#: motions/static/templates/motions/motion-list.html:419 -msgid "Supporters" -msgstr "Apoiantes" - -#: users/static/js/users/site.js:1852 users/static/js/users/site.js:304 -#: users/static/js/users/site.js:636 -#: users/static/templates/users/user-import.html:52 -#: users/static/templates/users/user-import.html:85 -msgid "Surname" -msgstr "Apelido" - -#: users/static/js/users/site.js:1858 -msgid "System URL" -msgstr "URL do Sistema" - -#: assignments/static/js/assignments/pdf.js:552 -#: motions/static/js/motions/docx.js:52 motions/static/js/motions/pdf.js:872 -msgid "Table of contents" -msgstr "Índice" - -#: assignments/static/templates/assignments/assignment-list.html:105 -#: motions/static/templates/motions/motion-table-filters.html:141 -msgid "Tag" -msgstr "Tag" - -#: assignments/static/js/assignments/site.js:195 -#: assignments/static/templates/assignments/assignment-detail.html:55 -#: assignments/static/templates/assignments/assignment-list.html:10 -#: core/static/js/core/site.js:410 core/static/templates/core/tag-list.html:13 -#: motions/static/js/motions/site.js:637 -#: motions/static/templates/motions/motion-detail.html:340 -#: motions/static/templates/motions/motion-detail.html:344 -#: motions/static/templates/motions/motion-list.html:27 -msgid "Tags" -msgstr "Tags" - -#: motions/static/js/motions/site.js:518 motions/static/js/motions/site.js:985 -#: motions/static/templates/motions/motion-import.html:24 -#: motions/static/templates/motions/motion-import.html:47 -#: topics/static/js/topics/site.js:103 -#: topics/static/templates/topics/topic-import.html:51 -#: topics/static/templates/topics/topic-import.html:70 -msgid "Text" -msgstr "Texto" - -#: motions/static/js/motions/site.js:392 -msgid "Text from line %from% to %to%" -msgstr "Texto desde a linha %from% à %to%" - -#: motions/static/js/motions/site.js:391 -msgid "Text in line %from%" -msgstr "Texto na linha %from%" - -#: motions/static/js/motions/site.js:3296 -msgid "The 100 % base of a voting result consists of" -msgstr "A base de 100% de um resultado de votação consiste em" - -#: assignments/static/js/assignments/site.js:910 -msgid "The 100-%-base of an election result consists of" -msgstr "A 100-%-base de um resultado eleitoral consiste em" - -#: motions/static/js/motions/site.js:3248 -msgid "The assembly may decide:" -msgstr "A assembleia pode decidir:" - -#: core/static/js/core/site.js:1847 -msgid "The delete was successful." -msgstr "A exclusão foi bem-sucedida." - -#: core/static/templates/privacypolicydialog.html:3 -msgid "The event manager hasn't set up a privacy policy yet." -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:26 -msgid "The list of speakers is empty." -msgstr "A lista de oradores está vazia." - -#: motions/static/js/motions/site.js:3257 -msgid "" -"The maximum number of characters per line. Relevant when line numbering is " -"enabled. Min: 40" -msgstr "O número máximo de caracteres por linha. Relevante quando a numeração de linhas está activada. Min: 40" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:16 -msgid "The modified final version have been changed." -msgstr "" - -#: motions/static/templates/motions/motion-detail/personal-note.html:34 -msgid "The personal note has been changed." -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:364 -msgid "" -"The projector header should have a default size of 1024x70px. Adapt the " -"image width if you change the projector resolution." -msgstr "" - -#: core/static/js/core/base.js:794 -msgid "The server didn't respond." -msgstr "O servidor não respondeu." - -#: motions/static/templates/motions/motion-detail/view-original.html:8 -msgid "The text or reason have been changed." -msgstr "" - -#: motions/static/js/motions/site.js:3274 -msgid "The title of the motion is always applied." -msgstr "O título da moção é sempre aplicado." - -#: users/static/js/users/site.js:830 -msgid "" -"The user %user% has no email, so the invitation email could not be send." -msgstr "" - -#: users/static/js/users/site.js:832 -msgid "" -"The users %user% have no email, so the invitation emails could not be send." -msgstr "" - -#: users/static/js/users/site.js:1265 -msgid "There are more than one duplicates of this user!" -msgstr "Há mais de um duplicado deste utilizador!" - -#: motions/static/templates/motions/motion-detail/view-diff.html:57 -msgid "This change collides with another one." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:620 -msgid "This is the last active version." -msgstr "Esta é a última versão activa." - -#: agenda/static/js/agenda/site.js:869 -msgid "This prefix will be set if you run the automatic agenda numbering." -msgstr "Este prefixo será definido se executares a numeração automática da agenda." - -#: motions/static/templates/motions/motion-detail.html:96 -msgid "This version is not permitted." -msgstr "Esta versão não é permitida." - -#: assignments/static/js/assignments/site.js:929 -#: motions/static/js/motions/site.js:3306 -msgid "Three-quarters majority" -msgstr "Maioria de três quartos" - -#: assignments/static/js/assignments/site.js:129 -#: assignments/static/js/assignments/site.js:335 -#: mediafiles/static/js/mediafiles/forms.js:44 -#: mediafiles/static/js/mediafiles/list.js:100 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:24 -#: motions/static/js/motions/motion-block.js:79 -#: motions/static/js/motions/pdf.js:264 motions/static/js/motions/site.js:1421 -#: motions/static/js/motions/site.js:506 -#: motions/static/templates/motions/motion-detail/change-summary.html:17 -#: motions/static/templates/motions/motion-import.html:23 -#: motions/static/templates/motions/motion-import.html:46 -#: topics/static/js/topics/site.js:95 -#: topics/static/templates/topics/topic-import.html:50 -#: topics/static/templates/topics/topic-import.html:69 -#: users/static/js/users/site.js:288 -#: users/static/templates/users/user-import.html:50 -#: users/static/templates/users/user-import.html:83 -msgid "Title" -msgstr "Título" - -#: motions/static/js/motions/site.js:3315 -msgid "Title for PDF and DOCX documents (all motions)" -msgstr "Título para documentos PDF e DOCX (todas as moções)" - -#: assignments/static/js/assignments/site.js:932 -msgid "Title for PDF document (all elections)" -msgstr "Título para o documento PDF (todas as eleições)" - -#: users/static/js/users/site.js:1855 -msgid "Title for access data and welcome PDF" -msgstr "Título para os dados de acesso e PDF de boas-vindas" - -#: topics/static/templates/topics/topic-import.html:56 -msgid "Title is required. All other fields are optional and may be empty." -msgstr "O título é necessário. Todos os outros campos são opcionais e podem estar vazios." - -#: motions/static/js/motions/site.js:360 -msgid "To Line" -msgstr "Até à linha" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:76 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:93 -msgid "Toggle fullscreen" -msgstr "Alternar ecrã total" - -#: topics/static/js/topics/base.js:16 topics/static/js/topics/site.js:161 -#: topics/static/templates/topics/topic-detail.html:25 -msgid "Topic" -msgstr "Tópico" - -#: topics/static/js/topics/site.js:17 -msgid "Topics" -msgstr "Tópicos" - -#: motions/static/js/motions/site.js:539 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:25 -#: motions/static/templates/motions/motion-detail/view-original.html:17 -msgid "Trivial change" -msgstr "Alteração trivial" - -#: assignments/static/js/assignments/site.js:928 -#: motions/static/js/motions/site.js:3305 -msgid "Two-thirds majority" -msgstr "Maioria de dois terços" - -#: mediafiles/static/js/mediafiles/list.js:102 -msgid "Type" -msgstr "Tipo" - -#: motions/static/templates/motions/motion-detail.html:169 -msgid "Unsupport motion" -msgstr "Desapoiar moção" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:87 -msgid "Upload" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:1 -msgid "Upload files" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:33 -msgid "Upload status" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:106 -msgid "Upload time" -msgstr "Tempo de upload" - -#: mediafiles/static/js/mediafiles/forms.js:59 -#: mediafiles/static/js/mediafiles/list.js:108 -msgid "Uploaded by" -msgstr "Upload por" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:30 -msgid "Uploader" -msgstr "" - -#: assignments/static/js/assignments/site.js:923 -#: motions/static/js/motions/site.js:3311 -msgid "Use the following custom number" -msgstr "Usa o seguinte número personalizado" - -#: users/static/js/users/site.js:1876 -msgid "" -"Use these placeholders: {name}, {event_name}, {url}, {username}, {password}." -" The url referrs to the system url." -msgstr "" - -#: users/static/js/users/site.js:1859 -msgid "Used for QRCode in PDF of access data." -msgstr "Usado para QRCode em PDF dos dados de acesso." - -#: users/static/js/users/site.js:1861 users/static/js/users/site.js:1863 -#: users/static/js/users/site.js:1865 -msgid "Used for WLAN QRCode in PDF of access data." -msgstr "Usado para WLAN QRCode em PDF dos dados de acesso." - -#: core/static/templates/core/login-form.html:12 -#: users/static/js/users/pdf.js:193 users/static/js/users/site.js:1283 -#: users/static/js/users/site.js:340 users/static/js/users/site.js:463 -#: users/static/templates/users/user-change-password.html:41 -#: users/static/templates/users/user-detail.html:46 -msgid "Username" -msgstr "Username" - -#: motions/static/templates/motions/motion-import.html:123 -msgid "Users created" -msgstr "Utilizadores criados" - -#: users/static/templates/users/group-list.html:35 -msgid "Users without any assigned group gain the permissions from this group." -msgstr "Os utilizadores sem um grupo atribuído obtêm as permissões deste grupo." - -#: assignments/static/js/assignments/site.js:826 -#: assignments/static/templates/assignments/assignment-detail.html:268 -#: assignments/static/templates/assignments/slide_assignment.html:82 -msgid "Valid ballots" -msgstr "Votações válidas" - -#: motions/static/js/motions/pdf.js:209 motions/static/js/motions/site.js:790 -#: motions/static/templates/motions/motion-detail.html:441 -msgid "Valid votes" -msgstr "Votos válidos" - -#: motions/static/templates/motions/motion-detail.html:613 -#: motions/static/templates/motions/motion-detail.html:616 -msgid "Version" -msgstr "Versão" - -#: motions/static/templates/motions/motion-detail.html:609 -msgid "Version history" -msgstr "História das versões" - -#: motions/static/js/motions/workflow.js:68 -msgid "Versioning" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:274 -msgid "Visibility" -msgstr "" - -#. ballot of a motion -#: motions/static/js/motions/pdf.js:186 -#: motions/static/templates/motions/motion-detail.html:372 -#: motions/static/templates/motions/motion-poll-form.html:1 -#: motions/static/templates/motions/slide_motion.html:24 -msgid "Vote" -msgstr "Voto" - -#: assignments/static/js/assignments/pdf.js:154 -#: assignments/static/templates/assignments/assignment-detail.html:214 -#: assignments/static/templates/assignments/slide_assignment.html:37 -msgid "Votes" -msgstr "Votos" - -#: motions/static/js/motions/pdf.js:223 motions/static/js/motions/site.js:808 -#: motions/static/templates/motions/motion-detail.html:459 -msgid "Votes cast" -msgstr "Votos emitidos" - -#: assignments/static/js/assignments/site.js:936 -msgid "Voting" -msgstr "Votação" - -#: motions/static/js/motions/site.js:3295 -msgid "Voting and ballot papers" -msgstr "Votação e boletins de voto" - -#: motions/static/js/motions/pdf.js:231 motions/static/js/motions/site.js:887 -#: motions/static/templates/motions/motion-detail.html:367 -#: motions/static/templates/motions/slide_motion.html:20 -msgid "Voting result" -msgstr "Resultado da votação" - -#: users/static/js/users/site.js:1866 -msgid "WEP" -msgstr "WEP" - -#: users/static/js/users/pdf.js:137 -msgid "WLAN access data" -msgstr "WLAN dados de acesso" - -#: users/static/js/users/pdf.js:157 users/static/js/users/site.js:1864 -msgid "WLAN encryption" -msgstr "WLAN encriptação" - -#: users/static/js/users/pdf.js:141 users/static/js/users/site.js:1860 -msgid "WLAN name (SSID)" -msgstr "WLAN nome (SSID)" - -#: users/static/js/users/pdf.js:149 users/static/js/users/site.js:1862 -msgid "WLAN password" -msgstr "WLAN senha" - -#: users/static/js/users/site.js:1867 -msgid "WPA/WPA2" -msgstr "WPA/WPA2" - -#: assignments/static/templates/assignments/slide_assignment.html:29 -msgid "Waiting for results ..." -msgstr "A aguardar resultados ..." - -#: core/static/js/core/site.js:747 -msgid "Warning" -msgstr "" - -#: core/static/js/core/site.js:2126 -msgid "Web interface header logo" -msgstr "" - -#: core/static/js/core/site.js:2094 users/static/js/users/site.js:1854 -msgid "Welcome to OpenSlides" -msgstr "Bem-vindo ao OpenSlides" - -#: motions/static/js/motions/site.js:3265 -msgid "" -"Will be displayed as label before selected recommendation. Use an empty " -"value to disable the recommendation system." -msgstr "Será exibido como rótulo antes da recomendação seleccionada. Usa um valor vazio para desactivar o sistema de recomendação." - -#: motions/static/js/motions/base.js:1628 -msgid "Withdraw" -msgstr "Retirar" - -#: motions/static/js/motions/site.js:665 -msgid "Workflow" -msgstr "Workflow" - -#: motions/static/js/motions/site.js:3242 -msgid "Workflow of new motions" -msgstr "Fluxo de trabalho de novas moções" - -#: motions/static/js/motions/site.js:199 -#: motions/static/templates/motions/motion-list.html:23 -#: motions/static/templates/motions/workflow-list.html:13 -msgid "Workflows" -msgstr "" - -#: motions/static/js/motions/workflow.js:82 -msgid "Yellow" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:317 -#: assignments/static/js/assignments/site.js:611 -#: assignments/static/js/assignments/site.js:729 -#: motions/static/js/motions/pdf.js:193 motions/static/js/motions/pdf.js:739 -#: motions/static/js/motions/site.js:760 -#: motions/static/templates/motions/motion-detail.html:405 -#: motions/static/templates/motions/slide_motion.html:32 -msgid "Yes" -msgstr "Sim" - -#: motions/static/js/motions/site.js:3298 -msgid "Yes/No" -msgstr "Sim/Não" - -#: assignments/static/js/assignments/site.js:916 -#: assignments/static/templates/assignments/assignment-detail.html:289 -msgid "Yes/No per candidate" -msgstr "Sim/Não por candidato" - -#: motions/static/js/motions/site.js:3297 -msgid "Yes/No/Abstain" -msgstr "Sim/Não/Abster" - -#: assignments/static/js/assignments/site.js:915 -#: assignments/static/templates/assignments/assignment-detail.html:288 -msgid "Yes/No/Abstain per candidate" -msgstr "Sim/Não/Abster por candidato" - -#: users/static/templates/users/group-list.html:69 -msgid "You are not allowed to lock yourself out of the configuration!" -msgstr "Não tens permissão para bloqueares-te fora da configuração!" - -#: core/static/js/core/site.js:2106 -msgid "" -"You can replace the logo by uploading an image and set it as the \"Projector" -" logo\" in \"files\"." -msgstr "" - -#: users/static/js/users/site.js:1873 -msgid "You can use {event_name} as a placeholder." -msgstr "" - -#: users/static/js/users/site.js:1736 -msgid "You have to enable cookies to use OpenSlides." -msgstr "Tens de activar os cookies para usar o OpenSlides." - -#: users/static/templates/users/user-change-password.html:17 -msgid "You override the personally set password of" -msgstr "Sobrepuseste a senha pessoalmente definida de" - -#: users/static/js/users/site.js:1872 -msgid "Your login for {event_name}" -msgstr "" - -#: motions/static/js/motions/pdf.js:1376 -msgid "ZIP successfully generated." -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:66 -msgid "Zoom in" -msgstr "Aumentar Zoom" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:57 -msgid "Zoom out" -msgstr "Reduzir Zoom" - -#: agenda/static/js/agenda/site.js:883 -msgid "[Begin speech] starts the countdown, [End speech] stops the countdown." -msgstr "[Começar discurso] inicia a contagem regressiva, [Acabar discurso] \npára a contagem regressiva." - -#: users/static/js/users/site.js:1856 -msgid "[Place for your welcome and help text.]" -msgstr "[Lugar para o teu texto de boas-vindas e de ajuda.]" - -#: core/static/js/core/site.js:2096 -msgid "[Space for your welcome text.]" -msgstr "[Lugar para o teu texto de boas-vindas.]" - -#: motions/static/js/motions/base.js:1606 -#: motions/static/js/motions/base.js:1621 -msgid "accepted" -msgstr "aceite" - -#: motions/static/js/motions/base.js:1629 -msgid "adjourned" -msgstr "adiado" - -#: topics/static/js/topics/csv.js:26 -msgid "agenda-example" -msgstr "" - -#: users/static/js/users/site.js:1284 -msgid "already exists." -msgstr "já existe." - -#: motions/static/templates/motions/motion-amendment-list.html:175 -#: motions/static/templates/motions/motion-list.html:438 -msgid "amendments" -msgstr "" - -#: users/static/js/users/site.js:852 -msgid "and" -msgstr "" - -#: core/static/js/core/site.js:753 -msgid "anonymous users are also editing this." -msgstr "" - -#: core/static/js/core/site.js:770 -msgid "are also editing this." -msgstr "" - -#: motions/static/js/motions/pdf.js:1392 -msgid "ballot-paper" -msgstr "Boletim de voto" - -#: motions/static/templates/motions/motion-amendment-list.html:320 -#: motions/static/templates/motions/motion-list.html:267 -msgid "by" -msgstr "por" - -#: core/static/js/core/site.js:46 -msgid "clear" -msgstr "limpar" - -#: core/static/js/core/site.js:58 -msgid "close" -msgstr "fechar" - -#: users/static/js/users/site.js:1178 -msgid "create duplicate" -msgstr "criar duplicado" - -#: core/static/js/core/site.js:50 -msgid "date" -msgstr "data" - -#: motions/static/templates/motions/motion-table-filters.html:25 -#: motions/static/templates/motions/motion-table-filters.html:263 -msgid "done" -msgstr "feito" - -#: users/static/templates/users/user-import.html:97 -msgid "duplicate" -msgstr "duplicado" - -#: users/static/templates/users/user-import.html:210 -#: users/static/templates/users/user-import.html:98 -msgid "duplicates" -msgstr "duplicados" - -#: assignments/static/templates/assignments/assignment-list.html:66 -msgid "elections" -msgstr "eleições" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:144 -msgid "files" -msgstr "ficheiros" - -#: motions/static/templates/motions/motion-detail/toolbar.html:53 -msgid "go" -msgstr "ir" - -#. 'h' means time in hours -#: agenda/static/templates/agenda/item-list.html:484 -#: agenda/static/templates/agenda/item-list.html:492 -msgid "h" -msgstr "h" - -#: topics/static/templates/topics/topic-import.html:27 -msgid "imported" -msgstr "importados" - -#: motions/static/js/motions/site.js:932 motions/static/js/motions/site.js:945 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:17 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:43 -msgid "inline" -msgstr "inline" - -#: motions/static/js/motions/docx.js:168 motions/static/js/motions/pdf.js:1421 -#: motions/static/js/motions/pdf.js:425 -#: motions/static/templates/motions/motion-detail/comments.html:25 -msgid "internal" -msgstr "interno" - -#: core/static/js/core/site.js:768 -msgid "is also editing this." -msgstr "" - -#: assignments/static/js/assignments/pdf.js:223 -#: assignments/static/templates/assignments/assignment-detail.html:224 -#: assignments/static/templates/assignments/assignment-detail.html:95 -#: assignments/static/templates/assignments/slide_assignment.html:23 -#: assignments/static/templates/assignments/slide_assignment.html:44 -msgid "is elected" -msgstr "eleito" - -#: assignments/static/templates/assignments/assignment-detail.html:227 -msgid "is not elected" -msgstr "não eleito" - -#: users/static/js/users/site.js:1106 -msgid "is now" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:124 -msgid "is set" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:193 -msgid "items" -msgstr "itens" - -#: users/static/js/users/site.js:1176 -msgid "keep original" -msgstr "manter original" - -#: assignments/static/js/assignments/base.js:280 -#: assignments/static/js/assignments/base.js:50 -#: assignments/static/templates/assignments/assignmentpoll-form.html:9 -#: motions/static/js/motions/base.js:157 -#: motions/static/templates/motions/motion-poll-form.html:9 -msgid "majority" -msgstr "maioria" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:45 -msgid "minutes" -msgstr "minutos" - -#: motions/static/js/motions/csv.js:42 motions/static/js/motions/docx.js:188 -#: motions/static/js/motions/pdf.js:1325 motions/static/js/motions/pdf.js:1338 -#: motions/static/templates/motions/motion-block-detail.html:44 -#: motions/static/templates/motions/motion-list.html:137 -msgid "motions" -msgstr "moções" - -#: motions/static/templates/motions/motion-import.html:122 -msgid "motions were successfully imported." -msgstr "moções importadas com sucesso." - -#: motions/static/templates/motions/motion-import.html:115 -msgid "motions will be imported." -msgstr "moções serão importadas." - -#: motions/static/templates/motions/motion-import.html:110 -msgid "motions will be not imported." -msgstr "moções não serão importadas." - -#: motions/static/js/motions/csv.js:126 -msgid "motions-example" -msgstr "" - -#: motions/static/js/motions/site.js:3321 -msgid "needed" -msgstr "necessários" - -#: motions/static/js/motions/base.js:1638 -msgid "needs review" -msgstr "necessita de revisão" - -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:11 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:37 -msgid "none" -msgstr "nenhum" - -#: motions/static/js/motions/base.js:1632 -msgid "not concerned" -msgstr "não preocupado" - -#: motions/static/js/motions/base.js:1612 -msgid "not decided" -msgstr "não decidido" - -#: core/static/js/core/site.js:38 -msgid "now" -msgstr "agora" - -#: agenda/static/js/agenda/site.js:563 agenda/static/js/agenda/site.js:836 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:47 -msgid "of" -msgstr "de" - -#: motions/static/js/motions/site.js:933 motions/static/js/motions/site.js:946 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:23 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:49 -msgid "outside" -msgstr "fora" - -#: users/static/js/users/site.js:1177 -msgid "override new" -msgstr "sobrepor nova" - -#: users/static/js/users/csv.js:44 -#: users/static/templates/users/user-list.html:150 -msgid "participants" -msgstr "participantes" - -#: users/static/templates/users/user-import.html:225 -msgid "participants were successfully imported." -msgstr "participantes foram importados com sucesso." - -#: users/static/templates/users/user-import.html:215 -msgid "participants will be imported." -msgstr "participantes serão importados." - -#: users/static/templates/users/user-import.html:205 -msgid "participants will be not imported." -msgstr "participantes não serão importados." - -#: users/static/js/users/csv.js:68 -msgid "participants-example" -msgstr "" - -#: motions/static/js/motions/base.js:1618 -msgid "permitted" -msgstr "permitido" - -#: motions/static/js/motions/site.js:2057 -msgid "personal note" -msgstr "" - -#: motions/static/js/motions/base.js:1617 -msgid "published" -msgstr "publicado" - -#: motions/static/js/motions/base.js:1635 -msgid "refered to committee" -msgstr "referida à comissão" - -#: motions/static/js/motions/base.js:1609 -#: motions/static/js/motions/base.js:1624 -msgid "rejected" -msgstr "rejeitado" - -#: motions/static/js/motions/base.js:1640 -msgid "rejected (not authorized)" -msgstr "rejeitado (não autorizado)" - -#: core/static/templates/search.html:28 -msgid "results" -msgstr "resultados" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:11 -msgid "select files" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:194 -#: assignments/static/templates/assignments/assignment-list.html:67 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:176 -#: motions/static/templates/motions/motion-list.html:138 -#: users/static/templates/users/user-list.html:151 -msgid "selected" -msgstr "Seleccionado" - -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:8 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:9 -#: motions/static/templates/motions/motion-list.html:430 -msgid "speakers" -msgstr "oradores" - -#: motions/static/js/motions/base.js:1605 -msgid "submitted" -msgstr "submetido" - -#: core/static/js/core/site.js:54 -msgid "time" -msgstr "tempo" - -#: core/static/js/core/site.js:42 -msgid "today" -msgstr "hoje" - -#: topics/static/templates/topics/topic-import.html:116 -msgid "topics were successfully imported." -msgstr "tópicos importados com sucesso." - -#: topics/static/templates/topics/topic-import.html:109 -msgid "topics will be imported." -msgstr "tópicos serão importados." - -#: topics/static/templates/topics/topic-import.html:104 -msgid "topics will be not imported." -msgstr "tópicos não serão importados." - -#: mediafiles/static/js/mediafiles/resources.js:141 -msgid "undefined" -msgstr "" - -#: assignments/static/js/assignments/base.js:283 -#: assignments/static/js/assignments/base.js:53 -#: assignments/static/templates/assignments/assignmentpoll-form.html:10 -#: motions/static/js/motions/base.js:160 -#: motions/static/templates/motions/motion-poll-form.html:10 -msgid "undocumented" -msgstr "indocumentado" - -#: motions/static/templates/motions/motion-table-filters.html:269 -#: motions/static/templates/motions/motion-table-filters.html:31 -msgid "undone" -msgstr "" - -#: motions/static/js/motions/base.js:1627 -msgid "withdrawed" -msgstr "retirado" diff --git a/openslides/locale/angular-gettext/ru.po b/openslides/locale/angular-gettext/ru.po deleted file mode 100644 index b2e57d95d..000000000 --- a/openslides/locale/angular-gettext/ru.po +++ /dev/null @@ -1,4409 +0,0 @@ -# -# Translators: -# Andreas Engler , 2017-2018 -# Emanuel Schütze , 2017 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"PO-Revision-Date: 2018-08-30 12:47+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: Russian (http://www.transifex.com/openslides/openslides/language/ru/)\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" - -#: motions/static/templates/motions/motion-detail.html:47 -msgctxt "resolution" -msgid "Final version" -msgstr "Финальная версия" - -#: core/static/templates/csv-import.html:16 -msgctxt "special filetypes in a file open dialog" -msgid "Accepted file types" -msgstr "Поддерживаемые типы файлов" - -#: motions/static/js/motions/base.js:1483 -msgid "%TYPE% from line %FROM% to %TO%" -msgstr "%TYPE% от строки %FROM% до %TO%" - -#: motions/static/js/motions/base.js:1485 -msgid "%TYPE% in line %FROM%" -msgstr "%TYPE% в строке %FROM%" - -#: users/static/js/users/site.js:822 -msgid "%num% emails were send sucessfully." -msgstr "%num% электронных писем отправлено успешно." - -#: agenda/static/templates/agenda/item-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:115 -#: motions/static/templates/motions/motion-list.html:77 -#: users/static/templates/users/user-list.html:81 -msgid "--- Select action ---" -msgstr "--- Выберите действие ---" - -#: motions/static/templates/motions/motion-amendment-list.html:135 -#: motions/static/templates/motions/motion-list.html:97 -msgid "--- Select category ---" -msgstr "--- Выберите категорию ---" - -#: users/static/templates/users/user-list.html:102 -msgid "--- Select group ---" -msgstr "--- Выберите группу ---" - -#: motions/static/templates/motions/motion-amendment-list.html:149 -#: motions/static/templates/motions/motion-list.html:111 -msgid "--- Select motion block ---" -msgstr "--- Выбрать блок заявлений ---" - -#: assignments/static/templates/assignments/assignment-list.html:45 -msgid "--- Select phase ---" -msgstr "--- Выбрать фазу ---" - -#: motions/static/templates/motions/motion-amendment-list.html:123 -#: motions/static/templates/motions/motion-list.html:85 -msgid "--- Select state ---" -msgstr "--- Выберите состояние ---" - -#: agenda/static/templates/agenda/item-list.html:152 -msgid "--- Select visibility ---" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:70 -msgid "--- Set phase ---" -msgstr "--- Установить фазу ---" - -#: core/static/js/core/site.js:2081 -msgid "" -"OpenSlides is a free web based " -"presentation and assembly system for visualizing and controlling agenda, " -"motions and elections of an assembly." -msgstr "OpenSlides это бесплатная система презентации и монтажа на веб-основе для визуализации и управления повесткой дня, заявлениями и выборами на собрании." - -#: motions/static/js/motions/base.js:239 -msgid "" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:38 -msgid "A comment has been changed." -msgstr "Комментарий был изменен." - -#: core/static/js/core/base.js:798 -msgid "A server error occurred (%%code%%). Please check the system logs." -msgstr "Произошла ошибка сервера (%%code%%). Проверьте системные журналы." - -#: users/static/js/users/site.js:426 users/static/js/users/site.js:478 -#: users/static/templates/users/user-detail.html:40 -msgid "About me" -msgstr "Обо мне" - -#: assignments/static/js/assignments/pdf.js:332 -#: assignments/static/js/assignments/site.js:613 -#: assignments/static/js/assignments/site.js:758 -#: assignments/static/js/assignments/site.js:799 -#: assignments/static/templates/assignments/assignment-detail.html:256 -#: assignments/static/templates/assignments/slide_assignment.html:72 -#: motions/static/js/motions/pdf.js:203 motions/static/js/motions/pdf.js:741 -#: motions/static/js/motions/site.js:780 -#: motions/static/templates/motions/motion-detail.html:429 -#: motions/static/templates/motions/slide_motion.html:56 -msgid "Abstain" -msgstr "Воздержаться" - -#: motions/static/js/motions/base.js:1607 -#: motions/static/js/motions/base.js:1622 -msgid "Accept" -msgstr "Принять" - -#: motions/static/js/motions/base.js:1608 -#: motions/static/js/motions/base.js:1623 -msgid "Acceptance" -msgstr "Принятие" - -#: motions/static/templates/motions/motion-detail/change-summary.html:46 -msgid "Accepted" -msgstr "Принято" - -#: motions/static/templates/motions/state-edit.html:14 -#: motions/static/templates/motions/workflow-detail.html:70 -msgid "Action word" -msgstr "" - -#: motions/static/js/motions/site.js:3270 -msgid "Activate amendments" -msgstr "Активировать поправки" - -#: users/static/js/users/site.js:598 users/static/js/users/site.js:640 -msgid "Active" -msgstr "Активный" - -#: assignments/static/templates/assignments/assignment-list.html:285 -#: motions/static/templates/motions/motion-list.html:373 -msgid "Add a tag" -msgstr "Добавить тег" - -#: core/static/templates/core/projector-controls.html:208 -msgid "Add countdown" -msgstr "Добавить обратный отсчет" - -#: users/static/templates/users/user-list.html:109 -#: users/static/templates/users/user-list.html:83 -msgid "Add group" -msgstr "Добавить группу" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:125 -#: assignments/static/templates/assignments/assignment-detail.html:118 -msgid "Add me" -msgstr "Добавить меня" - -#: core/static/templates/core/projector-controls.html:248 -msgid "Add message" -msgstr "Добавить сообщение" - -#: core/static/templates/config-form-field.html:50 -msgid "Add new comment field" -msgstr "Добавить новое поле комментария" - -#: core/static/templates/core/projector-controls.html:209 -msgid "Add new countdown" -msgstr "Добавить новый отсчет" - -#: core/static/templates/config-form-field.html:131 -msgid "Add new custom translation" -msgstr "Добавить новый пользовательский перевод" - -#: core/static/templates/core/projector-controls.html:249 -msgid "Add new message" -msgstr "Добавить новое сообщение" - -#: motions/static/templates/motions/motion-import.html:32 -msgid "" -"Additional columns after the required ones may be present and won't affect " -"the import." -msgstr "Дополнительные столбцы могут присутствовать после требуемых и не влияют на импорт." - -#: motions/static/js/motions/base.js:1630 -msgid "Adjourn" -msgstr "Отложить" - -#: motions/static/js/motions/base.js:1631 -msgid "Adjournment" -msgstr "Перерыв" - -#: users/static/templates/users/user-detail.html:45 -msgid "Administrative data" -msgstr "Административные данные" - -#: agenda/static/js/agenda/base.js:41 agenda/static/js/agenda/csv.js:35 -#: agenda/static/js/agenda/docx.js:56 agenda/static/js/agenda/docx.js:64 -#: agenda/static/js/agenda/pdf.js:15 agenda/static/js/agenda/pdf.js:81 -#: agenda/static/js/agenda/site.js:20 agenda/static/js/agenda/site.js:32 -#: agenda/static/js/agenda/site.js:50 agenda/static/js/agenda/site.js:870 -#: agenda/static/templates/agenda/item-detail.html:6 -#: agenda/static/templates/agenda/item-list.html:35 -#: agenda/static/templates/agenda/item-list.html:61 -#: agenda/static/templates/agenda/slide-item-list.html:2 -msgid "Agenda" -msgstr "Повестка дня" - -#: agenda/static/js/agenda/site.js:885 agenda/static/js/agenda/site.js:98 -msgid "Agenda visibility" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:247 -msgid "All Filters" -msgstr "Все фильтры" - -#: assignments/static/js/assignments/site.js:918 -#: motions/static/js/motions/site.js:3300 -msgid "All casted ballots" -msgstr "Все созданные бюллетени" - -#: motions/static/templates/motions/motion-amendment-list.html:28 -#: motions/static/templates/motions/motion-amendment-list.html:35 -msgid "All motions" -msgstr "Все заявления" - -#: assignments/static/js/assignments/site.js:917 -#: motions/static/js/motions/site.js:3299 -msgid "All valid ballots" -msgstr "Все действительные бюллетени" - -#: users/static/templates/users/group-list.html:19 -msgid "" -"All your changes are saved immediately. Changes you make are only effective " -"once you (or the users concerned) reload the page." -msgstr "Все изменения сохраняются немедленно. Изменения, внесенные вами, эффективны только тогда, когда вы (или заинтересованный пользователь) перезагрузите страницу." - -#: core/static/js/core/site.js:2097 -msgid "Allow access for anonymous guest users" -msgstr "Разрешить доступ для анонимных пользователей с правами гостя" - -#: motions/static/js/motions/workflow.js:64 -msgid "Allow create poll" -msgstr "" - -#: motions/static/js/motions/workflow.js:66 -msgid "Allow submitter edit" -msgstr "" - -#: motions/static/js/motions/workflow.js:62 -msgid "Allow support" -msgstr "" - -#: motions/static/js/motions/site.js:3262 -msgid "Allow to disable versioning" -msgstr "Разрешить отключить управление версиями" - -#: assignments/static/js/assignments/site.js:906 -msgid "Always Yes-No-Abstain per candidate" -msgstr "Всегда Да-Нет-Воздержитесь на одного кандидата" - -#: assignments/static/js/assignments/site.js:907 -msgid "Always Yes/No per candidate" -msgstr "Всегда Да/Нет на одного кандидата" - -#: assignments/static/js/assignments/site.js:905 -msgid "Always one option per candidate" -msgstr "Всегда один из вариантов на одного кандидата" - -#: motions/static/js/motions/site.js:3322 -msgid "Amendment" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:96 -msgid "Amendment list PDF" -msgstr "Список поправок PDF" - -#: motions/static/js/motions/site.js:2282 -#: motions/static/js/motions/site.js:3275 -#: motions/static/templates/motions/motion-detail.html:104 -msgid "Amendment to" -msgstr "Поправка к" - -#: motions/static/js/motions/pdf.js:544 motions/static/js/motions/pdf.js:77 -#: motions/static/js/motions/site.js:2285 -msgid "Amendment to motion" -msgstr "Поправка к заявлению" - -#: motions/static/js/motions/site.js:2824 -#: motions/static/js/motions/site.js:3269 -#: motions/static/js/motions/site.js:915 -#: motions/static/templates/motions/motion-amendment-list.html:18 -#: motions/static/templates/motions/motion-detail.html:17 -#: motions/static/templates/motions/motion-detail.html:175 -#: motions/static/templates/motions/motion-list.html:11 -msgid "Amendments" -msgstr "Поправки" - -#: motions/static/js/motions/site.js:2821 -msgid "Amendments to" -msgstr "Поправки к" - -#: motions/static/js/motions/pdf.js:1136 -msgid "Amendments to motion" -msgstr "Поправки к заявлению" - -#: motions/static/js/motions/site.js:3273 -msgid "Apply text for new amendments" -msgstr "Применить текст новых поправок" - -#: agenda/static/js/agenda/site.js:873 -msgid "Arabic" -msgstr "Арабский" - -#: core/static/templates/index.html:79 -msgid "Are you sure to delete the chat history?" -msgstr "Вы действительно хотите удалить историю чата?" - -#: agenda/static/templates/agenda/item-list.html:181 -msgid "Are you sure you want to delete all selected agenda items?" -msgstr "Вы действительно хотите удалить все выбранные пункты повестки дня?" - -#: motions/static/templates/motions/motion-amendment-list.html:162 -msgid "Are you sure you want to delete all selected amendments?" -msgstr "Вы действительно хотите удалить все выбранные поправки?" - -#: assignments/static/templates/assignments/assignment-list.html:54 -msgid "Are you sure you want to delete all selected elections?" -msgstr "Вы действительно хотите удалить все выбранные выборы?" - -#: motions/static/templates/motions/motion-list.html:124 -msgid "Are you sure you want to delete all selected motions?" -msgstr "Вы действительно хотите удалить все выбранные заявления?" - -#: users/static/templates/users/user-list.html:93 -msgid "Are you sure you want to delete all selected users?" -msgstr "Вы действительно хотите удалить всех выбранных пользователей?" - -#: assignments/static/templates/assignments/assignment-detail.html:151 -msgid "Are you sure you want to delete this ballot?" -msgstr "Вы действительно хотите удалить этот бюллетень?" - -#: motions/static/templates/motions/motion-detail/view-diff.html:25 -#: motions/static/templates/motions/motion-detail/view-diff.html:79 -#: motions/static/templates/motions/motion-detail/view-original.html:34 -msgid "Are you sure you want to delete this change recommendation?" -msgstr "Вы действительно хотите удалить это изменение рекомендации?" - -#: agenda/static/templates/agenda/item-list.html:406 -#: assignments/static/templates/assignments/assignment-list.html:267 -#: core/static/templates/core/manage-projectors.html:52 -#: core/static/templates/core/tag-list.html:46 -#: motions/static/templates/motions/category-list.html:49 -#: motions/static/templates/motions/motion-amendment-list.html:338 -#: motions/static/templates/motions/motion-block-list.html:45 -#: motions/static/templates/motions/motion-list.html:287 -#: motions/static/templates/motions/workflow-detail.html:58 -#: motions/static/templates/motions/workflow-list.html:38 -#: users/static/templates/users/group-list.html:45 -#: users/static/templates/users/user-list.html:364 -msgid "Are you sure you want to delete this entry?" -msgstr "Вы действительно хотите удалить эту запись?" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:320 -msgid "Are you sure you want to delete this file?" -msgstr "Вы действительно хотите удалить этот файл?" - -#: motions/static/templates/motions/motion-detail.html:382 -msgid "Are you sure you want to delete this poll?" -msgstr "Вы действительно хотите удалить этот опрос?" - -#: motions/static/templates/motions/motion-detail.html:630 -msgid "Are you sure you want to delete this version?" -msgstr "Вы действительно хотите удалить эту версию?" - -#: agenda/static/templates/agenda/item-list.html:85 -msgid "Are you sure you want to number all agenda items?" -msgstr "Вы уверены, что хотите пронумеровать все пункты повестки дня?" - -#: motions/static/templates/motions/motion-block-detail.html:31 -msgid "" -"Are you sure you want to override the state of all motions of this motion " -"block?" -msgstr "Вы действительно хотите перезаписать состояние всех заявлений этого подвижного блока?" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:16 -msgid "Are you sure you want to remove all speakers from this list?" -msgstr "Вы действительно хотите удалить всех спикеров из этого списка?" - -#: motions/static/templates/motions/motion-block-detail.html:63 -msgid "Are you sure you want to remove this motion from motion block?" -msgstr "Вы действительно хотите удалить это заявление из блока заявлений?" - -#: core/static/templates/core/manage-projectors.html:87 -msgid "Aspect ratio" -msgstr "Соотношение сторон" - -#: users/static/templates/users/user-import.html:63 -msgid "" -"At least given name or surname have to be filled in. All\n" -" other fields are optional and may be empty." -msgstr "Минимум, имя или фамилия должны быть заполнены. Все другие поля являются необязательными и могут быть пустыми." - -#: motions/static/templates/motions/motion-detail.html:551 -msgid "" -"At least two amendments or change recommendations affecting the same line are to be integrated.\n" -" This leads to undeterministic results.\n" -" Please resolve this conflict by not accepting multiple changes affecting the same line." -msgstr "По крайней мере, две поправки или рекомендации по изменению, затрагивающие одну и ту же линию, должны быть интегрированы..\n Это приводит к неопределенным результатам.\n Удалите этот конфликт, не приняв несколько изменений, затрагивающих одну и ту же строку." - -#: motions/static/js/motions/site.js:586 topics/static/js/topics/site.js:115 -msgid "Attachment" -msgstr "Вложение" - -#: motions/static/templates/motions/motion-detail.html:601 -#: topics/static/templates/topics/topic-detail.html:31 -msgid "Attachments" -msgstr "Вложения" - -#: core/static/templates/csv-import.html:30 -msgid "Autodetection" -msgstr "Автоматическое определение" - -#: assignments/static/js/assignments/site.js:904 -msgid "Automatic assign of method" -msgstr "Автоматическое присвоение метода" - -#: motions/static/templates/motions/motion-submitters.html:6 -msgid "Back" -msgstr "Назад" - -#: topics/static/templates/topics/topic-import.html:130 -#: topics/static/templates/topics/topic-import.html:35 -msgid "Back to agenda" -msgstr "Вернуться к повестке дня" - -#: motions/static/templates/motions/category-sort.html:6 -msgid "Back to categories" -msgstr "Вернуться к категориям" - -#: motions/static/templates/motions/motion-amendment-list.html:8 -#: motions/static/templates/motions/motion-import.html:139 -msgid "Back to motions overview" -msgstr "Вернуться к обзору заявлений" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:6 -#: agenda/static/templates/agenda/item-sort.html:6 -#: assignments/static/templates/assignments/assignment-detail.html:6 -#: core/static/templates/core/tag-list.html:6 -#: motions/static/templates/motions/category-list.html:6 -#: motions/static/templates/motions/motion-block-detail.html:6 -#: motions/static/templates/motions/motion-block-list.html:6 -#: motions/static/templates/motions/motion-detail.html:12 -#: motions/static/templates/motions/motion-detail.html:7 -#: motions/static/templates/motions/motion-import.html:6 -#: motions/static/templates/motions/workflow-detail.html:6 -#: motions/static/templates/motions/workflow-list.html:6 -#: topics/static/templates/topics/topic-detail.html:6 -#: topics/static/templates/topics/topic-import.html:6 -#: users/static/templates/users/group-list.html:6 -#: users/static/templates/users/user-change-password.html:6 -#: users/static/templates/users/user-detail.html:6 -#: users/static/templates/users/user-import.html:6 -#: users/static/templates/users/user-presence.html:6 -msgid "Back to overview" -msgstr "Вернуться к обзору" - -#: users/static/templates/users/user-import.html:244 -#: users/static/templates/users/user-import.html:35 -msgid "Back to users overview" -msgstr "Вернуться к Обзору пользователей" - -#: core/static/js/core/site.js:2114 -msgid "Background color of projector header and footer" -msgstr "Цвет фона заголовка и нижний колонтитулы для проектора" - -#: assignments/static/js/assignments/pdf.js:142 -#: assignments/static/js/assignments/pdf.js:306 -#: assignments/static/js/assignments/pdf.js:654 -#: assignments/static/templates/assignments/assignment-detail.html:139 -#: assignments/static/templates/assignments/assignmentpoll-form.html:1 -msgid "Ballot" -msgstr "Голосование" - -#: assignments/static/js/assignments/site.js:909 -msgid "Ballot and ballot papers" -msgstr "Голосование и избирательные бюллетени" - -#: agenda/static/js/agenda/site.js:875 -msgid "Begin of event" -msgstr "Начало мероприятия" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:91 -msgid "Begin speech" -msgstr "Начало выступления" - -#: core/static/templates/core/manage-projectors.html:165 -#: core/static/templates/core/projector-controls.html:89 -msgid "Bigger" -msgstr "Больше" - -#: core/static/templates/core/manage-projectors.html:212 -#: core/static/templates/core/projector-controls.html:54 -msgid "Blank" -msgstr "Пустой" - -#: motions/static/js/motions/workflow.js:84 -msgid "Blue" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:206 -msgid "Broadcast" -msgstr "Транслировать" - -#: core/static/templates/core/manage-projectors.html:203 -msgid "Broadcast the content of this projector to all other projectors." -msgstr "Транслировать содержание данного проектора на все остальные проекторы." - -#: mediafiles/static/js/mediafiles/image-plugin.js:154 -#: mediafiles/static/js/mediafiles/image-plugin.js:161 -#: mediafiles/static/js/mediafiles/image-plugin.js:199 -msgid "Browse for images" -msgstr "Просмотр изображений" - -#: core/static/templates/csv-import.html:2 -msgid "CSV file" -msgstr "CSV-файл" - -#: users/static/js/users/site.js:1836 -msgid "Can create motions" -msgstr "Может создавать заявления" - -#: users/static/js/users/site.js:1811 -msgid "Can manage agenda" -msgstr "Может управлять повесткой дня" - -#: users/static/js/users/site.js:1840 -msgid "Can manage comments" -msgstr "Можно управлять комментариями" - -#: users/static/js/users/site.js:1825 -msgid "Can manage configuration" -msgstr "Разрешено управлять конфигурацией" - -#: users/static/js/users/site.js:1819 -msgid "Can manage elections" -msgstr "Может управлять выборами" - -#: users/static/js/users/site.js:1832 -msgid "Can manage files" -msgstr "Может управлять файлами" - -#: users/static/js/users/site.js:1812 -msgid "Can manage list of speakers" -msgstr "Может управлять списком спикеров" - -#: users/static/js/users/site.js:1828 -msgid "Can manage logos and fonts" -msgstr "Может управлять логотипами и шрифтами" - -#: users/static/js/users/site.js:1838 -msgid "Can manage motions" -msgstr "Может управлять заявлениями" - -#: users/static/js/users/site.js:1824 -msgid "Can manage tags" -msgstr "Может управлять тегами" - -#: users/static/js/users/site.js:1827 -msgid "Can manage the chat" -msgstr "Может управлять чатом" - -#: users/static/js/users/site.js:1822 -msgid "Can manage the projector" -msgstr "Может управлять проектором" - -#: users/static/js/users/site.js:1844 -msgid "Can manage users" -msgstr "Может управлять пользователями" - -#: users/static/js/users/site.js:1817 -msgid "Can nominate another participant" -msgstr "Можно назначить другого участника" - -#: users/static/js/users/site.js:1818 -msgid "Can nominate oneself" -msgstr "Можно выдвинуть себя" - -#: core/static/js/core/projector.js:154 -msgid "Can not open the projector." -msgstr "Невозможно открыть проектор." - -#: users/static/js/users/site.js:1814 -msgid "Can put oneself on the list of speakers" -msgstr "Возможно поставить себя в список спикеров" - -#: users/static/js/users/site.js:1810 -msgid "Can see agenda" -msgstr "Можно видеть повестку дня" - -#: users/static/js/users/site.js:1839 -msgid "Can see comments" -msgstr "Может видеть комментарии" - -#: users/static/js/users/site.js:1816 -msgid "Can see elections" -msgstr "Можно видеть выборы" - -#: users/static/js/users/site.js:1843 -msgid "Can see extra data of users (e.g. present and comment)" -msgstr "Можно увидеть дополнительные данные пользователей (например, присутствие и комментарий)" - -#: users/static/js/users/site.js:1833 -msgid "Can see hidden files" -msgstr "Можно увидеть скрытые файлы" - -#: users/static/js/users/site.js:1813 -msgid "Can see internal items and time scheduling of agenda" -msgstr "" - -#: users/static/js/users/site.js:1835 -msgid "Can see motions" -msgstr "Можно видеть заявления" - -#: users/static/js/users/site.js:1842 -msgid "Can see names of users" -msgstr "Можно видеть имена пользователей" - -#: users/static/js/users/site.js:1823 -msgid "Can see the front page" -msgstr "Можно видеть первую страницу" - -#: users/static/js/users/site.js:1830 -msgid "Can see the list of files" -msgstr "Можно увидеть список файлов" - -#: users/static/js/users/site.js:1821 -msgid "Can see the projector" -msgstr "Может видеть проэктор" - -#: users/static/js/users/site.js:1837 -msgid "Can support motions" -msgstr "Разрешен суппорт заявлений" - -#: users/static/js/users/site.js:1831 -msgid "Can upload files" -msgstr "Можно загружать файлы" - -#: users/static/js/users/site.js:1826 -msgid "Can use the chat" -msgstr "Разрешено использовать чат" - -#: assignments/static/templates/assignments/assignment-form.html:18 -#: assignments/static/templates/assignments/assignmentpoll-form.html:18 -#: core/static/js/core/base.js:264 core/static/js/core/site.js:128 -#: core/static/js/core/site.js:129 -#: core/static/templates/core/projector-controls.html:198 -#: core/static/templates/core/projector-message-form.html:8 -#: core/static/templates/core/tag-form.html:13 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:19 -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:24 -#: motions/static/templates/motions/category-form.html:13 -#: motions/static/templates/motions/change-recommendation-form.html:13 -#: motions/static/templates/motions/motion-block-form.html:13 -#: motions/static/templates/motions/motion-comment-form.html:12 -#: motions/static/templates/motions/motion-export-form.html:10 -#: motions/static/templates/motions/motion-form.html:19 -#: motions/static/templates/motions/motion-poll-form.html:18 -#: motions/static/templates/motions/state-edit.html:24 -#: motions/static/templates/motions/workflow-edit.html:24 -#: topics/static/templates/topics/topic-form.html:13 -#: users/static/templates/users/group-edit.html:24 -#: users/static/templates/users/profile-password-form.html:12 -#: users/static/templates/users/user-change-password.html:51 -#: users/static/templates/users/user-form.html:13 -msgid "Cancel" -msgstr "Отменить" - -#: assignments/static/js/assignments/pdf.js:150 -#: assignments/static/js/assignments/pdf.js:68 -#: assignments/static/templates/assignments/assignment-detail.html:192 -#: assignments/static/templates/assignments/assignment-detail.html:213 -#: assignments/static/templates/assignments/assignment-detail.html:86 -#: assignments/static/templates/assignments/assignment-list.html:322 -#: assignments/static/templates/assignments/slide_assignment.html:19 -#: assignments/static/templates/assignments/slide_assignment.html:36 -msgid "Candidates" -msgstr "Кандидаты" - -#: users/static/js/users/site.js:1119 -msgid "Cannot find the participant with the participant number" -msgstr "Не удается найти участника с этим номером" - -#: core/static/js/core/pdf.js:100 -msgid "Cannot load image" -msgstr "Изображение не загружается" - -#: assignments/static/js/assignments/site.js:846 -#: assignments/static/templates/assignments/assignment-detail.html:280 -#: assignments/static/templates/assignments/slide_assignment.html:94 -msgid "Casted ballots" -msgstr "Пропущенные бюллетени" - -#: motions/static/js/motions/docx.js:46 motions/static/js/motions/site.js:136 -#: motions/static/templates/motions/category-list.html:13 -#: motions/static/templates/motions/motion-list.html:15 -msgid "Categories" -msgstr "Категории" - -#: motions/static/templates/motions/motion-import.html:124 -msgid "Categories created" -msgstr "Категории созданы" - -#: motions/static/js/motions/pdf.js:142 motions/static/js/motions/pdf.js:602 -#: motions/static/js/motions/site.js:1425 -#: motions/static/js/motions/site.js:600 motions/static/js/motions/site.js:867 -#: motions/static/templates/motions/category-sort.html:9 -#: motions/static/templates/motions/motion-detail.html:296 -#: motions/static/templates/motions/motion-detail.html:300 -#: motions/static/templates/motions/motion-import.html:27 -#: motions/static/templates/motions/motion-import.html:50 -#: motions/static/templates/motions/motion-table-filters.html:69 -msgid "Category" -msgstr "Категория" - -#: core/static/js/core/site.js:2102 -msgid "Center" -msgstr "Центр" - -#: agenda/static/templates/agenda/item-list.html:513 -msgid "Change item number ..." -msgstr "Изменить номер позиции ..." - -#: core/static/templates/index.html:106 -#: users/static/templates/users/user-change-password.html:48 -#: users/static/templates/users/user-list.html:362 -msgid "Change password" -msgstr "Изменить пароль" - -#: users/static/templates/users/user-change-password.html:9 -msgid "Change password for {{ user.get_short_name() }}" -msgstr "Изменить пароль для {{ user.get_short_name() }}" - -#: users/static/templates/users/user-presence.html:26 -msgid "Change presence" -msgstr "Изменение присутствия" - -#: motions/static/templates/motions/motion-detail/change-summary.html:34 -msgid "Change recommendation" -msgstr "Изменить рекомендацию" - -#: motions/static/js/motions/site.js:955 motions/static/js/motions/site.js:969 -#: motions/static/templates/motions/motion-detail/toolbar.html:121 -#: motions/static/templates/motions/motion-detail/toolbar.html:76 -msgid "Change recommendations" -msgstr "Изменить рекомендации" - -#: agenda/static/templates/agenda/item-list.html:424 -msgid "Change visibility" -msgstr "" - -#: motions/static/js/motions/site.js:958 motions/static/js/motions/site.js:972 -#: motions/static/templates/motions/motion-detail/toolbar.html:133 -#: motions/static/templates/motions/motion-detail/toolbar.html:91 -msgid "Changed version" -msgstr "Измененная версия" - -#: core/static/templates/index.html:50 -msgid "Chat" -msgstr "Чат" - -#: motions/static/js/motions/site.js:3284 -msgid "Choose 0 to disable the supporting system." -msgstr "Выберите 0, чтобы отключить систему поддержки." - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:1 -msgid "Choose the paragraph to amend!" -msgstr "Выберите пункт для изменения!" - -#: core/static/js/core/site.js:130 core/static/js/core/site.js:131 -msgid "Clear" -msgstr "Очистить" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:90 -msgid "Clear list" -msgstr "Очистить список" - -#: motions/static/templates/motions/motion-import.html:129 -#: topics/static/templates/topics/topic-import.html:120 -#: users/static/templates/users/user-import.html:231 -msgid "Clear preview" -msgstr "Очистить просмотр" - -#: core/static/templates/privacypolicydialog.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:93 -msgid "Close" -msgstr "Закрыть" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:11 -msgid "Close list of speakers" -msgstr "Закрыть список спикеров" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:53 -#: agenda/static/templates/agenda/item-detail.html:48 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:10 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:11 -msgid "Closed" -msgstr "Закрыто" - -#: agenda/static/js/agenda/site.js:176 agenda/static/js/agenda/site.js:177 -msgid "Closed items" -msgstr "Закрытые пункты" - -#: agenda/static/templates/agenda/item-list.html:208 -msgid "Collapse all" -msgstr "Свернуть все" - -#: core/static/js/core/site.js:2118 -msgid "Color for blanked projector" -msgstr "Цвет для пустого проектора" - -#: motions/static/templates/motions/motion-table-filters.html:117 -#: topics/static/templates/topics/topic-import.html:53 -#: topics/static/templates/topics/topic-import.html:72 -#: users/static/js/users/site.js:374 users/static/js/users/site.js:648 -#: users/static/templates/users/user-detail.html:48 -#: users/static/templates/users/user-import.html:56 -#: users/static/templates/users/user-import.html:89 -#: users/static/templates/users/user-list.html:441 -msgid "Comment" -msgstr "Коментарий" - -#: motions/static/js/motions/site.js:3290 -msgid "Comment fields for motions" -msgstr "Комментарий поля для заявлений" - -#: motions/static/js/motions/docx.js:97 motions/static/js/motions/site.js:1014 -#: motions/static/js/motions/site.js:2051 -#: motions/static/js/motions/site.js:3289 -msgid "Comments" -msgstr "Комментарии" - -#: users/static/js/users/site.js:605 users/static/js/users/site.js:642 -msgid "Committee" -msgstr "Комитет" - -#: users/static/js/users/base.js:174 -msgid "Committees" -msgstr "Комитеты" - -#: motions/static/js/motions/base.js:1616 -msgid "Complex Workflow" -msgstr "Комплексный рабочий процесс" - -#: users/static/js/users/site.js:527 -msgid "Confirm new password" -msgstr "Подтвердите новый пароль" - -#: motions/static/js/motions/site.js:983 -msgid "Content" -msgstr "Содержание" - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:21 -msgid "Continue" -msgstr "Продолжить" - -#: core/static/templates/core/login-form.html:23 -msgid "Continue as guest" -msgstr "Продолжить как гость" - -#: users/static/templates/users/user-import.html:19 -msgid "" -"Copy and paste your participant names in this textbox.\n" -" Keep each person in a single line." -msgstr "Скопируйте и вставьте имена участников в этом текстовом поле.\nДержите каждого человека в одной строке." - -#: topics/static/templates/topics/topic-import.html:15 -msgid "" -"Copy and paste your topic titles in this textbox. Keep each item in a single" -" line." -msgstr "Скопируйте и вставьте тему названия в этом текстовом поле. Держите каждый пункт в одной строке." - -#: core/static/js/core/base.js:1444 core/static/js/core/site.js:422 -msgid "Countdown" -msgstr "Обратный отсчет" - -#: core/static/js/core/base.js:1445 -#: core/static/templates/core/projector-controls.html:127 -msgid "Countdowns" -msgstr "Обратные отсчёты" - -#: agenda/static/js/agenda/site.js:882 -msgid "Couple countdown with the list of speakers" -msgstr "Регламент со списком спикеров" - -#: motions/static/templates/motions/motion-detail.html:563 -msgid "Create final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:378 -msgid "Create modified amendment" -msgstr "Создать измененную поправку" - -#: users/static/templates/users/group-edit.html:2 -msgid "Create new group" -msgstr "Создать новую группу" - -#: motions/static/templates/motions/state-edit.html:2 -msgid "Create new state" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:2 -msgid "Create new workflow" -msgstr "" - -#: motions/static/js/motions/site.js:1431 -msgid "Creation date" -msgstr "Дата создания" - -#: core/static/js/core/site.js:2110 -msgid "Current browser language" -msgstr "Текущий язык браузера" - -#: agenda/static/js/agenda/site.js:74 agenda/static/js/agenda/site.js:835 -#: agenda/static/js/agenda/site.js:838 -#: agenda/static/templates/agenda/current-list-of-speakers.html:17 -#: agenda/static/templates/agenda/current-list-of-speakers.html:51 -#: agenda/static/templates/agenda/item-list.html:23 -#: core/static/templates/core/projector-controls.html:269 -msgid "Current list of speakers" -msgstr "Текущий список спикеров" - -#: assignments/static/js/assignments/site.js:924 -#: motions/static/js/motions/site.js:3312 -msgid "Custom number of ballot papers" -msgstr "Индивидуальное количество избирательных бюллетеней" - -#: core/static/js/core/site.js:2128 -msgid "Custom translations" -msgstr "Индивидуальные переводы" - -#: users/static/js/users/site.js:1875 -msgid "" -"Dear {name},\n" -"\n" -"this is your OpenSlides login for the event {event_name}:\n" -"\n" -" {url}\n" -" username: {username}\n" -" password: {password}\n" -"\n" -"This email was generated automatically." -msgstr "Уважаемый/-ая {name},\n\nэто ваш логин OpenSlides для события {event_name}:\n\n {url}\n имя пользователя: {username}\n пароль: {password}\n\nЭто письмо было сгенерировано автоматически." - -#: agenda/static/templates/agenda/current-list-of-speakers.html:44 -#: agenda/static/templates/agenda/item-detail.html:35 -#: agenda/static/templates/agenda/item-list.html:372 -#: agenda/static/templates/agenda/item-list.html:55 -#: core/static/templates/core/projector-controls.html:296 -#: core/static/templates/projector-button.html:23 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:292 -#: motions/static/templates/motions/motion-detail.html:56 -#: users/static/js/users/base.js:171 -msgid "Default" -msgstr "По умолчанию" - -#: assignments/static/js/assignments/site.js:157 -msgid "Default comment on the ballot paper" -msgstr "Комментарий по умолчанию на избирательном бюллетене" - -#: motions/static/js/motions/site.js:3249 -msgid "Default line numbering" -msgstr "Нумерация строк по умолчанию" - -#: assignments/static/js/assignments/site.js:926 -msgid "" -"Default method to check whether a candidate has reached the required " -"majority." -msgstr "Метод по умолчанию, чтобы проверить, достиг ли кандидат требуемого большинства." - -#: motions/static/js/motions/site.js:3303 -msgid "" -"Default method to check whether a motion has reached the required majority." -msgstr "Метод по умолчанию, чтобы проверить, достигло ли заявление требуемого большинства." - -#: core/static/js/core/site.js:2131 -msgid "Default projector" -msgstr "Проектор по умолчанию" - -#: motions/static/js/motions/site.js:3264 -msgid "Default text version for change recommendations" -msgstr "Версия текста по умолчанию для изменения рекомендаций" - -#: agenda/static/js/agenda/site.js:886 -msgid "Default visibility for new agenda items (except topics)" -msgstr "" - -#: users/static/js/users/base.js:172 -msgid "Delegates" -msgstr "Делегаты" - -#: agenda/static/templates/agenda/item-list.html:146 -#: agenda/static/templates/agenda/item-list.html:405 -#: assignments/static/templates/assignments/assignment-detail.html:154 -#: assignments/static/templates/assignments/assignment-list.html:266 -#: core/static/templates/core/tag-list.html:45 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:319 -#: motions/static/templates/motions/category-list.html:48 -#: motions/static/templates/motions/motion-amendment-list.html:116 -#: motions/static/templates/motions/motion-amendment-list.html:337 -#: motions/static/templates/motions/motion-block-list.html:44 -#: motions/static/templates/motions/motion-detail.html:384 -#: motions/static/templates/motions/motion-detail.html:633 -#: motions/static/templates/motions/motion-detail/view-diff.html:27 -#: motions/static/templates/motions/motion-detail/view-diff.html:81 -#: motions/static/templates/motions/motion-detail/view-original.html:36 -#: motions/static/templates/motions/motion-list.html:286 -#: motions/static/templates/motions/motion-list.html:78 -#: motions/static/templates/motions/workflow-list.html:37 -#: users/static/templates/users/user-list.html:363 -#: users/static/templates/users/user-list.html:82 -msgid "Delete" -msgstr "Удалить" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:8 -msgid "Delete final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:166 -msgid "Delete selected amendments" -msgstr "Удалить выбранные поправки" - -#: assignments/static/templates/assignments/assignment-list.html:58 -msgid "Delete selected elections" -msgstr "Удалить выбранные выборы" - -#: agenda/static/templates/agenda/item-list.html:185 -msgid "Delete selected items" -msgstr "Удалить выбранные элементы" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:136 -msgid "Delete selected mediafiles" -msgstr "Удалить выбранные медиафайлы" - -#: motions/static/templates/motions/motion-list.html:128 -msgid "Delete selected motions" -msgstr "Удалить выбранные заявления" - -#: users/static/templates/users/user-list.html:97 -msgid "Delete selected participants" -msgstr "Удалить выбранных участников" - -#: motions/static/js/motions/base.js:1492 motions/static/js/motions/pdf.js:284 -#: motions/static/js/motions/site.js:372 -#: motions/static/templates/motions/motion-detail/change-summary.html:39 -msgid "Deletion" -msgstr "Удаление" - -#: assignments/static/js/assignments/pdf.js:45 -#: assignments/static/js/assignments/site.js:137 -#: assignments/static/templates/assignments/assignment-detail.html:81 -#: core/static/templates/core/projector-controls.html:183 -#: motions/static/js/motions/site.js:381 -msgid "Description" -msgstr "Описание" - -#: core/static/templates/csv-import.html:11 -msgid "Deselect file" -msgstr "Отменить выбор файлов" - -#: users/static/js/users/site.js:394 -msgid "Designates whether this user is in the room or not." -msgstr "Отмечает, находится ли этот пользователь в помещении или нет." - -#: users/static/js/users/site.js:416 -msgid "Designates whether this user should be treated as a committee." -msgstr "Отмечает, должен ли пользователь рассматриваться в качестве комитета." - -#: users/static/js/users/site.js:404 -msgid "" -"Designates whether this user should be treated as active. Unselect this " -"instead of deleting the account." -msgstr "Отмечает, должен ли пользователь рассматриваться как активный. Отмените это вместо удаления учетной записи." - -#: users/static/js/users/site.js:613 -msgid "Didn't get an email" -msgstr "Не получил электронное письмо" - -#: motions/static/js/motions/site.js:959 motions/static/js/motions/site.js:973 -#: motions/static/templates/motions/motion-detail/toolbar.html:138 -#: motions/static/templates/motions/motion-detail/toolbar.html:97 -msgid "Diff version" -msgstr "Отличающаяся версия" - -#: assignments/static/js/assignments/site.js:930 -#: motions/static/js/motions/site.js:3307 -msgid "Disabled" -msgstr "Отключено" - -#: assignments/static/js/assignments/site.js:919 -#: motions/static/js/motions/site.js:3301 -msgid "Disabled (no percents)" -msgstr "Отключено (без процентов)" - -#: core/static/templates/core/manage-projectors.html:30 -msgid "" -"Display an identifier message on all projectors with the id and the name." -msgstr "Показывает сообщение идентификатор на всех проекторах с идентификатором и именем." - -#: core/static/js/core/site.js:2112 -msgid "Display header and footer" -msgstr "Показать верхний и нижний колонтитулы" - -#: motions/static/js/motions/base.js:1633 -msgid "Do not concern" -msgstr "Не относятся" - -#: motions/static/js/motions/base.js:1613 -msgid "Do not decide" -msgstr "Не вздумайте" - -#: motions/static/templates/motions/motion-detail.html:560 -msgid "Do you want to copy the final version to the final print template?" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:539 -#: motions/static/templates/motions/motion-detail.html:569 -msgid "" -"Do you want to create a new version of this motion based on this changes?" -msgstr "Вы хотите создать новую версию этого заявления на основе этих изменений?" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:5 -msgid "Do you want to delete the final print template?" -msgstr "" - -#: motions/static/js/motions/site.js:540 -msgid "Don't create a new version." -msgstr "Не создавайте новую версию." - -#: agenda/static/templates/agenda/item-list.html:172 -#: agenda/static/templates/agenda/item-list.html:524 -#: agenda/static/templates/agenda/item-list.html:530 -msgid "Done" -msgstr "Готово" - -#: motions/static/templates/motions/motion-import.html:34 -#: topics/static/templates/topics/topic-import.html:58 -#: users/static/templates/users/user-import.html:66 -msgid "Download CSV example file" -msgstr "Скачать образец CSV-файла" - -#: agenda/static/templates/agenda/item-sort.html:14 -msgid "" -"Drag and drop items to change the order of the agenda. Your modification " -"will be saved immediately." -msgstr "Перетащите элементы, чтобы изменить порядок повестки дня. Ваша модификация будет сохранен немедленно." - -#: motions/static/templates/motions/category-sort.html:15 -msgid "" -"Drag and drop motions to reorder the category. Then click the button to " -"renumber." -msgstr "Перетащите, чтобы изменить порядок категорий для заявлений. Затем нажмите на кнопку, чтобы изменить нумерацию." - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:10 -msgid "Drop files into this area OR" -msgstr "Падение файлов в эту область ИЛИ" - -#: agenda/static/templates/agenda/item-list.html:197 -#: topics/static/templates/topics/topic-import.html:52 -#: topics/static/templates/topics/topic-import.html:71 -msgid "Duration" -msgstr "Продолжительность" - -#: agenda/static/templates/agenda/item-list.html:404 -#: assignments/static/templates/assignments/assignment-detail.html:21 -#: assignments/static/templates/assignments/assignment-list.html:265 -#: core/static/templates/core/tag-list.html:44 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:318 -#: motions/static/templates/motions/category-list.html:46 -#: motions/static/templates/motions/motion-amendment-list.html:330 -#: motions/static/templates/motions/motion-block-detail.html:20 -#: motions/static/templates/motions/motion-block-list.html:42 -#: motions/static/templates/motions/motion-detail.html:376 -#: motions/static/templates/motions/motion-detail.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:33 -#: motions/static/templates/motions/motion-detail/view-diff.html:87 -#: motions/static/templates/motions/motion-list.html:278 -#: motions/static/templates/motions/workflow-list.html:35 -#: topics/static/templates/topics/topic-detail.html:20 -#: users/static/templates/users/user-detail.html:15 -#: users/static/templates/users/user-list.html:359 -msgid "Edit" -msgstr "Редактировать" - -#: mediafiles/static/templates/mediafiles/mediafile-form.html:1 -msgid "Edit File" -msgstr "Редактировать файл" - -#: motions/static/templates/motions/category-form.html:1 -msgid "Edit category" -msgstr "Редактировать категорию" - -#: motions/static/templates/motions/change-recommendation-form.html:1 -msgid "Edit change recommendation" -msgstr "Редактировать изменения рекомендации" - -#: motions/static/js/motions/site.js:2494 -#: motions/static/js/motions/site.js:3266 -msgid "Edit comment %%comment%% of motion %%motion%%" -msgstr "Редактировать комментарий %%комментарий%% заявления %%заявление%%" - -#: core/static/templates/core/projector-controls.html:143 -msgid "Edit countdown" -msgstr "Редактировать отсчет" - -#: core/static/templates/core/manage-projectors.html:152 -#: core/static/templates/core/projector-controls.html:76 -msgid "Edit current slide" -msgstr "Редактировать текущий слайд" - -#: assignments/static/templates/assignments/assignment-form.html:1 -msgid "Edit election" -msgstr "Редактировать выборы" - -#: core/static/templates/core/projector-controls.html:233 -#: core/static/templates/core/projector-message-form.html:1 -msgid "Edit message" -msgstr "Редактировать сообщение" - -#: motions/static/templates/motions/motion-form.html:1 -msgid "Edit motion" -msgstr "Редактировать заявление" - -#: motions/static/templates/motions/motion-block-form.html:1 -msgid "Edit motion block" -msgstr "Редактировать блок заявлений" - -#: motions/static/templates/motions/workflow-edit.html:1 -#: users/static/templates/users/group-edit.html:1 -msgid "Edit name" -msgstr "Редактировать имя" - -#: users/static/templates/users/user-form.html:1 -msgid "Edit participant" -msgstr "Редактировать участника" - -#: core/static/templates/index.html:101 users/static/js/users/site.js:982 -msgid "Edit profile" -msgstr "Редактировать профиль" - -#: motions/static/templates/motions/state-edit.html:1 -msgid "Edit state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:332 -#: motions/static/templates/motions/motion-list.html:281 -msgid "Edit submitters" -msgstr "Редактировать подателей" - -#: core/static/templates/core/tag-form.html:1 -msgid "Edit tag" -msgstr "Редактировать тег" - -#: motions/static/js/motions/site.js:3278 -msgid "Edit the whole motion text" -msgstr "Редактирование всего текста заявления" - -#: topics/static/templates/topics/topic-form.html:1 -msgid "Edit topic" -msgstr "Изменить тему" - -#: motions/static/templates/motions/motion-detail/toolbar.html:16 -msgid "" -"Editing the text is not possible anymore once there are change " -"recommendations." -msgstr "Редактирование текста больше не представляется возможным, если есть рекомендации изменений." - -#: assignments/static/js/assignments/base.js:375 -#: assignments/static/js/assignments/pdf.js:617 -#: assignments/static/js/assignments/site.js:453 -#: assignments/static/templates/assignments/assignment-detail.html:33 -#: assignments/static/templates/assignments/slide_assignment.html:7 -msgid "Election" -msgstr "Выборы" - -#: assignments/static/js/assignments/site.js:903 -#: assignments/static/templates/assignments/assignment-detail.html:286 -msgid "Election method" -msgstr "Способ выборов" - -#: assignments/static/templates/assignments/assignment-detail.html:127 -msgid "Election result" -msgstr "Результаты выборов" - -#: assignments/static/js/assignments/base.js:376 -#: assignments/static/js/assignments/pdf.js:618 -#: assignments/static/js/assignments/site.js:19 -#: assignments/static/js/assignments/site.js:31 -#: assignments/static/js/assignments/site.js:49 -#: assignments/static/js/assignments/site.js:908 -#: assignments/static/templates/assignments/assignment-list.html:14 -msgid "Elections" -msgstr "Выборы" - -#: users/static/js/users/site.js:1869 users/static/js/users/site.js:313 -#: users/static/js/users/site.js:471 -#: users/static/templates/users/user-detail.html:36 -#: users/static/templates/users/user-import.html:61 -#: users/static/templates/users/user-import.html:94 -msgid "Email" -msgstr "Эл. адрес" - -#: users/static/js/users/site.js:1874 -msgid "Email body" -msgstr "Тело электронной почты" - -#: users/static/js/users/site.js:1870 -msgid "Email sender" -msgstr "Отправитель электронной почты" - -#: users/static/js/users/site.js:1871 -msgid "Email subject" -msgstr "Тема электронного письма" - -#: motions/static/js/motions/site.js:3277 -msgid "Empty text field" -msgstr "Пустое текстовое поле" - -#: agenda/static/js/agenda/site.js:867 -msgid "Enable numbering for agenda items" -msgstr "Включить нумерацию пунктов повестки дня" - -#: users/static/js/users/site.js:1849 -msgid "Enable participant presence view" -msgstr "Включить просмотр присутствия участников" - -#: core/static/templates/csv-import.html:22 -msgid "Encoding" -msgstr "Кодирование" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:334 -msgid "Encrypted" -msgstr "Зашифрованное" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:65 -msgid "End speech" -msgstr "Конец речи" - -#: agenda/static/js/agenda/site.js:881 -msgid "Enter duration in seconds. Choose 0 to disable warning color." -msgstr "Введите время в секундах. Выберите 0, чтобы отключить предупреждающий цвет." - -#: users/static/templates/users/user-presence.html:22 -msgid "Enter participant number" -msgstr "Введите номер участника" - -#: assignments/static/templates/assignments/assignment-detail.html:170 -msgid "Enter votes" -msgstr "Введите голоса" - -#: core/static/js/core/base.js:791 -msgid "Error" -msgstr "Ошибка" - -#: core/static/js/core/pdf.js:1335 core/static/js/core/pdf.js:99 -msgid "Error while generating PDF file" -msgstr "Ошибка при создании PDF-файла" - -#: motions/static/js/motions/pdf.js:1382 -msgid "Error while generating ZIP file" -msgstr "Ошибка при создании ZIP-файла" - -#: users/static/js/users/site.js:1212 -msgid "Error: Given name or surname is required." -msgstr "Ошибка: требуется имя или фамилия." - -#: motions/static/js/motions/site.js:2880 -msgid "Error: Identifier already exists." -msgstr "Ошибка: идентификатор уже существует." - -#: motions/static/js/motions/site.js:2891 -msgid "Error: Text is required." -msgstr "Ошибка: требуется Текст." - -#: motions/static/js/motions/site.js:2886 topics/static/js/topics/site.js:297 -msgid "Error: Title is required." -msgstr "Ошибка: требуется Название." - -#: agenda/static/templates/agenda/item-list.html:200 -msgid "Estimated end:" -msgstr "Предполагаемый конец:" - -#: core/static/js/core/site.js:2086 -msgid "Event" -msgstr "Событие" - -#: core/static/js/core/site.js:2088 -msgid "Event date" -msgstr "Дата события" - -#: core/static/js/core/site.js:2089 -msgid "Event location" -msgstr "Место проведения события" - -#: core/static/js/core/site.js:2080 -msgid "Event name" -msgstr "Название события" - -#: core/static/js/core/site.js:2090 -msgid "Event organizer" -msgstr "Организатор события" - -#: motions/static/js/motions/site.js:918 -msgid "Exclude" -msgstr "Исключить" - -#: users/static/templates/users/user-import.html:234 -msgid "Exclude already imported users" -msgstr "Исключить уже импортированных пользователей" - -#: motions/static/templates/motions/motion-amendment-list.html:14 -#: motions/static/templates/motions/workflow-detail.html:17 -msgid "Expand" -msgstr "Расширить" - -#: agenda/static/templates/agenda/item-list.html:207 -msgid "Expand all" -msgstr "Расширить все" - -#: agenda/static/templates/agenda/item-list.html:132 -#: agenda/static/templates/agenda/item-list.html:95 -#: assignments/static/templates/assignments/assignment-list.html:31 -#: motions/static/templates/motions/motion-amendment-list.html:70 -#: motions/static/templates/motions/motion-list.html:53 -#: motions/static/templates/motions/motion-list.html:63 -#: users/static/templates/users/user-list.html:47 -msgid "Export all" -msgstr "Экспортировать все" - -#: assignments/static/templates/assignments/assignment-detail.html:26 -#: motions/static/templates/motions/motion-detail.html:69 -msgid "Export as PDF" -msgstr "PDF-экспорт" - -#: motions/static/templates/motions/motion-export-form.html:7 -msgid "Export as {{ params.format.toUpperCase() | translate }}" -msgstr "Экспорт как {{ params.format.toUpperCase() | translate }}" - -#: motions/static/templates/motions/motion-detail/comments.html:7 -msgid "Export comments only" -msgstr "Экспортировать только комментарии" - -#: motions/static/templates/motions/motion-amendment-list.html:83 -msgid "Export dialog" -msgstr "Диалог экспорта" - -#: agenda/static/templates/agenda/item-list.html:135 -#: agenda/static/templates/agenda/item-list.html:98 -#: assignments/static/templates/assignments/assignment-list.html:34 -#: motions/static/templates/motions/motion-amendment-list.html:73 -#: motions/static/templates/motions/motion-list.html:56 -#: motions/static/templates/motions/motion-list.html:66 -#: users/static/templates/users/user-list.html:50 -msgid "Export filtered" -msgstr "Экспорт фильтруется" - -#: motions/static/templates/motions/motion-export-form.html:2 -#: motions/static/templates/motions/motion-export-form.html:3 -msgid "Export motion" -msgstr "Экспорт заявления" - -#: motions/static/templates/motions/motion-export-form.html:1 -msgid "Export motions" -msgstr "Экспорт заявлений" - -#: motions/static/templates/motions/motion-detail/personal-note.html:7 -msgid "Export personal note only" -msgstr "Экспортировать только личные заметки" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:21 -msgid "File information" -msgstr "Информация о файле" - -#: mediafiles/static/js/mediafiles/list.js:104 -msgid "File size" -msgstr "Размер файла" - -#: mediafiles/static/js/mediafiles/resources.js:22 -#: mediafiles/static/js/mediafiles/resources.js:23 -#: mediafiles/static/js/mediafiles/states.js:18 -#: mediafiles/static/js/mediafiles/states.js:30 -#: mediafiles/static/js/mediafiles/states.js:48 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:9 -msgid "Files" -msgstr "Файлы" - -#: agenda/static/templates/agenda/item-list.html:241 -#: assignments/static/templates/assignments/assignment-list.html:98 -#: core/static/templates/core/tag-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:176 -#: motions/static/templates/motions/category-list.html:21 -#: motions/static/templates/motions/motion-block-detail.html:40 -#: motions/static/templates/motions/motion-block-list.html:21 -#: users/static/templates/users/user-list.html:202 -msgid "Filter" -msgstr "Фильтр" - -#: motions/static/templates/motions/motion-detail/toolbar.html:113 -#: motions/static/templates/motions/motion-detail/toolbar.html:148 -msgid "Final print template" -msgstr "" - -#: motions/static/js/motions/site.js:960 motions/static/js/motions/site.js:974 -#: motions/static/templates/motions/motion-detail/toolbar.html:104 -#: motions/static/templates/motions/motion-detail/toolbar.html:143 -msgid "Final version" -msgstr "Финальная версия" - -#: assignments/static/js/assignments/site.js:937 -msgid "Finished" -msgstr "Окончено" - -#: motions/static/templates/motions/workflow-detail.html:28 -msgid "First state" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:291 -msgid "Follow recommendation" -msgstr "Следуйте рекомендациям" - -#: motions/static/templates/motions/motion-block-detail.html:34 -msgid "Follow recommendations for all motions" -msgstr "Следуйте рекомендациям для всех заявлений" - -#: core/static/js/core/site.js:2115 -msgid "Font color of projector header and footer" -msgstr "Цвет шрифта заголовка и нижний колонтитулы для проектора " - -#: core/static/js/core/site.js:2116 -msgid "Font color of projector headline" -msgstr "Цвет шрифта заголовка проектора " - -#: assignments/static/js/assignments/site.js:911 -msgid "" -"For Yes/No/Abstain per candidate and Yes/No per candidate the 100-%-base " -"depends on the election method: If there is only one option per candidate, " -"the sum of all votes of all candidates is 100 %. Otherwise for each " -"candidate the sum of all votes is 100 %." -msgstr "Для Да/Нет/Воздержался на одного кандидата и Да/Нет на одного кандидата 100 -% - база зависит от метода выборов: Если есть только один вариант на одного кандидата, сумма всех голосов всех кандидатов составляет 100%. В противном случае для каждого кандидата сумма всех голосов составляет 100%." - -#: motions/static/js/motions/site.js:899 -msgid "Format" -msgstr "Формат" - -#: motions/static/js/motions/site.js:352 -msgid "From Line" -msgstr "От строки" - -#: core/static/js/core/site.js:2095 -msgid "Front page text" -msgstr "Текст главной страницы" - -#: core/static/js/core/site.js:2093 -msgid "Front page title" -msgstr "Название главной страницы" - -#: core/static/js/core/site.js:2085 motions/static/js/motions/site.js:3241 -#: users/static/js/users/site.js:1498 users/static/js/users/site.js:1847 -msgid "General" -msgstr "Генеральный" - -#: users/static/js/users/site.js:361 -#: users/static/templates/users/user-change-password.html:33 -msgid "Generate" -msgstr "Генерировать" - -#: users/static/templates/users/user-list.html:121 -#: users/static/templates/users/user-list.html:85 -msgid "Generate new passwords" -msgstr "Генерация новых паролей" - -#: core/static/js/core/pdf.js:1326 -msgid "Generating PDF file" -msgstr "Создание PDF-файла" - -#: motions/static/js/motions/pdf.js:1337 -msgid "Generating PDFs and ZIP archive" -msgstr "Создание PDF-файлов и ZIP-архива" - -#: users/static/js/users/site.js:1851 users/static/js/users/site.js:296 -#: users/static/js/users/site.js:634 -#: users/static/templates/users/user-import.html:51 -#: users/static/templates/users/user-import.html:84 -msgid "Given name" -msgstr "Имя" - -#: users/static/js/users/site.js:612 -msgid "Got an email" -msgstr "Получил электронное письмо" - -#: motions/static/js/motions/workflow.js:81 -msgid "Green" -msgstr "" - -#: motions/static/js/motions/workflow.js:83 -msgid "Grey" -msgstr "" - -#: users/static/js/users/pdf.js:73 users/static/js/users/site.js:348 -#: users/static/js/users/site.js:89 -#: users/static/templates/users/group-list.html:14 -#: users/static/templates/users/user-detail.html:30 -#: users/static/templates/users/user-import.html:55 -#: users/static/templates/users/user-import.html:88 -#: users/static/templates/users/user-list.html:16 -#: users/static/templates/users/user-list.html:209 -#: users/static/templates/users/user-list.html:378 -#: users/static/templates/users/user-list.html:407 -msgid "Groups" -msgstr "Группы" - -#: users/static/templates/users/user-import.html:226 -msgid "Groups created" -msgstr "Группы созданы" - -#: users/static/js/users/site.js:1857 -msgid "Help text for access data and welcome PDF" -msgstr "Текст справки для доступа к данным и приветствия PDF" - -#: agenda/static/templates/agenda/item-list.html:159 -#: agenda/static/templates/agenda/item-list.html:436 -#: agenda/static/templates/agenda/item-list.html:472 -#: mediafiles/static/js/mediafiles/forms.js:51 -#: mediafiles/static/js/mediafiles/list.js:74 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:27 -msgid "Hidden" -msgstr "Скрытый" - -#: agenda/static/js/agenda/site.js:102 -#: agenda/static/templates/agenda/item-list.html:452 -msgid "Hidden item" -msgstr "" - -#: agenda/static/js/agenda/site.js:197 -#: agenda/static/templates/agenda/item-list.html:293 -msgid "Hidden items" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:37 -msgid "Hide" -msgstr "Скрыть" - -#: agenda/static/templates/agenda/item-sort.html:18 -msgid "Hide internal items" -msgstr "Скрыть внутренние элементы" - -#: agenda/static/js/agenda/site.js:877 -msgid "Hide internal items when projecting subitems" -msgstr "Скрыть внутренние элементы при проецировании подпунктов" - -#: motions/static/js/motions/site.js:3259 -msgid "Hide meta information box on projector" -msgstr "Скрыть поле метаинформации на проекторе" - -#: motions/static/js/motions/site.js:3258 -msgid "Hide reason on projector" -msgstr "Скрыть причину на проекторе" - -#: motions/static/js/motions/site.js:3260 -msgid "Hide recommendation on projector" -msgstr "Скрыть рекомендации по проектору" - -#: assignments/static/templates/assignments/assignment-detail.html:144 -msgid "Hint on the ballot paper." -msgstr "Подсказка на избирательном бюллетене." - -#: core/static/js/core/site.js:189 core/static/js/core/site.js:331 -msgid "Home" -msgstr "Главная" - -#: motions/static/js/motions/site.js:3276 -msgid "How to create new amendments" -msgstr "Как создать новые поправки" - -#: motions/static/js/motions/site.js:1419 -#: motions/static/js/motions/site.js:259 -#: motions/static/js/motions/site.js:3243 -#: motions/static/js/motions/site.js:336 motions/static/js/motions/site.js:482 -#: motions/static/templates/motions/motion-import.html:22 -#: motions/static/templates/motions/motion-import.html:45 -msgid "Identifier" -msgstr "Идентификатор" - -#: motions/static/templates/motions/motion-import.html:31 -msgid "" -"Identifier, reason, submitter, category, origin and motion block are " -"optional and may be empty." -msgstr "Идентификатор, причина, отправитель, категория, источник и блок движения являются необязательными и могут быть пустыми." - -#: core/static/templates/core/manage-projectors.html:32 -msgid "Identify" -msgstr "Идентифицировать" - -#: mediafiles/static/js/mediafiles/image-plugin.js:148 -#: mediafiles/static/js/mediafiles/image-plugin.js:198 -msgid "Image browser" -msgstr "Браузер изображений" - -#: agenda/static/templates/agenda/item-list.html:16 -#: motions/static/templates/motions/motion-list.html:31 -#: topics/static/templates/topics/topic-import.html:24 -#: users/static/templates/users/user-import.html:29 -#: users/static/templates/users/user-list.html:20 -msgid "Import" -msgstr "Импортировать" - -#: topics/static/templates/topics/topic-import.html:41 -#: users/static/templates/users/user-import.html:41 -msgid "Import by CSV file" -msgstr "Импорт с помощью CSV-файла " - -#: topics/static/templates/topics/topic-import.html:14 -#: users/static/templates/users/user-import.html:18 -msgid "Import by copy/paste" -msgstr "Импорт с помощью копирования/вставки" - -#: motions/static/templates/motions/motion-import.html:9 -msgid "Import motions" -msgstr "Импорт заявлений " - -#: users/static/templates/users/user-import.html:9 -msgid "Import participants" -msgstr "Импорт участников" - -#: topics/static/templates/topics/topic-import.html:9 -msgid "Import topics" -msgstr "Импорт тем" - -#: topics/static/templates/topics/topic-import.html:123 -msgid "Import {{ itemsWillBeImported }} topics" -msgstr "Импорт {{ itemsWillBeImported }} тем" - -#: motions/static/templates/motions/motion-import.html:132 -msgid "Import {{ motionsWillBeImported }} motions" -msgstr "Импорт {{ motionsWillBeImported }} заявлений" - -#: users/static/templates/users/user-import.html:237 -msgid "Import {{ usersWillBeImported }} participants" -msgstr "Импорт {{ usersWillBeImported }} участников" - -#: motions/static/js/motions/site.js:917 -msgid "Include" -msgstr "Включить" - -#: agenda/static/templates/agenda/item-list.html:363 -msgid "Include all sub items" -msgstr "Включить все подпункты" - -#: motions/static/js/motions/site.js:3318 -msgid "Include the sequential number in PDF and DOCX" -msgstr "Включите последовательный номер в PDF и DOCX" - -#: users/static/js/users/pdf.js:201 users/static/js/users/site.js:358 -#: users/static/templates/users/user-change-password.html:37 -#: users/static/templates/users/user-import.html:60 -#: users/static/templates/users/user-import.html:93 -msgid "Initial password" -msgstr "Первоначальный пароль" - -#: users/static/js/users/site.js:359 -#: users/static/templates/users/user-change-password.html:38 -msgid "Initial password can not be changed." -msgstr "Первоначальный пароль не может быть изменен." - -#. Line numbering: Inline -#: motions/static/js/motions/site.js:3253 -msgid "Inline" -msgstr "В очереди" - -#: motions/static/templates/motions/motion-detail/comments.html:15 -#: motions/static/templates/motions/motion-detail/comments.html:20 -#: motions/static/templates/motions/motion-detail/personal-note.html:14 -#: motions/static/templates/motions/motion-detail/personal-note.html:19 -#: motions/static/templates/motions/motion-detail/toolbar.html:13 -#: motions/static/templates/motions/motion-detail/toolbar.html:18 -#: motions/static/templates/motions/motion-detail/toolbar.html:29 -#: motions/static/templates/motions/motion-detail/toolbar.html:35 -#: motions/static/templates/motions/motion-detail/toolbar.html:8 -msgid "Inline editing" -msgstr "Встроенное редактирование" - -#: agenda/static/js/agenda/site.js:876 -msgid "Input format: DD.MM.YYYY HH:MM" -msgstr "Формат ввода: ДД.ММ.ГГГГ ЧЧ:ММ" - -#: motions/static/js/motions/base.js:1489 motions/static/js/motions/pdf.js:282 -#: motions/static/js/motions/site.js:371 -#: motions/static/templates/motions/motion-detail/change-summary.html:38 -msgid "Insertion" -msgstr "Вставка" - -#: core/static/templates/legalnotice.html:17 -msgid "Installed plugins:" -msgstr "Установленные плагины:" - -#: agenda/static/templates/agenda/item-list.html:156 -#: agenda/static/templates/agenda/item-list.html:432 -#: agenda/static/templates/agenda/item-list.html:468 -msgid "Internal" -msgstr "Внутренний" - -#: agenda/static/js/agenda/site.js:101 -#: agenda/static/templates/agenda/item-list.html:447 -#: topics/static/templates/topics/topic-import.html:54 -#: topics/static/templates/topics/topic-import.html:73 -msgid "Internal item" -msgstr "Внутренний элемент" - -#: agenda/static/js/agenda/site.js:190 -#: agenda/static/templates/agenda/item-list.html:287 -msgid "Internal items" -msgstr "Внутренние элементы" - -#: assignments/static/js/assignments/site.js:836 -#: assignments/static/templates/assignments/assignment-detail.html:274 -#: assignments/static/templates/assignments/slide_assignment.html:88 -msgid "Invalid ballots" -msgstr "Недействительные бюллетени" - -#: agenda/static/js/agenda/site.js:871 -msgid "Invalid input." -msgstr "Не верный ввод." - -#: motions/static/js/motions/pdf.js:216 motions/static/js/motions/site.js:799 -#: motions/static/templates/motions/motion-detail.html:450 -msgid "Invalid votes" -msgstr "Недействительные голоса" - -#: mediafiles/static/js/mediafiles/list.js:81 -msgid "Is PDF" -msgstr "Является ли PDF" - -#: mediafiles/static/js/mediafiles/list.js:82 -msgid "Is PDF file" -msgstr "Является ли PDF-файл" - -#: users/static/js/users/site.js:415 users/static/js/users/site.js:606 -#: users/static/templates/users/user-list.html:341 -msgid "Is a committee" -msgstr "Является ли комитет" - -#: users/static/js/users/site.js:403 users/static/js/users/site.js:599 -#: users/static/templates/users/user-import.html:57 -#: users/static/templates/users/user-import.html:90 -#: users/static/templates/users/user-list.html:127 -msgid "Is active" -msgstr "Является ли активным" - -#: users/static/templates/users/user-import.html:59 -#: users/static/templates/users/user-import.html:92 -#: users/static/templates/users/user-list.html:129 -msgid "Is committee" -msgstr "Является ли комитет" - -#: mediafiles/static/js/mediafiles/list.js:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:303 -msgid "Is hidden" -msgstr "Скрыт" - -#: users/static/templates/users/user-list.html:339 -msgid "Is inactive" -msgstr "Неактивен" - -#: mediafiles/static/js/mediafiles/list.js:83 -msgid "Is no PDF file" -msgstr "это не PDF -файл" - -#: users/static/js/users/site.js:607 -#: users/static/templates/users/user-list.html:137 -msgid "Is not a committee" -msgstr "это не комитет" - -#: users/static/js/users/site.js:600 -#: users/static/templates/users/user-list.html:135 -msgid "Is not active" -msgstr "не активный" - -#: mediafiles/static/js/mediafiles/list.js:76 -msgid "Is not hidden" -msgstr "не скрытый" - -#: users/static/js/users/site.js:593 -#: users/static/templates/users/user-list.html:136 -msgid "Is not present" -msgstr "отсутствует" - -#: users/static/js/users/site.js:393 users/static/js/users/site.js:592 -#: users/static/templates/users/user-import.html:58 -#: users/static/templates/users/user-import.html:91 -#: users/static/templates/users/user-list.html:128 -msgid "Is present" -msgstr "присутствует" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:308 -msgid "Is used as a font" -msgstr "Используется как шрифт" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:306 -msgid "Is used as a logo" -msgstr "Используется как логотип" - -#. short form of agenda item -#: assignments/static/js/assignments/site.js:333 -#: motions/static/templates/motions/motion-table-filters.html:209 -msgid "Item" -msgstr "Пункт" - -#: motions/static/templates/motions/workflow-detail.html:119 -msgid "Label color" -msgstr "" - -#: users/static/js/users/site.js:611 users/static/js/users/site.js:650 -#: users/static/templates/users/user-detail.html:38 -msgid "Last email send" -msgstr "Последнее отправление электронной почты" - -#: users/static/templates/users/user-list.html:448 -msgid "Last email send to the user" -msgstr "Последнее отправление электронной почты пользователю" - -#: motions/static/js/motions/site.js:1433 -#: motions/static/templates/motions/motion-detail.html:636 -msgid "Last modified" -msgstr "Последнее изменение" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:36 -msgid "Last speakers" -msgstr "Последние спикеры" - -#: core/static/templates/csv-import.html:33 -msgid "Leave empty for autodetection of the separator." -msgstr "Оставьте пустым для автоопределения сепаратора." - -#: motions/static/js/motions/workflow.js:70 -msgid "Leave old version active" -msgstr "" - -#: core/static/js/core/site.js:2101 -msgid "Left" -msgstr "Налево" - -#: core/static/js/core/site.js:2091 core/static/js/core/site.js:371 -#: core/static/templates/index.html:227 -#: core/static/templates/legalnotice.html:3 -msgid "Legal notice" -msgstr "Уведомление" - -#: core/static/templates/legalnotice.html:14 -#: core/static/templates/legalnotice.html:27 -msgid "License" -msgstr "Лицензия" - -#: motions/static/js/motions/pdf.js:1083 motions/static/js/motions/pdf.js:275 -#: motions/static/templates/motions/motion-amendment-list.html:238 -#: motions/static/templates/motions/motion-amendment-list.html:241 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:28 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:31 -#: motions/static/templates/motions/motion-detail/change-summary.html:28 -#: motions/static/templates/motions/motion-detail/change-summary.html:31 -#: motions/static/templates/motions/motion-detail/toolbar.html:46 -#: motions/static/templates/motions/slide_motion.html:80 -#: motions/static/templates/motions/slide_motion.html:83 -msgid "Line" -msgstr "Строка" - -#: motions/static/js/motions/site.js:3256 -msgid "Line length" -msgstr "Длина строки" - -#: motions/static/js/motions/site.js:929 motions/static/js/motions/site.js:942 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:30 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:5 -msgid "Line numbering" -msgstr "Нумерация строк" - -#: users/static/js/users/pdf.js:313 -#: users/static/templates/users/user-list.html:64 -msgid "List of access data" -msgstr "Список доступа к данным" - -#: users/static/js/users/pdf.js:17 users/static/js/users/pdf.js:302 -#: users/static/templates/users/user-list.html:59 -msgid "List of participants" -msgstr "Список участников" - -#: agenda/static/js/agenda/site.js:562 agenda/static/js/agenda/site.js:879 -#: agenda/static/templates/agenda/item-detail.html:21 -#: agenda/static/templates/agenda/item-detail.html:47 -#: agenda/static/templates/agenda/item-list.html:402 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:2 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:5 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:5 -#: assignments/static/templates/assignments/assignment-detail.html:12 -#: core/static/templates/core/projector-controls.html:257 -#: motions/static/templates/motions/motion-block-detail.html:11 -#: motions/static/templates/motions/motion-detail.html:23 -#: topics/static/templates/topics/topic-detail.html:11 -msgid "List of speakers" -msgstr "Список спикеров" - -#: core/static/js/core/site.js:2119 -msgid "List of speakers overlay" -msgstr "Список ораторов наложения" - -#: core/static/templates/core/projector-controls.html:8 -msgid "Live view" -msgstr "Прямая трансляция" - -#: core/static/templates/core/login-form.html:20 -#: core/static/templates/index.html:121 -msgid "Login" -msgstr "Войти" - -#: core/static/templates/index.html:112 -msgid "Logout" -msgstr "Выйти" - -#: core/static/templates/core/projector-controls.html:59 -msgid "Manage" -msgstr "Управлять" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:386 -msgid "Manage fonts" -msgstr "Управление шрифтами" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:348 -msgid "Manage logos" -msgstr "Управление логотипами" - -#: core/static/js/core/site.js:356 -#: core/static/templates/core/manage-projectors.html:35 -msgid "Manage projectors" -msgstr "Управление проекторами" - -#: core/static/templates/core/projector-controls.html:305 -msgid "Manage the current list of speakers" -msgstr "Управление текущим списком спикеров" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:69 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:95 -msgid "Mark speaker" -msgstr "Выделить спикера" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:43 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:62 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:87 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:10 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:19 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:21 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:39 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:20 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:27 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:33 -msgid "Marked" -msgstr "отмеченный" - -#: motions/static/js/motions/site.js:1360 -msgid "Marked as favorite" -msgstr "Отмечено как фаворит" - -#: core/static/js/core/base.js:1393 core/static/js/core/site.js:463 -#: core/static/templates/core/projector-controls.html:224 -msgid "Message" -msgstr "Сообщение" - -#: core/static/js/core/base.js:1394 -#: core/static/templates/core/projector-controls.html:218 -msgid "Messages" -msgstr "Сообщения" - -#: assignments/static/templates/assignments/assignment-detail.html:42 -#: motions/static/js/motions/site.js:1003 -#: motions/static/js/motions/site.js:994 -#: motions/static/templates/motions/motion-detail.html:133 -msgid "Meta information" -msgstr "Мета информация" - -#: motions/static/templates/motions/motion-table-filters.html:166 -msgid "Misc" -msgstr "Разное" - -#: motions/static/js/motions/base.js:293 motions/static/js/motions/base.js:328 -#: motions/static/js/motions/base.js:337 motions/static/js/motions/docx.js:92 -#: motions/static/js/motions/pdf.js:1076 motions/static/js/motions/pdf.js:1346 -#: motions/static/js/motions/pdf.js:1392 motions/static/js/motions/pdf.js:536 -#: motions/static/js/motions/pdf.js:70 motions/static/js/motions/pdf.js:732 -#: motions/static/js/motions/site.js:1627 -#: motions/static/js/motions/site.js:2039 -#: motions/static/js/motions/site.js:2052 -#: motions/static/js/motions/site.js:2058 -#: motions/static/js/motions/site.js:267 motions/static/js/motions/site.js:344 -#: motions/static/templates/motions/motion-block-detail.html:51 -#: motions/static/templates/motions/motion-detail.html:116 -#: motions/static/templates/motions/motion-detail.html:120 -#: motions/static/templates/motions/motion-detail.html:271 -#: motions/static/templates/motions/motion-detail.html:92 -#: motions/static/templates/motions/slide_motion.html:74 -msgid "Motion" -msgstr "Заявление" - -#: motions/static/js/motions/motion-block.js:156 -#: motions/static/js/motions/motion-block.js:19 -#: motions/static/js/motions/pdf.js:155 motions/static/js/motions/site.js:1427 -#: motions/static/js/motions/site.js:614 motions/static/js/motions/site.js:874 -#: motions/static/templates/motions/motion-block-detail.html:25 -#: motions/static/templates/motions/motion-detail.html:318 -#: motions/static/templates/motions/motion-detail.html:322 -#: motions/static/templates/motions/motion-import.html:29 -#: motions/static/templates/motions/motion-import.html:52 -#: motions/static/templates/motions/motion-table-filters.html:93 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motion block" -msgstr "Блок заявления" - -#: motions/static/js/motions/site.js:156 -#: motions/static/templates/motions/motion-block-list.html:13 -#: motions/static/templates/motions/motion-list.html:19 -msgid "Motion blocks" -msgstr "Блоки заявления" - -#: motions/static/templates/motions/motion-import.html:125 -msgid "Motion blocks created" -msgstr "Созданы блоки заявления" - -#: motions/static/js/motions/site.js:3247 -msgid "Motion preamble" -msgstr "Преамбула заявления" - -#: motions/static/js/motions/base.js:294 motions/static/js/motions/site.js:23 -#: motions/static/js/motions/site.js:3238 motions/static/js/motions/site.js:35 -#: motions/static/js/motions/site.js:53 -#: motions/static/templates/motions/motion-block-list.html:30 -#: motions/static/templates/motions/motion-list.html:35 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motions" -msgstr "Заявления" - -#: motions/static/js/motions/site.js:1034 -msgid "Multiple PDFs in a zip arcive" -msgstr "Несколько PDF-файлов в zip-архиве" - -#: core/static/js/core/site.js:497 -#: core/static/templates/core/manage-projectors.html:62 -#: core/static/templates/core/tag-list.html:34 -#: motions/static/js/motions/site.js:739 -#: motions/static/templates/motions/category-list.html:29 -#: motions/static/templates/motions/motion-block-list.html:29 -#: motions/static/templates/motions/state-edit.html:8 -#: motions/static/templates/motions/workflow-list.html:25 -#: users/static/js/users/pdf.js:65 -msgid "Name" -msgstr "Имя" - -#: motions/static/js/motions/site.js:3263 -msgid "Name of recommender" -msgstr "имя рекомендателя" - -#: motions/static/js/motions/base.js:1639 -msgid "Needs review" -msgstr "Требует пересмотра" - -#: agenda/static/templates/agenda/item-list.html:8 -#: assignments/static/templates/assignments/assignment-list.html:6 -#: core/static/js/core/site.js:1288 core/static/js/core/site.js:1301 -#: core/static/js/core/site.js:1302 -#: core/static/templates/core/manage-projectors.html:8 -#: core/static/templates/core/tag-list.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:6 -#: motions/static/templates/motions/category-list.html:10 -#: motions/static/templates/motions/motion-block-list.html:10 -#: motions/static/templates/motions/motion-list.html:6 -#: motions/static/templates/motions/workflow-detail.html:11 -#: motions/static/templates/motions/workflow-list.html:10 -#: users/static/templates/users/group-list.html:11 -#: users/static/templates/users/user-list.html:6 -msgid "New" -msgstr "Новый" - -#: motions/static/templates/motions/motion-detail.html:181 -msgid "New amendment" -msgstr "Новая поправка" - -#: motions/static/templates/motions/motion-form.html:3 -msgid "New amendment to motion" -msgstr "Новая поправка к заявлению" - -#: assignments/static/templates/assignments/assignment-detail.html:133 -msgid "New ballot" -msgstr "Новый бюллетень" - -#: motions/static/templates/motions/category-form.html:2 -msgid "New category" -msgstr "Новая категория" - -#: motions/static/js/motions/site.js:2922 -msgid "New category will be created." -msgstr "Новая категория будет создана." - -#: motions/static/templates/motions/change-recommendation-form.html:2 -msgid "New change recommendation" -msgstr "Новое изменение рекомендации" - -#: assignments/static/templates/assignments/assignment-form.html:2 -msgid "New election" -msgstr "Новые выборы" - -#: motions/static/templates/motions/motion-form.html:2 -msgid "New motion" -msgstr "Новое заявление" - -#: motions/static/templates/motions/motion-block-form.html:2 -msgid "New motion block" -msgstr "Новый блок заявлений" - -#: motions/static/js/motions/site.js:2935 -msgid "New motion block will be created." -msgstr "Будет создан новый блок заявления." - -#: users/static/templates/users/user-form.html:2 -msgid "New participant" -msgstr "Новый участник" - -#: motions/static/js/motions/site.js:2909 -msgid "New participant will be created." -msgstr "Новый участник будет создан." - -#: users/static/js/users/site.js:519 -#: users/static/templates/users/user-change-password.html:23 -msgid "New password" -msgstr "Новый пароль" - -#: core/static/templates/core/tag-form.html:2 -msgid "New tag" -msgstr "Новый тег" - -#: motions/static/js/motions/pdf.js:377 motions/static/js/motions/site.js:275 -#: motions/static/templates/motions/motion-detail/view-diff.html:42 -#: motions/static/templates/motions/slide_motion.html:107 -msgid "New title" -msgstr "Новое название" - -#: topics/static/templates/topics/topic-form.html:2 -msgid "New topic" -msgstr "Новая тема" - -#: motions/static/templates/motions/motion-detail.html:542 -#: motions/static/templates/motions/motion-detail.html:572 -msgid "New version on these changes" -msgstr "Новая версия этих изменений" - -#: motions/static/templates/motions/motion-detail.html:495 -msgid "New vote" -msgstr "Новое голосование" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:39 -msgid "Next page" -msgstr "Следующая страница" - -#: motions/static/templates/motions/workflow-detail.html:170 -msgid "Next states" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:323 -#: assignments/static/js/assignments/pdf.js:358 -#: assignments/static/js/assignments/site.js:612 -#: assignments/static/js/assignments/site.js:743 -#: assignments/static/js/assignments/site.js:809 -#: assignments/static/templates/assignments/assignment-detail.html:262 -#: assignments/static/templates/assignments/slide_assignment.html:77 -#: motions/static/js/motions/pdf.js:198 motions/static/js/motions/pdf.js:740 -#: motions/static/js/motions/site.js:770 -#: motions/static/templates/motions/motion-detail.html:417 -#: motions/static/templates/motions/slide_motion.html:44 -msgid "No" -msgstr "Нет" - -#: motions/static/js/motions/docx.js:48 -msgid "No categories available." -msgstr "Нет доступных категорий." - -#: motions/static/templates/motions/motion-amendment-list.html:140 -#: motions/static/templates/motions/motion-list.html:102 -msgid "No category" -msgstr "Нет категории" - -#: motions/static/templates/motions/motion-table-filters.html:286 -#: motions/static/templates/motions/motion-table-filters.html:83 -msgid "No category set" -msgstr "Нет набора категорий" - -#: motions/static/templates/motions/motion-detail/change-summary.html:53 -msgid "No change recommendations yet" -msgstr "Нет пока изменений рекомендаций" - -#: motions/static/js/motions/pdf.js:1094 motions/static/js/motions/pdf.js:370 -#: motions/static/templates/motions/motion-amendment-list.html:349 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:17 -msgid "No changes at the text." -msgstr "В тексте нет изменений." - -#: motions/static/templates/motions/motion-table-filters.html:131 -#: motions/static/templates/motions/motion-table-filters.html:312 -msgid "No comments set" -msgstr "Нет набора комментариев." - -#: motions/static/js/motions/base.js:1634 -msgid "No concernment" -msgstr "Нет заинтересованных" - -#: motions/static/js/motions/base.js:1614 -msgid "No decision" -msgstr "Нет решения" - -#: users/static/js/users/site.js:818 -msgid "No emails were send." -msgstr "Никаких электронных писем не было отправлено." - -#: users/static/js/users/site.js:1868 -msgid "No encryption" -msgstr "Нет шифрования" - -#: users/static/templates/users/user-list.html:223 -#: users/static/templates/users/user-list.html:300 -msgid "No group set" -msgstr "Нет набора группы" - -#: agenda/static/js/agenda/site.js:198 -msgid "No hidden items" -msgstr "" - -#: agenda/static/js/agenda/site.js:191 -msgid "No internal items" -msgstr "Нет внутренних элементов" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:107 -msgid "No media file projected." -msgstr "Ни один Медиа-файл не проецируется." - -#: motions/static/templates/motions/motion-amendment-list.html:153 -#: motions/static/templates/motions/motion-list.html:115 -msgid "No motion block" -msgstr "Нет блока заявлений" - -#: motions/static/templates/motions/motion-table-filters.html:107 -#: motions/static/templates/motions/motion-table-filters.html:328 -msgid "No motion block set" -msgstr "Нет набора блока заявлений" - -#: motions/static/js/motions/docx.js:54 -msgid "No motions available." -msgstr "Нет доступных заявлений" - -#: agenda/static/js/agenda/site.js:185 -msgid "No public items" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:285 -#: motions/static/templates/motions/motion-amendment-list.html:296 -msgid "No recomendation set" -msgstr "Нет набора рекомендаций" - -#: motions/static/templates/motions/motion-table-filters.html:59 -msgid "No recommendation set" -msgstr "Нет набора рекомендаций" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: core/static/templates/core/select-multiple.html:2 -#: core/static/templates/core/select-single.html:2 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "No results available ..." -msgstr "Нет доступных результатов..." - -#: core/static/templates/search.html:41 -msgid "No results." -msgstr "Нет результатов." - -#: assignments/static/templates/assignments/assignment-list.html:120 -#: assignments/static/templates/assignments/assignment-list.html:192 -#: motions/static/templates/motions/motion-table-filters.html:155 -#: motions/static/templates/motions/motion-table-filters.html:344 -msgid "No tag set" -msgstr "Нет набора тегов" - -#: motions/static/js/motions/site.js:2304 -msgid "No workflows exists. You will not be able to create a motion." -msgstr "" - -#. abbreviation for number -#: users/static/js/users/base.js:82 -#: users/static/templates/users/user-list.html:349 -#: users/static/templates/users/user-list.html:353 -msgid "No." -msgstr "Нет." - -#. Line numbering: None -#: motions/static/js/motions/site.js:3255 -#: motions/static/js/motions/site.js:931 motions/static/js/motions/site.js:944 -msgid "None" -msgstr "Никто" - -#: motions/static/js/motions/site.js:1361 -msgid "Not marked as favorite" -msgstr "Не отмечен как фаворит" - -#: motions/static/templates/motions/motion-detail/view-diff.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:8 -msgid "Not rejected" -msgstr "Не отклонено" - -#: motions/static/templates/motions/motion-detail/change-summary.html:8 -msgid "" -"Note: You have to reject all change recommendations if the plenum does not " -"follow the recommendation. This does not affect amendments." -msgstr "Примечание: Вы должны отклонить все рекомендации по изменению, если пленум не следует рекомендации. Это не влияет на поправки." - -#: motions/static/templates/motions/motion-detail/view-original.html:45 -msgid "Now choose the last line to be changed" -msgstr "Теперь выберите последнюю для изменения строку" - -#: users/static/js/users/site.js:1280 users/static/js/users/site.js:644 -msgid "Number" -msgstr "Номер " - -#: motions/static/js/motions/site.js:3283 -msgid "Number of (minimum) required supporters for a motion" -msgstr "Количество (минимум) требуемых сторонников заявления" - -#: assignments/static/js/assignments/site.js:921 -#: motions/static/js/motions/site.js:3309 -msgid "Number of all delegates" -msgstr "Общее количество делегатов" - -#: assignments/static/js/assignments/site.js:922 -#: motions/static/js/motions/site.js:3310 -msgid "Number of all participants" -msgstr "Общее количество учасников" - -#: assignments/static/js/assignments/site.js:920 -#: motions/static/js/motions/site.js:3308 -msgid "Number of ballot papers (selection)" -msgstr "Количество избирательных бюллетеней (выбор)" - -#: assignments/static/js/assignments/site.js:339 -msgid "Number of candidates" -msgstr "Количество кандидатов" - -#: agenda/static/js/agenda/site.js:878 -msgid "Number of last speakers to be shown on the projector" -msgstr "Количество оставшихся спикеров будет показано на проекторе" - -#: assignments/static/js/assignments/pdf.js:23 -#: assignments/static/js/assignments/site.js:147 -#: assignments/static/templates/assignments/assignment-detail.html:52 -msgid "Number of persons to be elected" -msgstr "Количество лиц, которые должны быть избраны" - -#: motions/static/js/motions/site.js:3244 -msgid "Numbered per category" -msgstr "Нумерованный по каждой категории" - -#: agenda/static/templates/agenda/item-list.html:88 -#: motions/static/templates/motions/category-sort.html:20 -msgid "Numbering" -msgstr "Нумерованный" - -#: agenda/static/js/agenda/site.js:868 -msgid "Numbering prefix for agenda items" -msgstr "Префикс нумерации пунктов повестки дня" - -#: agenda/static/js/agenda/site.js:872 -msgid "Numeral system for agenda items" -msgstr "Система исчисления повестки дня" - -#: core/static/js/core/base.js:263 core/static/js/core/base.js:265 -msgid "OK" -msgstr "OK" - -#: core/static/js/core/base.js:811 -msgid "Offline mode: You can use OpenSlides but changes are not saved." -msgstr "Режим офлайн: вы можете использовать OpenSlides, но изменения не сохраняются." - -#: users/static/js/users/site.js:511 -msgid "Old password" -msgstr "Старый пароль" - -#: motions/static/js/motions/site.js:1033 -msgid "One PDF" -msgstr "Один PDF-файл" - -#: core/static/js/core/site.js:751 -msgid "One anonymous users is also editing this." -msgstr "Анонимный пользователь также редактирует это." - -#: users/static/js/users/site.js:820 -msgid "One email was send sucessfully." -msgstr "Одно электронное письмо было отправлено успешно." - -#: assignments/static/templates/assignments/assignment-detail.html:287 -msgid "One vote per candidate" -msgstr "Один голос за кандидата" - -#: motions/static/templates/motions/motion-import.html:33 -#: topics/static/templates/topics/topic-import.html:57 -#: users/static/templates/users/user-import.html:65 -msgid "Only double quotes are accepted as text delimiter (no single quotes)." -msgstr "Только двойные кавычки принимаются в качестве ограничителя текста (никаких одинарных кавычек)." - -#: users/static/js/users/site.js:375 -msgid "Only for internal notes." -msgstr "Только для внутренних примечаний." - -#: agenda/static/templates/agenda/item-list.html:46 -msgid "Only main agenda items" -msgstr "Только основные пункты повестки дня" - -#: agenda/static/templates/agenda/item-list.html:177 -msgid "Open" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:93 -msgid "Open amendment" -msgstr "Открыть поправку" - -#: core/static/templates/core/projector-controls.html:147 -msgid "Open countdown in fullscreen" -msgstr "Открыть отсчет в полноэкранном режиме" - -#: assignments/static/templates/assignments/assignment-form.html:13 -msgid "Open election detail view after save." -msgstr "Открыть детальный просмотр выборов после сохранения." - -#: mediafiles/static/js/mediafiles/image-plugin.js:138 -msgid "Open image browser" -msgstr "Открыть браузер изображений" - -#: agenda/static/js/agenda/site.js:178 -msgid "Open items" -msgstr "Открытые пункты" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:7 -msgid "Open list of speakers" -msgstr "Открыть список спикеров" - -#: motions/static/templates/motions/motion-form.html:14 -msgid "Open motion detail view after save." -msgstr "Открыть детальный просмотр предложения после сохранения." - -#: users/static/js/users/pdf.js:189 -msgid "OpenSlides access data" -msgstr "Данные доступа к OpenSlides" - -#: motions/static/js/motions/pdf.js:168 motions/static/js/motions/site.js:627 -#: motions/static/js/motions/site.js:881 -#: motions/static/templates/motions/motion-detail.html:362 -#: motions/static/templates/motions/motion-import.html:28 -#: motions/static/templates/motions/motion-import.html:51 -#: motions/static/templates/motions/motion-list.html:407 -msgid "Origin" -msgstr "Происхождение" - -#: mediafiles/static/js/mediafiles/image-plugin.js:196 -#: mediafiles/static/js/mediafiles/image-plugin.js:94 -msgid "Original size" -msgstr "Оригинальный размер" - -#: motions/static/js/motions/site.js:957 motions/static/js/motions/site.js:971 -#: motions/static/templates/motions/motion-detail/toolbar.html:128 -#: motions/static/templates/motions/motion-detail/toolbar.html:83 -msgid "Original version" -msgstr "Исходная версия" - -#: motions/static/js/motions/site.js:373 -msgid "Other" -msgstr "Другие" - -#. Line numbering: Outside -#: motions/static/js/motions/site.js:3251 -msgid "Outside" -msgstr "Вне" - -#: assignments/static/templates/assignments/assignment-detail.html:28 -#: motions/static/templates/motions/motion-detail.html:71 -#: motions/static/templates/motions/motion-detail/comments.html:9 -#: motions/static/templates/motions/motion-detail/personal-note.html:9 -#: users/static/js/users/site.js:1853 -msgid "PDF" -msgstr "PDF" - -#: core/static/js/core/site.js:2127 -msgid "PDF ballot paper logo" -msgstr "PDF Логотип бюллетеня " - -#: core/static/js/core/site.js:2124 -msgid "PDF footer logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2125 -msgid "PDF footer logo (right)" -msgstr "" - -#: motions/static/js/motions/site.js:1031 -msgid "PDF format" -msgstr "Формат PDF" - -#: core/static/js/core/site.js:2122 -msgid "PDF header logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2123 -msgid "PDF header logo (right)" -msgstr "" - -#: core/static/js/core/pdf.js:1330 -msgid "PDF successfully generated." -msgstr "PDF успешно создан." - -#: agenda/static/templates/agenda/item-list.html:218 -#: assignments/static/templates/assignments/assignment-list.html:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:153 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:44 -#: motions/static/templates/motions/motion-amendment-list.html:180 -#: motions/static/templates/motions/motion-list.html:146 -#: users/static/templates/users/user-import.html:73 -#: users/static/templates/users/user-list.html:160 -msgid "Page" -msgstr "Страница" - -#: core/static/js/core/site.js:2100 -msgid "Page number alignment in PDF" -msgstr "Выравнивание номера страницы в PDF" - -#: motions/static/js/motions/site.js:3279 -msgid "Paragraph-based, Diff-enabled" -msgstr "На основе абзаца, дифференциация включена" - -#: assignments/static/js/assignments/site.js:168 -#: motions/static/js/motions/motion-block.js:91 -#: motions/static/js/motions/site.js:553 topics/static/js/topics/site.js:130 -msgid "Parent item" -msgstr "Исходный элемент" - -#: motions/static/js/motions/site.js:2780 -msgid "Parent motion and line number" -msgstr "Родительское заявление и номер строки" - -#: users/static/js/users/site.js:887 -#: users/static/templates/users/user-detail.html:20 -msgid "Participant" -msgstr "Участник" - -#: users/static/js/users/site.js:331 -#: users/static/templates/users/user-detail.html:34 -#: users/static/templates/users/user-import.html:54 -#: users/static/templates/users/user-import.html:87 -msgid "Participant number" -msgstr "Номер участника" - -#: users/static/js/users/base.js:19 users/static/js/users/base.js:20 -#: users/static/js/users/site.js:1850 users/static/js/users/site.js:19 -#: users/static/js/users/site.js:30 users/static/js/users/site.js:48 -#: users/static/templates/users/user-list.html:24 -msgid "Participants" -msgstr "Участники" - -#: core/static/templates/core/login-form.html:17 -msgid "Password" -msgstr "Пароль" - -#: users/static/js/users/site.js:1064 -msgid "Password confirmation does not match." -msgstr "Подтверждение пароля не совпадает." - -#: core/static/templates/core/projector-controls.html:170 -msgid "Pause" -msgstr "Перерыв" - -#: motions/static/js/motions/base.js:1620 -msgid "Permission" -msgstr "Разрешение" - -#: motions/static/templates/motions/workflow-detail.html:42 -#: users/static/templates/users/group-list.html:26 -msgid "Permissions" -msgstr "Разрешения" - -#: motions/static/js/motions/base.js:1619 -msgid "Permit" -msgstr "Разрешить" - -#: motions/static/templates/motions/motion-detail.html:624 -msgid "Permit and activate" -msgstr "Разрешить и активировать" - -#: users/static/templates/users/user-detail.html:27 -msgid "Personal data" -msgstr "Личные данные" - -#: motions/static/js/motions/pdf.js:1403 -#: motions/static/templates/motions/motion-detail.html:500 -#: motions/static/templates/motions/motion-detail/personal-note.html:25 -msgid "Personal note" -msgstr "Личная заметка" - -#: motions/static/js/motions/site.js:1366 -msgid "Personal note not set" -msgstr "Персональные заметки не установлены" - -#: motions/static/js/motions/site.js:1365 -msgid "Personal note set" -msgstr "Набор персональных заметок" - -#: assignments/static/js/assignments/site.js:337 -#: assignments/static/templates/assignments/assignment-detail.html:62 -#: assignments/static/templates/assignments/assignment-list.html:130 -msgid "Phase" -msgstr "Фаза" - -#: users/static/templates/users/group-edit.html:12 -msgid "Please enter a name for the new group:" -msgstr "Введите пожалуйста имя новой группы:" - -#: core/static/templates/core/manage-projectors.html:5 -msgid "Please enter a name for the new projector" -msgstr "Введите пожалуйста имя нового проектора" - -#: motions/static/templates/motions/workflow-edit.html:12 -msgid "Please enter a name for the new workflow:" -msgstr "" - -#: users/static/templates/users/group-edit.html:10 -msgid "Please enter a new group name:" -msgstr "Введите пожалуйста новое имя группы:" - -#: motions/static/templates/motions/workflow-edit.html:9 -msgid "Please enter a new workflow name:" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:18 -#: topics/static/templates/topics/topic-import.html:46 -#: users/static/templates/users/user-import.html:46 -msgid "Please note:" -msgstr "Сделайте пожалуйста заметку:" - -#: core/static/templates/core/manage-projectors.html:72 -msgid "Please select" -msgstr "Пожалуйста выберите" - -#: motions/static/js/motions/site.js:3316 -msgid "Preamble text for PDF and DOCX documents (all motions)" -msgstr "Вводный текст для PDF и DOCX документов (все заявления)" - -#: assignments/static/js/assignments/site.js:933 -msgid "Preamble text for PDF document (all elections)" -msgstr "Вводный текст для PDF-документа (все выборы) " - -#: core/static/js/core/site.js:2117 -msgid "Predefined seconds of new countdowns" -msgstr "Предустановленные секунды для нового отсчета" - -#: motions/static/js/motions/site.js:732 -#: motions/static/templates/motions/category-list.html:34 -msgid "Prefix" -msgstr "Префикс" - -#: motions/static/js/motions/site.js:3272 -msgid "Prefix for the identifier for amendments" -msgstr "Префикс для идентификатора элемента для внесения поправок" - -#: users/static/templates/users/user-list.html:11 -#: users/static/templates/users/user-presence.html:9 -msgid "Presence" -msgstr "Присутствие" - -#: users/static/js/users/site.js:591 users/static/js/users/site.js:638 -#: users/static/templates/users/user-list.html:460 -#: users/static/templates/users/user-list.html:466 -msgid "Present" -msgstr "Присутствует" - -#: core/static/js/core/site.js:2079 -msgid "Presentation and assembly system" -msgstr "Система собрания и презентации" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:17 -msgid "Presentation control elements" -msgstr "Элементы управления презентацией" - -#: motions/static/templates/motions/motion-import.html:38 -#: topics/static/templates/topics/topic-import.html:62 -#: users/static/templates/users/user-import.html:70 -msgid "Preview" -msgstr "Предпросмотр" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:34 -msgid "Previous page" -msgstr "Предыдущая страниц" - -#: assignments/static/templates/assignments/assignment-detail.html:163 -#: motions/static/templates/motions/motion-detail.html:390 -msgid "Print ballot paper" -msgstr "Печать бюллетеней" - -#: core/static/js/core/site.js:2092 core/static/js/core/site.js:380 -#: core/static/templates/core/login-form.html:28 -#: core/static/templates/index.html:228 -#: core/static/templates/privacypolicy.html:3 -#: core/static/templates/privacypolicydialog.html:1 -msgid "Privacy policy" -msgstr "Политика конфиденциальности" - -#: motions/static/js/motions/site.js:3292 -msgid "Private" -msgstr "Лично" - -#: assignments/static/templates/assignments/assignment-detail.html:16 -#: assignments/static/templates/assignments/assignment-detail.html:181 -#: motions/static/templates/motions/motion-detail.html:31 -#: topics/static/templates/topics/topic-detail.html:15 -#: users/static/templates/users/user-detail.html:10 -msgid "Project" -msgstr "Проект" - -#: agenda/static/templates/agenda/item-list.html:31 -msgid "Project agenda" -msgstr "Проект повестки дня" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:35 -#: core/static/templates/core/projector-controls.html:287 -msgid "Project as overlay" -msgstr "Проект, как наложение" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:29 -#: core/static/templates/core/projector-controls.html:281 -msgid "Project as slide" -msgstr "Проект, как слайд-шоу" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:13 -msgid "Project current list of speakers" -msgstr "Текущий список спикеров проекта" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:10 -#: core/static/templates/core/projector-controls.html:263 -msgid "Project the current list of speakers" -msgstr "Текущий список спикеров проекта" - -#: core/static/templates/core/manage-projectors.html:69 -msgid "Projection defaults" -msgstr "Проекция по умолчанию" - -#: agenda/static/templates/agenda/item-detail.html:14 -#: agenda/static/templates/agenda/item-list.html:27 -#: agenda/static/templates/agenda/item-list.html:345 -#: core/static/js/core/projector.js:401 core/static/js/core/site.js:2108 -#: core/static/templates/index.html:194 core/static/templates/index.html:207 -#: core/static/templates/index.html:244 -#: core/static/templates/projector-button.html:2 -#: core/static/templates/projector-container.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:273 -#: motions/static/templates/motions/motion-detail.html:27 -#: users/static/js/users/site.js:1496 -msgid "Projector" -msgstr "Проектор" - -#: core/static/js/core/site.js:2121 -msgid "Projector header image" -msgstr "Изображение заголовка проектора" - -#: core/static/js/core/site.js:2109 -msgid "Projector language" -msgstr "Язык проектора" - -#: core/static/js/core/site.js:2120 -msgid "Projector logo" -msgstr "Логотип проектора" - -#: agenda/static/templates/agenda/item-list.html:153 -#: agenda/static/templates/agenda/item-list.html:428 -#: agenda/static/templates/agenda/item-list.html:464 -#: motions/static/js/motions/site.js:3291 -msgid "Public" -msgstr "Общественный" - -#: agenda/static/js/agenda/site.js:100 -#: agenda/static/templates/agenda/item-list.html:442 -msgid "Public item" -msgstr "" - -#: agenda/static/js/agenda/site.js:184 -#: agenda/static/templates/agenda/item-list.html:281 -msgid "Public items" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:177 -msgid "Publish" -msgstr "Опубликовать" - -#: assignments/static/js/assignments/site.js:931 -msgid "Put all candidates on the list of speakers" -msgstr "Поместить всех кандидатов в список спикеров" - -#: assignments/static/templates/assignments/assignment-detail.html:215 -msgid "Quorum" -msgstr "Кворум" - -#: assignments/static/templates/assignments/assignment-detail.html:249 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) not reached." -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:246 -msgid "" -"Quorum ({{ (option.getVoteYes() - option.majorityReached) | " -"number:votesPrecision }}) reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:484 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) not " -"reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:481 -msgid "" -"Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) " -"reached." -msgstr "" - -#: motions/static/js/motions/docx.js:96 motions/static/js/motions/pdf.js:393 -#: motions/static/js/motions/site.js:529 motions/static/js/motions/site.js:986 -#: motions/static/templates/motions/motion-detail.html:594 -#: motions/static/templates/motions/motion-import.html:25 -#: motions/static/templates/motions/motion-import.html:48 -#: motions/static/templates/motions/slide_motion.html:151 -#: motions/static/templates/motions/slide_motion.html:166 -msgid "Reason" -msgstr "Причина" - -#: motions/static/js/motions/site.js:860 -#: motions/static/templates/motions/motion-block-detail.html:53 -#: motions/static/templates/motions/motion-table-filters.html:41 -msgid "Recommendation" -msgstr "Рекомендация" - -#: motions/static/templates/motions/workflow-detail.html:89 -msgid "Recommendation label" -msgstr "" - -#: motions/static/js/motions/workflow.js:80 -msgid "Red" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:15 -#: motions/static/templates/motions/workflow-detail.html:18 -msgid "Reduce" -msgstr "Уменьшить" - -#: motions/static/js/motions/base.js:1636 -msgid "Refer to committee" -msgstr "Обратитесь в комитет" - -#: core/static/templates/core/manage-projectors.html:16 -msgid "Reference for current list of speakers" -msgstr "Ссылка на текущий список спикеров" - -#: motions/static/js/motions/base.js:1637 -msgid "Referral to committee" -msgstr "Направление в комитет" - -#: motions/static/js/motions/base.js:1610 -#: motions/static/js/motions/base.js:1625 -msgid "Reject" -msgstr "Отклонить" - -#: motions/static/js/motions/base.js:1641 -msgid "Reject (not authorized)" -msgstr "Отклонено (не авторизован)" - -#: motions/static/templates/motions/motion-detail/change-summary.html:11 -msgid "Reject all change recommendations" -msgstr "Отклонить все рекомендации по изменению" - -#: motions/static/templates/motions/motion-detail/change-summary.html:20 -#: motions/static/templates/motions/motion-detail/change-summary.html:45 -#: motions/static/templates/motions/motion-detail/view-diff.html:100 -#: motions/static/templates/motions/motion-detail/view-diff.html:16 -#: motions/static/templates/motions/motion-detail/view-diff.html:38 -#: motions/static/templates/motions/motion-detail/view-diff.html:71 -msgid "Rejected" -msgstr "Отклонено" - -#: motions/static/js/motions/base.js:1611 -#: motions/static/js/motions/base.js:1626 -msgid "Rejection" -msgstr "Отказ" - -#: motions/static/js/motions/base.js:1642 -msgid "Rejection (not authorized)" -msgstr "Отказ (не авторизован)" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:50 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:73 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:99 -#: core/static/templates/config-form-field.html:123 -#: core/static/templates/config-form-field.html:42 -#: motions/static/templates/motions/motion-submitters.html:23 -msgid "Remove" -msgstr "Удалить" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:19 -msgid "Remove all speakers" -msgstr "Удалить всех спикеров" - -#: motions/static/js/motions/site.js:3285 -msgid "" -"Remove all supporters of a motion if a submitter edits his motion in early " -"state" -msgstr "Удалить всех сторонников заявления, если податель редактирует исходное заявление" - -#: core/static/templates/core/projector-controls.html:137 -msgid "Remove countdown" -msgstr "Удалить отсчет" - -#: motions/static/templates/motions/motion-block-detail.html:62 -msgid "Remove from motion block" -msgstr "Удалить из блока заявлений" - -#: users/static/templates/users/user-list.html:115 -#: users/static/templates/users/user-list.html:84 -msgid "Remove group" -msgstr "Удалить группу" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:129 -#: assignments/static/templates/assignments/assignment-detail.html:122 -msgid "Remove me" -msgstr "Удалить меня" - -#: core/static/templates/core/projector-controls.html:228 -msgid "Remove message" -msgstr "Удалить сообщение" - -#: motions/static/js/motions/base.js:1495 motions/static/js/motions/pdf.js:280 -#: motions/static/js/motions/site.js:370 -#: motions/static/templates/motions/motion-detail/change-summary.html:18 -#: motions/static/templates/motions/motion-detail/change-summary.html:37 -msgid "Replacement" -msgstr "Замена" - -#: motions/static/templates/motions/motion-import.html:20 -#: topics/static/templates/topics/topic-import.html:48 -#: users/static/templates/users/user-import.html:48 -msgid "" -"Required comma or semicolon separated values with these column header names " -"in the first row" -msgstr "Требуемые значения с именами заголовков столбцов в первом ряду, разделённые запятой или точкой с запятой" - -#: assignments/static/js/assignments/site.js:925 -#: assignments/static/templates/assignments/assignment-detail.html:204 -#: motions/static/js/motions/site.js:3302 -#: motions/static/templates/motions/motion-detail.html:472 -msgid "Required majority" -msgstr "Необходимое большинство" - -#: motions/static/templates/motions/workflow-detail.html:142 -msgid "Required permission to see" -msgstr "" - -#: core/static/templates/config-form-field.html:147 -msgid "Reset" -msgstr "Сброс" - -#: core/static/templates/core/projector-controls.html:159 -msgid "Reset countdown" -msgstr "Сброс отсчета" - -#: motions/static/templates/motions/motion-amendment-list.html:311 -#: motions/static/templates/motions/motion-detail.html:246 -#: motions/static/templates/motions/motion-list.html:257 -msgid "Reset recommendation" -msgstr "Сброс рекомендации" - -#: core/static/templates/core/manage-projectors.html:170 -#: core/static/templates/core/projector-controls.html:94 -msgid "Reset scaling" -msgstr "Сброс масштабирования" - -#: core/static/templates/core/manage-projectors.html:190 -#: core/static/templates/core/projector-controls.html:114 -msgid "Reset scrolling" -msgstr "Сбросить прокрутки" - -#: motions/static/templates/motions/motion-amendment-list.html:272 -#: motions/static/templates/motions/motion-detail.html:204 -#: motions/static/templates/motions/motion-list.html:231 -msgid "Reset state" -msgstr "Сброс состояния" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:61 -msgid "Reset zoom" -msgstr "Сброс зума" - -#: motions/static/templates/motions/motion-detail/comments.html:42 -#: motions/static/templates/motions/motion-detail/personal-note.html:38 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:20 -#: motions/static/templates/motions/motion-detail/view-original.html:12 -msgid "Revert" -msgstr "Восстановить" - -#: core/static/js/core/site.js:2103 -msgid "Right" -msgstr "Направо" - -#: agenda/static/js/agenda/site.js:874 -msgid "Roman" -msgstr "Römisch" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:51 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:83 -msgid "Rotate clockwise" -msgstr "Вращаться по часовой стрелке" - -#: assignments/static/templates/assignments/assignment-form.html:15 -#: assignments/static/templates/assignments/assignmentpoll-form.html:15 -#: core/static/templates/core/projector-controls.html:193 -#: core/static/templates/core/projector-message-form.html:5 -#: core/static/templates/core/tag-form.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:16 -#: motions/static/templates/motions/category-form.html:10 -#: motions/static/templates/motions/change-recommendation-form.html:10 -#: motions/static/templates/motions/motion-block-form.html:10 -#: motions/static/templates/motions/motion-comment-form.html:9 -#: motions/static/templates/motions/motion-detail/comments.html:39 -#: motions/static/templates/motions/motion-detail/personal-note.html:35 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:17 -#: motions/static/templates/motions/motion-detail/view-original.html:9 -#: motions/static/templates/motions/motion-form.html:16 -#: motions/static/templates/motions/motion-poll-form.html:15 -#: motions/static/templates/motions/state-edit.html:21 -#: motions/static/templates/motions/workflow-edit.html:21 -#: topics/static/templates/topics/topic-form.html:10 -#: users/static/templates/users/group-edit.html:21 -#: users/static/templates/users/profile-password-form.html:9 -#: users/static/templates/users/user-form.html:10 -msgid "Save" -msgstr "Сохранить" - -#: mediafiles/static/js/mediafiles/image-plugin.js:197 -#: mediafiles/static/js/mediafiles/image-plugin.js:46 -msgid "Scale" -msgstr "Масштаб" - -#: core/static/templates/core/manage-projectors.html:107 -msgid "Scaling" -msgstr "Масштабирование" - -#: users/static/js/users/pdf.js:180 -msgid "Scan this QR code to connect to WLAN." -msgstr "Сканируйте этот QR-код для подключения к вай-фай." - -#: users/static/js/users/pdf.js:230 -msgid "Scan this QR code to open URL." -msgstr "Сканируйте этот QR-код, чтобы открыть URL." - -#: core/static/templates/core/manage-projectors.html:185 -#: core/static/templates/core/projector-controls.html:109 -msgid "Scroll down" -msgstr "Прокрутить вниз" - -#: core/static/templates/core/manage-projectors.html:180 -#: core/static/templates/core/projector-controls.html:104 -msgid "Scroll up" -msgstr "Прокрутить вверх" - -#: agenda/static/templates/agenda/item-list.html:303 -#: assignments/static/templates/assignments/assignment-list.html:172 -#: core/static/js/core/site.js:400 core/static/templates/index.html:164 -#: core/static/templates/search.html:11 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:230 -#: motions/static/templates/motions/motion-table-filters.html:235 -#: users/static/templates/users/user-list.html:280 -msgid "Search" -msgstr "Поиск" - -#: core/static/templates/search.html:3 -msgid "Search results" -msgstr "Результаты поиска" - -#: assignments/static/js/assignments/site.js:935 -msgid "Searching for candidates" -msgstr "Поиск кандидатов" - -#: agenda/static/templates/agenda/item-list.html:73 -#: assignments/static/templates/assignments/assignment-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:123 -#: motions/static/templates/motions/motion-amendment-list.html:64 -#: motions/static/templates/motions/motion-list.html:47 -#: users/static/templates/users/user-list.html:39 -msgid "Select ..." -msgstr "Выбрать ..." - -#: motions/static/templates/motions/motion-import.html:15 -#: topics/static/templates/topics/topic-import.html:43 -#: users/static/templates/users/user-import.html:43 -msgid "Select a CSV file" -msgstr "Выберите CSV-файл" - -#: core/static/templates/csv-import.html:8 -msgid "Select a file" -msgstr "Выберите файл" - -#: assignments/static/js/assignments/site.js:171 -#: motions/static/js/motions/motion-block.js:94 -#: motions/static/js/motions/site.js:556 topics/static/js/topics/site.js:133 -msgid "Select a parent item ..." -msgstr "Выберите родительский элемент ..." - -#: motions/static/js/motions/site.js:603 -msgid "Select or search a category ..." -msgstr "Выберите или найдите категорию ..." - -#: users/static/js/users/site.js:351 -msgid "Select or search a group ..." -msgstr "Выберите или найдите группу ..." - -#: motions/static/js/motions/site.js:617 -msgid "Select or search a motion block ..." -msgstr "Выберите или найдите блок заявлений ..." - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: mediafiles/static/js/mediafiles/forms.js:62 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "Select or search a participant ..." -msgstr "Выберите или найдите участника ..." - -#: motions/static/js/motions/site.js:495 -msgid "Select or search a submitter ..." -msgstr "Выберите или найдите подателя ..." - -#: motions/static/js/motions/site.js:654 -msgid "Select or search a supporter ..." -msgstr "Выберите или найдите сторонника ..." - -#: assignments/static/js/assignments/site.js:198 -#: motions/static/js/motions/site.js:640 -msgid "Select or search a tag ..." -msgstr "Выберите или найдите тег ..." - -#: motions/static/js/motions/site.js:669 -msgid "Select or search a workflow ..." -msgstr "Выберите или найдите рабочий процесс ..." - -#: motions/static/js/motions/site.js:589 topics/static/js/topics/site.js:118 -msgid "Select or search an attachment ..." -msgstr "Выберите или найдите вложение ..." - -#: core/static/templates/core/manage-projectors.html:13 -msgid "Select the projector to which the current list of speakers refers to." -msgstr "Выберите проектор, к которому относится текущий список ораторов." - -#: users/static/templates/users/user-list.html:142 -#: users/static/templates/users/user-list.html:89 -msgid "Send invitation emails" -msgstr "Отправить приглашения по электронной почте" - -#: core/static/templates/csv-import.html:27 -msgid "Separator" -msgstr "Разделитель" - -#: core/static/js/core/site.js:2099 -msgid "Separator used for all csv exports and examples" -msgstr "Сепаратор используется для всего CSV-экспорта и всех примеров" - -#: motions/static/js/motions/docx.js:93 motions/static/js/motions/pdf.js:549 -#: motions/static/js/motions/pdf.js:82 -#: motions/static/templates/motions/motion-detail.html:99 -msgid "Sequential number" -msgstr "Порядковый номер" - -#: motions/static/js/motions/site.js:3245 -msgid "Serially numbered" -msgstr "Серийно пронумерованный" - -#: motions/static/templates/motions/motion-list.html:305 -msgid "Set a category" -msgstr "Установить категорию" - -#: motions/static/templates/motions/motion-list.html:339 -msgid "Set a motion block" -msgstr "Установить блок заявлений" - -#: motions/static/templates/motions/motion-amendment-list.html:248 -#: motions/static/templates/motions/motion-detail.html:86 -#: motions/static/templates/motions/motion-list.html:210 -msgid "Set as favorite" -msgstr "Сделать фаворитом" - -#: motions/static/templates/motions/motion-amendment-list.html:118 -#: motions/static/templates/motions/motion-amendment-list.html:145 -#: motions/static/templates/motions/motion-list.html:107 -#: motions/static/templates/motions/motion-list.html:80 -msgid "Set category" -msgstr "Установить категорию" - -#: agenda/static/templates/agenda/item-list.html:502 -#: users/static/templates/users/user-list.html:435 -msgid "Set comment ..." -msgstr "Установить комментарий ..." - -#: agenda/static/templates/agenda/item-list.html:481 -msgid "Set duration ..." -msgstr "Установить продолжительность ..." - -#: users/static/templates/users/user-import.html:102 -msgid "Set global action" -msgstr "Установить глобальное действие" - -#: assignments/static/templates/assignments/assignment-detail.html:145 -msgid "Set hint for ballot paper ..." -msgstr "Установить подсказку на избирательный бюллетень ..." - -#: motions/static/js/motions/workflow.js:72 -msgid "Set identifier" -msgstr "" - -#: motions/static/js/motions/site.js:3246 -msgid "Set it manually" -msgstr "Установите его вручную" - -#: agenda/static/templates/agenda/item-list.html:512 -msgid "Set item number ..." -msgstr "Установить номер позиции ..." - -#: motions/static/templates/motions/motion-amendment-list.html:119 -#: motions/static/templates/motions/motion-amendment-list.html:158 -#: motions/static/templates/motions/motion-list.html:120 -#: motions/static/templates/motions/motion-list.html:81 -msgid "Set motion block" -msgstr "Установить блок заявлений" - -#: agenda/static/templates/agenda/item-list.html:148 -msgid "Set state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:117 -#: motions/static/templates/motions/motion-amendment-list.html:131 -#: motions/static/templates/motions/motion-list.html:79 -#: motions/static/templates/motions/motion-list.html:93 -msgid "Set status" -msgstr "Установить статус" - -#: users/static/templates/users/user-list.html:419 -msgid "Set structure level ..." -msgstr "Установить уровень структуры ..." - -#: agenda/static/templates/agenda/item-list.html:147 -#: agenda/static/templates/agenda/item-list.html:166 -msgid "Set visibility" -msgstr "" - -#: users/static/templates/users/user-list.html:88 -msgid "Set/Unset 'is a committee'" -msgstr "Установить/Отключить 'является комитет'" - -#: users/static/templates/users/user-list.html:86 -msgid "Set/Unset 'is active'" -msgstr "Установить/Отключить 'активен'" - -#: users/static/templates/users/user-list.html:87 -msgid "Set/Unset 'is present'" -msgstr "Установить/Отключить 'присутствует'" - -#: core/static/js/core/site.js:197 core/static/js/core/site.js:389 -#: core/static/templates/config.html:3 -msgid "Settings" -msgstr "Настройки" - -#: core/static/js/core/site.js:2087 -msgid "Short description of event" -msgstr "Короткое описание события" - -#: motions/static/js/motions/site.js:3271 -msgid "Show amendments together with motions" -msgstr "" - -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:6 -msgid "Show entire motion text" -msgstr "Показать весь текст заявления" - -#: assignments/static/js/assignments/site.js:183 -#: motions/static/js/motions/site.js:571 users/static/js/users/site.js:382 -msgid "Show extended fields" -msgstr "Показать дополнительные поля" - -#: motions/static/templates/motions/motion-detail/toolbar.html:59 -msgid "Show highlighted line also on projector." -msgstr "Показать также выделенный линию на проекторе." - -#: motions/static/templates/motions/motion-detail.html:642 -msgid "Show history" -msgstr "Показать историю" - -#: agenda/static/templates/agenda/item-sort.html:19 -msgid "Show internal items" -msgstr "Показать внутренние элементы" - -#: core/static/js/core/site.js:2105 -msgid "Show logo on projector" -msgstr "Отображать логотип на проэкторе" - -#: agenda/static/js/agenda/site.js:880 -msgid "Show orange countdown in the last x seconds of speaking time" -msgstr "Показать оранжевый отсчет в последние х секунд выступления" - -#: users/static/templates/users/user-change-password.html:43 -msgid "Show password" -msgstr "Показать пароль" - -#: motions/static/js/motions/workflow.js:77 -msgid "Show recommendation extension field" -msgstr "" - -#: motions/static/js/motions/workflow.js:75 -msgid "Show state extension field" -msgstr "" - -#: core/static/js/core/site.js:2113 -msgid "Show the clock on projector" -msgstr "Показывать часы на проекторе" - -#: core/static/js/core/site.js:2098 -msgid "Show this text on the login page" -msgstr "Показать этот текст на странице входа в систему" - -#: core/static/js/core/site.js:2111 -msgid "Show title and description of event on projector" -msgstr "Показать заголовок и описание события на проекторе" - -#: motions/static/js/motions/base.js:1604 -msgid "Simple Workflow" -msgstr "Простой рабочий процесс" - -#: assignments/static/js/assignments/site.js:927 -#: motions/static/js/motions/site.js:3304 -msgid "Simple majority" -msgstr "Простое большинство" - -#: core/static/templates/core/manage-projectors.html:160 -#: core/static/templates/core/projector-controls.html:84 -msgid "Smaller" -msgstr "Меньше" - -#: mediafiles/static/js/mediafiles/upload.js:128 -#: mediafiles/static/js/mediafiles/upload.js:150 -msgid "Some files could not be uploaded" -msgstr "Некоторые файлы не могут быть загружены" - -#: assignments/static/templates/assignments/assignment-list.html:148 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:207 -#: motions/static/templates/motions/category-list.html:44 -#: motions/static/templates/motions/motion-table-filters.html:202 -#: users/static/templates/users/user-list.html:257 -msgid "Sort" -msgstr "Сортировать" - -#: agenda/static/templates/agenda/item-list.html:79 -msgid "Sort ..." -msgstr "Сортировать ..." - -#: agenda/static/templates/agenda/item-sort.html:9 -msgid "Sort agenda" -msgstr "Сортировать повестку дня" - -#: motions/static/js/motions/site.js:3317 -msgid "Sort categories by" -msgstr "Сортировка категорий по" - -#: users/static/js/users/site.js:1848 -msgid "Sort name of participants by" -msgstr "Сортировка участников по" - -#: motions/static/templates/motions/motion-detail.html:146 -#: motions/static/templates/motions/motion-submitters.html:10 -msgid "Sort submitters" -msgstr "Сортировать подателей" - -#: assignments/static/templates/assignments/assignmentpoll-form.html:8 -#: motions/static/templates/motions/motion-poll-form.html:8 -msgid "Special values" -msgstr "Специальные значения" - -#: users/static/js/users/base.js:173 -msgid "Staff" -msgstr "Сотрудники" - -#: core/static/js/core/site.js:2104 -msgid "Standard font size in PDF" -msgstr "Стандартный размер шрифта в PDF" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:92 -#: core/static/templates/core/projector-controls.html:164 -msgid "Start" -msgstr "Старт" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:46 -#: core/static/templates/core/projector-controls.html:187 -msgid "Start time" -msgstr "Время начала" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:100 -msgid "Start/stop video" -msgstr "Старт/стоп видео" - -#: agenda/static/templates/agenda/item-list.html:250 -#: motions/static/js/motions/pdf.js:1115 motions/static/js/motions/pdf.js:114 -#: motions/static/js/motions/pdf.js:575 motions/static/js/motions/site.js:1429 -#: motions/static/js/motions/site.js:856 -#: motions/static/templates/motions/motion-block-detail.html:52 -#: motions/static/templates/motions/motion-detail.html:187 -#: motions/static/templates/motions/motion-detail.html:191 -#: motions/static/templates/motions/motion-table-filters.html:7 -#: motions/static/templates/motions/slide_motion.html:4 -msgid "State" -msgstr "Состояние" - -#: motions/static/js/motions/docx.js:95 -msgid "Status" -msgstr "Статус" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:66 -msgid "Stop" -msgstr "Стоп" - -#: motions/static/js/motions/site.js:3261 -msgid "Stop submitting new motions by non-staff users" -msgstr "Остановка подачи новых заявлений не являющихся сотрудниками пользователей" - -#: users/static/js/users/pdf.js:69 users/static/js/users/site.js:1282 -#: users/static/js/users/site.js:324 users/static/js/users/site.js:646 -#: users/static/templates/users/user-detail.html:28 -#: users/static/templates/users/user-import.html:53 -#: users/static/templates/users/user-import.html:86 -#: users/static/templates/users/user-list.html:425 -msgid "Structure level" -msgstr "Уровень структуры" - -#: core/static/js/core/site.js:132 core/static/js/core/site.js:133 -msgid "Submit" -msgstr "Отправить" - -#: motions/static/templates/motions/motion-import.html:26 -#: motions/static/templates/motions/motion-import.html:49 -msgid "Submitter" -msgstr "Податель" - -#: motions/static/js/motions/docx.js:94 motions/static/js/motions/pdf.js:100 -#: motions/static/js/motions/pdf.js:1110 motions/static/js/motions/pdf.js:563 -#: motions/static/js/motions/site.js:102 -#: motions/static/js/motions/site.js:1423 -#: motions/static/js/motions/site.js:492 motions/static/js/motions/site.js:855 -#: motions/static/templates/motions/motion-detail.html:143 -#: motions/static/templates/motions/motion-detail.html:145 -#: motions/static/templates/motions/slide_motion.html:14 -msgid "Submitters" -msgstr "Податели" - -#: motions/static/js/motions/pdf.js:291 -msgid "Summary of change recommendations" -msgstr "Резюме рекомендаций по изменению" - -#: motions/static/templates/motions/motion-detail/change-summary.html:4 -msgid "Summary of changes" -msgstr "Сводка изменений" - -#: motions/static/templates/motions/motion-detail.html:164 -msgid "Support motion" -msgstr "Суппорт заявлений" - -#: motions/static/js/motions/site.js:3282 -#: motions/static/js/motions/site.js:651 -#: motions/static/templates/motions/motion-amendment-list.html:385 -#: motions/static/templates/motions/motion-detail.html:156 -#: motions/static/templates/motions/motion-list.html:419 -msgid "Supporters" -msgstr "Сторонники" - -#: users/static/js/users/site.js:1852 users/static/js/users/site.js:304 -#: users/static/js/users/site.js:636 -#: users/static/templates/users/user-import.html:52 -#: users/static/templates/users/user-import.html:85 -msgid "Surname" -msgstr "Фамилия" - -#: users/static/js/users/site.js:1858 -msgid "System URL" -msgstr "URL системы" - -#: assignments/static/js/assignments/pdf.js:552 -#: motions/static/js/motions/docx.js:52 motions/static/js/motions/pdf.js:872 -msgid "Table of contents" -msgstr "Содержание" - -#: assignments/static/templates/assignments/assignment-list.html:105 -#: motions/static/templates/motions/motion-table-filters.html:141 -msgid "Tag" -msgstr "Тэг" - -#: assignments/static/js/assignments/site.js:195 -#: assignments/static/templates/assignments/assignment-detail.html:55 -#: assignments/static/templates/assignments/assignment-list.html:10 -#: core/static/js/core/site.js:410 core/static/templates/core/tag-list.html:13 -#: motions/static/js/motions/site.js:637 -#: motions/static/templates/motions/motion-detail.html:340 -#: motions/static/templates/motions/motion-detail.html:344 -#: motions/static/templates/motions/motion-list.html:27 -msgid "Tags" -msgstr "Тэги" - -#: motions/static/js/motions/site.js:518 motions/static/js/motions/site.js:985 -#: motions/static/templates/motions/motion-import.html:24 -#: motions/static/templates/motions/motion-import.html:47 -#: topics/static/js/topics/site.js:103 -#: topics/static/templates/topics/topic-import.html:51 -#: topics/static/templates/topics/topic-import.html:70 -msgid "Text" -msgstr "Текст" - -#: motions/static/js/motions/site.js:392 -msgid "Text from line %from% to %to%" -msgstr "Текст строки от %from% до %to%" - -#: motions/static/js/motions/site.js:391 -msgid "Text in line %from%" -msgstr "Текст в строке %from%" - -#: motions/static/js/motions/site.js:3296 -msgid "The 100 % base of a voting result consists of" -msgstr " 100% основного результата голосования состоит из" - -#: assignments/static/js/assignments/site.js:910 -msgid "The 100-%-base of an election result consists of" -msgstr "100-%-база результата выборов состоит из" - -#: motions/static/js/motions/site.js:3248 -msgid "The assembly may decide:" -msgstr "Собрание может принять решение:" - -#: core/static/js/core/site.js:1847 -msgid "The delete was successful." -msgstr " Успешно удалено." - -#: core/static/templates/privacypolicydialog.html:3 -msgid "The event manager hasn't set up a privacy policy yet." -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:26 -msgid "The list of speakers is empty." -msgstr "Список спикеров пуст." - -#: motions/static/js/motions/site.js:3257 -msgid "" -"The maximum number of characters per line. Relevant when line numbering is " -"enabled. Min: 40" -msgstr "Максимальное количество символов в строке. Действительно, когда нумерация строк включена. Мин: 40" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:16 -msgid "The modified final version have been changed." -msgstr "" - -#: motions/static/templates/motions/motion-detail/personal-note.html:34 -msgid "The personal note has been changed." -msgstr "Личная заметка была изменена." - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:364 -msgid "" -"The projector header should have a default size of 1024x70px. Adapt the " -"image width if you change the projector resolution." -msgstr "Заголовок проектора должен иметь размер по умолчанию 1024x70px. Адаптируйте ширину изображения, если вы измените разрешение проектора." - -#: core/static/js/core/base.js:794 -msgid "The server didn't respond." -msgstr "Сервер не ответил." - -#: motions/static/templates/motions/motion-detail/view-original.html:8 -msgid "The text or reason have been changed." -msgstr "Текст или причина были изменены." - -#: motions/static/js/motions/site.js:3274 -msgid "The title of the motion is always applied." -msgstr "Название заявления всегда применяется." - -#: users/static/js/users/site.js:830 -msgid "" -"The user %user% has no email, so the invitation email could not be send." -msgstr "Пользователь %user% не имеет электронной почты, поэтому письмо с приглашением не может быть отправлено." - -#: users/static/js/users/site.js:832 -msgid "" -"The users %user% have no email, so the invitation emails could not be send." -msgstr "Пользователи %user% не имеют электронной почты, поэтому письма с приглашениями не могут быть отправлены." - -#: users/static/js/users/site.js:1265 -msgid "There are more than one duplicates of this user!" -msgstr "Есть более одного дубликата этого пользователя!" - -#: motions/static/templates/motions/motion-detail/view-diff.html:57 -msgid "This change collides with another one." -msgstr "Это изменение сталкивается с другим." - -#: motions/static/templates/motions/motion-detail.html:620 -msgid "This is the last active version." -msgstr "Это последняя активная версия." - -#: agenda/static/js/agenda/site.js:869 -msgid "This prefix will be set if you run the automatic agenda numbering." -msgstr "Этот префикс будет установлен, если вы запустите автоматическую нумерацию повестки дня." - -#: motions/static/templates/motions/motion-detail.html:96 -msgid "This version is not permitted." -msgstr "Эта версия не допускается." - -#: assignments/static/js/assignments/site.js:929 -#: motions/static/js/motions/site.js:3306 -msgid "Three-quarters majority" -msgstr "Три четверти большинства" - -#: assignments/static/js/assignments/site.js:129 -#: assignments/static/js/assignments/site.js:335 -#: mediafiles/static/js/mediafiles/forms.js:44 -#: mediafiles/static/js/mediafiles/list.js:100 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:24 -#: motions/static/js/motions/motion-block.js:79 -#: motions/static/js/motions/pdf.js:264 motions/static/js/motions/site.js:1421 -#: motions/static/js/motions/site.js:506 -#: motions/static/templates/motions/motion-detail/change-summary.html:17 -#: motions/static/templates/motions/motion-import.html:23 -#: motions/static/templates/motions/motion-import.html:46 -#: topics/static/js/topics/site.js:95 -#: topics/static/templates/topics/topic-import.html:50 -#: topics/static/templates/topics/topic-import.html:69 -#: users/static/js/users/site.js:288 -#: users/static/templates/users/user-import.html:50 -#: users/static/templates/users/user-import.html:83 -msgid "Title" -msgstr "Название" - -#: motions/static/js/motions/site.js:3315 -msgid "Title for PDF and DOCX documents (all motions)" -msgstr "Заголовок для PDF и DOCX документов (все заявления)" - -#: assignments/static/js/assignments/site.js:932 -msgid "Title for PDF document (all elections)" -msgstr "Заголовок PDF-Документа (все выборы)" - -#: users/static/js/users/site.js:1855 -msgid "Title for access data and welcome PDF" -msgstr "Название для доступа к данным и приветствия PDF" - -#: topics/static/templates/topics/topic-import.html:56 -msgid "Title is required. All other fields are optional and may be empty." -msgstr "Необходимо указать название. Все остальные поля не являются обязательными и могут быть пустыми." - -#: motions/static/js/motions/site.js:360 -msgid "To Line" -msgstr "К строке" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:76 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:93 -msgid "Toggle fullscreen" -msgstr "Включить полноэкранный режим" - -#: topics/static/js/topics/base.js:16 topics/static/js/topics/site.js:161 -#: topics/static/templates/topics/topic-detail.html:25 -msgid "Topic" -msgstr "Тема" - -#: topics/static/js/topics/site.js:17 -msgid "Topics" -msgstr "Темы" - -#: motions/static/js/motions/site.js:539 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:25 -#: motions/static/templates/motions/motion-detail/view-original.html:17 -msgid "Trivial change" -msgstr "Тривиальное изменение" - -#: assignments/static/js/assignments/site.js:928 -#: motions/static/js/motions/site.js:3305 -msgid "Two-thirds majority" -msgstr "Две трети большинства" - -#: mediafiles/static/js/mediafiles/list.js:102 -msgid "Type" -msgstr "Тип" - -#: motions/static/templates/motions/motion-detail.html:169 -msgid "Unsupport motion" -msgstr "Не поддерживаемое заявление" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:87 -msgid "Upload" -msgstr "Загрузить" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:1 -msgid "Upload files" -msgstr "Загрузить файлы" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:33 -msgid "Upload status" -msgstr "Статус загрузки" - -#: mediafiles/static/js/mediafiles/list.js:106 -msgid "Upload time" -msgstr "Время загрузки" - -#: mediafiles/static/js/mediafiles/forms.js:59 -#: mediafiles/static/js/mediafiles/list.js:108 -msgid "Uploaded by" -msgstr "Загружено пользователем" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:30 -msgid "Uploader" -msgstr "Загрузчик" - -#: assignments/static/js/assignments/site.js:923 -#: motions/static/js/motions/site.js:3311 -msgid "Use the following custom number" -msgstr "Использовать следующий пользовательский номер" - -#: users/static/js/users/site.js:1876 -msgid "" -"Use these placeholders: {name}, {event_name}, {url}, {username}, {password}." -" The url referrs to the system url." -msgstr "Используйте эти заполнители: {name}, {event_name}, {url}, {username}, {password}. URL ссылается на системный url." - -#: users/static/js/users/site.js:1859 -msgid "Used for QRCode in PDF of access data." -msgstr "Используется для QR-Код в PDF данных доступа." - -#: users/static/js/users/site.js:1861 users/static/js/users/site.js:1863 -#: users/static/js/users/site.js:1865 -msgid "Used for WLAN QRCode in PDF of access data." -msgstr "Используется для WLAN QR-Код в PDF данных доступа." - -#: core/static/templates/core/login-form.html:12 -#: users/static/js/users/pdf.js:193 users/static/js/users/site.js:1283 -#: users/static/js/users/site.js:340 users/static/js/users/site.js:463 -#: users/static/templates/users/user-change-password.html:41 -#: users/static/templates/users/user-detail.html:46 -msgid "Username" -msgstr "Имя пользователя" - -#: motions/static/templates/motions/motion-import.html:123 -msgid "Users created" -msgstr "Пользователи созданы" - -#: users/static/templates/users/group-list.html:35 -msgid "Users without any assigned group gain the permissions from this group." -msgstr "Пользователи, не входящие в какою-либо группу, получают разрешения от этой группы." - -#: assignments/static/js/assignments/site.js:826 -#: assignments/static/templates/assignments/assignment-detail.html:268 -#: assignments/static/templates/assignments/slide_assignment.html:82 -msgid "Valid ballots" -msgstr "Действительные бюллетени" - -#: motions/static/js/motions/pdf.js:209 motions/static/js/motions/site.js:790 -#: motions/static/templates/motions/motion-detail.html:441 -msgid "Valid votes" -msgstr "Действительные голоса" - -#: motions/static/templates/motions/motion-detail.html:613 -#: motions/static/templates/motions/motion-detail.html:616 -msgid "Version" -msgstr "Версия" - -#: motions/static/templates/motions/motion-detail.html:609 -msgid "Version history" -msgstr "История версий" - -#: motions/static/js/motions/workflow.js:68 -msgid "Versioning" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:274 -msgid "Visibility" -msgstr "" - -#. ballot of a motion -#: motions/static/js/motions/pdf.js:186 -#: motions/static/templates/motions/motion-detail.html:372 -#: motions/static/templates/motions/motion-poll-form.html:1 -#: motions/static/templates/motions/slide_motion.html:24 -msgid "Vote" -msgstr "Голос" - -#: assignments/static/js/assignments/pdf.js:154 -#: assignments/static/templates/assignments/assignment-detail.html:214 -#: assignments/static/templates/assignments/slide_assignment.html:37 -msgid "Votes" -msgstr "Голоса" - -#: motions/static/js/motions/pdf.js:223 motions/static/js/motions/site.js:808 -#: motions/static/templates/motions/motion-detail.html:459 -msgid "Votes cast" -msgstr "Количество голосовавших" - -#: assignments/static/js/assignments/site.js:936 -msgid "Voting" -msgstr "Голосование" - -#: motions/static/js/motions/site.js:3295 -msgid "Voting and ballot papers" -msgstr "Голосование и избирательные бюллетени" - -#: motions/static/js/motions/pdf.js:231 motions/static/js/motions/site.js:887 -#: motions/static/templates/motions/motion-detail.html:367 -#: motions/static/templates/motions/slide_motion.html:20 -msgid "Voting result" -msgstr "Результат голосования" - -#: users/static/js/users/site.js:1866 -msgid "WEP" -msgstr "WEP" - -#: users/static/js/users/pdf.js:137 -msgid "WLAN access data" -msgstr "WLAN Данные доступа " - -#: users/static/js/users/pdf.js:157 users/static/js/users/site.js:1864 -msgid "WLAN encryption" -msgstr "WLAN шифрование" - -#: users/static/js/users/pdf.js:141 users/static/js/users/site.js:1860 -msgid "WLAN name (SSID)" -msgstr "WLAN имя (SSID)" - -#: users/static/js/users/pdf.js:149 users/static/js/users/site.js:1862 -msgid "WLAN password" -msgstr "WLAN пароль" - -#: users/static/js/users/site.js:1867 -msgid "WPA/WPA2" -msgstr "WPA/WPA2" - -#: assignments/static/templates/assignments/slide_assignment.html:29 -msgid "Waiting for results ..." -msgstr "Ожидание результатов ..." - -#: core/static/js/core/site.js:747 -msgid "Warning" -msgstr "Предупреждение" - -#: core/static/js/core/site.js:2126 -msgid "Web interface header logo" -msgstr "Логотип заголовка веб-интерфейса" - -#: core/static/js/core/site.js:2094 users/static/js/users/site.js:1854 -msgid "Welcome to OpenSlides" -msgstr "Добро пожаловать в OpenSlides" - -#: motions/static/js/motions/site.js:3265 -msgid "" -"Will be displayed as label before selected recommendation. Use an empty " -"value to disable the recommendation system." -msgstr "Будет отображаться в качестве метки перед выбранной рекомендацией. Используйте пустое значение, чтобы отключить систему рекомендаций." - -#: motions/static/js/motions/base.js:1628 -msgid "Withdraw" -msgstr "Отозван" - -#: motions/static/js/motions/site.js:665 -msgid "Workflow" -msgstr "Рабочий процесс" - -#: motions/static/js/motions/site.js:3242 -msgid "Workflow of new motions" -msgstr "Рабочий процесс новых заявлений" - -#: motions/static/js/motions/site.js:199 -#: motions/static/templates/motions/motion-list.html:23 -#: motions/static/templates/motions/workflow-list.html:13 -msgid "Workflows" -msgstr "" - -#: motions/static/js/motions/workflow.js:82 -msgid "Yellow" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:317 -#: assignments/static/js/assignments/site.js:611 -#: assignments/static/js/assignments/site.js:729 -#: motions/static/js/motions/pdf.js:193 motions/static/js/motions/pdf.js:739 -#: motions/static/js/motions/site.js:760 -#: motions/static/templates/motions/motion-detail.html:405 -#: motions/static/templates/motions/slide_motion.html:32 -msgid "Yes" -msgstr "Да" - -#: motions/static/js/motions/site.js:3298 -msgid "Yes/No" -msgstr "Да/Нет" - -#: assignments/static/js/assignments/site.js:916 -#: assignments/static/templates/assignments/assignment-detail.html:289 -msgid "Yes/No per candidate" -msgstr "Да/Нет на одного кандидата" - -#: motions/static/js/motions/site.js:3297 -msgid "Yes/No/Abstain" -msgstr "Да/Нет/Воздержаться" - -#: assignments/static/js/assignments/site.js:915 -#: assignments/static/templates/assignments/assignment-detail.html:288 -msgid "Yes/No/Abstain per candidate" -msgstr "Да/Нет/Воздержитесь на одного кандидата" - -#: users/static/templates/users/group-list.html:69 -msgid "You are not allowed to lock yourself out of the configuration!" -msgstr "Вы не можете запереть себя из конфигурации!" - -#: core/static/js/core/site.js:2106 -msgid "" -"You can replace the logo by uploading an image and set it as the \"Projector" -" logo\" in \"files\"." -msgstr "Вы можете заменить логотип, загрузив изображение и установив его как \"Логотип проектора\" в \"файлах\"." - -#: users/static/js/users/site.js:1873 -msgid "You can use {event_name} as a placeholder." -msgstr "Вы можете использовать {event_name} в качестве заполнителя." - -#: users/static/js/users/site.js:1736 -msgid "You have to enable cookies to use OpenSlides." -msgstr "Вы должны включить куки для пользования OpenSlides." - -#: users/static/templates/users/user-change-password.html:17 -msgid "You override the personally set password of" -msgstr "Вы изменяете установленный персональный пароль от" - -#: users/static/js/users/site.js:1872 -msgid "Your login for {event_name}" -msgstr "Ваш логин для {event_name}" - -#: motions/static/js/motions/pdf.js:1376 -msgid "ZIP successfully generated." -msgstr "ZIP успешно создан." - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:66 -msgid "Zoom in" -msgstr "Увеличить" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:57 -msgid "Zoom out" -msgstr "Уменьшить" - -#: agenda/static/js/agenda/site.js:883 -msgid "[Begin speech] starts the countdown, [End speech] stops the countdown." -msgstr "[Начало речи] начинает обратный отсчет, [Конец речи] останавливает отсчет времени." - -#: users/static/js/users/site.js:1856 -msgid "[Place for your welcome and help text.]" -msgstr "[Место для приветствия и текста справки.]" - -#: core/static/js/core/site.js:2096 -msgid "[Space for your welcome text.]" -msgstr "[Место для вашего текста приветствия.]" - -#: motions/static/js/motions/base.js:1606 -#: motions/static/js/motions/base.js:1621 -msgid "accepted" -msgstr "принято" - -#: motions/static/js/motions/base.js:1629 -msgid "adjourned" -msgstr "отложено" - -#: topics/static/js/topics/csv.js:26 -msgid "agenda-example" -msgstr "Пример повестки дня" - -#: users/static/js/users/site.js:1284 -msgid "already exists." -msgstr "уже существует." - -#: motions/static/templates/motions/motion-amendment-list.html:175 -#: motions/static/templates/motions/motion-list.html:438 -msgid "amendments" -msgstr "поправки" - -#: users/static/js/users/site.js:852 -msgid "and" -msgstr "и" - -#: core/static/js/core/site.js:753 -msgid "anonymous users are also editing this." -msgstr "анонимные пользователи также редактируют это." - -#: core/static/js/core/site.js:770 -msgid "are also editing this." -msgstr "также редактируют это." - -#: motions/static/js/motions/pdf.js:1392 -msgid "ballot-paper" -msgstr "бюллетень" - -#: motions/static/templates/motions/motion-amendment-list.html:320 -#: motions/static/templates/motions/motion-list.html:267 -msgid "by" -msgstr "по" - -#: core/static/js/core/site.js:46 -msgid "clear" -msgstr "очистить" - -#: core/static/js/core/site.js:58 -msgid "close" -msgstr "закрыть" - -#: users/static/js/users/site.js:1178 -msgid "create duplicate" -msgstr "создать дубликат" - -#: core/static/js/core/site.js:50 -msgid "date" -msgstr "дата" - -#: motions/static/templates/motions/motion-table-filters.html:25 -#: motions/static/templates/motions/motion-table-filters.html:263 -msgid "done" -msgstr "Готово" - -#: users/static/templates/users/user-import.html:97 -msgid "duplicate" -msgstr "дубликат" - -#: users/static/templates/users/user-import.html:210 -#: users/static/templates/users/user-import.html:98 -msgid "duplicates" -msgstr "дубликаты" - -#: assignments/static/templates/assignments/assignment-list.html:66 -msgid "elections" -msgstr "выборы" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:144 -msgid "files" -msgstr "файлы" - -#: motions/static/templates/motions/motion-detail/toolbar.html:53 -msgid "go" -msgstr "идти" - -#. 'h' means time in hours -#: agenda/static/templates/agenda/item-list.html:484 -#: agenda/static/templates/agenda/item-list.html:492 -msgid "h" -msgstr "ч" - -#: topics/static/templates/topics/topic-import.html:27 -msgid "imported" -msgstr "импортный" - -#: motions/static/js/motions/site.js:932 motions/static/js/motions/site.js:945 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:17 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:43 -msgid "inline" -msgstr "в очереди" - -#: motions/static/js/motions/docx.js:168 motions/static/js/motions/pdf.js:1421 -#: motions/static/js/motions/pdf.js:425 -#: motions/static/templates/motions/motion-detail/comments.html:25 -msgid "internal" -msgstr "внутренний" - -#: core/static/js/core/site.js:768 -msgid "is also editing this." -msgstr "также редактирует это." - -#: assignments/static/js/assignments/pdf.js:223 -#: assignments/static/templates/assignments/assignment-detail.html:224 -#: assignments/static/templates/assignments/assignment-detail.html:95 -#: assignments/static/templates/assignments/slide_assignment.html:23 -#: assignments/static/templates/assignments/slide_assignment.html:44 -msgid "is elected" -msgstr "избран" - -#: assignments/static/templates/assignments/assignment-detail.html:227 -msgid "is not elected" -msgstr "не избран" - -#: users/static/js/users/site.js:1106 -msgid "is now" -msgstr "сейчас" - -#: motions/static/templates/motions/motion-table-filters.html:124 -msgid "is set" -msgstr "установлен" - -#: agenda/static/templates/agenda/item-list.html:193 -msgid "items" -msgstr "пункты" - -#: users/static/js/users/site.js:1176 -msgid "keep original" -msgstr "сохранить оригинал" - -#: assignments/static/js/assignments/base.js:280 -#: assignments/static/js/assignments/base.js:50 -#: assignments/static/templates/assignments/assignmentpoll-form.html:9 -#: motions/static/js/motions/base.js:157 -#: motions/static/templates/motions/motion-poll-form.html:9 -msgid "majority" -msgstr "большинство" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:45 -msgid "minutes" -msgstr "минут" - -#: motions/static/js/motions/csv.js:42 motions/static/js/motions/docx.js:188 -#: motions/static/js/motions/pdf.js:1325 motions/static/js/motions/pdf.js:1338 -#: motions/static/templates/motions/motion-block-detail.html:44 -#: motions/static/templates/motions/motion-list.html:137 -msgid "motions" -msgstr "заявления" - -#: motions/static/templates/motions/motion-import.html:122 -msgid "motions were successfully imported." -msgstr "заявления были успешно импортированы." - -#: motions/static/templates/motions/motion-import.html:115 -msgid "motions will be imported." -msgstr "заявления будут импортированы." - -#: motions/static/templates/motions/motion-import.html:110 -msgid "motions will be not imported." -msgstr "заявления не будут импортированы." - -#: motions/static/js/motions/csv.js:126 -msgid "motions-example" -msgstr "Пример заявления" - -#: motions/static/js/motions/site.js:3321 -msgid "needed" -msgstr "необходимый" - -#: motions/static/js/motions/base.js:1638 -msgid "needs review" -msgstr "требует пересмотра" - -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:11 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:37 -msgid "none" -msgstr "никто" - -#: motions/static/js/motions/base.js:1632 -msgid "not concerned" -msgstr "не касается" - -#: motions/static/js/motions/base.js:1612 -msgid "not decided" -msgstr "не решено" - -#: core/static/js/core/site.js:38 -msgid "now" -msgstr "в настоящее время" - -#: agenda/static/js/agenda/site.js:563 agenda/static/js/agenda/site.js:836 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:47 -msgid "of" -msgstr "из" - -#: motions/static/js/motions/site.js:933 motions/static/js/motions/site.js:946 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:23 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:49 -msgid "outside" -msgstr "вне" - -#: users/static/js/users/site.js:1177 -msgid "override new" -msgstr "переопределить новый" - -#: users/static/js/users/csv.js:44 -#: users/static/templates/users/user-list.html:150 -msgid "participants" -msgstr "участники" - -#: users/static/templates/users/user-import.html:225 -msgid "participants were successfully imported." -msgstr "участники были успешно импортированы." - -#: users/static/templates/users/user-import.html:215 -msgid "participants will be imported." -msgstr "участники будут импортированы." - -#: users/static/templates/users/user-import.html:205 -msgid "participants will be not imported." -msgstr "участники не будут импортированы." - -#: users/static/js/users/csv.js:68 -msgid "participants-example" -msgstr "Пример участников" - -#: motions/static/js/motions/base.js:1618 -msgid "permitted" -msgstr "разрешено" - -#: motions/static/js/motions/site.js:2057 -msgid "personal note" -msgstr "личная заметка" - -#: motions/static/js/motions/base.js:1617 -msgid "published" -msgstr "опубликовано" - -#: motions/static/js/motions/base.js:1635 -msgid "refered to committee" -msgstr "отнесено к комитету" - -#: motions/static/js/motions/base.js:1609 -#: motions/static/js/motions/base.js:1624 -msgid "rejected" -msgstr "отвергнуто" - -#: motions/static/js/motions/base.js:1640 -msgid "rejected (not authorized)" -msgstr "отклонено (не авторизован)" - -#: core/static/templates/search.html:28 -msgid "results" -msgstr "результаты" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:11 -msgid "select files" -msgstr "Выберите файлы" - -#: agenda/static/templates/agenda/item-list.html:194 -#: assignments/static/templates/assignments/assignment-list.html:67 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:176 -#: motions/static/templates/motions/motion-list.html:138 -#: users/static/templates/users/user-list.html:151 -msgid "selected" -msgstr "выбранный" - -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:8 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:9 -#: motions/static/templates/motions/motion-list.html:430 -msgid "speakers" -msgstr "спикеры" - -#: motions/static/js/motions/base.js:1605 -msgid "submitted" -msgstr "отправлено" - -#: core/static/js/core/site.js:54 -msgid "time" -msgstr "время" - -#: core/static/js/core/site.js:42 -msgid "today" -msgstr "сегодня" - -#: topics/static/templates/topics/topic-import.html:116 -msgid "topics were successfully imported." -msgstr "темы были успешно импортированы." - -#: topics/static/templates/topics/topic-import.html:109 -msgid "topics will be imported." -msgstr "темы будут импортированы." - -#: topics/static/templates/topics/topic-import.html:104 -msgid "topics will be not imported." -msgstr "темы не будут импортированы." - -#: mediafiles/static/js/mediafiles/resources.js:141 -msgid "undefined" -msgstr "не определено" - -#: assignments/static/js/assignments/base.js:283 -#: assignments/static/js/assignments/base.js:53 -#: assignments/static/templates/assignments/assignmentpoll-form.html:10 -#: motions/static/js/motions/base.js:160 -#: motions/static/templates/motions/motion-poll-form.html:10 -msgid "undocumented" -msgstr "незадокументированно" - -#: motions/static/templates/motions/motion-table-filters.html:269 -#: motions/static/templates/motions/motion-table-filters.html:31 -msgid "undone" -msgstr "отменить" - -#: motions/static/js/motions/base.js:1627 -msgid "withdrawed" -msgstr "отозваны" diff --git a/openslides/locale/angular-gettext/template-en.pot b/openslides/locale/angular-gettext/template-en.pot deleted file mode 100644 index 9e7e82163..000000000 --- a/openslides/locale/angular-gettext/template-en.pot +++ /dev/null @@ -1,4465 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Project-Id-Version: \n" - -#: motions/static/templates/motions/motion-detail.html:47 -msgctxt "resolution" -msgid "Final version" -msgstr "" - -#: core/static/templates/csv-import.html:16 -msgctxt "special filetypes in a file open dialog" -msgid "Accepted file types" -msgstr "" - -#: motions/static/js/motions/base.js:1483 -msgid "%TYPE% from line %FROM% to %TO%" -msgstr "" - -#: motions/static/js/motions/base.js:1485 -msgid "%TYPE% in line %FROM%" -msgstr "" - -#: users/static/js/users/site.js:822 -msgid "%num% emails were send sucessfully." -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:115 -#: motions/static/templates/motions/motion-list.html:77 -#: users/static/templates/users/user-list.html:81 -msgid "--- Select action ---" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:135 -#: motions/static/templates/motions/motion-list.html:97 -msgid "--- Select category ---" -msgstr "" - -#: users/static/templates/users/user-list.html:102 -msgid "--- Select group ---" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:149 -#: motions/static/templates/motions/motion-list.html:111 -msgid "--- Select motion block ---" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:45 -msgid "--- Select phase ---" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:123 -#: motions/static/templates/motions/motion-list.html:85 -msgid "--- Select state ---" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:152 -msgid "--- Select visibility ---" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:70 -msgid "--- Set phase ---" -msgstr "" - -#: core/static/js/core/site.js:2081 -msgid "OpenSlides is a free web based presentation and assembly system for visualizing and controlling agenda, motions and elections of an assembly." -msgstr "" - -#: motions/static/js/motions/base.js:239 -msgid "" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:38 -msgid "A comment has been changed." -msgstr "" - -#: core/static/js/core/base.js:798 -msgid "A server error occurred (%%code%%). Please check the system logs." -msgstr "" - -#: users/static/js/users/site.js:426 -#: users/static/js/users/site.js:478 -#: users/static/templates/users/user-detail.html:40 -msgid "About me" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:332 -#: assignments/static/js/assignments/site.js:613 -#: assignments/static/js/assignments/site.js:758 -#: assignments/static/js/assignments/site.js:799 -#: assignments/static/templates/assignments/assignment-detail.html:256 -#: assignments/static/templates/assignments/slide_assignment.html:72 -#: motions/static/js/motions/pdf.js:203 -#: motions/static/js/motions/pdf.js:741 -#: motions/static/js/motions/site.js:780 -#: motions/static/templates/motions/motion-detail.html:429 -#: motions/static/templates/motions/slide_motion.html:56 -msgid "Abstain" -msgstr "" - -#: motions/static/js/motions/base.js:1607 -#: motions/static/js/motions/base.js:1622 -msgid "Accept" -msgstr "" - -#: motions/static/js/motions/base.js:1608 -#: motions/static/js/motions/base.js:1623 -msgid "Acceptance" -msgstr "" - -#: motions/static/templates/motions/motion-detail/change-summary.html:46 -msgid "Accepted" -msgstr "" - -#: motions/static/templates/motions/state-edit.html:14 -#: motions/static/templates/motions/workflow-detail.html:70 -msgid "Action word" -msgstr "" - -#: motions/static/js/motions/site.js:3270 -msgid "Activate amendments" -msgstr "" - -#: users/static/js/users/site.js:598 -#: users/static/js/users/site.js:640 -msgid "Active" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:285 -#: motions/static/templates/motions/motion-list.html:373 -msgid "Add a tag" -msgstr "" - -#: core/static/templates/core/projector-controls.html:208 -msgid "Add countdown" -msgstr "" - -#: users/static/templates/users/user-list.html:109 -#: users/static/templates/users/user-list.html:83 -msgid "Add group" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:125 -#: assignments/static/templates/assignments/assignment-detail.html:118 -msgid "Add me" -msgstr "" - -#: core/static/templates/core/projector-controls.html:248 -msgid "Add message" -msgstr "" - -#: core/static/templates/config-form-field.html:50 -msgid "Add new comment field" -msgstr "" - -#: core/static/templates/core/projector-controls.html:209 -msgid "Add new countdown" -msgstr "" - -#: core/static/templates/config-form-field.html:131 -msgid "Add new custom translation" -msgstr "" - -#: core/static/templates/core/projector-controls.html:249 -msgid "Add new message" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:32 -msgid "Additional columns after the required ones may be present and won't affect the import." -msgstr "" - -#: motions/static/js/motions/base.js:1630 -msgid "Adjourn" -msgstr "" - -#: motions/static/js/motions/base.js:1631 -msgid "Adjournment" -msgstr "" - -#: users/static/templates/users/user-detail.html:45 -msgid "Administrative data" -msgstr "" - -#: agenda/static/js/agenda/base.js:41 -#: agenda/static/js/agenda/csv.js:35 -#: agenda/static/js/agenda/docx.js:56 -#: agenda/static/js/agenda/docx.js:64 -#: agenda/static/js/agenda/pdf.js:15 -#: agenda/static/js/agenda/pdf.js:81 -#: agenda/static/js/agenda/site.js:20 -#: agenda/static/js/agenda/site.js:32 -#: agenda/static/js/agenda/site.js:50 -#: agenda/static/js/agenda/site.js:870 -#: agenda/static/templates/agenda/item-detail.html:6 -#: agenda/static/templates/agenda/item-list.html:35 -#: agenda/static/templates/agenda/item-list.html:61 -#: agenda/static/templates/agenda/slide-item-list.html:2 -msgid "Agenda" -msgstr "" - -#: agenda/static/js/agenda/site.js:885 -#: agenda/static/js/agenda/site.js:98 -msgid "Agenda visibility" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:247 -msgid "All Filters" -msgstr "" - -#: assignments/static/js/assignments/site.js:918 -#: motions/static/js/motions/site.js:3300 -msgid "All casted ballots" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:28 -#: motions/static/templates/motions/motion-amendment-list.html:35 -msgid "All motions" -msgstr "" - -#: assignments/static/js/assignments/site.js:917 -#: motions/static/js/motions/site.js:3299 -msgid "All valid ballots" -msgstr "" - -#: users/static/templates/users/group-list.html:19 -msgid "All your changes are saved immediately. Changes you make are only effective once you (or the users concerned) reload the page." -msgstr "" - -#: core/static/js/core/site.js:2097 -msgid "Allow access for anonymous guest users" -msgstr "" - -#: motions/static/js/motions/workflow.js:64 -msgid "Allow create poll" -msgstr "" - -#: motions/static/js/motions/workflow.js:66 -msgid "Allow submitter edit" -msgstr "" - -#: motions/static/js/motions/workflow.js:62 -msgid "Allow support" -msgstr "" - -#: motions/static/js/motions/site.js:3262 -msgid "Allow to disable versioning" -msgstr "" - -#: assignments/static/js/assignments/site.js:906 -msgid "Always Yes-No-Abstain per candidate" -msgstr "" - -#: assignments/static/js/assignments/site.js:907 -msgid "Always Yes/No per candidate" -msgstr "" - -#: assignments/static/js/assignments/site.js:905 -msgid "Always one option per candidate" -msgstr "" - -#: motions/static/js/motions/site.js:3322 -msgid "Amendment" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:96 -msgid "Amendment list PDF" -msgstr "" - -#: motions/static/js/motions/site.js:2282 -#: motions/static/js/motions/site.js:3275 -#: motions/static/templates/motions/motion-detail.html:104 -msgid "Amendment to" -msgstr "" - -#: motions/static/js/motions/pdf.js:544 -#: motions/static/js/motions/pdf.js:77 -#: motions/static/js/motions/site.js:2285 -msgid "Amendment to motion" -msgstr "" - -#: motions/static/js/motions/site.js:2824 -#: motions/static/js/motions/site.js:3269 -#: motions/static/js/motions/site.js:915 -#: motions/static/templates/motions/motion-amendment-list.html:18 -#: motions/static/templates/motions/motion-detail.html:17 -#: motions/static/templates/motions/motion-detail.html:175 -#: motions/static/templates/motions/motion-list.html:11 -msgid "Amendments" -msgstr "" - -#: motions/static/js/motions/site.js:2821 -msgid "Amendments to" -msgstr "" - -#: motions/static/js/motions/pdf.js:1136 -msgid "Amendments to motion" -msgstr "" - -#: motions/static/js/motions/site.js:3273 -msgid "Apply text for new amendments" -msgstr "" - -#: agenda/static/js/agenda/site.js:873 -msgid "Arabic" -msgstr "" - -#: core/static/templates/index.html:79 -msgid "Are you sure to delete the chat history?" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:181 -msgid "Are you sure you want to delete all selected agenda items?" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:162 -msgid "Are you sure you want to delete all selected amendments?" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:54 -msgid "Are you sure you want to delete all selected elections?" -msgstr "" - -#: motions/static/templates/motions/motion-list.html:124 -msgid "Are you sure you want to delete all selected motions?" -msgstr "" - -#: users/static/templates/users/user-list.html:93 -msgid "Are you sure you want to delete all selected users?" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:151 -msgid "Are you sure you want to delete this ballot?" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:25 -#: motions/static/templates/motions/motion-detail/view-diff.html:79 -#: motions/static/templates/motions/motion-detail/view-original.html:34 -msgid "Are you sure you want to delete this change recommendation?" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:406 -#: assignments/static/templates/assignments/assignment-list.html:267 -#: core/static/templates/core/manage-projectors.html:52 -#: core/static/templates/core/tag-list.html:46 -#: motions/static/templates/motions/category-list.html:49 -#: motions/static/templates/motions/motion-amendment-list.html:338 -#: motions/static/templates/motions/motion-block-list.html:45 -#: motions/static/templates/motions/motion-list.html:287 -#: motions/static/templates/motions/workflow-detail.html:58 -#: motions/static/templates/motions/workflow-list.html:38 -#: users/static/templates/users/group-list.html:45 -#: users/static/templates/users/user-list.html:364 -msgid "Are you sure you want to delete this entry?" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:320 -msgid "Are you sure you want to delete this file?" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:382 -msgid "Are you sure you want to delete this poll?" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:630 -msgid "Are you sure you want to delete this version?" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:85 -msgid "Are you sure you want to number all agenda items?" -msgstr "" - -#: motions/static/templates/motions/motion-block-detail.html:31 -msgid "Are you sure you want to override the state of all motions of this motion block?" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:16 -msgid "Are you sure you want to remove all speakers from this list?" -msgstr "" - -#: motions/static/templates/motions/motion-block-detail.html:63 -msgid "Are you sure you want to remove this motion from motion block?" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:87 -msgid "Aspect ratio" -msgstr "" - -#: users/static/templates/users/user-import.html:63 -msgid "" -"At least given name or surname have to be filled in. All\n" -" other fields are optional and may be empty." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:551 -msgid "" -"At least two amendments or change recommendations affecting the same line are to be integrated.\n" -" This leads to undeterministic results.\n" -" Please resolve this conflict by not accepting multiple changes affecting the same line." -msgstr "" - -#: motions/static/js/motions/site.js:586 -#: topics/static/js/topics/site.js:115 -msgid "Attachment" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:601 -#: topics/static/templates/topics/topic-detail.html:31 -msgid "Attachments" -msgstr "" - -#: core/static/templates/csv-import.html:30 -msgid "Autodetection" -msgstr "" - -#: assignments/static/js/assignments/site.js:904 -msgid "Automatic assign of method" -msgstr "" - -#: motions/static/templates/motions/motion-submitters.html:6 -msgid "Back" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:130 -#: topics/static/templates/topics/topic-import.html:35 -msgid "Back to agenda" -msgstr "" - -#: motions/static/templates/motions/category-sort.html:6 -msgid "Back to categories" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:8 -#: motions/static/templates/motions/motion-import.html:139 -msgid "Back to motions overview" -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:6 -#: agenda/static/templates/agenda/item-sort.html:6 -#: assignments/static/templates/assignments/assignment-detail.html:6 -#: core/static/templates/core/tag-list.html:6 -#: motions/static/templates/motions/category-list.html:6 -#: motions/static/templates/motions/motion-block-detail.html:6 -#: motions/static/templates/motions/motion-block-list.html:6 -#: motions/static/templates/motions/motion-detail.html:12 -#: motions/static/templates/motions/motion-detail.html:7 -#: motions/static/templates/motions/motion-import.html:6 -#: motions/static/templates/motions/workflow-detail.html:6 -#: motions/static/templates/motions/workflow-list.html:6 -#: topics/static/templates/topics/topic-detail.html:6 -#: topics/static/templates/topics/topic-import.html:6 -#: users/static/templates/users/group-list.html:6 -#: users/static/templates/users/user-change-password.html:6 -#: users/static/templates/users/user-detail.html:6 -#: users/static/templates/users/user-import.html:6 -#: users/static/templates/users/user-presence.html:6 -msgid "Back to overview" -msgstr "" - -#: users/static/templates/users/user-import.html:244 -#: users/static/templates/users/user-import.html:35 -msgid "Back to users overview" -msgstr "" - -#: core/static/js/core/site.js:2114 -msgid "Background color of projector header and footer" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:142 -#: assignments/static/js/assignments/pdf.js:306 -#: assignments/static/js/assignments/pdf.js:654 -#: assignments/static/templates/assignments/assignment-detail.html:139 -#: assignments/static/templates/assignments/assignmentpoll-form.html:1 -msgid "Ballot" -msgstr "" - -#: assignments/static/js/assignments/site.js:909 -msgid "Ballot and ballot papers" -msgstr "" - -#: agenda/static/js/agenda/site.js:875 -msgid "Begin of event" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:91 -msgid "Begin speech" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:165 -#: core/static/templates/core/projector-controls.html:89 -msgid "Bigger" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:212 -#: core/static/templates/core/projector-controls.html:54 -msgid "Blank" -msgstr "" - -#: motions/static/js/motions/workflow.js:84 -msgid "Blue" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:206 -msgid "Broadcast" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:203 -msgid "Broadcast the content of this projector to all other projectors." -msgstr "" - -#: mediafiles/static/js/mediafiles/image-plugin.js:154 -#: mediafiles/static/js/mediafiles/image-plugin.js:161 -#: mediafiles/static/js/mediafiles/image-plugin.js:199 -msgid "Browse for images" -msgstr "" - -#: core/static/templates/csv-import.html:2 -msgid "CSV file" -msgstr "" - -#: users/static/js/users/site.js:1836 -msgid "Can create motions" -msgstr "" - -#: users/static/js/users/site.js:1811 -msgid "Can manage agenda" -msgstr "" - -#: users/static/js/users/site.js:1840 -msgid "Can manage comments" -msgstr "" - -#: users/static/js/users/site.js:1825 -msgid "Can manage configuration" -msgstr "" - -#: users/static/js/users/site.js:1819 -msgid "Can manage elections" -msgstr "" - -#: users/static/js/users/site.js:1832 -msgid "Can manage files" -msgstr "" - -#: users/static/js/users/site.js:1812 -msgid "Can manage list of speakers" -msgstr "" - -#: users/static/js/users/site.js:1828 -msgid "Can manage logos and fonts" -msgstr "" - -#: users/static/js/users/site.js:1838 -msgid "Can manage motions" -msgstr "" - -#: users/static/js/users/site.js:1824 -msgid "Can manage tags" -msgstr "" - -#: users/static/js/users/site.js:1827 -msgid "Can manage the chat" -msgstr "" - -#: users/static/js/users/site.js:1822 -msgid "Can manage the projector" -msgstr "" - -#: users/static/js/users/site.js:1844 -msgid "Can manage users" -msgstr "" - -#: users/static/js/users/site.js:1817 -msgid "Can nominate another participant" -msgstr "" - -#: users/static/js/users/site.js:1818 -msgid "Can nominate oneself" -msgstr "" - -#: core/static/js/core/projector.js:154 -msgid "Can not open the projector." -msgstr "" - -#: users/static/js/users/site.js:1814 -msgid "Can put oneself on the list of speakers" -msgstr "" - -#: users/static/js/users/site.js:1810 -msgid "Can see agenda" -msgstr "" - -#: users/static/js/users/site.js:1839 -msgid "Can see comments" -msgstr "" - -#: users/static/js/users/site.js:1816 -msgid "Can see elections" -msgstr "" - -#: users/static/js/users/site.js:1843 -msgid "Can see extra data of users (e.g. present and comment)" -msgstr "" - -#: users/static/js/users/site.js:1833 -msgid "Can see hidden files" -msgstr "" - -#: users/static/js/users/site.js:1813 -msgid "Can see internal items and time scheduling of agenda" -msgstr "" - -#: users/static/js/users/site.js:1835 -msgid "Can see motions" -msgstr "" - -#: users/static/js/users/site.js:1842 -msgid "Can see names of users" -msgstr "" - -#: users/static/js/users/site.js:1823 -msgid "Can see the front page" -msgstr "" - -#: users/static/js/users/site.js:1830 -msgid "Can see the list of files" -msgstr "" - -#: users/static/js/users/site.js:1821 -msgid "Can see the projector" -msgstr "" - -#: users/static/js/users/site.js:1837 -msgid "Can support motions" -msgstr "" - -#: users/static/js/users/site.js:1831 -msgid "Can upload files" -msgstr "" - -#: users/static/js/users/site.js:1826 -msgid "Can use the chat" -msgstr "" - -#: assignments/static/templates/assignments/assignment-form.html:18 -#: assignments/static/templates/assignments/assignmentpoll-form.html:18 -#: core/static/js/core/base.js:264 -#: core/static/js/core/site.js:128 -#: core/static/js/core/site.js:129 -#: core/static/templates/core/projector-controls.html:198 -#: core/static/templates/core/projector-message-form.html:8 -#: core/static/templates/core/tag-form.html:13 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:19 -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:24 -#: motions/static/templates/motions/category-form.html:13 -#: motions/static/templates/motions/change-recommendation-form.html:13 -#: motions/static/templates/motions/motion-block-form.html:13 -#: motions/static/templates/motions/motion-comment-form.html:12 -#: motions/static/templates/motions/motion-export-form.html:10 -#: motions/static/templates/motions/motion-form.html:19 -#: motions/static/templates/motions/motion-poll-form.html:18 -#: motions/static/templates/motions/state-edit.html:24 -#: motions/static/templates/motions/workflow-edit.html:24 -#: topics/static/templates/topics/topic-form.html:13 -#: users/static/templates/users/group-edit.html:24 -#: users/static/templates/users/profile-password-form.html:12 -#: users/static/templates/users/user-change-password.html:51 -#: users/static/templates/users/user-form.html:13 -msgid "Cancel" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:150 -#: assignments/static/js/assignments/pdf.js:68 -#: assignments/static/templates/assignments/assignment-detail.html:192 -#: assignments/static/templates/assignments/assignment-detail.html:213 -#: assignments/static/templates/assignments/assignment-detail.html:86 -#: assignments/static/templates/assignments/assignment-list.html:322 -#: assignments/static/templates/assignments/slide_assignment.html:19 -#: assignments/static/templates/assignments/slide_assignment.html:36 -msgid "Candidates" -msgstr "" - -#: users/static/js/users/site.js:1119 -msgid "Cannot find the participant with the participant number" -msgstr "" - -#: core/static/js/core/pdf.js:100 -msgid "Cannot load image" -msgstr "" - -#: assignments/static/js/assignments/site.js:846 -#: assignments/static/templates/assignments/assignment-detail.html:280 -#: assignments/static/templates/assignments/slide_assignment.html:94 -msgid "Casted ballots" -msgstr "" - -#: motions/static/js/motions/docx.js:46 -#: motions/static/js/motions/site.js:136 -#: motions/static/templates/motions/category-list.html:13 -#: motions/static/templates/motions/motion-list.html:15 -msgid "Categories" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:124 -msgid "Categories created" -msgstr "" - -#: motions/static/js/motions/pdf.js:142 -#: motions/static/js/motions/pdf.js:602 -#: motions/static/js/motions/site.js:1425 -#: motions/static/js/motions/site.js:600 -#: motions/static/js/motions/site.js:867 -#: motions/static/templates/motions/category-sort.html:9 -#: motions/static/templates/motions/motion-detail.html:296 -#: motions/static/templates/motions/motion-detail.html:300 -#: motions/static/templates/motions/motion-import.html:27 -#: motions/static/templates/motions/motion-import.html:50 -#: motions/static/templates/motions/motion-table-filters.html:69 -msgid "Category" -msgstr "" - -#: core/static/js/core/site.js:2102 -msgid "Center" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:513 -msgid "Change item number ..." -msgstr "" - -#: core/static/templates/index.html:106 -#: users/static/templates/users/user-change-password.html:48 -#: users/static/templates/users/user-list.html:362 -msgid "Change password" -msgstr "" - -#: users/static/templates/users/user-change-password.html:9 -msgid "Change password for {{ user.get_short_name() }}" -msgstr "" - -#: users/static/templates/users/user-presence.html:26 -msgid "Change presence" -msgstr "" - -#: motions/static/templates/motions/motion-detail/change-summary.html:34 -msgid "Change recommendation" -msgstr "" - -#: motions/static/js/motions/site.js:955 -#: motions/static/js/motions/site.js:969 -#: motions/static/templates/motions/motion-detail/toolbar.html:122 -#: motions/static/templates/motions/motion-detail/toolbar.html:77 -msgid "Change recommendations" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:424 -msgid "Change visibility" -msgstr "" - -#: motions/static/js/motions/site.js:958 -#: motions/static/js/motions/site.js:972 -#: motions/static/templates/motions/motion-detail/toolbar.html:134 -#: motions/static/templates/motions/motion-detail/toolbar.html:92 -msgid "Changed version" -msgstr "" - -#: core/static/templates/index.html:50 -msgid "Chat" -msgstr "" - -#: motions/static/js/motions/site.js:3284 -msgid "Choose 0 to disable the supporting system." -msgstr "" - -#: core/static/js/core/site.js:130 -#: core/static/js/core/site.js:131 -msgid "Clear" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:90 -msgid "Clear list" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:129 -#: topics/static/templates/topics/topic-import.html:120 -#: users/static/templates/users/user-import.html:231 -msgid "Clear preview" -msgstr "" - -#: core/static/templates/privacypolicydialog.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:93 -msgid "Close" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:11 -msgid "Close list of speakers" -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:53 -#: agenda/static/templates/agenda/item-detail.html:48 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:10 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:11 -msgid "Closed" -msgstr "" - -#: agenda/static/js/agenda/site.js:176 -#: agenda/static/js/agenda/site.js:177 -msgid "Closed items" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:208 -msgid "Collapse all" -msgstr "" - -#: core/static/js/core/site.js:2118 -msgid "Color for blanked projector" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:117 -#: topics/static/templates/topics/topic-import.html:53 -#: topics/static/templates/topics/topic-import.html:72 -#: users/static/js/users/site.js:374 -#: users/static/js/users/site.js:648 -#: users/static/templates/users/user-detail.html:48 -#: users/static/templates/users/user-import.html:56 -#: users/static/templates/users/user-import.html:89 -#: users/static/templates/users/user-list.html:441 -msgid "Comment" -msgstr "" - -#: motions/static/js/motions/site.js:3290 -msgid "Comment fields for motions" -msgstr "" - -#: motions/static/js/motions/docx.js:97 -#: motions/static/js/motions/site.js:1014 -#: motions/static/js/motions/site.js:2051 -#: motions/static/js/motions/site.js:3289 -msgid "Comments" -msgstr "" - -#: users/static/js/users/site.js:605 -#: users/static/js/users/site.js:642 -msgid "Committee" -msgstr "" - -#: users/static/js/users/base.js:174 -msgid "Committees" -msgstr "" - -#: motions/static/js/motions/base.js:1616 -msgid "Complex Workflow" -msgstr "" - -#: users/static/js/users/site.js:527 -msgid "Confirm new password" -msgstr "" - -#: motions/static/js/motions/site.js:983 -msgid "Content" -msgstr "" - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:21 -msgid "Continue" -msgstr "" - -#: core/static/templates/core/login-form.html:23 -msgid "Continue as guest" -msgstr "" - -#: users/static/templates/users/user-import.html:19 -msgid "" -"Copy and paste your participant names in this textbox.\n" -" Keep each person in a single line." -msgstr "" - -#: topics/static/templates/topics/topic-import.html:15 -msgid "Copy and paste your topic titles in this textbox. Keep each item in a single line." -msgstr "" - -#: core/static/js/core/base.js:1444 -#: core/static/js/core/site.js:422 -msgid "Countdown" -msgstr "" - -#: core/static/js/core/base.js:1445 -#: core/static/templates/core/projector-controls.html:127 -msgid "Countdowns" -msgstr "" - -#: agenda/static/js/agenda/site.js:882 -msgid "Couple countdown with the list of speakers" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:563 -msgid "Create final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:378 -msgid "Create modified amendment" -msgstr "" - -#: users/static/templates/users/group-edit.html:2 -msgid "Create new group" -msgstr "" - -#: motions/static/templates/motions/state-edit.html:2 -msgid "Create new state" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:2 -msgid "Create new workflow" -msgstr "" - -#: motions/static/js/motions/site.js:1431 -msgid "Creation date" -msgstr "" - -#: core/static/js/core/site.js:2110 -msgid "Current browser language" -msgstr "" - -#: agenda/static/js/agenda/site.js:74 -#: agenda/static/js/agenda/site.js:835 -#: agenda/static/js/agenda/site.js:838 -#: agenda/static/templates/agenda/current-list-of-speakers.html:17 -#: agenda/static/templates/agenda/current-list-of-speakers.html:51 -#: agenda/static/templates/agenda/item-list.html:23 -#: core/static/templates/core/projector-controls.html:269 -msgid "Current list of speakers" -msgstr "" - -#: assignments/static/js/assignments/site.js:924 -#: motions/static/js/motions/site.js:3312 -msgid "Custom number of ballot papers" -msgstr "" - -#: core/static/js/core/site.js:2128 -msgid "Custom translations" -msgstr "" - -#: users/static/js/users/site.js:1875 -msgid "" -"Dear {name},\n" -"\n" -"this is your OpenSlides login for the event {event_name}:\n" -"\n" -" {url}\n" -" username: {username}\n" -" password: {password}\n" -"\n" -"This email was generated automatically." -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:44 -#: agenda/static/templates/agenda/item-detail.html:35 -#: agenda/static/templates/agenda/item-list.html:372 -#: agenda/static/templates/agenda/item-list.html:55 -#: core/static/templates/core/projector-controls.html:296 -#: core/static/templates/projector-button.html:23 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:292 -#: motions/static/templates/motions/motion-detail.html:56 -#: users/static/js/users/base.js:171 -msgid "Default" -msgstr "" - -#: assignments/static/js/assignments/site.js:157 -msgid "Default comment on the ballot paper" -msgstr "" - -#: motions/static/js/motions/site.js:3249 -msgid "Default line numbering" -msgstr "" - -#: assignments/static/js/assignments/site.js:926 -msgid "Default method to check whether a candidate has reached the required majority." -msgstr "" - -#: motions/static/js/motions/site.js:3303 -msgid "Default method to check whether a motion has reached the required majority." -msgstr "" - -#: core/static/js/core/site.js:2131 -msgid "Default projector" -msgstr "" - -#: motions/static/js/motions/site.js:3264 -msgid "Default text version for change recommendations" -msgstr "" - -#: agenda/static/js/agenda/site.js:886 -msgid "Default visibility for new agenda items (except topics)" -msgstr "" - -#: users/static/js/users/base.js:172 -msgid "Delegates" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:146 -#: agenda/static/templates/agenda/item-list.html:405 -#: assignments/static/templates/assignments/assignment-detail.html:154 -#: assignments/static/templates/assignments/assignment-list.html:266 -#: core/static/templates/core/tag-list.html:45 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:319 -#: motions/static/templates/motions/category-list.html:48 -#: motions/static/templates/motions/motion-amendment-list.html:116 -#: motions/static/templates/motions/motion-amendment-list.html:337 -#: motions/static/templates/motions/motion-block-list.html:44 -#: motions/static/templates/motions/motion-detail.html:384 -#: motions/static/templates/motions/motion-detail.html:633 -#: motions/static/templates/motions/motion-detail/view-diff.html:27 -#: motions/static/templates/motions/motion-detail/view-diff.html:81 -#: motions/static/templates/motions/motion-detail/view-original.html:36 -#: motions/static/templates/motions/motion-list.html:286 -#: motions/static/templates/motions/motion-list.html:78 -#: motions/static/templates/motions/workflow-list.html:37 -#: users/static/templates/users/user-list.html:363 -#: users/static/templates/users/user-list.html:82 -msgid "Delete" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:8 -msgid "Delete final print template" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:166 -msgid "Delete selected amendments" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:58 -msgid "Delete selected elections" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:185 -msgid "Delete selected items" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:136 -msgid "Delete selected mediafiles" -msgstr "" - -#: motions/static/templates/motions/motion-list.html:128 -msgid "Delete selected motions" -msgstr "" - -#: users/static/templates/users/user-list.html:97 -msgid "Delete selected participants" -msgstr "" - -#: motions/static/js/motions/base.js:1492 -#: motions/static/js/motions/pdf.js:284 -#: motions/static/js/motions/site.js:372 -#: motions/static/templates/motions/motion-detail/change-summary.html:39 -msgid "Deletion" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:45 -#: assignments/static/js/assignments/site.js:137 -#: assignments/static/templates/assignments/assignment-detail.html:81 -#: core/static/templates/core/projector-controls.html:183 -#: motions/static/js/motions/site.js:381 -msgid "Description" -msgstr "" - -#: core/static/templates/csv-import.html:11 -msgid "Deselect file" -msgstr "" - -#: users/static/js/users/site.js:394 -msgid "Designates whether this user is in the room or not." -msgstr "" - -#: users/static/js/users/site.js:416 -msgid "Designates whether this user should be treated as a committee." -msgstr "" - -#: users/static/js/users/site.js:404 -msgid "Designates whether this user should be treated as active. Unselect this instead of deleting the account." -msgstr "" - -#: users/static/js/users/site.js:613 -msgid "Didn't get an email" -msgstr "" - -#: motions/static/js/motions/site.js:959 -#: motions/static/js/motions/site.js:973 -#: motions/static/templates/motions/motion-detail/toolbar.html:139 -#: motions/static/templates/motions/motion-detail/toolbar.html:98 -msgid "Diff version" -msgstr "" - -#: assignments/static/js/assignments/site.js:930 -#: motions/static/js/motions/site.js:3307 -msgid "Disabled" -msgstr "" - -#: assignments/static/js/assignments/site.js:919 -#: motions/static/js/motions/site.js:3301 -msgid "Disabled (no percents)" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:30 -msgid "Display an identifier message on all projectors with the id and the name." -msgstr "" - -#: core/static/js/core/site.js:2112 -msgid "Display header and footer" -msgstr "" - -#: motions/static/js/motions/base.js:1633 -msgid "Do not concern" -msgstr "" - -#: motions/static/js/motions/base.js:1613 -msgid "Do not decide" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:560 -msgid "Do you want to copy the final version to the final print template?" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:539 -#: motions/static/templates/motions/motion-detail.html:569 -msgid "Do you want to create a new version of this motion based on this changes?" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:5 -msgid "Do you want to delete the final print template?" -msgstr "" - -#: motions/static/js/motions/site.js:540 -msgid "Don't create a new version." -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:172 -#: agenda/static/templates/agenda/item-list.html:524 -#: agenda/static/templates/agenda/item-list.html:530 -msgid "Done" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:34 -#: topics/static/templates/topics/topic-import.html:58 -#: users/static/templates/users/user-import.html:66 -msgid "Download CSV example file" -msgstr "" - -#: agenda/static/templates/agenda/item-sort.html:14 -msgid "Drag and drop items to change the order of the agenda. Your modification will be saved immediately." -msgstr "" - -#: motions/static/templates/motions/category-sort.html:15 -msgid "Drag and drop motions to reorder the category. Then click the button to renumber." -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:10 -msgid "Drop files into this area OR" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:197 -#: topics/static/templates/topics/topic-import.html:52 -#: topics/static/templates/topics/topic-import.html:71 -msgid "Duration" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:404 -#: assignments/static/templates/assignments/assignment-detail.html:21 -#: assignments/static/templates/assignments/assignment-list.html:265 -#: core/static/templates/core/tag-list.html:44 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:318 -#: motions/static/templates/motions/category-list.html:46 -#: motions/static/templates/motions/motion-amendment-list.html:330 -#: motions/static/templates/motions/motion-block-detail.html:20 -#: motions/static/templates/motions/motion-block-list.html:42 -#: motions/static/templates/motions/motion-detail.html:376 -#: motions/static/templates/motions/motion-detail.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:33 -#: motions/static/templates/motions/motion-detail/view-diff.html:87 -#: motions/static/templates/motions/motion-list.html:278 -#: motions/static/templates/motions/workflow-list.html:35 -#: topics/static/templates/topics/topic-detail.html:20 -#: users/static/templates/users/user-detail.html:15 -#: users/static/templates/users/user-list.html:359 -msgid "Edit" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-form.html:1 -msgid "Edit File" -msgstr "" - -#: motions/static/templates/motions/category-form.html:1 -msgid "Edit category" -msgstr "" - -#: motions/static/templates/motions/change-recommendation-form.html:1 -msgid "Edit change recommendation" -msgstr "" - -#: motions/static/js/motions/site.js:2494 -#: motions/static/js/motions/site.js:3266 -msgid "Edit comment %%comment%% of motion %%motion%%" -msgstr "" - -#: core/static/templates/core/projector-controls.html:143 -msgid "Edit countdown" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:152 -#: core/static/templates/core/projector-controls.html:76 -msgid "Edit current slide" -msgstr "" - -#: assignments/static/templates/assignments/assignment-form.html:1 -msgid "Edit election" -msgstr "" - -#: core/static/templates/core/projector-controls.html:233 -#: core/static/templates/core/projector-message-form.html:1 -msgid "Edit message" -msgstr "" - -#: motions/static/templates/motions/motion-form.html:1 -msgid "Edit motion" -msgstr "" - -#: motions/static/templates/motions/motion-block-form.html:1 -msgid "Edit motion block" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:1 -#: users/static/templates/users/group-edit.html:1 -msgid "Edit name" -msgstr "" - -#: users/static/templates/users/user-form.html:1 -msgid "Edit participant" -msgstr "" - -#: core/static/templates/index.html:101 -#: users/static/js/users/site.js:982 -msgid "Edit profile" -msgstr "" - -#: motions/static/templates/motions/state-edit.html:1 -msgid "Edit state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:332 -#: motions/static/templates/motions/motion-list.html:281 -msgid "Edit submitters" -msgstr "" - -#: core/static/templates/core/tag-form.html:1 -msgid "Edit tag" -msgstr "" - -#: motions/static/js/motions/site.js:3278 -msgid "Edit the whole motion text" -msgstr "" - -#: topics/static/templates/topics/topic-form.html:1 -msgid "Edit topic" -msgstr "" - -#: motions/static/templates/motions/motion-detail/toolbar.html:16 -msgid "Editing the text is not possible anymore once there are change recommendations." -msgstr "" - -#: assignments/static/js/assignments/base.js:375 -#: assignments/static/js/assignments/pdf.js:617 -#: assignments/static/js/assignments/site.js:453 -#: assignments/static/templates/assignments/assignment-detail.html:33 -#: assignments/static/templates/assignments/slide_assignment.html:7 -msgid "Election" -msgstr "" - -#: assignments/static/js/assignments/site.js:903 -#: assignments/static/templates/assignments/assignment-detail.html:286 -msgid "Election method" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:127 -msgid "Election result" -msgstr "" - -#: assignments/static/js/assignments/base.js:376 -#: assignments/static/js/assignments/pdf.js:618 -#: assignments/static/js/assignments/site.js:19 -#: assignments/static/js/assignments/site.js:31 -#: assignments/static/js/assignments/site.js:49 -#: assignments/static/js/assignments/site.js:908 -#: assignments/static/templates/assignments/assignment-list.html:14 -msgid "Elections" -msgstr "" - -#: users/static/js/users/site.js:1869 -#: users/static/js/users/site.js:313 -#: users/static/js/users/site.js:471 -#: users/static/templates/users/user-detail.html:36 -#: users/static/templates/users/user-import.html:61 -#: users/static/templates/users/user-import.html:94 -msgid "Email" -msgstr "" - -#: users/static/js/users/site.js:1874 -msgid "Email body" -msgstr "" - -#: users/static/js/users/site.js:1870 -msgid "Email sender" -msgstr "" - -#: users/static/js/users/site.js:1871 -msgid "Email subject" -msgstr "" - -#: motions/static/js/motions/site.js:3277 -msgid "Empty text field" -msgstr "" - -#: agenda/static/js/agenda/site.js:867 -msgid "Enable numbering for agenda items" -msgstr "" - -#: users/static/js/users/site.js:1849 -msgid "Enable participant presence view" -msgstr "" - -#: core/static/templates/csv-import.html:22 -msgid "Encoding" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:334 -msgid "Encrypted" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:65 -msgid "End speech" -msgstr "" - -#: agenda/static/js/agenda/site.js:881 -msgid "Enter duration in seconds. Choose 0 to disable warning color." -msgstr "" - -#: users/static/templates/users/user-presence.html:22 -msgid "Enter participant number" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:170 -msgid "Enter votes" -msgstr "" - -#: core/static/js/core/base.js:791 -msgid "Error" -msgstr "" - -#: core/static/js/core/pdf.js:1335 -#: core/static/js/core/pdf.js:99 -msgid "Error while generating PDF file" -msgstr "" - -#: motions/static/js/motions/pdf.js:1382 -msgid "Error while generating ZIP file" -msgstr "" - -#: users/static/js/users/site.js:1212 -msgid "Error: Given name or surname is required." -msgstr "" - -#: motions/static/js/motions/site.js:2880 -msgid "Error: Identifier already exists." -msgstr "" - -#: motions/static/js/motions/site.js:2891 -msgid "Error: Text is required." -msgstr "" - -#: motions/static/js/motions/site.js:2886 -#: topics/static/js/topics/site.js:297 -msgid "Error: Title is required." -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:200 -msgid "Estimated end:" -msgstr "" - -#: core/static/js/core/site.js:2086 -msgid "Event" -msgstr "" - -#: core/static/js/core/site.js:2088 -msgid "Event date" -msgstr "" - -#: core/static/js/core/site.js:2089 -msgid "Event location" -msgstr "" - -#: core/static/js/core/site.js:2080 -msgid "Event name" -msgstr "" - -#: core/static/js/core/site.js:2090 -msgid "Event organizer" -msgstr "" - -#: motions/static/js/motions/site.js:918 -msgid "Exclude" -msgstr "" - -#: users/static/templates/users/user-import.html:234 -msgid "Exclude already imported users" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:14 -#: motions/static/templates/motions/workflow-detail.html:17 -msgid "Expand" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:207 -msgid "Expand all" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:132 -#: agenda/static/templates/agenda/item-list.html:95 -#: assignments/static/templates/assignments/assignment-list.html:31 -#: motions/static/templates/motions/motion-amendment-list.html:70 -#: motions/static/templates/motions/motion-list.html:53 -#: motions/static/templates/motions/motion-list.html:63 -#: users/static/templates/users/user-list.html:47 -msgid "Export all" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:26 -#: motions/static/templates/motions/motion-detail.html:69 -msgid "Export as PDF" -msgstr "" - -#: motions/static/templates/motions/motion-export-form.html:7 -msgid "Export as {{ params.format.toUpperCase() | translate }}" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:7 -msgid "Export comments only" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:83 -msgid "Export dialog" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:135 -#: agenda/static/templates/agenda/item-list.html:98 -#: assignments/static/templates/assignments/assignment-list.html:34 -#: motions/static/templates/motions/motion-amendment-list.html:73 -#: motions/static/templates/motions/motion-list.html:56 -#: motions/static/templates/motions/motion-list.html:66 -#: users/static/templates/users/user-list.html:50 -msgid "Export filtered" -msgstr "" - -#: motions/static/templates/motions/motion-export-form.html:2 -#: motions/static/templates/motions/motion-export-form.html:3 -msgid "Export motion" -msgstr "" - -#: motions/static/templates/motions/motion-export-form.html:1 -msgid "Export motions" -msgstr "" - -#: motions/static/templates/motions/motion-detail/personal-note.html:7 -msgid "Export personal note only" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:21 -msgid "File information" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:104 -msgid "File size" -msgstr "" - -#: mediafiles/static/js/mediafiles/resources.js:22 -#: mediafiles/static/js/mediafiles/resources.js:23 -#: mediafiles/static/js/mediafiles/states.js:18 -#: mediafiles/static/js/mediafiles/states.js:30 -#: mediafiles/static/js/mediafiles/states.js:48 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:9 -msgid "Files" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:241 -#: assignments/static/templates/assignments/assignment-list.html:98 -#: core/static/templates/core/tag-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:176 -#: motions/static/templates/motions/category-list.html:21 -#: motions/static/templates/motions/motion-block-detail.html:40 -#: motions/static/templates/motions/motion-block-list.html:21 -#: users/static/templates/users/user-list.html:202 -msgid "Filter" -msgstr "" - -#: motions/static/templates/motions/motion-detail/toolbar.html:114 -#: motions/static/templates/motions/motion-detail/toolbar.html:149 -msgid "Final print template" -msgstr "" - -#: motions/static/js/motions/site.js:960 -#: motions/static/js/motions/site.js:974 -#: motions/static/templates/motions/motion-detail/toolbar.html:105 -#: motions/static/templates/motions/motion-detail/toolbar.html:144 -msgid "Final version" -msgstr "" - -#: assignments/static/js/assignments/site.js:937 -msgid "Finished" -msgstr "" - -#: motions/static/templates/motions/workflow-detail.html:28 -msgid "First state" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:291 -msgid "Follow recommendation" -msgstr "" - -#: motions/static/templates/motions/motion-block-detail.html:34 -msgid "Follow recommendations for all motions" -msgstr "" - -#: core/static/js/core/site.js:2115 -msgid "Font color of projector header and footer" -msgstr "" - -#: core/static/js/core/site.js:2116 -msgid "Font color of projector headline" -msgstr "" - -#: assignments/static/js/assignments/site.js:911 -msgid "For Yes/No/Abstain per candidate and Yes/No per candidate the 100-%-base depends on the election method: If there is only one option per candidate, the sum of all votes of all candidates is 100 %. Otherwise for each candidate the sum of all votes is 100 %." -msgstr "" - -#: motions/static/js/motions/site.js:899 -msgid "Format" -msgstr "" - -#: motions/static/js/motions/site.js:352 -msgid "From Line" -msgstr "" - -#: core/static/js/core/site.js:2095 -msgid "Front page text" -msgstr "" - -#: core/static/js/core/site.js:2093 -msgid "Front page title" -msgstr "" - -#: core/static/js/core/site.js:2085 -#: motions/static/js/motions/site.js:3241 -#: users/static/js/users/site.js:1498 -#: users/static/js/users/site.js:1847 -msgid "General" -msgstr "" - -#: users/static/js/users/site.js:361 -#: users/static/templates/users/user-change-password.html:33 -msgid "Generate" -msgstr "" - -#: users/static/templates/users/user-list.html:121 -#: users/static/templates/users/user-list.html:85 -msgid "Generate new passwords" -msgstr "" - -#: core/static/js/core/pdf.js:1326 -msgid "Generating PDF file" -msgstr "" - -#: motions/static/js/motions/pdf.js:1337 -msgid "Generating PDFs and ZIP archive" -msgstr "" - -#: users/static/js/users/site.js:1851 -#: users/static/js/users/site.js:296 -#: users/static/js/users/site.js:634 -#: users/static/templates/users/user-import.html:51 -#: users/static/templates/users/user-import.html:84 -msgid "Given name" -msgstr "" - -#: motions/static/templates/motions/motion-detail/toolbar.html:52 -msgid "Go to line" -msgstr "" - -#: users/static/js/users/site.js:612 -msgid "Got an email" -msgstr "" - -#: motions/static/js/motions/workflow.js:81 -msgid "Green" -msgstr "" - -#: motions/static/js/motions/workflow.js:83 -msgid "Grey" -msgstr "" - -#: users/static/js/users/pdf.js:73 -#: users/static/js/users/site.js:348 -#: users/static/js/users/site.js:89 -#: users/static/templates/users/group-list.html:14 -#: users/static/templates/users/user-detail.html:30 -#: users/static/templates/users/user-import.html:55 -#: users/static/templates/users/user-import.html:88 -#: users/static/templates/users/user-list.html:16 -#: users/static/templates/users/user-list.html:209 -#: users/static/templates/users/user-list.html:378 -#: users/static/templates/users/user-list.html:407 -msgid "Groups" -msgstr "" - -#: users/static/templates/users/user-import.html:226 -msgid "Groups created" -msgstr "" - -#: users/static/js/users/site.js:1857 -msgid "Help text for access data and welcome PDF" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:159 -#: agenda/static/templates/agenda/item-list.html:436 -#: agenda/static/templates/agenda/item-list.html:472 -#: mediafiles/static/js/mediafiles/forms.js:51 -#: mediafiles/static/js/mediafiles/list.js:74 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:27 -msgid "Hidden" -msgstr "" - -#: agenda/static/js/agenda/site.js:102 -#: agenda/static/templates/agenda/item-list.html:452 -msgid "Hidden item" -msgstr "" - -#: agenda/static/js/agenda/site.js:197 -#: agenda/static/templates/agenda/item-list.html:293 -msgid "Hidden items" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:37 -msgid "Hide" -msgstr "" - -#: agenda/static/templates/agenda/item-sort.html:18 -msgid "Hide internal items" -msgstr "" - -#: agenda/static/js/agenda/site.js:877 -msgid "Hide internal items when projecting subitems" -msgstr "" - -#: motions/static/js/motions/site.js:3259 -msgid "Hide meta information box on projector" -msgstr "" - -#: motions/static/js/motions/site.js:3258 -msgid "Hide reason on projector" -msgstr "" - -#: motions/static/js/motions/site.js:3260 -msgid "Hide recommendation on projector" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:144 -msgid "Hint on the ballot paper." -msgstr "" - -#: core/static/js/core/site.js:189 -#: core/static/js/core/site.js:331 -msgid "Home" -msgstr "" - -#: motions/static/js/motions/site.js:3276 -msgid "How to create new amendments" -msgstr "" - -#: motions/static/js/motions/site.js:1419 -#: motions/static/js/motions/site.js:259 -#: motions/static/js/motions/site.js:3243 -#: motions/static/js/motions/site.js:336 -#: motions/static/js/motions/site.js:482 -#: motions/static/templates/motions/motion-import.html:22 -#: motions/static/templates/motions/motion-import.html:45 -msgid "Identifier" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:31 -msgid "Identifier, reason, submitter, category, origin and motion block are optional and may be empty." -msgstr "" - -#: core/static/templates/core/manage-projectors.html:32 -msgid "Identify" -msgstr "" - -#: mediafiles/static/js/mediafiles/image-plugin.js:148 -#: mediafiles/static/js/mediafiles/image-plugin.js:198 -msgid "Image browser" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:16 -#: motions/static/templates/motions/motion-list.html:31 -#: topics/static/templates/topics/topic-import.html:24 -#: users/static/templates/users/user-import.html:29 -#: users/static/templates/users/user-list.html:20 -msgid "Import" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:41 -#: users/static/templates/users/user-import.html:41 -msgid "Import by CSV file" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:14 -#: users/static/templates/users/user-import.html:18 -msgid "Import by copy/paste" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:9 -msgid "Import motions" -msgstr "" - -#: users/static/templates/users/user-import.html:9 -msgid "Import participants" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:9 -msgid "Import topics" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:123 -msgid "Import {{ itemsWillBeImported }} topics" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:132 -msgid "Import {{ motionsWillBeImported }} motions" -msgstr "" - -#: users/static/templates/users/user-import.html:237 -msgid "Import {{ usersWillBeImported }} participants" -msgstr "" - -#: motions/static/js/motions/site.js:917 -msgid "Include" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:363 -msgid "Include all sub items" -msgstr "" - -#: motions/static/js/motions/site.js:3318 -msgid "Include the sequential number in PDF and DOCX" -msgstr "" - -#: users/static/js/users/pdf.js:201 -#: users/static/js/users/site.js:358 -#: users/static/templates/users/user-change-password.html:37 -#: users/static/templates/users/user-import.html:60 -#: users/static/templates/users/user-import.html:93 -msgid "Initial password" -msgstr "" - -#: users/static/js/users/site.js:359 -#: users/static/templates/users/user-change-password.html:38 -msgid "Initial password can not be changed." -msgstr "" - -#. Line numbering: Inline -#: motions/static/js/motions/site.js:3253 -msgid "Inline" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:15 -#: motions/static/templates/motions/motion-detail/comments.html:20 -#: motions/static/templates/motions/motion-detail/personal-note.html:14 -#: motions/static/templates/motions/motion-detail/personal-note.html:19 -#: motions/static/templates/motions/motion-detail/toolbar.html:13 -#: motions/static/templates/motions/motion-detail/toolbar.html:18 -#: motions/static/templates/motions/motion-detail/toolbar.html:29 -#: motions/static/templates/motions/motion-detail/toolbar.html:35 -#: motions/static/templates/motions/motion-detail/toolbar.html:8 -msgid "Inline editing" -msgstr "" - -#: agenda/static/js/agenda/site.js:876 -msgid "Input format: DD.MM.YYYY HH:MM" -msgstr "" - -#: motions/static/js/motions/base.js:1489 -#: motions/static/js/motions/pdf.js:282 -#: motions/static/js/motions/site.js:371 -#: motions/static/templates/motions/motion-detail/change-summary.html:38 -msgid "Insertion" -msgstr "" - -#: core/static/templates/legalnotice.html:17 -msgid "Installed plugins:" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:156 -#: agenda/static/templates/agenda/item-list.html:432 -#: agenda/static/templates/agenda/item-list.html:468 -msgid "Internal" -msgstr "" - -#: agenda/static/js/agenda/site.js:101 -#: agenda/static/templates/agenda/item-list.html:447 -#: topics/static/templates/topics/topic-import.html:54 -#: topics/static/templates/topics/topic-import.html:73 -msgid "Internal item" -msgstr "" - -#: agenda/static/js/agenda/site.js:190 -#: agenda/static/templates/agenda/item-list.html:287 -msgid "Internal items" -msgstr "" - -#: assignments/static/js/assignments/site.js:836 -#: assignments/static/templates/assignments/assignment-detail.html:274 -#: assignments/static/templates/assignments/slide_assignment.html:88 -msgid "Invalid ballots" -msgstr "" - -#: agenda/static/js/agenda/site.js:871 -msgid "Invalid input." -msgstr "" - -#: motions/static/js/motions/pdf.js:216 -#: motions/static/js/motions/site.js:799 -#: motions/static/templates/motions/motion-detail.html:450 -msgid "Invalid votes" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:81 -msgid "Is PDF" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:82 -msgid "Is PDF file" -msgstr "" - -#: users/static/js/users/site.js:415 -#: users/static/js/users/site.js:606 -#: users/static/templates/users/user-list.html:341 -msgid "Is a committee" -msgstr "" - -#: users/static/js/users/site.js:403 -#: users/static/js/users/site.js:599 -#: users/static/templates/users/user-import.html:57 -#: users/static/templates/users/user-import.html:90 -#: users/static/templates/users/user-list.html:127 -msgid "Is active" -msgstr "" - -#: users/static/templates/users/user-import.html:59 -#: users/static/templates/users/user-import.html:92 -#: users/static/templates/users/user-list.html:129 -msgid "Is committee" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:303 -msgid "Is hidden" -msgstr "" - -#: users/static/templates/users/user-list.html:339 -msgid "Is inactive" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:83 -msgid "Is no PDF file" -msgstr "" - -#: users/static/js/users/site.js:607 -#: users/static/templates/users/user-list.html:137 -msgid "Is not a committee" -msgstr "" - -#: users/static/js/users/site.js:600 -#: users/static/templates/users/user-list.html:135 -msgid "Is not active" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:76 -msgid "Is not hidden" -msgstr "" - -#: users/static/js/users/site.js:593 -#: users/static/templates/users/user-list.html:136 -msgid "Is not present" -msgstr "" - -#: users/static/js/users/site.js:393 -#: users/static/js/users/site.js:592 -#: users/static/templates/users/user-import.html:58 -#: users/static/templates/users/user-import.html:91 -#: users/static/templates/users/user-list.html:128 -msgid "Is present" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:308 -msgid "Is used as a font" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:306 -msgid "Is used as a logo" -msgstr "" - -#. short form of agenda item -#: assignments/static/js/assignments/site.js:333 -#: motions/static/templates/motions/motion-table-filters.html:209 -msgid "Item" -msgstr "" - -#: motions/static/templates/motions/workflow-detail.html:119 -msgid "Label color" -msgstr "" - -#: users/static/js/users/site.js:611 -#: users/static/js/users/site.js:650 -#: users/static/templates/users/user-detail.html:38 -msgid "Last email send" -msgstr "" - -#: users/static/templates/users/user-list.html:448 -msgid "Last email send to the user" -msgstr "" - -#: motions/static/js/motions/site.js:1433 -#: motions/static/templates/motions/motion-detail.html:636 -msgid "Last modified" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:36 -msgid "Last speakers" -msgstr "" - -#: core/static/templates/csv-import.html:33 -msgid "Leave empty for autodetection of the separator." -msgstr "" - -#: motions/static/js/motions/workflow.js:70 -msgid "Leave old version active" -msgstr "" - -#: core/static/js/core/site.js:2101 -msgid "Left" -msgstr "" - -#: core/static/js/core/site.js:2091 -#: core/static/js/core/site.js:371 -#: core/static/templates/index.html:227 -#: core/static/templates/legalnotice.html:3 -msgid "Legal notice" -msgstr "" - -#: core/static/templates/legalnotice.html:14 -#: core/static/templates/legalnotice.html:27 -msgid "License" -msgstr "" - -#: motions/static/js/motions/pdf.js:1083 -#: motions/static/js/motions/pdf.js:275 -#: motions/static/templates/motions/motion-amendment-list.html:238 -#: motions/static/templates/motions/motion-amendment-list.html:241 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:28 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:31 -#: motions/static/templates/motions/motion-detail/change-summary.html:28 -#: motions/static/templates/motions/motion-detail/change-summary.html:31 -#: motions/static/templates/motions/motion-detail/toolbar.html:46 -#: motions/static/templates/motions/slide_motion.html:80 -#: motions/static/templates/motions/slide_motion.html:83 -msgid "Line" -msgstr "" - -#: motions/static/js/motions/site.js:3256 -msgid "Line length" -msgstr "" - -#: motions/static/js/motions/site.js:929 -#: motions/static/js/motions/site.js:942 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:30 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:5 -msgid "Line numbering" -msgstr "" - -#: users/static/js/users/pdf.js:313 -#: users/static/templates/users/user-list.html:64 -msgid "List of access data" -msgstr "" - -#: users/static/js/users/pdf.js:17 -#: users/static/js/users/pdf.js:302 -#: users/static/templates/users/user-list.html:59 -msgid "List of participants" -msgstr "" - -#: agenda/static/js/agenda/site.js:562 -#: agenda/static/js/agenda/site.js:879 -#: agenda/static/templates/agenda/item-detail.html:21 -#: agenda/static/templates/agenda/item-detail.html:47 -#: agenda/static/templates/agenda/item-list.html:402 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:2 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:5 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:5 -#: assignments/static/templates/assignments/assignment-detail.html:12 -#: core/static/templates/core/projector-controls.html:257 -#: motions/static/templates/motions/motion-block-detail.html:11 -#: motions/static/templates/motions/motion-detail.html:23 -#: topics/static/templates/topics/topic-detail.html:11 -msgid "List of speakers" -msgstr "" - -#: core/static/js/core/site.js:2119 -msgid "List of speakers overlay" -msgstr "" - -#: core/static/templates/core/projector-controls.html:8 -msgid "Live view" -msgstr "" - -#: core/static/templates/core/login-form.html:20 -#: core/static/templates/index.html:121 -msgid "Login" -msgstr "" - -#: core/static/templates/index.html:112 -msgid "Logout" -msgstr "" - -#: core/static/templates/core/projector-controls.html:59 -msgid "Manage" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:386 -msgid "Manage fonts" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:348 -msgid "Manage logos" -msgstr "" - -#: core/static/js/core/site.js:356 -#: core/static/templates/core/manage-projectors.html:35 -msgid "Manage projectors" -msgstr "" - -#: core/static/templates/core/projector-controls.html:305 -msgid "Manage the current list of speakers" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:69 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:95 -msgid "Mark speaker" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:43 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:62 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:87 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:10 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:19 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers-overlay.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:21 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:30 -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:39 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:20 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:27 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:33 -msgid "Marked" -msgstr "" - -#: motions/static/js/motions/site.js:1360 -msgid "Marked as favorite" -msgstr "" - -#: core/static/js/core/base.js:1393 -#: core/static/js/core/site.js:463 -#: core/static/templates/core/projector-controls.html:224 -msgid "Message" -msgstr "" - -#: core/static/js/core/base.js:1394 -#: core/static/templates/core/projector-controls.html:218 -msgid "Messages" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:42 -#: motions/static/js/motions/site.js:1003 -#: motions/static/js/motions/site.js:994 -#: motions/static/templates/motions/motion-detail.html:133 -msgid "Meta information" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:166 -msgid "Misc" -msgstr "" - -#: motions/static/js/motions/base.js:293 -#: motions/static/js/motions/base.js:328 -#: motions/static/js/motions/base.js:337 -#: motions/static/js/motions/docx.js:92 -#: motions/static/js/motions/pdf.js:1076 -#: motions/static/js/motions/pdf.js:1346 -#: motions/static/js/motions/pdf.js:1392 -#: motions/static/js/motions/pdf.js:536 -#: motions/static/js/motions/pdf.js:70 -#: motions/static/js/motions/pdf.js:732 -#: motions/static/js/motions/site.js:1627 -#: motions/static/js/motions/site.js:2039 -#: motions/static/js/motions/site.js:2052 -#: motions/static/js/motions/site.js:2058 -#: motions/static/js/motions/site.js:267 -#: motions/static/js/motions/site.js:344 -#: motions/static/templates/motions/motion-block-detail.html:51 -#: motions/static/templates/motions/motion-detail.html:116 -#: motions/static/templates/motions/motion-detail.html:120 -#: motions/static/templates/motions/motion-detail.html:271 -#: motions/static/templates/motions/motion-detail.html:92 -#: motions/static/templates/motions/slide_motion.html:74 -msgid "Motion" -msgstr "" - -#: motions/static/js/motions/motion-block.js:156 -#: motions/static/js/motions/motion-block.js:19 -#: motions/static/js/motions/pdf.js:155 -#: motions/static/js/motions/site.js:1427 -#: motions/static/js/motions/site.js:614 -#: motions/static/js/motions/site.js:874 -#: motions/static/templates/motions/motion-block-detail.html:25 -#: motions/static/templates/motions/motion-detail.html:318 -#: motions/static/templates/motions/motion-detail.html:322 -#: motions/static/templates/motions/motion-import.html:29 -#: motions/static/templates/motions/motion-import.html:52 -#: motions/static/templates/motions/motion-table-filters.html:93 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motion block" -msgstr "" - -#: motions/static/js/motions/site.js:156 -#: motions/static/templates/motions/motion-block-list.html:13 -#: motions/static/templates/motions/motion-list.html:19 -msgid "Motion blocks" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:125 -msgid "Motion blocks created" -msgstr "" - -#: motions/static/js/motions/site.js:3247 -msgid "Motion preamble" -msgstr "" - -#: motions/static/js/motions/base.js:294 -#: motions/static/js/motions/site.js:23 -#: motions/static/js/motions/site.js:3238 -#: motions/static/js/motions/site.js:35 -#: motions/static/js/motions/site.js:53 -#: motions/static/templates/motions/motion-block-list.html:30 -#: motions/static/templates/motions/motion-list.html:35 -#: motions/static/templates/motions/slide_motion_block.html:5 -msgid "Motions" -msgstr "" - -#: motions/static/js/motions/site.js:1034 -msgid "Multiple PDFs in a zip arcive" -msgstr "" - -#: core/static/js/core/site.js:497 -#: core/static/templates/core/manage-projectors.html:62 -#: core/static/templates/core/tag-list.html:34 -#: motions/static/js/motions/site.js:739 -#: motions/static/templates/motions/category-list.html:29 -#: motions/static/templates/motions/motion-block-list.html:29 -#: motions/static/templates/motions/state-edit.html:8 -#: motions/static/templates/motions/workflow-list.html:25 -#: users/static/js/users/pdf.js:65 -msgid "Name" -msgstr "" - -#: motions/static/js/motions/site.js:3263 -msgid "Name of recommender" -msgstr "" - -#: motions/static/js/motions/base.js:1639 -msgid "Needs review" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:8 -#: assignments/static/templates/assignments/assignment-list.html:6 -#: core/static/js/core/site.js:1288 -#: core/static/js/core/site.js:1301 -#: core/static/js/core/site.js:1302 -#: core/static/templates/core/manage-projectors.html:8 -#: core/static/templates/core/tag-list.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:6 -#: motions/static/templates/motions/category-list.html:10 -#: motions/static/templates/motions/motion-block-list.html:10 -#: motions/static/templates/motions/motion-list.html:6 -#: motions/static/templates/motions/workflow-detail.html:11 -#: motions/static/templates/motions/workflow-list.html:10 -#: users/static/templates/users/group-list.html:11 -#: users/static/templates/users/user-list.html:6 -msgid "New" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:181 -msgid "New amendment" -msgstr "" - -#: motions/static/templates/motions/motion-form.html:3 -msgid "New amendment to motion" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:133 -msgid "New ballot" -msgstr "" - -#: motions/static/templates/motions/category-form.html:2 -msgid "New category" -msgstr "" - -#: motions/static/js/motions/site.js:2922 -msgid "New category will be created." -msgstr "" - -#: motions/static/templates/motions/change-recommendation-form.html:2 -msgid "New change recommendation" -msgstr "" - -#: assignments/static/templates/assignments/assignment-form.html:2 -msgid "New election" -msgstr "" - -#: motions/static/templates/motions/motion-form.html:2 -msgid "New motion" -msgstr "" - -#: motions/static/templates/motions/motion-block-form.html:2 -msgid "New motion block" -msgstr "" - -#: motions/static/js/motions/site.js:2935 -msgid "New motion block will be created." -msgstr "" - -#: users/static/templates/users/user-form.html:2 -msgid "New participant" -msgstr "" - -#: motions/static/js/motions/site.js:2909 -msgid "New participant will be created." -msgstr "" - -#: users/static/js/users/site.js:519 -#: users/static/templates/users/user-change-password.html:23 -msgid "New password" -msgstr "" - -#: core/static/templates/core/tag-form.html:2 -msgid "New tag" -msgstr "" - -#: motions/static/js/motions/pdf.js:377 -#: motions/static/js/motions/site.js:275 -#: motions/static/templates/motions/motion-detail/view-diff.html:42 -#: motions/static/templates/motions/slide_motion.html:107 -msgid "New title" -msgstr "" - -#: topics/static/templates/topics/topic-form.html:2 -msgid "New topic" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:542 -#: motions/static/templates/motions/motion-detail.html:572 -msgid "New version on these changes" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:495 -msgid "New vote" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:39 -msgid "Next page" -msgstr "" - -#: motions/static/templates/motions/workflow-detail.html:170 -msgid "Next states" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:323 -#: assignments/static/js/assignments/pdf.js:358 -#: assignments/static/js/assignments/site.js:612 -#: assignments/static/js/assignments/site.js:743 -#: assignments/static/js/assignments/site.js:809 -#: assignments/static/templates/assignments/assignment-detail.html:262 -#: assignments/static/templates/assignments/slide_assignment.html:77 -#: motions/static/js/motions/pdf.js:198 -#: motions/static/js/motions/pdf.js:740 -#: motions/static/js/motions/site.js:770 -#: motions/static/templates/motions/motion-detail.html:417 -#: motions/static/templates/motions/slide_motion.html:44 -msgid "No" -msgstr "" - -#: motions/static/js/motions/docx.js:48 -msgid "No categories available." -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:140 -#: motions/static/templates/motions/motion-list.html:102 -msgid "No category" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:286 -#: motions/static/templates/motions/motion-table-filters.html:83 -msgid "No category set" -msgstr "" - -#: motions/static/templates/motions/motion-detail/change-summary.html:53 -msgid "No change recommendations yet" -msgstr "" - -#: motions/static/js/motions/pdf.js:1094 -#: motions/static/js/motions/pdf.js:370 -#: motions/static/templates/motions/motion-amendment-list.html:349 -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:17 -msgid "No changes at the text." -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:131 -#: motions/static/templates/motions/motion-table-filters.html:312 -msgid "No comments set" -msgstr "" - -#: motions/static/js/motions/base.js:1634 -msgid "No concernment" -msgstr "" - -#: motions/static/js/motions/base.js:1614 -msgid "No decision" -msgstr "" - -#: users/static/js/users/site.js:818 -msgid "No emails were send." -msgstr "" - -#: users/static/js/users/site.js:1868 -msgid "No encryption" -msgstr "" - -#: users/static/templates/users/user-list.html:223 -#: users/static/templates/users/user-list.html:300 -msgid "No group set" -msgstr "" - -#: agenda/static/js/agenda/site.js:198 -msgid "No hidden items" -msgstr "" - -#: agenda/static/js/agenda/site.js:191 -msgid "No internal items" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:107 -msgid "No media file projected." -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:153 -#: motions/static/templates/motions/motion-list.html:115 -msgid "No motion block" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:107 -#: motions/static/templates/motions/motion-table-filters.html:328 -msgid "No motion block set" -msgstr "" - -#: motions/static/js/motions/docx.js:54 -msgid "No motions available." -msgstr "" - -#: agenda/static/js/agenda/site.js:185 -msgid "No public items" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:285 -#: motions/static/templates/motions/motion-amendment-list.html:296 -msgid "No recomendation set" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:59 -msgid "No recommendation set" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: core/static/templates/core/select-multiple.html:2 -#: core/static/templates/core/select-single.html:2 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "No results available ..." -msgstr "" - -#: core/static/templates/search.html:41 -msgid "No results." -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:120 -#: assignments/static/templates/assignments/assignment-list.html:192 -#: motions/static/templates/motions/motion-table-filters.html:155 -#: motions/static/templates/motions/motion-table-filters.html:344 -msgid "No tag set" -msgstr "" - -#: motions/static/js/motions/site.js:2304 -msgid "No workflows exists. You will not be able to create a motion." -msgstr "" - -#. abbreviation for number -#: users/static/js/users/base.js:82 -#: users/static/templates/users/user-list.html:349 -#: users/static/templates/users/user-list.html:353 -msgid "No." -msgstr "" - -#. Line numbering: None -#: motions/static/js/motions/site.js:3255 -#: motions/static/js/motions/site.js:931 -#: motions/static/js/motions/site.js:944 -msgid "None" -msgstr "" - -#: motions/static/js/motions/site.js:1361 -msgid "Not marked as favorite" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:64 -#: motions/static/templates/motions/motion-detail/view-diff.html:8 -msgid "Not rejected" -msgstr "" - -#: motions/static/templates/motions/motion-detail/change-summary.html:8 -msgid "Note: You have to reject all change recommendations if the plenum does not follow the recommendation. This does not affect amendments." -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-original.html:45 -msgid "Now choose the last line to be changed" -msgstr "" - -#: users/static/js/users/site.js:1280 -#: users/static/js/users/site.js:644 -msgid "Number" -msgstr "" - -#: motions/static/js/motions/site.js:3283 -msgid "Number of (minimum) required supporters for a motion" -msgstr "" - -#: assignments/static/js/assignments/site.js:921 -#: motions/static/js/motions/site.js:3309 -msgid "Number of all delegates" -msgstr "" - -#: assignments/static/js/assignments/site.js:922 -#: motions/static/js/motions/site.js:3310 -msgid "Number of all participants" -msgstr "" - -#: assignments/static/js/assignments/site.js:920 -#: motions/static/js/motions/site.js:3308 -msgid "Number of ballot papers (selection)" -msgstr "" - -#: assignments/static/js/assignments/site.js:339 -msgid "Number of candidates" -msgstr "" - -#: agenda/static/js/agenda/site.js:878 -msgid "Number of last speakers to be shown on the projector" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:23 -#: assignments/static/js/assignments/site.js:147 -#: assignments/static/templates/assignments/assignment-detail.html:52 -msgid "Number of persons to be elected" -msgstr "" - -#: motions/static/js/motions/site.js:3244 -msgid "Numbered per category" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:88 -#: motions/static/templates/motions/category-sort.html:20 -msgid "Numbering" -msgstr "" - -#: agenda/static/js/agenda/site.js:868 -msgid "Numbering prefix for agenda items" -msgstr "" - -#: agenda/static/js/agenda/site.js:872 -msgid "Numeral system for agenda items" -msgstr "" - -#: core/static/js/core/base.js:263 -#: core/static/js/core/base.js:265 -msgid "OK" -msgstr "" - -#: core/static/js/core/base.js:811 -msgid "Offline mode: You can use OpenSlides but changes are not saved." -msgstr "" - -#: users/static/js/users/site.js:511 -msgid "Old password" -msgstr "" - -#: motions/static/js/motions/site.js:1033 -msgid "One PDF" -msgstr "" - -#: core/static/js/core/site.js:751 -msgid "One anonymous users is also editing this." -msgstr "" - -#: users/static/js/users/site.js:820 -msgid "One email was send sucessfully." -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:287 -msgid "One vote per candidate" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:33 -#: topics/static/templates/topics/topic-import.html:57 -#: users/static/templates/users/user-import.html:65 -msgid "Only double quotes are accepted as text delimiter (no single quotes)." -msgstr "" - -#: users/static/js/users/site.js:375 -msgid "Only for internal notes." -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:46 -msgid "Only main agenda items" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:177 -msgid "Open" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:93 -msgid "Open amendment" -msgstr "" - -#: core/static/templates/core/projector-controls.html:147 -msgid "Open countdown in fullscreen" -msgstr "" - -#: assignments/static/templates/assignments/assignment-form.html:13 -msgid "Open election detail view after save." -msgstr "" - -#: mediafiles/static/js/mediafiles/image-plugin.js:138 -msgid "Open image browser" -msgstr "" - -#: agenda/static/js/agenda/site.js:178 -msgid "Open items" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:7 -msgid "Open list of speakers" -msgstr "" - -#: motions/static/templates/motions/motion-form.html:14 -msgid "Open motion detail view after save." -msgstr "" - -#: users/static/js/users/pdf.js:189 -msgid "OpenSlides access data" -msgstr "" - -#: motions/static/js/motions/pdf.js:168 -#: motions/static/js/motions/site.js:627 -#: motions/static/js/motions/site.js:881 -#: motions/static/templates/motions/motion-detail.html:362 -#: motions/static/templates/motions/motion-import.html:28 -#: motions/static/templates/motions/motion-import.html:51 -#: motions/static/templates/motions/motion-list.html:407 -msgid "Origin" -msgstr "" - -#: mediafiles/static/js/mediafiles/image-plugin.js:196 -#: mediafiles/static/js/mediafiles/image-plugin.js:94 -msgid "Original size" -msgstr "" - -#: motions/static/js/motions/site.js:957 -#: motions/static/js/motions/site.js:971 -#: motions/static/templates/motions/motion-detail/toolbar.html:129 -#: motions/static/templates/motions/motion-detail/toolbar.html:84 -msgid "Original version" -msgstr "" - -#: motions/static/js/motions/site.js:373 -msgid "Other" -msgstr "" - -#. Line numbering: Outside -#: motions/static/js/motions/site.js:3251 -msgid "Outside" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:28 -#: motions/static/templates/motions/motion-detail.html:71 -#: motions/static/templates/motions/motion-detail/comments.html:9 -#: motions/static/templates/motions/motion-detail/personal-note.html:9 -#: users/static/js/users/site.js:1853 -msgid "PDF" -msgstr "" - -#: core/static/js/core/site.js:2127 -msgid "PDF ballot paper logo" -msgstr "" - -#: core/static/js/core/site.js:2124 -msgid "PDF footer logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2125 -msgid "PDF footer logo (right)" -msgstr "" - -#: motions/static/js/motions/site.js:1031 -msgid "PDF format" -msgstr "" - -#: core/static/js/core/site.js:2122 -msgid "PDF header logo (left)" -msgstr "" - -#: core/static/js/core/site.js:2123 -msgid "PDF header logo (right)" -msgstr "" - -#: core/static/js/core/pdf.js:1330 -msgid "PDF successfully generated." -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:218 -#: assignments/static/templates/assignments/assignment-list.html:75 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:153 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:44 -#: motions/static/templates/motions/motion-amendment-list.html:180 -#: motions/static/templates/motions/motion-list.html:146 -#: users/static/templates/users/user-import.html:73 -#: users/static/templates/users/user-list.html:160 -msgid "Page" -msgstr "" - -#: core/static/js/core/site.js:2100 -msgid "Page number alignment in PDF" -msgstr "" - -#: motions/static/js/motions/site.js:3279 -msgid "Paragraph-based, Diff-enabled" -msgstr "" - -#: assignments/static/js/assignments/site.js:168 -#: motions/static/js/motions/motion-block.js:91 -#: motions/static/js/motions/site.js:553 -#: topics/static/js/topics/site.js:130 -msgid "Parent item" -msgstr "" - -#: motions/static/js/motions/site.js:2780 -msgid "Parent motion and line number" -msgstr "" - -#: users/static/js/users/site.js:887 -#: users/static/templates/users/user-detail.html:20 -msgid "Participant" -msgstr "" - -#: users/static/js/users/site.js:331 -#: users/static/templates/users/user-detail.html:34 -#: users/static/templates/users/user-import.html:54 -#: users/static/templates/users/user-import.html:87 -msgid "Participant number" -msgstr "" - -#: users/static/js/users/base.js:19 -#: users/static/js/users/base.js:20 -#: users/static/js/users/site.js:1850 -#: users/static/js/users/site.js:19 -#: users/static/js/users/site.js:30 -#: users/static/js/users/site.js:48 -#: users/static/templates/users/user-list.html:24 -msgid "Participants" -msgstr "" - -#: core/static/templates/core/login-form.html:17 -msgid "Password" -msgstr "" - -#: users/static/js/users/site.js:1064 -msgid "Password confirmation does not match." -msgstr "" - -#: core/static/templates/core/projector-controls.html:170 -msgid "Pause" -msgstr "" - -#: motions/static/js/motions/base.js:1620 -msgid "Permission" -msgstr "" - -#: motions/static/templates/motions/workflow-detail.html:42 -#: users/static/templates/users/group-list.html:26 -msgid "Permissions" -msgstr "" - -#: motions/static/js/motions/base.js:1619 -msgid "Permit" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:624 -msgid "Permit and activate" -msgstr "" - -#: users/static/templates/users/user-detail.html:27 -msgid "Personal data" -msgstr "" - -#: motions/static/js/motions/pdf.js:1403 -#: motions/static/templates/motions/motion-detail.html:500 -#: motions/static/templates/motions/motion-detail/personal-note.html:25 -msgid "Personal note" -msgstr "" - -#: motions/static/js/motions/site.js:1366 -msgid "Personal note not set" -msgstr "" - -#: motions/static/js/motions/site.js:1365 -msgid "Personal note set" -msgstr "" - -#: assignments/static/js/assignments/site.js:337 -#: assignments/static/templates/assignments/assignment-detail.html:62 -#: assignments/static/templates/assignments/assignment-list.html:130 -msgid "Phase" -msgstr "" - -#: motions/static/templates/motions/amendment-paragraph-choose-form.html:1 -msgid "Please choose the paragraph to amend" -msgstr "" - -#: users/static/templates/users/group-edit.html:12 -msgid "Please enter a name for the new group:" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:5 -msgid "Please enter a name for the new projector" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:12 -msgid "Please enter a name for the new workflow:" -msgstr "" - -#: users/static/templates/users/group-edit.html:10 -msgid "Please enter a new group name:" -msgstr "" - -#: motions/static/templates/motions/workflow-edit.html:9 -msgid "Please enter a new workflow name:" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:18 -#: topics/static/templates/topics/topic-import.html:46 -#: users/static/templates/users/user-import.html:46 -msgid "Please note:" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:72 -msgid "Please select" -msgstr "" - -#: motions/static/js/motions/site.js:3316 -msgid "Preamble text for PDF and DOCX documents (all motions)" -msgstr "" - -#: assignments/static/js/assignments/site.js:933 -msgid "Preamble text for PDF document (all elections)" -msgstr "" - -#: core/static/js/core/site.js:2117 -msgid "Predefined seconds of new countdowns" -msgstr "" - -#: motions/static/js/motions/site.js:732 -#: motions/static/templates/motions/category-list.html:34 -msgid "Prefix" -msgstr "" - -#: motions/static/js/motions/site.js:3272 -msgid "Prefix for the identifier for amendments" -msgstr "" - -#: users/static/templates/users/user-list.html:11 -#: users/static/templates/users/user-presence.html:9 -msgid "Presence" -msgstr "" - -#: users/static/js/users/site.js:591 -#: users/static/js/users/site.js:638 -#: users/static/templates/users/user-list.html:460 -#: users/static/templates/users/user-list.html:466 -msgid "Present" -msgstr "" - -#: core/static/js/core/site.js:2079 -msgid "Presentation and assembly system" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:17 -msgid "Presentation control elements" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:38 -#: topics/static/templates/topics/topic-import.html:62 -#: users/static/templates/users/user-import.html:70 -msgid "Preview" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:34 -msgid "Previous page" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:163 -#: motions/static/templates/motions/motion-detail.html:390 -msgid "Print ballot paper" -msgstr "" - -#: core/static/js/core/site.js:2092 -#: core/static/js/core/site.js:380 -#: core/static/templates/core/login-form.html:28 -#: core/static/templates/index.html:228 -#: core/static/templates/privacypolicy.html:3 -#: core/static/templates/privacypolicydialog.html:1 -msgid "Privacy policy" -msgstr "" - -#: motions/static/js/motions/site.js:3292 -msgid "Private" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:16 -#: assignments/static/templates/assignments/assignment-detail.html:181 -#: motions/static/templates/motions/motion-detail.html:31 -#: topics/static/templates/topics/topic-detail.html:15 -#: users/static/templates/users/user-detail.html:10 -msgid "Project" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:31 -msgid "Project agenda" -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:35 -#: core/static/templates/core/projector-controls.html:287 -msgid "Project as overlay" -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:29 -#: core/static/templates/core/projector-controls.html:281 -msgid "Project as slide" -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:13 -msgid "Project current list of speakers" -msgstr "" - -#: agenda/static/templates/agenda/current-list-of-speakers.html:10 -#: core/static/templates/core/projector-controls.html:263 -msgid "Project the current list of speakers" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:69 -msgid "Projection defaults" -msgstr "" - -#: agenda/static/templates/agenda/item-detail.html:14 -#: agenda/static/templates/agenda/item-list.html:27 -#: agenda/static/templates/agenda/item-list.html:345 -#: core/static/js/core/projector.js:401 -#: core/static/js/core/site.js:2108 -#: core/static/templates/index.html:194 -#: core/static/templates/index.html:207 -#: core/static/templates/index.html:244 -#: core/static/templates/projector-button.html:2 -#: core/static/templates/projector-container.html:7 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:273 -#: motions/static/templates/motions/motion-detail.html:27 -#: users/static/js/users/site.js:1496 -msgid "Projector" -msgstr "" - -#: core/static/js/core/site.js:2121 -msgid "Projector header image" -msgstr "" - -#: core/static/js/core/site.js:2109 -msgid "Projector language" -msgstr "" - -#: core/static/js/core/site.js:2120 -msgid "Projector logo" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:153 -#: agenda/static/templates/agenda/item-list.html:428 -#: agenda/static/templates/agenda/item-list.html:464 -#: motions/static/js/motions/site.js:3291 -msgid "Public" -msgstr "" - -#: agenda/static/js/agenda/site.js:100 -#: agenda/static/templates/agenda/item-list.html:442 -msgid "Public item" -msgstr "" - -#: agenda/static/js/agenda/site.js:184 -#: agenda/static/templates/agenda/item-list.html:281 -msgid "Public items" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:177 -msgid "Publish" -msgstr "" - -#: assignments/static/js/assignments/site.js:931 -msgid "Put all candidates on the list of speakers" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:215 -msgid "Quorum" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:249 -msgid "Quorum ({{ (option.getVoteYes() - option.majorityReached) | number:votesPrecision }}) not reached." -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:246 -msgid "Quorum ({{ (option.getVoteYes() - option.majorityReached) | number:votesPrecision }}) reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:484 -msgid "Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) not reached." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:481 -msgid "Quorum ({{ (voteYes.value - isReached()) | number:votesPrecision }}) reached." -msgstr "" - -#: motions/static/js/motions/docx.js:96 -#: motions/static/js/motions/pdf.js:393 -#: motions/static/js/motions/site.js:529 -#: motions/static/js/motions/site.js:986 -#: motions/static/templates/motions/motion-detail.html:594 -#: motions/static/templates/motions/motion-import.html:25 -#: motions/static/templates/motions/motion-import.html:48 -#: motions/static/templates/motions/slide_motion.html:151 -#: motions/static/templates/motions/slide_motion.html:166 -msgid "Reason" -msgstr "" - -#: motions/static/js/motions/site.js:860 -#: motions/static/templates/motions/motion-block-detail.html:53 -#: motions/static/templates/motions/motion-table-filters.html:41 -msgid "Recommendation" -msgstr "" - -#: motions/static/templates/motions/workflow-detail.html:89 -msgid "Recommendation label" -msgstr "" - -#: motions/static/js/motions/workflow.js:80 -msgid "Red" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:15 -#: motions/static/templates/motions/workflow-detail.html:18 -msgid "Reduce" -msgstr "" - -#: motions/static/js/motions/base.js:1636 -msgid "Refer to committee" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:16 -msgid "Reference for current list of speakers" -msgstr "" - -#: motions/static/js/motions/base.js:1637 -msgid "Referral to committee" -msgstr "" - -#: motions/static/js/motions/base.js:1610 -#: motions/static/js/motions/base.js:1625 -msgid "Reject" -msgstr "" - -#: motions/static/js/motions/base.js:1641 -msgid "Reject (not authorized)" -msgstr "" - -#: motions/static/templates/motions/motion-detail/change-summary.html:11 -msgid "Reject all change recommendations" -msgstr "" - -#: motions/static/templates/motions/motion-detail/change-summary.html:20 -#: motions/static/templates/motions/motion-detail/change-summary.html:45 -#: motions/static/templates/motions/motion-detail/view-diff.html:100 -#: motions/static/templates/motions/motion-detail/view-diff.html:16 -#: motions/static/templates/motions/motion-detail/view-diff.html:38 -#: motions/static/templates/motions/motion-detail/view-diff.html:71 -msgid "Rejected" -msgstr "" - -#: motions/static/js/motions/base.js:1611 -#: motions/static/js/motions/base.js:1626 -msgid "Rejection" -msgstr "" - -#: motions/static/js/motions/base.js:1642 -msgid "Rejection (not authorized)" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:50 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:73 -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:99 -#: core/static/templates/config-form-field.html:123 -#: core/static/templates/config-form-field.html:42 -#: motions/static/templates/motions/motion-submitters.html:23 -msgid "Remove" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:19 -msgid "Remove all speakers" -msgstr "" - -#: motions/static/js/motions/site.js:3285 -msgid "Remove all supporters of a motion if a submitter edits his motion in early state" -msgstr "" - -#: core/static/templates/core/projector-controls.html:137 -msgid "Remove countdown" -msgstr "" - -#: motions/static/templates/motions/motion-block-detail.html:62 -msgid "Remove from motion block" -msgstr "" - -#: users/static/templates/users/user-list.html:115 -#: users/static/templates/users/user-list.html:84 -msgid "Remove group" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:129 -#: assignments/static/templates/assignments/assignment-detail.html:122 -msgid "Remove me" -msgstr "" - -#: core/static/templates/core/projector-controls.html:228 -msgid "Remove message" -msgstr "" - -#: motions/static/js/motions/base.js:1495 -#: motions/static/js/motions/pdf.js:280 -#: motions/static/js/motions/site.js:370 -#: motions/static/templates/motions/motion-detail/change-summary.html:18 -#: motions/static/templates/motions/motion-detail/change-summary.html:37 -msgid "Replacement" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:20 -#: topics/static/templates/topics/topic-import.html:48 -#: users/static/templates/users/user-import.html:48 -msgid "Required comma or semicolon separated values with these column header names in the first row" -msgstr "" - -#: assignments/static/js/assignments/site.js:925 -#: assignments/static/templates/assignments/assignment-detail.html:204 -#: motions/static/js/motions/site.js:3302 -#: motions/static/templates/motions/motion-detail.html:472 -msgid "Required majority" -msgstr "" - -#: motions/static/templates/motions/workflow-detail.html:142 -msgid "Required permission to see" -msgstr "" - -#: core/static/templates/config-form-field.html:147 -msgid "Reset" -msgstr "" - -#: core/static/templates/core/projector-controls.html:159 -msgid "Reset countdown" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:311 -#: motions/static/templates/motions/motion-detail.html:246 -#: motions/static/templates/motions/motion-list.html:257 -msgid "Reset recommendation" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:170 -#: core/static/templates/core/projector-controls.html:94 -msgid "Reset scaling" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:190 -#: core/static/templates/core/projector-controls.html:114 -msgid "Reset scrolling" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:272 -#: motions/static/templates/motions/motion-detail.html:204 -#: motions/static/templates/motions/motion-list.html:231 -msgid "Reset state" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:61 -msgid "Reset zoom" -msgstr "" - -#: motions/static/templates/motions/motion-detail/comments.html:42 -#: motions/static/templates/motions/motion-detail/personal-note.html:38 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:20 -#: motions/static/templates/motions/motion-detail/view-original.html:12 -msgid "Revert" -msgstr "" - -#: core/static/js/core/site.js:2103 -msgid "Right" -msgstr "" - -#: agenda/static/js/agenda/site.js:874 -msgid "Roman" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:51 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:83 -msgid "Rotate clockwise" -msgstr "" - -#: assignments/static/templates/assignments/assignment-form.html:15 -#: assignments/static/templates/assignments/assignmentpoll-form.html:15 -#: core/static/templates/core/projector-controls.html:193 -#: core/static/templates/core/projector-message-form.html:5 -#: core/static/templates/core/tag-form.html:10 -#: mediafiles/static/templates/mediafiles/mediafile-form.html:16 -#: motions/static/templates/motions/category-form.html:10 -#: motions/static/templates/motions/change-recommendation-form.html:10 -#: motions/static/templates/motions/motion-block-form.html:10 -#: motions/static/templates/motions/motion-comment-form.html:9 -#: motions/static/templates/motions/motion-detail/comments.html:39 -#: motions/static/templates/motions/motion-detail/personal-note.html:35 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:17 -#: motions/static/templates/motions/motion-detail/view-original.html:9 -#: motions/static/templates/motions/motion-form.html:16 -#: motions/static/templates/motions/motion-poll-form.html:15 -#: motions/static/templates/motions/state-edit.html:21 -#: motions/static/templates/motions/workflow-edit.html:21 -#: topics/static/templates/topics/topic-form.html:10 -#: users/static/templates/users/group-edit.html:21 -#: users/static/templates/users/profile-password-form.html:9 -#: users/static/templates/users/user-form.html:10 -msgid "Save" -msgstr "" - -#: mediafiles/static/js/mediafiles/image-plugin.js:197 -#: mediafiles/static/js/mediafiles/image-plugin.js:46 -msgid "Scale" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:107 -msgid "Scaling" -msgstr "" - -#: users/static/js/users/pdf.js:180 -msgid "Scan this QR code to connect to WLAN." -msgstr "" - -#: users/static/js/users/pdf.js:230 -msgid "Scan this QR code to open URL." -msgstr "" - -#: core/static/templates/core/manage-projectors.html:185 -#: core/static/templates/core/projector-controls.html:109 -msgid "Scroll down" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:180 -#: core/static/templates/core/projector-controls.html:104 -msgid "Scroll up" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:303 -#: assignments/static/templates/assignments/assignment-list.html:172 -#: core/static/js/core/site.js:400 -#: core/static/templates/index.html:164 -#: core/static/templates/search.html:11 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:230 -#: motions/static/templates/motions/motion-table-filters.html:235 -#: users/static/templates/users/user-list.html:280 -msgid "Search" -msgstr "" - -#: core/static/templates/search.html:3 -msgid "Search results" -msgstr "" - -#: assignments/static/js/assignments/site.js:935 -msgid "Searching for candidates" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:73 -#: assignments/static/templates/assignments/assignment-list.html:26 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:123 -#: motions/static/templates/motions/motion-amendment-list.html:64 -#: motions/static/templates/motions/motion-list.html:47 -#: users/static/templates/users/user-list.html:39 -msgid "Select ..." -msgstr "" - -#: motions/static/templates/motions/motion-import.html:15 -#: topics/static/templates/topics/topic-import.html:43 -#: users/static/templates/users/user-import.html:43 -msgid "Select a CSV file" -msgstr "" - -#: core/static/templates/csv-import.html:8 -msgid "Select a file" -msgstr "" - -#: assignments/static/js/assignments/site.js:171 -#: motions/static/js/motions/motion-block.js:94 -#: motions/static/js/motions/site.js:556 -#: topics/static/js/topics/site.js:133 -msgid "Select a parent item ..." -msgstr "" - -#: motions/static/js/motions/site.js:603 -msgid "Select or search a category ..." -msgstr "" - -#: users/static/js/users/site.js:351 -msgid "Select or search a group ..." -msgstr "" - -#: motions/static/js/motions/site.js:617 -msgid "Select or search a motion block ..." -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:112 -#: assignments/static/templates/assignments/assignment-detail.html:107 -#: mediafiles/static/js/mediafiles/forms.js:62 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:64 -#: motions/static/templates/motions/motion-submitters.html:34 -msgid "Select or search a participant ..." -msgstr "" - -#: motions/static/js/motions/site.js:495 -msgid "Select or search a submitter ..." -msgstr "" - -#: motions/static/js/motions/site.js:654 -msgid "Select or search a supporter ..." -msgstr "" - -#: assignments/static/js/assignments/site.js:198 -#: motions/static/js/motions/site.js:640 -msgid "Select or search a tag ..." -msgstr "" - -#: motions/static/js/motions/site.js:669 -msgid "Select or search a workflow ..." -msgstr "" - -#: motions/static/js/motions/site.js:589 -#: topics/static/js/topics/site.js:118 -msgid "Select or search an attachment ..." -msgstr "" - -#: core/static/templates/core/manage-projectors.html:13 -msgid "Select the projector to which the current list of speakers refers to." -msgstr "" - -#: users/static/templates/users/user-list.html:142 -#: users/static/templates/users/user-list.html:89 -msgid "Send invitation emails" -msgstr "" - -#: core/static/templates/csv-import.html:27 -msgid "Separator" -msgstr "" - -#: core/static/js/core/site.js:2099 -msgid "Separator used for all csv exports and examples" -msgstr "" - -#: motions/static/js/motions/docx.js:93 -#: motions/static/js/motions/pdf.js:549 -#: motions/static/js/motions/pdf.js:82 -#: motions/static/templates/motions/motion-detail.html:99 -msgid "Sequential number" -msgstr "" - -#: motions/static/js/motions/site.js:3245 -msgid "Serially numbered" -msgstr "" - -#: motions/static/templates/motions/motion-list.html:305 -msgid "Set a category" -msgstr "" - -#: motions/static/templates/motions/motion-list.html:339 -msgid "Set a motion block" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:248 -#: motions/static/templates/motions/motion-detail.html:86 -#: motions/static/templates/motions/motion-list.html:210 -msgid "Set as favorite" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:118 -#: motions/static/templates/motions/motion-amendment-list.html:145 -#: motions/static/templates/motions/motion-list.html:107 -#: motions/static/templates/motions/motion-list.html:80 -msgid "Set category" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:502 -#: users/static/templates/users/user-list.html:435 -msgid "Set comment ..." -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:481 -msgid "Set duration ..." -msgstr "" - -#: users/static/templates/users/user-import.html:102 -msgid "Set global action" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:145 -msgid "Set hint for ballot paper ..." -msgstr "" - -#: motions/static/js/motions/workflow.js:72 -msgid "Set identifier" -msgstr "" - -#: motions/static/js/motions/site.js:3246 -msgid "Set it manually" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:512 -msgid "Set item number ..." -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:119 -#: motions/static/templates/motions/motion-amendment-list.html:158 -#: motions/static/templates/motions/motion-list.html:120 -#: motions/static/templates/motions/motion-list.html:81 -msgid "Set motion block" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:148 -msgid "Set state" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:117 -#: motions/static/templates/motions/motion-amendment-list.html:131 -#: motions/static/templates/motions/motion-list.html:79 -#: motions/static/templates/motions/motion-list.html:93 -msgid "Set status" -msgstr "" - -#: users/static/templates/users/user-list.html:419 -msgid "Set structure level ..." -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:147 -#: agenda/static/templates/agenda/item-list.html:166 -msgid "Set visibility" -msgstr "" - -#: users/static/templates/users/user-list.html:88 -msgid "Set/Unset 'is a committee'" -msgstr "" - -#: users/static/templates/users/user-list.html:86 -msgid "Set/Unset 'is active'" -msgstr "" - -#: users/static/templates/users/user-list.html:87 -msgid "Set/Unset 'is present'" -msgstr "" - -#: core/static/js/core/site.js:197 -#: core/static/js/core/site.js:389 -#: core/static/templates/config.html:3 -msgid "Settings" -msgstr "" - -#: core/static/js/core/site.js:2087 -msgid "Short description of event" -msgstr "" - -#: motions/static/js/motions/site.js:3271 -msgid "Show amendments together with motions" -msgstr "" - -#: motions/static/templates/motions/motion-detail/amendment-paragraph-diff.html:6 -msgid "Show entire motion text" -msgstr "" - -#: assignments/static/js/assignments/site.js:183 -#: motions/static/js/motions/site.js:571 -#: users/static/js/users/site.js:382 -msgid "Show extended fields" -msgstr "" - -#: motions/static/templates/motions/motion-detail/toolbar.html:60 -msgid "Show highlighted line also on projector" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:642 -msgid "Show history" -msgstr "" - -#: agenda/static/templates/agenda/item-sort.html:19 -msgid "Show internal items" -msgstr "" - -#: core/static/js/core/site.js:2105 -msgid "Show logo on projector" -msgstr "" - -#: agenda/static/js/agenda/site.js:880 -msgid "Show orange countdown in the last x seconds of speaking time" -msgstr "" - -#: users/static/templates/users/user-change-password.html:43 -msgid "Show password" -msgstr "" - -#: motions/static/js/motions/workflow.js:77 -msgid "Show recommendation extension field" -msgstr "" - -#: motions/static/js/motions/workflow.js:75 -msgid "Show state extension field" -msgstr "" - -#: core/static/js/core/site.js:2113 -msgid "Show the clock on projector" -msgstr "" - -#: core/static/js/core/site.js:2098 -msgid "Show this text on the login page" -msgstr "" - -#: core/static/js/core/site.js:2111 -msgid "Show title and description of event on projector" -msgstr "" - -#: motions/static/js/motions/base.js:1604 -msgid "Simple Workflow" -msgstr "" - -#: assignments/static/js/assignments/site.js:927 -#: motions/static/js/motions/site.js:3304 -msgid "Simple majority" -msgstr "" - -#: core/static/templates/core/manage-projectors.html:160 -#: core/static/templates/core/projector-controls.html:84 -msgid "Smaller" -msgstr "" - -#: mediafiles/static/js/mediafiles/upload.js:128 -#: mediafiles/static/js/mediafiles/upload.js:150 -msgid "Some files could not be uploaded" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:148 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:207 -#: motions/static/templates/motions/category-list.html:44 -#: motions/static/templates/motions/motion-table-filters.html:202 -#: users/static/templates/users/user-list.html:257 -msgid "Sort" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:79 -msgid "Sort ..." -msgstr "" - -#: agenda/static/templates/agenda/item-sort.html:9 -msgid "Sort agenda" -msgstr "" - -#: motions/static/js/motions/site.js:3317 -msgid "Sort categories by" -msgstr "" - -#: users/static/js/users/site.js:1848 -msgid "Sort name of participants by" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:146 -#: motions/static/templates/motions/motion-submitters.html:10 -msgid "Sort submitters" -msgstr "" - -#: assignments/static/templates/assignments/assignmentpoll-form.html:8 -#: motions/static/templates/motions/motion-poll-form.html:8 -msgid "Special values" -msgstr "" - -#: users/static/js/users/base.js:173 -msgid "Staff" -msgstr "" - -#: core/static/js/core/site.js:2104 -msgid "Standard font size in PDF" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:92 -#: core/static/templates/core/projector-controls.html:164 -msgid "Start" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:46 -#: core/static/templates/core/projector-controls.html:187 -msgid "Start time" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:100 -msgid "Start/stop video" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:250 -#: motions/static/js/motions/pdf.js:1115 -#: motions/static/js/motions/pdf.js:114 -#: motions/static/js/motions/pdf.js:575 -#: motions/static/js/motions/site.js:1429 -#: motions/static/js/motions/site.js:856 -#: motions/static/templates/motions/motion-block-detail.html:52 -#: motions/static/templates/motions/motion-detail.html:187 -#: motions/static/templates/motions/motion-detail.html:191 -#: motions/static/templates/motions/motion-table-filters.html:7 -#: motions/static/templates/motions/slide_motion.html:4 -msgid "State" -msgstr "" - -#: motions/static/js/motions/docx.js:95 -msgid "Status" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:66 -msgid "Stop" -msgstr "" - -#: motions/static/js/motions/site.js:3261 -msgid "Stop submitting new motions by non-staff users" -msgstr "" - -#: users/static/js/users/pdf.js:69 -#: users/static/js/users/site.js:1282 -#: users/static/js/users/site.js:324 -#: users/static/js/users/site.js:646 -#: users/static/templates/users/user-detail.html:28 -#: users/static/templates/users/user-import.html:53 -#: users/static/templates/users/user-import.html:86 -#: users/static/templates/users/user-list.html:425 -msgid "Structure level" -msgstr "" - -#: core/static/js/core/site.js:132 -#: core/static/js/core/site.js:133 -msgid "Submit" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:26 -#: motions/static/templates/motions/motion-import.html:49 -msgid "Submitter" -msgstr "" - -#: motions/static/js/motions/docx.js:94 -#: motions/static/js/motions/pdf.js:100 -#: motions/static/js/motions/pdf.js:1110 -#: motions/static/js/motions/pdf.js:563 -#: motions/static/js/motions/site.js:102 -#: motions/static/js/motions/site.js:1423 -#: motions/static/js/motions/site.js:492 -#: motions/static/js/motions/site.js:855 -#: motions/static/templates/motions/motion-detail.html:143 -#: motions/static/templates/motions/motion-detail.html:145 -#: motions/static/templates/motions/slide_motion.html:14 -msgid "Submitters" -msgstr "" - -#: motions/static/js/motions/pdf.js:291 -msgid "Summary of change recommendations" -msgstr "" - -#: motions/static/templates/motions/motion-detail/change-summary.html:4 -msgid "Summary of changes" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:164 -msgid "Support motion" -msgstr "" - -#: motions/static/js/motions/site.js:3282 -#: motions/static/js/motions/site.js:651 -#: motions/static/templates/motions/motion-amendment-list.html:385 -#: motions/static/templates/motions/motion-detail.html:156 -#: motions/static/templates/motions/motion-list.html:419 -msgid "Supporters" -msgstr "" - -#: users/static/js/users/site.js:1852 -#: users/static/js/users/site.js:304 -#: users/static/js/users/site.js:636 -#: users/static/templates/users/user-import.html:52 -#: users/static/templates/users/user-import.html:85 -msgid "Surname" -msgstr "" - -#: users/static/js/users/site.js:1858 -msgid "System URL" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:552 -#: motions/static/js/motions/docx.js:52 -#: motions/static/js/motions/pdf.js:872 -msgid "Table of contents" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:105 -#: motions/static/templates/motions/motion-table-filters.html:141 -msgid "Tag" -msgstr "" - -#: assignments/static/js/assignments/site.js:195 -#: assignments/static/templates/assignments/assignment-detail.html:55 -#: assignments/static/templates/assignments/assignment-list.html:10 -#: core/static/js/core/site.js:410 -#: core/static/templates/core/tag-list.html:13 -#: motions/static/js/motions/site.js:637 -#: motions/static/templates/motions/motion-detail.html:340 -#: motions/static/templates/motions/motion-detail.html:344 -#: motions/static/templates/motions/motion-list.html:27 -msgid "Tags" -msgstr "" - -#: motions/static/js/motions/site.js:518 -#: motions/static/js/motions/site.js:985 -#: motions/static/templates/motions/motion-import.html:24 -#: motions/static/templates/motions/motion-import.html:47 -#: topics/static/js/topics/site.js:103 -#: topics/static/templates/topics/topic-import.html:51 -#: topics/static/templates/topics/topic-import.html:70 -msgid "Text" -msgstr "" - -#: motions/static/js/motions/site.js:392 -msgid "Text from line %from% to %to%" -msgstr "" - -#: motions/static/js/motions/site.js:391 -msgid "Text in line %from%" -msgstr "" - -#: motions/static/js/motions/site.js:3296 -msgid "The 100 % base of a voting result consists of" -msgstr "" - -#: assignments/static/js/assignments/site.js:910 -msgid "The 100-%-base of an election result consists of" -msgstr "" - -#: motions/static/js/motions/site.js:3248 -msgid "The assembly may decide:" -msgstr "" - -#: core/static/js/core/site.js:1847 -msgid "The delete was successful." -msgstr "" - -#: core/static/templates/privacypolicydialog.html:3 -msgid "The event manager hasn't set up a privacy policy yet." -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:16 -msgid "The final print template have been changed." -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:26 -msgid "The list of speakers is empty." -msgstr "" - -#: motions/static/js/motions/site.js:3257 -msgid "The maximum number of characters per line. Relevant when line numbering is enabled. Min: 40" -msgstr "" - -#: motions/static/templates/motions/motion-detail/personal-note.html:34 -msgid "The personal note has been changed." -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:364 -msgid "The projector header should have a default size of 1024x70px. Adapt the image width if you change the projector resolution." -msgstr "" - -#: core/static/js/core/base.js:794 -msgid "The server didn't respond." -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-original.html:8 -msgid "The text or reason have been changed." -msgstr "" - -#: motions/static/js/motions/site.js:3274 -msgid "The title of the motion is always applied." -msgstr "" - -#: users/static/js/users/site.js:830 -msgid "The user %user% has no email, so the invitation email could not be send." -msgstr "" - -#: users/static/js/users/site.js:832 -msgid "The users %user% have no email, so the invitation emails could not be send." -msgstr "" - -#: users/static/js/users/site.js:1265 -msgid "There are more than one duplicates of this user!" -msgstr "" - -#: motions/static/templates/motions/motion-detail/view-diff.html:57 -msgid "This change collides with another one." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:620 -msgid "This is the last active version." -msgstr "" - -#: agenda/static/js/agenda/site.js:869 -msgid "This prefix will be set if you run the automatic agenda numbering." -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:96 -msgid "This version is not permitted." -msgstr "" - -#: assignments/static/js/assignments/site.js:929 -#: motions/static/js/motions/site.js:3306 -msgid "Three-quarters majority" -msgstr "" - -#: assignments/static/js/assignments/site.js:129 -#: assignments/static/js/assignments/site.js:335 -#: mediafiles/static/js/mediafiles/forms.js:44 -#: mediafiles/static/js/mediafiles/list.js:100 -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:24 -#: motions/static/js/motions/motion-block.js:79 -#: motions/static/js/motions/pdf.js:264 -#: motions/static/js/motions/site.js:1421 -#: motions/static/js/motions/site.js:506 -#: motions/static/templates/motions/motion-detail/change-summary.html:17 -#: motions/static/templates/motions/motion-import.html:23 -#: motions/static/templates/motions/motion-import.html:46 -#: topics/static/js/topics/site.js:95 -#: topics/static/templates/topics/topic-import.html:50 -#: topics/static/templates/topics/topic-import.html:69 -#: users/static/js/users/site.js:288 -#: users/static/templates/users/user-import.html:50 -#: users/static/templates/users/user-import.html:83 -msgid "Title" -msgstr "" - -#: motions/static/js/motions/site.js:3315 -msgid "Title for PDF and DOCX documents (all motions)" -msgstr "" - -#: assignments/static/js/assignments/site.js:932 -msgid "Title for PDF document (all elections)" -msgstr "" - -#: users/static/js/users/site.js:1855 -msgid "Title for access data and welcome PDF" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:56 -msgid "Title is required. All other fields are optional and may be empty." -msgstr "" - -#: motions/static/js/motions/site.js:360 -msgid "To Line" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:76 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:93 -msgid "Toggle fullscreen" -msgstr "" - -#: topics/static/js/topics/base.js:16 -#: topics/static/js/topics/site.js:161 -#: topics/static/templates/topics/topic-detail.html:25 -msgid "Topic" -msgstr "" - -#: topics/static/js/topics/site.js:17 -msgid "Topics" -msgstr "" - -#: motions/static/js/motions/site.js:539 -#: motions/static/templates/motions/motion-detail/view-modified-agreed.html:25 -#: motions/static/templates/motions/motion-detail/view-original.html:17 -msgid "Trivial change" -msgstr "" - -#: assignments/static/js/assignments/site.js:928 -#: motions/static/js/motions/site.js:3305 -msgid "Two-thirds majority" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:102 -msgid "Type" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:169 -msgid "Unsupport motion" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:87 -msgid "Upload" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:1 -msgid "Upload files" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:33 -msgid "Upload status" -msgstr "" - -#: mediafiles/static/js/mediafiles/list.js:106 -msgid "Upload time" -msgstr "" - -#: mediafiles/static/js/mediafiles/forms.js:59 -#: mediafiles/static/js/mediafiles/list.js:108 -msgid "Uploaded by" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:30 -msgid "Uploader" -msgstr "" - -#: assignments/static/js/assignments/site.js:923 -#: motions/static/js/motions/site.js:3311 -msgid "Use the following custom number" -msgstr "" - -#: users/static/js/users/site.js:1876 -msgid "Use these placeholders: {name}, {event_name}, {url}, {username}, {password}. The url referrs to the system url." -msgstr "" - -#: users/static/js/users/site.js:1859 -msgid "Used for QRCode in PDF of access data." -msgstr "" - -#: users/static/js/users/site.js:1861 -#: users/static/js/users/site.js:1863 -#: users/static/js/users/site.js:1865 -msgid "Used for WLAN QRCode in PDF of access data." -msgstr "" - -#: core/static/templates/core/login-form.html:12 -#: users/static/js/users/pdf.js:193 -#: users/static/js/users/site.js:1283 -#: users/static/js/users/site.js:340 -#: users/static/js/users/site.js:463 -#: users/static/templates/users/user-change-password.html:41 -#: users/static/templates/users/user-detail.html:46 -msgid "Username" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:123 -msgid "Users created" -msgstr "" - -#: users/static/templates/users/group-list.html:35 -msgid "Users without any assigned group gain the permissions from this group." -msgstr "" - -#: assignments/static/js/assignments/site.js:826 -#: assignments/static/templates/assignments/assignment-detail.html:268 -#: assignments/static/templates/assignments/slide_assignment.html:82 -msgid "Valid ballots" -msgstr "" - -#: motions/static/js/motions/pdf.js:209 -#: motions/static/js/motions/site.js:790 -#: motions/static/templates/motions/motion-detail.html:441 -msgid "Valid votes" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:613 -#: motions/static/templates/motions/motion-detail.html:616 -msgid "Version" -msgstr "" - -#: motions/static/templates/motions/motion-detail.html:609 -msgid "Version history" -msgstr "" - -#: motions/static/js/motions/workflow.js:68 -msgid "Versioning" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:274 -msgid "Visibility" -msgstr "" - -#. ballot of a motion -#: motions/static/js/motions/pdf.js:186 -#: motions/static/templates/motions/motion-detail.html:372 -#: motions/static/templates/motions/motion-poll-form.html:1 -#: motions/static/templates/motions/slide_motion.html:24 -msgid "Vote" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:154 -#: assignments/static/templates/assignments/assignment-detail.html:214 -#: assignments/static/templates/assignments/slide_assignment.html:37 -msgid "Votes" -msgstr "" - -#: motions/static/js/motions/pdf.js:223 -#: motions/static/js/motions/site.js:808 -#: motions/static/templates/motions/motion-detail.html:459 -msgid "Votes cast" -msgstr "" - -#: assignments/static/js/assignments/site.js:936 -msgid "Voting" -msgstr "" - -#: motions/static/js/motions/site.js:3295 -msgid "Voting and ballot papers" -msgstr "" - -#: motions/static/js/motions/pdf.js:231 -#: motions/static/js/motions/site.js:887 -#: motions/static/templates/motions/motion-detail.html:367 -#: motions/static/templates/motions/slide_motion.html:20 -msgid "Voting result" -msgstr "" - -#: users/static/js/users/site.js:1866 -msgid "WEP" -msgstr "" - -#: users/static/js/users/pdf.js:137 -msgid "WLAN access data" -msgstr "" - -#: users/static/js/users/pdf.js:157 -#: users/static/js/users/site.js:1864 -msgid "WLAN encryption" -msgstr "" - -#: users/static/js/users/pdf.js:141 -#: users/static/js/users/site.js:1860 -msgid "WLAN name (SSID)" -msgstr "" - -#: users/static/js/users/pdf.js:149 -#: users/static/js/users/site.js:1862 -msgid "WLAN password" -msgstr "" - -#: users/static/js/users/site.js:1867 -msgid "WPA/WPA2" -msgstr "" - -#: assignments/static/templates/assignments/slide_assignment.html:29 -msgid "Waiting for results ..." -msgstr "" - -#: core/static/js/core/site.js:747 -msgid "Warning" -msgstr "" - -#: core/static/js/core/site.js:2126 -msgid "Web interface header logo" -msgstr "" - -#: core/static/js/core/site.js:2094 -#: users/static/js/users/site.js:1854 -msgid "Welcome to OpenSlides" -msgstr "" - -#: motions/static/js/motions/site.js:3265 -msgid "Will be displayed as label before selected recommendation. Use an empty value to disable the recommendation system." -msgstr "" - -#: motions/static/js/motions/base.js:1628 -msgid "Withdraw" -msgstr "" - -#: motions/static/js/motions/site.js:665 -msgid "Workflow" -msgstr "" - -#: motions/static/js/motions/site.js:3242 -msgid "Workflow of new motions" -msgstr "" - -#: motions/static/js/motions/site.js:199 -#: motions/static/templates/motions/motion-list.html:23 -#: motions/static/templates/motions/workflow-list.html:13 -msgid "Workflows" -msgstr "" - -#: motions/static/js/motions/workflow.js:82 -msgid "Yellow" -msgstr "" - -#: assignments/static/js/assignments/pdf.js:317 -#: assignments/static/js/assignments/site.js:611 -#: assignments/static/js/assignments/site.js:729 -#: motions/static/js/motions/pdf.js:193 -#: motions/static/js/motions/pdf.js:739 -#: motions/static/js/motions/site.js:760 -#: motions/static/templates/motions/motion-detail.html:405 -#: motions/static/templates/motions/slide_motion.html:32 -msgid "Yes" -msgstr "" - -#: motions/static/js/motions/site.js:3298 -msgid "Yes/No" -msgstr "" - -#: assignments/static/js/assignments/site.js:916 -#: assignments/static/templates/assignments/assignment-detail.html:289 -msgid "Yes/No per candidate" -msgstr "" - -#: motions/static/js/motions/site.js:3297 -msgid "Yes/No/Abstain" -msgstr "" - -#: assignments/static/js/assignments/site.js:915 -#: assignments/static/templates/assignments/assignment-detail.html:288 -msgid "Yes/No/Abstain per candidate" -msgstr "" - -#: users/static/templates/users/group-list.html:69 -msgid "You are not allowed to lock yourself out of the configuration!" -msgstr "" - -#: core/static/js/core/site.js:2106 -msgid "You can replace the logo by uploading an image and set it as the \"Projector logo\" in \"files\"." -msgstr "" - -#: users/static/js/users/site.js:1873 -msgid "You can use {event_name} as a placeholder." -msgstr "" - -#: users/static/js/users/site.js:1736 -msgid "You have to enable cookies to use OpenSlides." -msgstr "" - -#: users/static/templates/users/user-change-password.html:17 -msgid "You override the personally set password of" -msgstr "" - -#: users/static/js/users/site.js:1872 -msgid "Your login for {event_name}" -msgstr "" - -#: motions/static/js/motions/pdf.js:1376 -msgid "ZIP successfully generated." -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:66 -msgid "Zoom in" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:57 -msgid "Zoom out" -msgstr "" - -#: agenda/static/js/agenda/site.js:883 -msgid "[Begin speech] starts the countdown, [End speech] stops the countdown." -msgstr "" - -#: users/static/js/users/site.js:1856 -msgid "[Place for your welcome and help text.]" -msgstr "" - -#: core/static/js/core/site.js:2096 -msgid "[Space for your welcome text.]" -msgstr "" - -#: motions/static/js/motions/base.js:1606 -#: motions/static/js/motions/base.js:1621 -msgid "accepted" -msgstr "" - -#: motions/static/js/motions/base.js:1629 -msgid "adjourned" -msgstr "" - -#: topics/static/js/topics/csv.js:26 -msgid "agenda-example" -msgstr "" - -#: users/static/js/users/site.js:1284 -msgid "already exists." -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:175 -#: motions/static/templates/motions/motion-list.html:438 -msgid "amendments" -msgstr "" - -#: users/static/js/users/site.js:852 -msgid "and" -msgstr "" - -#: core/static/js/core/site.js:753 -msgid "anonymous users are also editing this." -msgstr "" - -#: core/static/js/core/site.js:770 -msgid "are also editing this." -msgstr "" - -#: motions/static/js/motions/pdf.js:1392 -msgid "ballot-paper" -msgstr "" - -#: motions/static/templates/motions/motion-amendment-list.html:320 -#: motions/static/templates/motions/motion-list.html:267 -msgid "by" -msgstr "" - -#: core/static/js/core/site.js:46 -msgid "clear" -msgstr "" - -#: core/static/js/core/site.js:58 -msgid "close" -msgstr "" - -#: users/static/js/users/site.js:1178 -msgid "create duplicate" -msgstr "" - -#: core/static/js/core/site.js:50 -msgid "date" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:25 -#: motions/static/templates/motions/motion-table-filters.html:263 -msgid "done" -msgstr "" - -#: users/static/templates/users/user-import.html:97 -msgid "duplicate" -msgstr "" - -#: users/static/templates/users/user-import.html:210 -#: users/static/templates/users/user-import.html:98 -msgid "duplicates" -msgstr "" - -#: assignments/static/templates/assignments/assignment-list.html:66 -msgid "elections" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-list.html:144 -msgid "files" -msgstr "" - -#: motions/static/templates/motions/motion-detail/toolbar.html:54 -msgid "go" -msgstr "" - -#. 'h' means time in hours -#: agenda/static/templates/agenda/item-list.html:484 -#: agenda/static/templates/agenda/item-list.html:492 -msgid "h" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:27 -msgid "imported" -msgstr "" - -#: motions/static/js/motions/site.js:932 -#: motions/static/js/motions/site.js:945 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:17 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:43 -msgid "inline" -msgstr "" - -#: motions/static/js/motions/docx.js:168 -#: motions/static/js/motions/pdf.js:1421 -#: motions/static/js/motions/pdf.js:425 -#: motions/static/templates/motions/motion-detail/comments.html:25 -msgid "internal" -msgstr "" - -#: core/static/js/core/site.js:768 -msgid "is also editing this." -msgstr "" - -#: assignments/static/js/assignments/pdf.js:223 -#: assignments/static/templates/assignments/assignment-detail.html:224 -#: assignments/static/templates/assignments/assignment-detail.html:95 -#: assignments/static/templates/assignments/slide_assignment.html:23 -#: assignments/static/templates/assignments/slide_assignment.html:44 -msgid "is elected" -msgstr "" - -#: assignments/static/templates/assignments/assignment-detail.html:227 -msgid "is not elected" -msgstr "" - -#: users/static/js/users/site.js:1106 -msgid "is now" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:124 -msgid "is set" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:193 -msgid "items" -msgstr "" - -#: users/static/js/users/site.js:1176 -msgid "keep original" -msgstr "" - -#: assignments/static/js/assignments/base.js:280 -#: assignments/static/js/assignments/base.js:50 -#: assignments/static/templates/assignments/assignmentpoll-form.html:9 -#: motions/static/js/motions/base.js:157 -#: motions/static/templates/motions/motion-poll-form.html:9 -msgid "majority" -msgstr "" - -#: agenda/static/templates/agenda/list-of-speakers-partial-management.html:45 -msgid "minutes" -msgstr "" - -#: motions/static/js/motions/csv.js:42 -#: motions/static/js/motions/docx.js:188 -#: motions/static/js/motions/pdf.js:1325 -#: motions/static/js/motions/pdf.js:1338 -#: motions/static/templates/motions/motion-block-detail.html:44 -#: motions/static/templates/motions/motion-list.html:137 -msgid "motions" -msgstr "" - -#: motions/static/templates/motions/motion-import.html:122 -msgid "motions were successfully imported." -msgstr "" - -#: motions/static/templates/motions/motion-import.html:115 -msgid "motions will be imported." -msgstr "" - -#: motions/static/templates/motions/motion-import.html:110 -msgid "motions will be not imported." -msgstr "" - -#: motions/static/js/motions/csv.js:126 -msgid "motions-example" -msgstr "" - -#: motions/static/js/motions/site.js:3321 -msgid "needed" -msgstr "" - -#: motions/static/js/motions/base.js:1638 -msgid "needs review" -msgstr "" - -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:11 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:37 -msgid "none" -msgstr "" - -#: motions/static/js/motions/base.js:1632 -msgid "not concerned" -msgstr "" - -#: motions/static/js/motions/base.js:1612 -msgid "not decided" -msgstr "" - -#: core/static/js/core/site.js:38 -msgid "now" -msgstr "" - -#: agenda/static/js/agenda/site.js:563 -#: agenda/static/js/agenda/site.js:836 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:47 -msgid "of" -msgstr "" - -#: motions/static/js/motions/site.js:933 -#: motions/static/js/motions/site.js:946 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:23 -#: motions/static/templates/motions/motion-detail/toolbar-line-numbering.html:49 -msgid "outside" -msgstr "" - -#: users/static/js/users/site.js:1177 -msgid "override new" -msgstr "" - -#: users/static/js/users/csv.js:44 -#: users/static/templates/users/user-list.html:150 -msgid "participants" -msgstr "" - -#: users/static/templates/users/user-import.html:225 -msgid "participants were successfully imported." -msgstr "" - -#: users/static/templates/users/user-import.html:215 -msgid "participants will be imported." -msgstr "" - -#: users/static/templates/users/user-import.html:205 -msgid "participants will be not imported." -msgstr "" - -#: users/static/js/users/csv.js:68 -msgid "participants-example" -msgstr "" - -#: motions/static/js/motions/base.js:1618 -msgid "permitted" -msgstr "" - -#: motions/static/js/motions/site.js:2057 -msgid "personal note" -msgstr "" - -#: motions/static/js/motions/base.js:1617 -msgid "published" -msgstr "" - -#: motions/static/js/motions/base.js:1635 -msgid "refered to committee" -msgstr "" - -#: motions/static/js/motions/base.js:1609 -#: motions/static/js/motions/base.js:1624 -msgid "rejected" -msgstr "" - -#: motions/static/js/motions/base.js:1640 -msgid "rejected (not authorized)" -msgstr "" - -#: core/static/templates/search.html:28 -msgid "results" -msgstr "" - -#: mediafiles/static/templates/mediafiles/mediafile-upload-form.html:11 -msgid "select files" -msgstr "" - -#: agenda/static/templates/agenda/item-list.html:194 -#: assignments/static/templates/assignments/assignment-list.html:67 -#: mediafiles/static/templates/mediafiles/mediafile-list.html:145 -#: motions/static/templates/motions/motion-amendment-list.html:176 -#: motions/static/templates/motions/motion-list.html:138 -#: users/static/templates/users/user-list.html:151 -msgid "selected" -msgstr "" - -#: agenda/static/templates/agenda/partial-slide-current-list-of-speakers.html:8 -#: agenda/static/templates/agenda/slide-list-of-speakers.html:9 -#: motions/static/templates/motions/motion-list.html:430 -msgid "speakers" -msgstr "" - -#: motions/static/js/motions/base.js:1605 -msgid "submitted" -msgstr "" - -#: core/static/js/core/site.js:54 -msgid "time" -msgstr "" - -#: core/static/js/core/site.js:42 -msgid "today" -msgstr "" - -#: topics/static/templates/topics/topic-import.html:116 -msgid "topics were successfully imported." -msgstr "" - -#: topics/static/templates/topics/topic-import.html:109 -msgid "topics will be imported." -msgstr "" - -#: topics/static/templates/topics/topic-import.html:104 -msgid "topics will be not imported." -msgstr "" - -#: mediafiles/static/js/mediafiles/resources.js:141 -msgid "undefined" -msgstr "" - -#: assignments/static/js/assignments/base.js:283 -#: assignments/static/js/assignments/base.js:53 -#: assignments/static/templates/assignments/assignmentpoll-form.html:10 -#: motions/static/js/motions/base.js:160 -#: motions/static/templates/motions/motion-poll-form.html:10 -msgid "undocumented" -msgstr "" - -#: motions/static/templates/motions/motion-table-filters.html:269 -#: motions/static/templates/motions/motion-table-filters.html:31 -msgid "undone" -msgstr "" - -#: motions/static/js/motions/base.js:1627 -msgid "withdrawed" -msgstr "" diff --git a/openslides/locale/cs/LC_MESSAGES/django.mo b/openslides/locale/cs/LC_MESSAGES/django.mo deleted file mode 100644 index e07624f448c85f4437e0d015af37c2a75751639a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13814 zcmb`NdyE~`eaD9eLNG}PU`i=Xa_q2p7rb}Z#t>)02IEI;u-6-G%%gyrd*|%l**kaU zGLO65H4aJo2x@CZilBv>s@gUUby~|(l%#DM6RCH%v`yNewo)qoAgNR}QAFFMNuxw+ zLqESWGk50R-8Bx%$mf3NaUQ?(d!OI>)hjN1#^QR4_Di&fF0`!AgU`Q>AFkG=mi0dH zF|YzY1M<&Wp}!xv4wUsD0_FXOL8i3+0Hmw+XW(_<--EY+{|!pN5jHLRIsl5? zB2a}E^+&-=z~2CcA5UlRp9f|BKLTN$^*5mK+gc1_dfw;o;3(h^kgk4&s#u|%XU!KI|Q;t>mg9&+6JZHpMo;~7eJw-3yPk61zZDu z2Nb#e4=DS)mXAW$9uSqY9tK~(0KWl>oF7xEoj(J@Dys{QgRg>n!OPaA{q6_1^85t& z0r2yn=;MEZLf_ReLF9J;l=VYU z{4^-@zQm90_cc)L_y?fOdl8fUCO8S=LabN73Gh3htUrX2iC#YpihQ32hruq$KkGGq zq~DcnM*7_iihg_yd@Fbcl=Z#2Wm4haT_CS44T}6ufMRDa zfHKcn5LQ_Kkm2{h5uVrb6M@@7(TmT53jD|H`TL;A^GbeX-tC}#zaJER?SQ+%KLNLa z-vd!KYYgQU|FItwzI+6f_kRh>I{yO7_#c6{f;X^v;mb5A^PB*M|6c*`1HTK(e)f*0 ze(@1d^ra2n4ZZ-fwDtWA-viSx;&~s4%2@|N1^S@qghe0n{@ z^*GP{JnsfC2R{kQI-dfCuU`XY{%?Y^-`BzW!J8lsQ?PyubivPnsG7BwO$#5kf>YqV zpy>6dLD}y&!FAw8C?U7j22jR703r&j3yPfo0~9*1Vo|2Hwt}$IazUZz8Sri3=fF$A zv)S`Y+4IXFEVW(%g`SJIq;`58D16%rz60D2z8%~Tt^pqag)S$1|J&eNp8pV(?|%-; zzPsS<;J<vO5}gu03(v}z*wiuFy|lG7)W_OI`&F9Ay+sqg3y`kMQokg(J7^+<8Jfr-zhs|J(e~0H-|*vM(5Hzm$R#|^uQ_hSR^&QNv&~)l6J_@< zD0~tb<<~qnx6pnrf05xd_$W=$9;7`%6I;2GCRd$yz}%%iM{YkvL$%Cx2fvdv(WiAZ z@mB|Fa*54;jJA)qhbGqpG|a~OAnn66(UV!)rL@OsqHm%L9_+-;rq+o?$m3C+Ld^s3o_m^duLx&sDp(klIn&_uoL$sK7n>=LKL!jv4$7#Pt zo1z_|T|;Zo#HM%C9GYAgreJ=>Z-`Gr)s1bw6C9@9L%WJ5dN0>@+STSRwW(i``=R03 zZR(@8?;LIFD6(gCG!m(5M-2_PbQlHxNM!9$zTMP{KFU_Dr0Tgf)d~Z?#~oF-+gine zs%kakwlxlJ$BgzJTe-1rT01;X)#`Sv^2wE>JsoRDMMQiBuBlkU4$j2eA+u z_{wvmI8wp1idx!kFcKP~$er<<+K-vVg9674jQU7bku2m?tUGPbW42nTP0#-A?9A3m zzp855x2kJ4q^P*gK9o)K10l*%G@+ikU?Y8kpyBGMEFkUMRgY~UE}`RKOZ$gB*O8@n+qJq%Cy1kIS9^}gArr~b z`~#CknXql;xV1PN=sM*uK0{ahGGmw(3IlvK&RDi5k_r52cShN99J&m*d7~qI!Zr|)(Kxx&2;CPo)$CJvbua34Ow3FM9XGDxSj�xgd0o zt7#-R?S|~#3uauuqV_e#UTr^~P*cK3El$Fp(W(<9p~?rYV^xSmxzK4_Xed1uREr)W z8awQ4R5Mt`5bC^2*C=ReYhG>>Zu|IhkEN79S#mS z6eG^_=m)bxHN>t&H$>HpUKFz#9j~aJ#t4dDO*^jDi(a_jri;tMnU!RDusSO;UTx}B z!9*U*jIOY(inU+#wB#K7+)vL19xx8uN+I`z`D5;ro%}`OFMrh%$LCm+LC+1R?y9O$ z+su`#=`d)D%P>B>OjX4?h?~l_rPy=EsHsf<`iT!UUbA8i2v$5GN(Zi90m3=E13At@JgI8S*XTd)p3OamMP{abr%R2Gc>}6IrC!Oc*3BT&?&L z(NR|M0)IxFZ$<4$U(LA$%^3*+V4)2WgR!jC&1-S%2$Ffm#MP$rrfWzDEVEOI-|~V; zqMOjL(svVT($6gd7@;x^5z9Cx6ZAVNSt{mjHbBB#%1~pl(w|VQAr~^HUEhuBY{3ua z($(-j*w!0OK}cmZQB~ZsiR@zQq#xSqqlOO0T*N#4Ju`k$|l;G#1Ejoe84oLeEQ?UgV8wFfKX~yCi)sQtc=)!Bp5~f`nK(xoc*DM@*(5T82{P zSyGW-F=pIa-Y3&+kHj0bpwsAP>j=rOWHuR^z{GCFf%L`ratGsW;uX3C7-^OgTSrO{ zgHy?;>?Dx(OR`X42BlGo92jP~Y0$4&_XS~Nn(RkTCXJEh(eu6#2Wc_|$qq|d&CsyU z5*(8^jzn3SFif(Ly{T9a1c}MWmzhNV;f*!EuV;b|k`&7E1JHgfMn^tpC+f6PS*= z4(VfA5cvdY+%l0S?>UkwM9%aqElS0eM#uiSdYRMeUGjrsnn1s4p_s#bFHI{iH(4N@bY2JdBr797pg(vRnqU0Em@(SHWd=oO-}4C9$NEKP6Xy_ zdZUJoFT+Ezoq6qySa}WPr%S$5xy#I?twAl3?8-be$l81>A#Gir+eoIcZx^D@MaGC@ zY4&{Fq_zELS>>9OqWDmAygV+xEBDc>dQw7S!F#)RhV6Tu6|1JgK)5ox&l$}E;6$k| zvgRHw2i4I7(TwYi-kHoqqlbeDwPxzz;nAH^%ph=%?!sM8sLkV>wvLY9Ji7TNwdt0L zO*h>*zIl9{j-&S=ZSiL-^xHDA>E;{9xz_BbmN0raOA4jHu$yEu(VjX~t9QQ?&uev? zPTy3bT0POcxkFB&xN4@ZIC?u%_%jK)=;&c>Hz(B2dC8@R>v7zg7#o|Lo2$e!y*sTR z=XBp3qkKmOD#f4jt(Q$QR*S|))*RS(V0XcmO_lLAI|CN=A(aq2p^P>BR<> z(qQR1+ey@{c6>f{Pg~vJjarK*mlpiRlPYT3^D;oSmllu|H}kEqyU?bP7tGg#b`T~N z>q!2M3EE+u&MK(#MJ=9ieIdjxS4g{GET#_@PjpX5UeHd7Vj`DCT!?be=s-fe*FB{I z2iIgnkMB}4m3k?3s$}U!lLUCm*UhCfOE2nlk8MtD^SHJ|Ej_0fPtdiobcPf*@6Lo# z3wx3|BGvt3Bk*(+EXZPS@zQhM(~hiIvG&4HL!xl8;{|cyyyQizV>Hy&NjMnt6qMVyB?X1_PPm1-)p_f1YPW)Nl4bZQ^L+HInk$Y36Mo#I3b zqmsoFvKtFG0qfvP_q1>na*N`rq~G1sM6ni9^O%EecNZ2wMe!gr?2WdiYC*aua{orNN{Je z_=&y=dK#T_z=*CWzp~#2QC@~ugJs265t^ueQ6@Fh`#Ngop9+ilY3DD`QY>&J@T#`8 zv)-xN6k$2XU}R5;g>iDqs<4gjLd>yf7>?Vi^dvPIArGvhDa-6<)`c;%B9B=Yu{Q@h zMGwUe`W0%oQYu8NJ-dc#hCy}lB!<&Rf|?SQc4yJua`9G` zO1G`0=WrTf8y#yZd8nh?cqP#}wQK2&hhDjH_tb=Xu!(DXD%Qp%F^J|y6^XXjHEw7f zn<7xevL#6r#qRo^)xpxP2H3h0nK+@CD+L=;hjR=K6uzt$s9C!~sy3p^Jbc-~msLiBQ_q1zn+Z!9;Gg3* zF;DyXi#*t%sf0xdJVZr^KnsXwQlb)}+Ie@o5hs-U=Z&#g4|2?09&OknuG}pLE|qzy z(>;^2w1u$*f_8%}Y&T}WEwxl0SG=@Y3k$8XF9lQ9ZFc9U<}C;-|6 zj~kx+X|d$KQmZMYWqJNnBzuZ%Y6asO7}Hk7mRcPRBCn}-7dTJAAU2p8oMbX64^>M^ zKnj&2-9iQ?u+B45v|z=Lvz!=>tq*+nO%{?Ta=MA?4HB~Ah;*^;*=8>ZTy5+*62sMq z8cZN17D~oXo_HRt92}kVWva)(!bHR_%!d#N`zcuLJSyQhe>Cgn51n_FW}SyFOpx|vOZw->Dzmh!Tk z(dG8fTzj*$N&K5N;$uhKYJ}JiI-BWzQXujCO?iy5p$iL;l^&dtWq`ETkoq#mSZWIr{s)1#ze71lAi?~a`?>_F?v8C zph!ON<`GR8JxI;Uq(WmuqD$)KAR6yg@~yghUYzL<$>waH1||-_i1r*M@`2N~L=O{z zhq;S2WppWyr;!!5=lP@j0oPLD7lUZpa3vi8iXIM(C>X?HtDcHe&L_G0 z{;b56Cb}HnJ!R~qtj_&39mwkj*akM5R?vlX99B-1)K|{cPvUEp{AO_XSt7NJf=D(` z(fE+TltOb%%NI=9P$HWD>PGEk*+jnGHb*k*&qTsmoBusQf+Up~Kd^ef?uhZ=9 zZB$KDuO3)OdNq&bRXnMvYeo|Yd*`N#HQ&~(I4fncz~o#K_ye&WR+V}jTPGKc%}T{B zrO7mK_SPQhog6r#5IH)lI6HUM1Pu+(Hs=HlQ*t*Ml, 2013 -# Emanuel Schütze , 2013 -# fri, 2013 -# Norman Jäckel , 2013-2014 -# Oskar Hahn , 2012 -# fri, 2015-2017 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-05-23 16:13+0200\n" -"PO-Revision-Date: 2018-05-23 14:15+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: Czech (http://www.transifex.com/openslides/openslides/language/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: agenda/models.py:206 -msgid "Agenda item" -msgstr "Položka pořadu jednání" - -#: agenda/models.py:207 -msgid "Hidden item" -msgstr "Skrytá položka" - -#: agenda/models.py:356 -#, python-brace-format -msgid "{user} is already on the list of speakers." -msgstr "{user} je již na seznamu řečníků." - -#: agenda/models.py:359 -msgid "An anonymous user can not be on lists of speakers." -msgstr "Anonymní uživatel nemůže být v seznamu řečníků." - -#: agenda/views.py:116 -msgid "The list of speakers is closed." -msgstr "Seznam řečníků je uzavřen." - -#: agenda/views.py:125 agenda/views.py:150 -msgid "User does not exist." -msgstr "Uživatel neexistuje." - -#: agenda/views.py:133 -#, python-format -msgid "User %s was successfully added to the list of speakers." -msgstr "Uživatel %s byl úspěšně přidán do seznamu řečníků." - -#: agenda/views.py:154 -msgid "Marked has to be a bool." -msgstr "" - -#: agenda/views.py:163 -msgid "The user is not in the list of speakers." -msgstr "" - -#: agenda/views.py:168 -msgid "You are successfully marked the speaker." -msgstr "" - -#: agenda/views.py:170 -msgid "You are successfully unmarked the speaker." -msgstr "" - -#: agenda/views.py:187 -msgid "You are not on the list of speakers." -msgstr "Nejste na seznamu řečníků." - -#: agenda/views.py:190 -msgid "You are successfully removed from the list of speakers." -msgstr "Jste úspěšně odstraněn ze seznamu řečníků." - -#: agenda/views.py:212 -msgid "speakers have been removed from the list of speakers." -msgstr "Řečníci byly úspěšně odstraněni ze seznamu řečníků." - -#: agenda/views.py:214 -#, python-format -msgid "User %s has been removed from the list of speakers." -msgstr "Uživatel %s byl odstraněn ze seznamu řečníků." - -#: agenda/views.py:216 -msgid "No speakers have been removed from the list of speakers." -msgstr "Ze seznamu řečníků nebyli odstraněni žádní řečníci " - -#: agenda/views.py:236 -msgid "The list of speakers is empty." -msgstr "Seznam řečníků je prázdný." - -#: agenda/views.py:241 -msgid "Speaker does not exist." -msgstr "Řečník neexistuje." - -#: agenda/views.py:243 -msgid "User is now speaking." -msgstr "Uživatel nyní mluví." - -#: agenda/views.py:254 -#, python-format -msgid "There is no one speaking at the moment according to %(item)s." -msgstr "Nyní nemluví žádný řečník podle %(item)s." - -#: agenda/views.py:256 -msgid "The speech is finished now." -msgstr "Řeč je nyní skončena." - -#: agenda/views.py:275 agenda/views.py:287 assignments/views.py:222 -msgid "Invalid data." -msgstr "Neplatná data." - -#: agenda/views.py:300 -msgid "List of speakers successfully sorted." -msgstr "Seznam řečníků úspěšně roztříděn." - -#: agenda/views.py:309 -msgid "Numbering of agenda items is deactivated." -msgstr "" - -#: agenda/views.py:312 -msgid "The agenda has been numbered." -msgstr "Pořad jednání byl očíslován." - -#: agenda/views.py:337 -msgid "There must not be a hierarchical loop. Please reload the page." -msgstr "Nesmí být hierarchická smyčka. Nahrajte, prosím, stránku znovu." - -#: agenda/views.py:341 -msgid "The agenda has been sorted." -msgstr "Pořad jednání byl roztříděn." - -#: assignments/models.py:164 -msgid "Election" -msgstr "Volba" - -#: assignments/serializers.py:31 -msgid "Value for {} must be greater than 0" -msgstr "Hodnota pro {} nesmí být větší než 0" - -#: assignments/serializers.py:149 -#, python-format -msgid "You have to submit data for %d candidates." -msgstr "Musíte předat data pro %d uchazečů." - -#: assignments/serializers.py:153 motions/serializers.py:236 -#, python-format -msgid "You have to submit data for %d vote values." -msgstr "Musíte předat data pro %d voleb." - -#: assignments/serializers.py:157 motions/serializers.py:240 -#, python-format -msgid "Vote value %s is invalid." -msgstr "Hodnota pro volby %s je neplatná." - -#: assignments/views.py:66 -msgid "You are already elected." -msgstr "Již jste zvolen." - -#: assignments/views.py:76 -msgid "You can not candidate to this election because it is finished." -msgstr "Nemůžete se ucházet o zvolení v těchto volbách, protože tyto jsou již skončeny." - -#: assignments/views.py:85 -msgid "You were nominated successfully." -msgstr "Byl jste úspěšně navržen." - -#: assignments/views.py:90 -msgid "" -"You can not withdraw your candidature to this election because it is " -"finished." -msgstr "Nemůžete stáhnout své uchazečství o zvolení v těchto volbách, protože tyto jsou již skončeny." - -#: assignments/views.py:95 -msgid "You are not a candidate of this election." -msgstr "Nejste uchazeč/uchazečka pro tyto volby." - -#: assignments/views.py:97 -msgid "You have withdrawn your candidature successfully." -msgstr "Stáhl jste své uchazečství úspěšně." - -#: assignments/views.py:106 -#, python-format -msgid "Invalid data. Expected dictionary, got %s." -msgstr "Neplatná data. Očekáván diktovaný text, obdrženo %s." - -#: assignments/views.py:112 -msgid "Invalid data. Expected something like {\"user\": }." -msgstr "Neplatná data. Očekáváno něco jako {\"user\": }." - -#: assignments/views.py:116 -#, python-format -msgid "Invalid data. User %d does not exist." -msgstr "Neplatná data. Uživatel %d neexistuje." - -#: assignments/views.py:136 -#, python-format -msgid "User %s is already elected." -msgstr "Uživatel %s je již zvolen." - -#: assignments/views.py:138 -msgid "You can not nominate someone to this election because it is finished." -msgstr "Nemůžete někoho jmenovat do těchto voleb, protože tyto jsou již skončeny." - -#: assignments/views.py:144 -#, python-format -msgid "User %s is already nominated." -msgstr "Uživatel %s je již jmenován." - -#: assignments/views.py:149 -#, python-format -msgid "User %s was nominated successfully." -msgstr "Uchazeč %s byl úspěšně jmenován." - -#: assignments/views.py:156 -msgid "" -"You can not delete someone's candidature to this election because it is " -"finished." -msgstr "Nemůžete smazat něčí uchazečství o zvolení v těchto volbách, protože tyto jsou již skončeny." - -#: assignments/views.py:159 -#, python-format -msgid "User %s has no status in this election." -msgstr "Uživatel %s v těchto volbách nemá žádné postavení." - -#: assignments/views.py:161 -#, python-format -msgid "Candidate %s was withdrawn successfully." -msgstr "Uchazeč %s byl úspěšně stažen." - -#: assignments/views.py:173 -#, python-format -msgid "User %s is not a candidate of this election." -msgstr "Uživatel %s není uchazečem v těchto volbách." - -#: assignments/views.py:175 -#, python-format -msgid "User %s was successfully elected." -msgstr "Uživatel %s byl úspěšně zvolen." - -#: assignments/views.py:179 -#, python-format -msgid "User %s is not an elected candidate of this election." -msgstr "Uživatel %s není zvoleným uchazečem v těchto volbách." - -#: assignments/views.py:182 -#, python-format -msgid "User %s was successfully unelected." -msgstr "Postavení uživatele/uživatelky %s jako zvoleného/zvolené byl úspěšně zrušeno." - -#: assignments/views.py:192 -msgid "Can not create ballot because there are no candidates." -msgstr "Nelze vyvolat hlasování, protože nejsou uchazeči." - -#: assignments/views.py:195 -msgid "Ballot created successfully." -msgstr "Hlasování bylo úspěšně vyvoláno." - -#: assignments/views.py:210 -msgid "users has to be a list of IDs." -msgstr "uživatelé musí být seznam ID." - -#: assignments/views.py:237 -msgid "Assignment related users successfully sorted." -msgstr "Uživatelé spojení s úkolem úspěšně roztříděni." - -#: core/config.py:50 core/config.py:76 -msgid "The config variable {} was not found." -msgstr "Proměnná nastavení {} nebyla nalezena." - -#: core/config.py:85 -#, python-format -msgid "Wrong datatype. Expected %(expected_type)s, got %(got_type)s." -msgstr "Nesprávný typ dat. Očekáváno %(expected_type)s, obdrženo %(got_type)s." - -#: core/config.py:95 -msgid "Invalid input. Choice does not match." -msgstr "Neplatný vstup. Výběr neodpovídá." - -#: core/config.py:105 -msgid "motions_comments has to be a dict." -msgstr "motions_comments musí být diktovaný text." - -#: core/config.py:111 -msgid "Each id has to be an int." -msgstr "Každé ID musí být vnitřní." - -#: core/config.py:114 -msgid "Each id has to be greater then 0." -msgstr "Každé ID musí být větší než 0" - -#: core/config.py:118 -msgid "Each commentsfield in motions_comments has to be a dict." -msgstr "Každý poznámkové pole v motions_comments musí být diktovaný text." - -#: core/config.py:120 -msgid "A name and a public property have to be given." -msgstr "Název a vlastnost public musí být zadány." - -#: core/config.py:122 -msgid "name has to be string." -msgstr "Název musí být řetězec." - -#: core/config.py:124 -msgid "public property has to be bool." -msgstr "Vlastnost public musí být booleánská hodnota." - -#: core/config.py:130 -msgid "This has to be a dict." -msgstr "" - -#: core/config.py:137 core/config.py:153 -msgid "{} has to be given." -msgstr "{} musí být zadáno." - -#: core/config.py:139 core/config.py:155 -msgid "{} has to be a string." -msgstr "{} musí být řetězec." - -#: core/config.py:143 -msgid "Translations has to be a list." -msgstr "Překlady musí být seznam." - -#: core/config.py:146 -msgid "Every value has to be a dict, not {}." -msgstr "Každá hodnota musí být diktovaný text ne {}." - -#: core/config.py:177 -msgid "Too many values for config variables {} found." -msgstr "Nalezeno příliš mnoho hodnot pro proměnnou nastavení {}." - -#: core/config.py:261 -msgid "Invalid value for config attribute input_type." -msgstr "Neplatná hodnota pro vlastnost nastavení input_type." - -#: core/config.py:263 -msgid "" -"Either config attribute 'choices' must not be None or 'input_type' must not " -"be 'choice'." -msgstr "Buď nesmí být vlastnost nastavení 'choices' žádná nebo 'input_type' nesmí být 'choice'." - -#: core/config.py:266 -msgid "" -"Either config attribute 'choices' must be None or 'input_type' must be " -"'choice'." -msgstr "Buď musí být vlastnost nastavení 'choices' žádná nebo 'input_type' musí být 'choice'." - -#: core/config.py:276 -msgid "General" -msgstr "Obecné" - -#: core/views.py:277 -msgid "The data has to be a list." -msgstr "" - -#: core/views.py:280 -msgid "All elements have to be dicts." -msgstr "" - -#: core/views.py:420 -msgid "The data has to be a dict." -msgstr "" - -#: core/views.py:426 -msgid "The id \"{}\" has to be int." -msgstr "" - -#: core/views.py:432 -msgid "Prune has to be an object." -msgstr "" - -#: core/views.py:435 -msgid "The prune projector id has to be int." -msgstr "" - -#: core/views.py:440 -msgid "The projector with id \"{}\" does not exist" -msgstr "" - -#: core/views.py:444 -msgid "Prune element has to be a dict or not given." -msgstr "" - -#: core/views.py:772 -msgid "All chat messages deleted successfully." -msgstr "Úspěšně smazány všechny zprávy rozhovoru." - -#: mediafiles/models.py:87 -msgid "unknown" -msgstr "neznámý" - -#: motions/models.py:190 -msgid "Motion" -msgstr "Návrh" - -#: motions/models.py:744 -msgid "new" -msgstr "Nový" - -#: motions/models.py:969 -#, python-format -msgid "%(time_and_messages)s by %(person)s" -msgstr "%(time_and_messages)s od %(person)s" - -#: motions/serializers.py:36 -#, python-format -msgid "Workflow %(pk)d does not exist." -msgstr "Průběh práce %(pk)d neexistuje." - -#: motions/signals.py:22 -msgid "submitted" -msgstr "podáno" - -#: motions/signals.py:27 motions/signals.py:60 -msgid "accepted" -msgstr "přijato" - -#: motions/signals.py:32 motions/signals.py:66 -msgid "rejected" -msgstr "odmítnuto" - -#: motions/signals.py:37 -msgid "not decided" -msgstr "nerozhodnuto" - -#: motions/signals.py:47 -msgid "published" -msgstr "zveřejněno" - -#: motions/signals.py:52 motions/views.py:300 -msgid "permitted" -msgstr "schváleno" - -#: motions/signals.py:72 -msgid "withdrawed" -msgstr "staženo" - -#: motions/signals.py:77 -msgid "adjourned" -msgstr "odloženo" - -#: motions/signals.py:83 -msgid "not concerned" -msgstr "neprobíráno" - -#: motions/signals.py:89 -msgid "refered to committee" -msgstr "Předáno do výboru" - -#: motions/signals.py:95 -msgid "needs review" -msgstr "potřeba posouzení" - -#: motions/signals.py:100 -msgid "rejected (not authorized)" -msgstr "odmítnuto (není schváleno)" - -#: motions/views.py:110 -msgid "The parent motion does not exist." -msgstr "Rodičovský návrh neexistuje." - -#: motions/views.py:154 -msgid "Motion created" -msgstr "Návrh vytvořen" - -#: motions/views.py:256 -msgid "Motion updated" -msgstr "Návrh aktualizován" - -#: motions/views.py:260 -msgid "All supporters removed" -msgstr "Všichni podporovatelé odstraněni" - -#: motions/views.py:264 -msgid "Comment {} updated" -msgstr "" - -#: motions/views.py:298 motions/views.py:310 -msgid "Version" -msgstr "Verze" - -#: motions/views.py:302 -#, python-format -msgid "Version %d permitted successfully." -msgstr "Verze %d úspěšně schválena." - -#: motions/views.py:307 -msgid "You can not delete the active version of a motion." -msgstr "Nelze smazat platnou verzi návrhu." - -#: motions/views.py:312 -msgid "deleted" -msgstr "smazáno" - -#: motions/views.py:314 -#, python-format -msgid "Version %d deleted successfully." -msgstr "Verze %d úspěšně smazána." - -#: motions/views.py:337 -msgid "You can not support this motion." -msgstr "Nesmíte podporovat tento návrh." - -#: motions/views.py:339 -msgid "Motion supported" -msgstr "Návrh podporován" - -#: motions/views.py:343 -msgid "You have supported this motion successfully." -msgstr "Podporoval jste úspěšně tento návrh." - -#: motions/views.py:348 -msgid "You can not unsupport this motion." -msgstr "Nesmíte odepřít svou podporu pro tento návrh." - -#: motions/views.py:350 -msgid "Motion unsupported" -msgstr "Podpora pro návrh stažena" - -#: motions/views.py:351 -msgid "You have unsupported this motion successfully." -msgstr "Svou podporu pro návrh jste úspěšně stáhl." - -#: motions/views.py:374 -msgid "Invalid data. State must be an integer." -msgstr "Neplatná data. Stav musí být celé číslo." - -#: motions/views.py:377 -#, python-format -msgid "You can not set the state to %(state_id)d." -msgstr "Nelze nastavit stav na %(state_id)d." - -#: motions/views.py:385 -#, python-format -msgid "The state of the motion was set to %s." -msgstr "Stav návrhu byl nastaven na %s." - -#: motions/views.py:389 motions/views.py:458 motions/views.py:726 -msgid "State set to" -msgstr "Stav nastaven na" - -#: motions/views.py:413 -msgid "Invalid data. Recommendation must be an integer." -msgstr "Neplatná data. Doporučení musí být celé číslo." - -#: motions/views.py:417 -#, python-brace-format -msgid "You can not set the recommendation to {recommendation_state_id}." -msgstr "Doporučení nelze nastavit na {recommendation_state_id}." - -#: motions/views.py:427 -#, python-format -msgid "The recommendation of the motion was set to %s." -msgstr "Doporučení návrhu bylo nastaveno na %s." - -#: motions/views.py:431 -msgid "Recommendation set to" -msgstr "Doporučení nastaveno na" - -#: motions/views.py:439 -msgid "Cannot set an empty recommendation." -msgstr "Nelze nastavit prázdné doporučení" - -#: motions/views.py:479 -msgid "Vote created" -msgstr "Hlasování vytvořeno" - -#: motions/views.py:483 -msgid "Vote created successfully." -msgstr "Hlasování bylo úspěšně vytvořeno." - -#: motions/views.py:509 -msgid "Vote updated" -msgstr "Hlasování aktualizováno" - -#: motions/views.py:518 -msgid "Vote deleted" -msgstr "Hlasování smazáno" - -#: motions/views.py:652 -#, python-format -msgid "" -"Numbering aborted because the motion identifier \"%s\" already exists " -"outside of this category." -msgstr "" - -#: motions/views.py:675 -msgid "" -"Error: At least one identifier of this category does already exist in " -"another category." -msgstr "Chyba: Alespoň jeden dentifikátor (označení dat) tohoto oboru činnosti již je v jiném oboru činnosti." - -#: motions/views.py:680 -#, python-brace-format -msgid "All motions in category {category} numbered successfully." -msgstr "Všechny návrhy v oboru činnosti {category} úspěšně očíslovány." - -#: motions/views.py:731 -msgid "Followed recommendations successfully." -msgstr "Doporučení sledována úspěšně." - -#: poll/models.py:194 -msgid "majority" -msgstr "Většina" - -#: poll/models.py:196 poll/models.py:198 -msgid "undocumented" -msgstr "nedokumentováno" - -#: poll/serializers.py:16 -msgid "Value for {} must not be less than -2" -msgstr "Hodnota pro {} nesmí být menší než -2" - -#: users/serializers.py:49 -msgid "" -"The groups this user belongs to. A user will get all permissions granted to " -"each of his/her groups." -msgstr "Skupina, k níž tento uživatel patří. Uživatel dostane oprávnění udělená každému v jeho/její skupině." - -#: users/serializers.py:72 -msgid "Username, given name and surname can not all be empty." -msgstr "Uživatelské jméno, křestní jméno a příjmení nesmí být prázdné." - -#: users/serializers.py:109 -#, python-brace-format -msgid "Incorrect value \"{value}\". Expected app_label.codename string." -msgstr "Nesprávná hodnota \"{value}\". Očekáván řetězec app_label.codename." - -#: users/serializers.py:110 -#, python-brace-format -msgid "Invalid permission \"{value}\". Object does not exist." -msgstr "Neplatné oprávnění \"{value}\". Předmět neexistuje." - -#: users/views.py:91 -msgid "You can not deactivate yourself." -msgstr "Nemůžete vypnout sami sebe." - -#: users/views.py:114 -msgid "You can not delete yourself." -msgstr "Nemůžete smazat sami sebe." - -#: users/views.py:131 -msgid "Password successfully reset." -msgstr "Heslo bylo úspěšně nastaveno znovu." - -#: users/views.py:172 -#, python-brace-format -msgid "{number} users successfully imported." -msgstr "{number} uživatelů bylo úspěšně zavedeno." - -#: users/views.py:410 -msgid "Cookies have to be enabled to use OpenSlides." -msgstr "Pro používání OpenSlides musíte povolit koláčky." - -#: users/views.py:413 -msgid "Username or password is not correct." -msgstr "Uživatelské jméno nebo heslo není správné." - -#: users/views.py:439 -#, python-brace-format -msgid "" -"Installation was successfully. Use {username} and {password} for first " -"login. Important: Please change your password!" -msgstr "Instalace proběhla úspěšně. Použijte {username} a {password} při prvním přihlášení. Důležité: Změňte, prosím, své heslo!" - -#: users/views.py:462 -msgid "You are not authenticated." -msgstr "Nejste ověřen." - -#: users/views.py:509 -msgid "Old password does not match." -msgstr "Staré heslo se neshoduje." diff --git a/openslides/locale/de/LC_MESSAGES/django.mo b/openslides/locale/de/LC_MESSAGES/django.mo deleted file mode 100644 index 6fd1d322ce2368fe44b4bfa5b9e42ccf59d8bf27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15545 zcmbW7d#oH+ea8nH0vHlV0wIu;o|w3{N$&a)62i@c*v_>vi5+7*F@b=YyL;~L*a-|;_Rc+PtwKJTMlM*H?TQS^7f!0^R^_1YZI^7aW2w0`CVe2EPJs2mckE0WUh=&%Xn_mfx=iH-YZ~HUAgD3&DQ_ z)&FPUb>Q=!7Ddkn?*=aikAVlk_kk}5e+WJa-1+n7cx?c-w+yenW4Yv9HweWizLi;U#-v&yaeNg;<8z_1{ z4r-o9z%Ae}LCrtI;^OmOQ1TptH-hg6#pg#rx<(hn6!B>W)ckjYSA(ZO@%NLU=6eJb z{XYe@-wP1_HQ-I4^rQq|2)+*#eSaIC{{(~;(Zy_%Ek##?SAaXfYrzFj>~!2bf*gHMMD@$qVqN72pU_bUVTK$eO|p!jt^sQrEtgyiTyK=JEbj7j6Sf}-PA z(D4Tp{qF~*Z{GmLr$<2pUeD%V2Hp*B2R{MwD*6sM2mT7Y8N3B1YW!P31AYn={oerh zgZ~4Hf4d-3{f6L`;0Hm;;mhDQ@aLcbH}OYyv=@9bcn}nS?gsU|18V*OD0#jU6rVl{ z{s#CNPBe;m94d;pXj{~nZ|cq)r%A2))#z$4)G;0Hm?_XvpSqMw5E-~}6_ zCMNx1GWD9!~2hi-+u#Y{J(%D zcnM0UdEWs-TJ+Z-OGN(-if@Vgmuw& zHlg=-fv3RNh2OsbC7(-iPPm+C7F553Af!bjkSU@+1tqVqgQ7z}AT7EKg!R#0Q14&M zpF`kBK+XGeQ2Tr)%rxMB5LJmXQ1iYUl)SzOiq7wWqWdWrF-t`+2DMHGz6ksfsP+B< zd+ zm#>22%lAN3H+mwAYM-9~cZ2^6>itbH712efK-uTVz&pVohUYiKEUlM;;^Rj^_4_6W zDbWQeoA$8>Tn7%oCxXYpCxdSQp9H=Ylpekdd=B^p@af>UK>4p9f#-q$30?p`3TnRd zulIKGZ18FP-UVI^9s)K0J>aEa3Gy#`Cx4y-eihVw{|Ktz_d)UD$Kd(kC2XE8MjJuV z{~GWT@LurQ;D^D-f%^Qe2bZJq*vWxu+-E0$jsH6F_vPW&n*$!0cpF835PmO$3$%=u zhiCEw`iy8P?Ts|p;XabJ_E&wRBh}{(;md2lx6$51`$L-Kp}mQ3)u+c7?OUJ1gVWPz zh3^6zzV8K}LrZ8&v@Y#(n(ROy>4jwZfPV0ioL@n^R6qC}_TcnfU*AHLE><5*!F{Bc zG3^~R)XV9ibVDE1*?nHeU+JrK;|`i^<23Cunm+IJ;Cxf~>OeY(ONjm`JiHskl-=j0 z{B6_jr(qV+G1@%sT$+4$_>G$u^E}*?NJd|&E zCG9@ikam)`p0$4s9dt^|a%(>T@Aq_JtqM1)oZLHBEj-pBp_y zZvtLJM_T(ayNvXSQ~3UC+tg?h0%9w`Sh=oww~6QcT%nA10=y znaJuS9p-=nhWYPiLt&O;T2l5pdAyWP(BL|1D}^oDrLlt{a>{Kx8$dmC!AAPHU!^&9 z+Kh%;pu?kVF|iZ;w`n}zXQv2Qq}@KW>7jno5jAshyJ!5IWwDUhen+ASQaW0_K$t~P zkJw0>VPMi}zDXIn;+wAHUoM`cW-DXav4oYS3rW|+Wtk`QqtcpB>@y-cjkE4j=EVh>RvePL4p^7Vf(YO z%Vrru)4WBWgWER?c{Y$QasItYZY$dF;)ets&pRK^$gw{TZmnsz>o*kZC(V?2F)9m8 zd&;Jpv%@2TY!x60X9XcKMjwyK2e+cz@uQVG*Fp)BJP-_IlDoOZ)3>4n`3Tn%qUZ#V zrSI~E(wq>aedmTCQjt|_Kv8iQt z_(w|#Sx8qw6ReG;Fx?!-gWeJa5mis}Wu7gHM1Ees25x8lsnhEl#JQ*@qD4qk-z4^S zKPx2h)!w_f?OzYc2FN>naGer?CLkY^86#vR1t_W~WzwqMQbVUEb^nP-JSKQDTzHMf zQ#mvB-rT8$bDdhBJjuctwzZI?NzsE_X}094Cl27{T%cQP3MUpOki3a_MD&%^o5>YtL+r6Y6_lY*y zuvJAE(!4B2>S8Zit>G-(u$hq19L_Q`h|>^^;Xv&yD_t(6%#{+OO@)t(le2kk^}gP} zIa}w|97ED5hLhJiCPFbT!Nt2)RQ2QGIK$9Oso@Im(rl2V-YqrWigR(Dn0mpkwv6jc z4(eAqt5M$O!^#t$t|n4_n)!r@$y=O(uB&2nKr&V<)vJf4e>SIcy|u_=%n)bddC3XH)E|`HIYIW&Nx=HMx#YaoLhagkxwu z+eF8+NN-kLV3e-5M5TD+ACPf8opy(l+wL zf#qDZQO6*E#vS3OALEj4MlsE0Rn~A$ayhRuuMojjB;o`oiD?QeA6U`&*r;;(5hR@v zR@vdH$wxK?TqvnC zkLrw_TH8@k>sVr!qEwC8Od8$hSj|fM)v;}kB%NsNwxj6^UR9y-XEFC)8C;ax1y@o- z-Biy>@cNdAN;KVD|HW)_{t>Uoc23&P<|ufpP)R!5B*x2KGn4CQ?U52W_hXUJnnokC z_UU{{*~i{n5OpOoMx63T4hmatNK;}aadiawWmkMSE#Fo7{Z+j)VYcRdJg#s|JRYB` zTpm8Nw=)xh>TIKGw(g)+8DnN&(M>utJ4fAO=5RJ^)*ZP0@XRiix^S#Bw-7gG&GxO^ zuAA9<&CK?z&9-Z2w_SbZ*6mxj(sAY>(w0A4q2CK;uikd$RzB-)qtY~UI3$`XKh2S# zj%?o?YWJ2OE>Bu>gY{2ZMY}h$Jh@pl3J#%6-Rjtzm?G_tNPA}v+juZ*_E0<^Y1q^& z%i-*nElW#Fty1$R3-&n0pTQRD!KAgS4K}~_!z^1mcFX2<`}XdetNF66wRPRDj8#); zC2r4}(jG6j4Eu4CUa$HN?zp`1j>EfWuB-cLO|)`mj_Q;W{8@9|d{U07okii-9q5lJ zX3gx*@e%&es@Xm-6L9+%vM>4%%y$k7dW3SKU@^#aVku8?L6P`4V1+=IlxGcx}9{ynR7Tw7fY4AEft%%OgU2K zNxKIhjLjFaKB*i(If?d{A7W-su&(c%ua9$n3Clo+xn*3+qTEZN%y-?9mih97RL7Em zImGl3lW<;Zl*^Y!B5YzktY%w^kMG$(29Xg4kxc$UHKgwld~wQD*R*-zA&y>u5}Hi;pswrQT5;W zn3m|o`9k3TS_?J0RkiuBob)H!jWjLpabE(TrK+A~JMBrCAT@EPCLL}??1Uw`;+GSg zE}atYir6Mwr57sBqqJdnUS_#DB0-NiKNbtcdS^2#*VhWh43o}4j=@`ImwU3rAKFUW zUc^Yv9CFO#ZgfZ5U4FP<;*-L1jY98Sz7%sgMSAoKZO*2PmVmxO3E!K_8TES{K<%4a zhTs--^AKj$DCEmOHVgU752G_~GtLv-=F9mN;0v1gx=-uh5F^FSki=*J6b>pXRvA~I_X$G!gn>4 zLe>ApaG&7xd1{%UNDC6=Du&;@2#}W@d;S%?Ywhd9WkAIkvy+>}Jhv%9DcTtIM98Lp%Z{@MFn*=}1FzGjsrpNy?x+!rcVxXD<9=7x4D zfeOZ188G?k1}=KM+SR*o7Ilxy?sSap=$=hv2E{vziRirFXUJkzFbYHV{fh4RBd40>ljN}FXqFCTnD@5CVtS5@K zQi(&Xg*w}j+clMuDsOBUw71V!j10*tnx#a>niV2KWhSZYq-(1%0JS1m z@BPkNzIUwq^wxhV3g>_z3YX|Q8&P7%f552@CiE8PE3ezNOUn=T`p9v$9x%;oG-oyx z`pj-x7O_;v3xbB{gtJh0Dw!TLZCQyITCdQH^yCOZEI+K= zvALD$ku_%;8Xorxj{crbyTzx&YfppA#yMs46TF+U-|-wdr;5@z6RQdIHzzWYIxcaX z^47Dc>yyRCcGUYSb7$u7Oq77`=gjNo=#aH6pzOi!wbjoY_-6Ie%4EaY|Zyn934dIR$FQX=ecwL!go@ z$&lpbgAo)Qy242AInbp>t|)6&-)cc0Rw^gQZOoLHtMcsB_Ndf`w0F(*6>VH@YIS^c zcQP`dIu?5lcq6F@TAldGeih+qqQa&E+?hPXjiOq8dG)oZttJw+jhvylt{zx<&7*Y)PeyW?;`Uy-A$pV{#-)Mr%k8t*OlI~}F- zc9A-6$^ZUyMeItU_^Q$<*1 dJZ#mM&AFm-|GmSPBqyX;y{J#uOW~s7{{a)lk&FNU diff --git a/openslides/locale/de/LC_MESSAGES/django.po b/openslides/locale/de/LC_MESSAGES/django.po deleted file mode 100644 index fa46e0fef..000000000 --- a/openslides/locale/de/LC_MESSAGES/django.po +++ /dev/null @@ -1,673 +0,0 @@ -# Language file of OpenSlides used by Transifex: -# https://www.transifex.com/openslides/openslides/ -# Copyright (C) 2011–2015 by OpenSlides team, see AUTHORS. -# This file is distributed under the same license as the OpenSlides package. -# Translators: -# Emanuel Schütze , 2015-2018 -# Norman Jäckel , 2015 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-05-23 16:13+0200\n" -"PO-Revision-Date: 2018-05-23 14:31+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: German (http://www.transifex.com/openslides/openslides/language/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: agenda/models.py:206 -msgid "Agenda item" -msgstr "Tagesordnungspunkt" - -#: agenda/models.py:207 -msgid "Hidden item" -msgstr "Versteckter Eintrag" - -#: agenda/models.py:356 -#, python-brace-format -msgid "{user} is already on the list of speakers." -msgstr "{user} ist bereits auf der Redeliste." - -#: agenda/models.py:359 -msgid "An anonymous user can not be on lists of speakers." -msgstr "Anonyme Gast-Benutzer können nicht auf Redelisten stehen." - -#: agenda/views.py:116 -msgid "The list of speakers is closed." -msgstr "Die Redeliste ist geschlossen." - -#: agenda/views.py:125 agenda/views.py:150 -msgid "User does not exist." -msgstr "Benutzer existiert nicht." - -#: agenda/views.py:133 -#, python-format -msgid "User %s was successfully added to the list of speakers." -msgstr "Benutzer %s wurde erfolgreich zur Redeliste hinzugefügt." - -#: agenda/views.py:154 -msgid "Marked has to be a bool." -msgstr "Marked muss ein Boolean sein." - -#: agenda/views.py:163 -msgid "The user is not in the list of speakers." -msgstr "Der Nutzer ist nicht auf der Redeliste." - -#: agenda/views.py:168 -msgid "You are successfully marked the speaker." -msgstr "Der Redner wurde erfolgreich markiert." - -#: agenda/views.py:170 -msgid "You are successfully unmarked the speaker." -msgstr "Der Redner wurde erfolgreich nicht markiert." - -#: agenda/views.py:187 -msgid "You are not on the list of speakers." -msgstr "Sie stehen nicht auf der Redeliste." - -#: agenda/views.py:190 -msgid "You are successfully removed from the list of speakers." -msgstr "Sie wurden erfolgreich von der Redeliste entfernt." - -#: agenda/views.py:212 -msgid "speakers have been removed from the list of speakers." -msgstr "Redner/innen wurden erfolgreich von der Redeliste entfernt." - -#: agenda/views.py:214 -#, python-format -msgid "User %s has been removed from the list of speakers." -msgstr "%s wurde von der Redeliste entfernt." - -#: agenda/views.py:216 -msgid "No speakers have been removed from the list of speakers." -msgstr "Es wurden keine Redner/innen von der Redeliste entfernt." - -#: agenda/views.py:236 -msgid "The list of speakers is empty." -msgstr "Die Redeliste ist leer." - -#: agenda/views.py:241 -msgid "Speaker does not exist." -msgstr "Redner/in existiert nicht." - -#: agenda/views.py:243 -msgid "User is now speaking." -msgstr "Benutzer redet jetzt." - -#: agenda/views.py:254 -#, python-format -msgid "There is no one speaking at the moment according to %(item)s." -msgstr "Es spricht derzeit kein/e Redner/in zu %(item)s." - -#: agenda/views.py:256 -msgid "The speech is finished now." -msgstr "Die Rede ist jetzt beendet." - -#: agenda/views.py:275 agenda/views.py:287 assignments/views.py:222 -msgid "Invalid data." -msgstr "Ungültige Daten." - -#: agenda/views.py:300 -msgid "List of speakers successfully sorted." -msgstr "Die Redeliste wurde erfolgreich sortiert." - -#: agenda/views.py:309 -msgid "Numbering of agenda items is deactivated." -msgstr "Die Nummerierung von Tagesordnungspunkten ist deaktiviert." - -#: agenda/views.py:312 -msgid "The agenda has been numbered." -msgstr "Die Tagesordnung wurde nummeriert." - -#: agenda/views.py:337 -msgid "There must not be a hierarchical loop. Please reload the page." -msgstr "Es darf keine hierarchische Schleife vorhanden sein. Bitte laden Sie die Seite neu." - -#: agenda/views.py:341 -msgid "The agenda has been sorted." -msgstr "Die Tagesordnung wurde sortiert." - -#: assignments/models.py:164 -msgid "Election" -msgstr "Wahl" - -#: assignments/serializers.py:31 -msgid "Value for {} must be greater than 0" -msgstr "Wert für {} muss größer als 0 sein." - -#: assignments/serializers.py:149 -#, python-format -msgid "You have to submit data for %d candidates." -msgstr "Sie müssen Daten für %d Kandidaten übermitteln." - -#: assignments/serializers.py:153 motions/serializers.py:236 -#, python-format -msgid "You have to submit data for %d vote values." -msgstr "Sie müssen Daten für %d Stimmen übermitteln." - -#: assignments/serializers.py:157 motions/serializers.py:240 -#, python-format -msgid "Vote value %s is invalid." -msgstr "Wert für Stimme %s ist ungültig." - -#: assignments/views.py:66 -msgid "You are already elected." -msgstr "Sie sind schon gewählt." - -#: assignments/views.py:76 -msgid "You can not candidate to this election because it is finished." -msgstr "Sie können für diese Wahl nicht kandidieren, weil sie beendet ist." - -#: assignments/views.py:85 -msgid "You were nominated successfully." -msgstr "Sie wurden erfolgreich vorgeschlagen." - -#: assignments/views.py:90 -msgid "" -"You can not withdraw your candidature to this election because it is " -"finished." -msgstr "Sie können Ihre Kandidatur für diese Wahl nicht zurückziehen, weil sie beendet ist." - -#: assignments/views.py:95 -msgid "You are not a candidate of this election." -msgstr "Sie sind kein/e Kandidat/in für diese Wahl." - -#: assignments/views.py:97 -msgid "You have withdrawn your candidature successfully." -msgstr "Sie haben Ihre Kandidatur erfolgreich zurückgezogen." - -#: assignments/views.py:106 -#, python-format -msgid "Invalid data. Expected dictionary, got %s." -msgstr "Ungültige Daten. Erwartete Dictionary, erhielt %s." - -#: assignments/views.py:112 -msgid "Invalid data. Expected something like {\"user\": }." -msgstr "Ungültige Daten. Erwartete etwas wie {\"user\": }." - -#: assignments/views.py:116 -#, python-format -msgid "Invalid data. User %d does not exist." -msgstr "Ungültige Daten. Benutzer %d existiert nicht." - -#: assignments/views.py:136 -#, python-format -msgid "User %s is already elected." -msgstr "Benutzer %s ist bereits gewählt." - -#: assignments/views.py:138 -msgid "You can not nominate someone to this election because it is finished." -msgstr "Sie können niemanden für diese Wahl vorschlagen, weil sie beendet ist." - -#: assignments/views.py:144 -#, python-format -msgid "User %s is already nominated." -msgstr "Benutzer %s ist bereits vorgeschlagen." - -#: assignments/views.py:149 -#, python-format -msgid "User %s was nominated successfully." -msgstr "Benutzer %s wurde erfolgreich vorgeschlagen." - -#: assignments/views.py:156 -msgid "" -"You can not delete someone's candidature to this election because it is " -"finished." -msgstr "Sie können keine Kandidaturen für diese Wahl zurücknehmen, weil sie beendet ist." - -#: assignments/views.py:159 -#, python-format -msgid "User %s has no status in this election." -msgstr "Benutzer %s hat keinen Status in dieser Wahl." - -#: assignments/views.py:161 -#, python-format -msgid "Candidate %s was withdrawn successfully." -msgstr "Die Kandidatur von %s wurde erfolgreich zurückgezogen." - -#: assignments/views.py:173 -#, python-format -msgid "User %s is not a candidate of this election." -msgstr "Benutzer %s ist kein/e Kandidat/in für diese Wahl." - -#: assignments/views.py:175 -#, python-format -msgid "User %s was successfully elected." -msgstr "Benutzer %s wurde erfolgreich gewählt." - -#: assignments/views.py:179 -#, python-format -msgid "User %s is not an elected candidate of this election." -msgstr "Benutzer %s ist bei dieser Wahl nicht gewählt." - -#: assignments/views.py:182 -#, python-format -msgid "User %s was successfully unelected." -msgstr "Der Status als Gewählte/r von Benutzer %s wurde erfolgreich aufgehoben." - -#: assignments/views.py:192 -msgid "Can not create ballot because there are no candidates." -msgstr "Kann keinen Wahlgang anlegen, weil es keine Kandidaten gibt." - -#: assignments/views.py:195 -msgid "Ballot created successfully." -msgstr "Wahlgang erfolgreich angelegt." - -#: assignments/views.py:210 -msgid "users has to be a list of IDs." -msgstr "Nutzer müssen eine Liste von IDs sein." - -#: assignments/views.py:237 -msgid "Assignment related users successfully sorted." -msgstr "Kandidaten erfolgreich sortiert." - -#: core/config.py:50 core/config.py:76 -msgid "The config variable {} was not found." -msgstr "Die Konfigurationsvariable {} wurde nicht gefunden." - -#: core/config.py:85 -#, python-format -msgid "Wrong datatype. Expected %(expected_type)s, got %(got_type)s." -msgstr "Falscher Datentyp. Erwartete %(expected_type)s, erhielt %(got_type)s." - -#: core/config.py:95 -msgid "Invalid input. Choice does not match." -msgstr "Ungültige Eingabe. Auswahl nicht gefunden." - -#: core/config.py:105 -msgid "motions_comments has to be a dict." -msgstr "motions_comments muss ein Dictionary sein." - -#: core/config.py:111 -msgid "Each id has to be an int." -msgstr "Jeder id muss ein int sein." - -#: core/config.py:114 -msgid "Each id has to be greater then 0." -msgstr "Jede id muss größer 0 sein." - -#: core/config.py:118 -msgid "Each commentsfield in motions_comments has to be a dict." -msgstr "Jedes commentsfield in motions_comments muss ein dict sein." - -#: core/config.py:120 -msgid "A name and a public property have to be given." -msgstr "Ein Name und eine public Eigenschaft müssen angegeben werden." - -#: core/config.py:122 -msgid "name has to be string." -msgstr "Name muss ein String sein." - -#: core/config.py:124 -msgid "public property has to be bool." -msgstr "Public-Eigenschaft muss ein Boolean sein." - -#: core/config.py:130 -msgid "This has to be a dict." -msgstr "Dies muss ein Dictionary sein." - -#: core/config.py:137 core/config.py:153 -msgid "{} has to be given." -msgstr "{} muss angegeben werden." - -#: core/config.py:139 core/config.py:155 -msgid "{} has to be a string." -msgstr "{} muss ein String sein." - -#: core/config.py:143 -msgid "Translations has to be a list." -msgstr "Translations muss ein dict sein." - -#: core/config.py:146 -msgid "Every value has to be a dict, not {}." -msgstr "Jeder Wert muss ein dict sein, nicht {}." - -#: core/config.py:177 -msgid "Too many values for config variables {} found." -msgstr "Zu viele Werte für Konfigurationsvariablen {} gefunden." - -#: core/config.py:261 -msgid "Invalid value for config attribute input_type." -msgstr "Ungültiger Wert für Konfigurationsattribut input_type." - -#: core/config.py:263 -msgid "" -"Either config attribute 'choices' must not be None or 'input_type' must not " -"be 'choice'." -msgstr "Entweder das Konfigurationsattribut 'choices' darf nicht None sein oder 'input_type' darf nicht 'choice' sein." - -#: core/config.py:266 -msgid "" -"Either config attribute 'choices' must be None or 'input_type' must be " -"'choice'." -msgstr "Entweder das Konfigurationsattribut 'choices' muss None sein oder 'input_type' muss 'choice' sein." - -#: core/config.py:276 -msgid "General" -msgstr "Allgemein" - -#: core/views.py:277 -msgid "The data has to be a list." -msgstr "Die Daten müssen eine Liste sein." - -#: core/views.py:280 -msgid "All elements have to be dicts." -msgstr "Alle Elemente müssen ein Dictionary sein." - -#: core/views.py:420 -msgid "The data has to be a dict." -msgstr "Die Daten müssen ein Dictionary sein." - -#: core/views.py:426 -msgid "The id \"{}\" has to be int." -msgstr "Die id \"{}\" muss ein Integer sein." - -#: core/views.py:432 -msgid "Prune has to be an object." -msgstr "Prune muss ein Object sein." - -#: core/views.py:435 -msgid "The prune projector id has to be int." -msgstr "Die prune projector id muss ein Integer sein." - -#: core/views.py:440 -msgid "The projector with id \"{}\" does not exist" -msgstr "Der Projektor mit id \"{}\" existiert nicht." - -#: core/views.py:444 -msgid "Prune element has to be a dict or not given." -msgstr "Prune element muss ein Dictionary oder nicht angegeben sein." - -#: core/views.py:772 -msgid "All chat messages deleted successfully." -msgstr "Alle Chatnachrichten erfolgreich gelöscht." - -#: mediafiles/models.py:87 -msgid "unknown" -msgstr "unbekannt" - -#: motions/models.py:190 -msgid "Motion" -msgstr "Antrag" - -#: motions/models.py:744 -msgid "new" -msgstr "Neu" - -#: motions/models.py:969 -#, python-format -msgid "%(time_and_messages)s by %(person)s" -msgstr "%(time_and_messages)s durch %(person)s" - -#: motions/serializers.py:36 -#, python-format -msgid "Workflow %(pk)d does not exist." -msgstr "Arbeitsablauf %(pk)d existiert nicht." - -#: motions/signals.py:22 -msgid "submitted" -msgstr "eingereicht" - -#: motions/signals.py:27 motions/signals.py:60 -msgid "accepted" -msgstr "angenommen" - -#: motions/signals.py:32 motions/signals.py:66 -msgid "rejected" -msgstr "abgelehnt" - -#: motions/signals.py:37 -msgid "not decided" -msgstr "nicht entschieden" - -#: motions/signals.py:47 -msgid "published" -msgstr "veröffentlicht" - -#: motions/signals.py:52 motions/views.py:300 -msgid "permitted" -msgstr "zugelassen" - -#: motions/signals.py:72 -msgid "withdrawed" -msgstr "zurückgezogen" - -#: motions/signals.py:77 -msgid "adjourned" -msgstr "vertagt" - -#: motions/signals.py:83 -msgid "not concerned" -msgstr "nicht befasst" - -#: motions/signals.py:89 -msgid "refered to committee" -msgstr "in Ausschuss verwiesen" - -#: motions/signals.py:95 -msgid "needs review" -msgstr "Benötigt Review" - -#: motions/signals.py:100 -msgid "rejected (not authorized)" -msgstr "Verworfen (nicht zulässig)" - -#: motions/views.py:110 -msgid "The parent motion does not exist." -msgstr "Der Eltern-Antrag existiert nicht." - -#: motions/views.py:154 -msgid "Motion created" -msgstr "Antrag erstellt" - -#: motions/views.py:256 -msgid "Motion updated" -msgstr "Antrag aktualisiert" - -#: motions/views.py:260 -msgid "All supporters removed" -msgstr "Alle Unterstützer entfernt" - -#: motions/views.py:264 -msgid "Comment {} updated" -msgstr "Kommentar {} aktualisiert" - -#: motions/views.py:298 motions/views.py:310 -msgid "Version" -msgstr "Version" - -#: motions/views.py:302 -#, python-format -msgid "Version %d permitted successfully." -msgstr "Version %d erfolgreich zugelassen" - -#: motions/views.py:307 -msgid "You can not delete the active version of a motion." -msgstr "Sie dürfen die aktive Version eines Antrags nicht löschen." - -#: motions/views.py:312 -msgid "deleted" -msgstr "Gelöscht" - -#: motions/views.py:314 -#, python-format -msgid "Version %d deleted successfully." -msgstr "Version %d erfolgreich gelöscht." - -#: motions/views.py:337 -msgid "You can not support this motion." -msgstr "Sie dürfen diesen Antrag nicht unterstützen." - -#: motions/views.py:339 -msgid "Motion supported" -msgstr "Antrag unterstützt" - -#: motions/views.py:343 -msgid "You have supported this motion successfully." -msgstr "Sie haben den Antrag erfolgreich unterstützt." - -#: motions/views.py:348 -msgid "You can not unsupport this motion." -msgstr "Sie dürfen diesem Antrag Ihre Unterstützung nicht entziehen." - -#: motions/views.py:350 -msgid "Motion unsupported" -msgstr "Unterstützung zurückgezogen" - -#: motions/views.py:351 -msgid "You have unsupported this motion successfully." -msgstr "Sie haben dem Antrag erfolgreich Ihre Unterstützung entzogen." - -#: motions/views.py:374 -msgid "Invalid data. State must be an integer." -msgstr "Ungültige Daten. Status muss eine Ganzzahl sein." - -#: motions/views.py:377 -#, python-format -msgid "You can not set the state to %(state_id)d." -msgstr "Sie dürfen den Antragsstatus nicht auf %(state_id)d setzen." - -#: motions/views.py:385 -#, python-format -msgid "The state of the motion was set to %s." -msgstr "Der Status des Antrags wurde auf %s gesetzt." - -#: motions/views.py:389 motions/views.py:458 motions/views.py:726 -msgid "State set to" -msgstr "Status gesetzt auf" - -#: motions/views.py:413 -msgid "Invalid data. Recommendation must be an integer." -msgstr "Ungültige Daten. Empfehlung muss ein Integer sein." - -#: motions/views.py:417 -#, python-brace-format -msgid "You can not set the recommendation to {recommendation_state_id}." -msgstr "Sie können die Empfehlung nicht auf {recommendation_state_id} setzen." - -#: motions/views.py:427 -#, python-format -msgid "The recommendation of the motion was set to %s." -msgstr "Die Empfehlung des Antrags wurde auf %s gesetzt." - -#: motions/views.py:431 -msgid "Recommendation set to" -msgstr "Empfehlung gesetzt auf" - -#: motions/views.py:439 -msgid "Cannot set an empty recommendation." -msgstr "Eine leere Empfehlung kann nicht gesetzt werden." - -#: motions/views.py:479 -msgid "Vote created" -msgstr "Abstimmung erstellt" - -#: motions/views.py:483 -msgid "Vote created successfully." -msgstr "Abstimmung erfolgreich angelegt." - -#: motions/views.py:509 -msgid "Vote updated" -msgstr "Abstimmung aktualisiert" - -#: motions/views.py:518 -msgid "Vote deleted" -msgstr "Abstimmung gelöscht" - -#: motions/views.py:652 -#, python-format -msgid "" -"Numbering aborted because the motion identifier \"%s\" already exists " -"outside of this category." -msgstr "Die Nummerierung wurde abgebrochen, weil der Antragsbezeichner \"%s\" bereits außerhalb dieses Sachgebiets existiert." - -#: motions/views.py:675 -msgid "" -"Error: At least one identifier of this category does already exist in " -"another category." -msgstr "Fehler: Mindestens ein Bezeichner von diesem Sachgebiet existiert bereits in einem anderen Sachgebiet." - -#: motions/views.py:680 -#, python-brace-format -msgid "All motions in category {category} numbered successfully." -msgstr "Alle Anträge im Sachgebiet {category} wurden erfolgreich nummeriert." - -#: motions/views.py:731 -msgid "Followed recommendations successfully." -msgstr "Empfehlungen erfolgreich gefolgt." - -#: poll/models.py:194 -msgid "majority" -msgstr "Mehrheit" - -#: poll/models.py:196 poll/models.py:198 -msgid "undocumented" -msgstr "nicht erfasst" - -#: poll/serializers.py:16 -msgid "Value for {} must not be less than -2" -msgstr "Wert für {} darf nicht kleiner -2 sein." - -#: users/serializers.py:49 -msgid "" -"The groups this user belongs to. A user will get all permissions granted to " -"each of his/her groups." -msgstr "Die Gruppen zu denen dieser Benutzer gehört. Ein Benutzer erhält alle Berechtigungen, die diesen Gruppen zugeordnet sind." - -#: users/serializers.py:72 -msgid "Username, given name and surname can not all be empty." -msgstr "Benutzername, Vorname und Nachname dürfen nicht alle leer sein." - -#: users/serializers.py:109 -#, python-brace-format -msgid "Incorrect value \"{value}\". Expected app_label.codename string." -msgstr "Ungültiger Wert \"{value}\". Erwartete Zeichenkette app_label.codename." - -#: users/serializers.py:110 -#, python-brace-format -msgid "Invalid permission \"{value}\". Object does not exist." -msgstr "Ungültige Berechtigung \"{value}\". Objekt existiert nicht." - -#: users/views.py:91 -msgid "You can not deactivate yourself." -msgstr "Sie dürfen sich nicht selbst deaktivieren." - -#: users/views.py:114 -msgid "You can not delete yourself." -msgstr "Sie dürfen sich nicht selbst löschen." - -#: users/views.py:131 -msgid "Password successfully reset." -msgstr "Passwort wurde erfolgreich zurückgesetzt." - -#: users/views.py:172 -#, python-brace-format -msgid "{number} users successfully imported." -msgstr "{number} Teilnehmer/innen wurden erfolgreich importiert." - -#: users/views.py:410 -msgid "Cookies have to be enabled to use OpenSlides." -msgstr "Cookies müssen aktiviert sein, um OpenSlides verwenden zu können." - -#: users/views.py:413 -msgid "Username or password is not correct." -msgstr "Benutzername oder Passwort war nicht korrekt." - -#: users/views.py:439 -#, python-brace-format -msgid "" -"Installation was successfully. Use {username} and {password} for first " -"login. Important: Please change your password!" -msgstr "Die Installation war erfolgreich. Verwenden Sie {username} und {password} für den ersten Login. Wichtig: Bitte ändern Sie Ihr Passwort!" - -#: users/views.py:462 -msgid "You are not authenticated." -msgstr "Sie sind nicht authentifiziert." - -#: users/views.py:509 -msgid "Old password does not match." -msgstr "Das alte Passwort stimmt nicht überein." diff --git a/openslides/locale/en/LC_MESSAGES/django.po b/openslides/locale/en/LC_MESSAGES/django.po deleted file mode 100644 index 8451db199..000000000 --- a/openslides/locale/en/LC_MESSAGES/django.po +++ /dev/null @@ -1,665 +0,0 @@ -# Language file of OpenSlides used by Transifex: -# https://www.transifex.com/openslides/openslides/ -# Copyright (C) 2011–2015 by OpenSlides team, see AUTHORS. -# This file is distributed under the same license as the OpenSlides package. -msgid "" -msgstr "" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-05-23 16:13+0200\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: agenda/models.py:206 -msgid "Agenda item" -msgstr "" - -#: agenda/models.py:207 -msgid "Hidden item" -msgstr "" - -#: agenda/models.py:356 -#, python-brace-format -msgid "{user} is already on the list of speakers." -msgstr "" - -#: agenda/models.py:359 -msgid "An anonymous user can not be on lists of speakers." -msgstr "" - -#: agenda/views.py:116 -msgid "The list of speakers is closed." -msgstr "" - -#: agenda/views.py:125 agenda/views.py:150 -msgid "User does not exist." -msgstr "" - -#: agenda/views.py:133 -#, python-format -msgid "User %s was successfully added to the list of speakers." -msgstr "" - -#: agenda/views.py:154 -msgid "Marked has to be a bool." -msgstr "" - -#: agenda/views.py:163 -msgid "The user is not in the list of speakers." -msgstr "" - -#: agenda/views.py:168 -msgid "You are successfully marked the speaker." -msgstr "" - -#: agenda/views.py:170 -msgid "You are successfully unmarked the speaker." -msgstr "" - -#: agenda/views.py:187 -msgid "You are not on the list of speakers." -msgstr "" - -#: agenda/views.py:190 -msgid "You are successfully removed from the list of speakers." -msgstr "" - -#: agenda/views.py:212 -msgid "speakers have been removed from the list of speakers." -msgstr "" - -#: agenda/views.py:214 -#, python-format -msgid "User %s has been removed from the list of speakers." -msgstr "" - -#: agenda/views.py:216 -msgid "No speakers have been removed from the list of speakers." -msgstr "" - -#: agenda/views.py:236 -msgid "The list of speakers is empty." -msgstr "" - -#: agenda/views.py:241 -msgid "Speaker does not exist." -msgstr "" - -#: agenda/views.py:243 -msgid "User is now speaking." -msgstr "" - -#: agenda/views.py:254 -#, python-format -msgid "There is no one speaking at the moment according to %(item)s." -msgstr "" - -#: agenda/views.py:256 -msgid "The speech is finished now." -msgstr "" - -#: agenda/views.py:275 agenda/views.py:287 assignments/views.py:222 -msgid "Invalid data." -msgstr "" - -#: agenda/views.py:300 -msgid "List of speakers successfully sorted." -msgstr "" - -#: agenda/views.py:309 -msgid "Numbering of agenda items is deactivated." -msgstr "" - -#: agenda/views.py:312 -msgid "The agenda has been numbered." -msgstr "" - -#: agenda/views.py:337 -msgid "There must not be a hierarchical loop. Please reload the page." -msgstr "" - -#: agenda/views.py:341 -msgid "The agenda has been sorted." -msgstr "" - -#: assignments/models.py:164 -msgid "Election" -msgstr "" - -#: assignments/serializers.py:31 -msgid "Value for {} must be greater than 0" -msgstr "" - -#: assignments/serializers.py:149 -#, python-format -msgid "You have to submit data for %d candidates." -msgstr "" - -#: assignments/serializers.py:153 motions/serializers.py:236 -#, python-format -msgid "You have to submit data for %d vote values." -msgstr "" - -#: assignments/serializers.py:157 motions/serializers.py:240 -#, python-format -msgid "Vote value %s is invalid." -msgstr "" - -#: assignments/views.py:66 -msgid "You are already elected." -msgstr "" - -#: assignments/views.py:76 -msgid "You can not candidate to this election because it is finished." -msgstr "" - -#: assignments/views.py:85 -msgid "You were nominated successfully." -msgstr "" - -#: assignments/views.py:90 -msgid "" -"You can not withdraw your candidature to this election because it is " -"finished." -msgstr "" - -#: assignments/views.py:95 -msgid "You are not a candidate of this election." -msgstr "" - -#: assignments/views.py:97 -msgid "You have withdrawn your candidature successfully." -msgstr "" - -#: assignments/views.py:106 -#, python-format -msgid "Invalid data. Expected dictionary, got %s." -msgstr "" - -#: assignments/views.py:112 -msgid "Invalid data. Expected something like {\"user\": }." -msgstr "" - -#: assignments/views.py:116 -#, python-format -msgid "Invalid data. User %d does not exist." -msgstr "" - -#: assignments/views.py:136 -#, python-format -msgid "User %s is already elected." -msgstr "" - -#: assignments/views.py:138 -msgid "You can not nominate someone to this election because it is finished." -msgstr "" - -#: assignments/views.py:144 -#, python-format -msgid "User %s is already nominated." -msgstr "" - -#: assignments/views.py:149 -#, python-format -msgid "User %s was nominated successfully." -msgstr "" - -#: assignments/views.py:156 -msgid "" -"You can not delete someone's candidature to this election because it is " -"finished." -msgstr "" - -#: assignments/views.py:159 -#, python-format -msgid "User %s has no status in this election." -msgstr "" - -#: assignments/views.py:161 -#, python-format -msgid "Candidate %s was withdrawn successfully." -msgstr "" - -#: assignments/views.py:173 -#, python-format -msgid "User %s is not a candidate of this election." -msgstr "" - -#: assignments/views.py:175 -#, python-format -msgid "User %s was successfully elected." -msgstr "" - -#: assignments/views.py:179 -#, python-format -msgid "User %s is not an elected candidate of this election." -msgstr "" - -#: assignments/views.py:182 -#, python-format -msgid "User %s was successfully unelected." -msgstr "" - -#: assignments/views.py:192 -msgid "Can not create ballot because there are no candidates." -msgstr "" - -#: assignments/views.py:195 -msgid "Ballot created successfully." -msgstr "" - -#: assignments/views.py:210 -msgid "users has to be a list of IDs." -msgstr "" - -#: assignments/views.py:237 -msgid "Assignment related users successfully sorted." -msgstr "" - -#: core/config.py:50 core/config.py:76 -msgid "The config variable {} was not found." -msgstr "" - -#: core/config.py:85 -#, python-format -msgid "Wrong datatype. Expected %(expected_type)s, got %(got_type)s." -msgstr "" - -#: core/config.py:95 -msgid "Invalid input. Choice does not match." -msgstr "" - -#: core/config.py:105 -msgid "motions_comments has to be a dict." -msgstr "" - -#: core/config.py:111 -msgid "Each id has to be an int." -msgstr "" - -#: core/config.py:114 -msgid "Each id has to be greater then 0." -msgstr "" - -#: core/config.py:118 -msgid "Each commentsfield in motions_comments has to be a dict." -msgstr "" - -#: core/config.py:120 -msgid "A name and a public property have to be given." -msgstr "" - -#: core/config.py:122 -msgid "name has to be string." -msgstr "" - -#: core/config.py:124 -msgid "public property has to be bool." -msgstr "" - -#: core/config.py:130 -msgid "This has to be a dict." -msgstr "" - -#: core/config.py:137 core/config.py:153 -msgid "{} has to be given." -msgstr "" - -#: core/config.py:139 core/config.py:155 -msgid "{} has to be a string." -msgstr "" - -#: core/config.py:143 -msgid "Translations has to be a list." -msgstr "" - -#: core/config.py:146 -msgid "Every value has to be a dict, not {}." -msgstr "" - -#: core/config.py:177 -msgid "Too many values for config variables {} found." -msgstr "" - -#: core/config.py:261 -msgid "Invalid value for config attribute input_type." -msgstr "" - -#: core/config.py:263 -msgid "" -"Either config attribute 'choices' must not be None or 'input_type' must not " -"be 'choice'." -msgstr "" - -#: core/config.py:266 -msgid "" -"Either config attribute 'choices' must be None or 'input_type' must be " -"'choice'." -msgstr "" - -#: core/config.py:276 -msgid "General" -msgstr "" - -#: core/views.py:277 -msgid "The data has to be a list." -msgstr "" - -#: core/views.py:280 -msgid "All elements have to be dicts." -msgstr "" - -#: core/views.py:420 -msgid "The data has to be a dict." -msgstr "" - -#: core/views.py:426 -msgid "The id \"{}\" has to be int." -msgstr "" - -#: core/views.py:432 -msgid "Prune has to be an object." -msgstr "" - -#: core/views.py:435 -msgid "The prune projector id has to be int." -msgstr "" - -#: core/views.py:440 -msgid "The projector with id \"{}\" does not exist" -msgstr "" - -#: core/views.py:444 -msgid "Prune element has to be a dict or not given." -msgstr "" - -#: core/views.py:772 -msgid "All chat messages deleted successfully." -msgstr "" - -#: mediafiles/models.py:87 -msgid "unknown" -msgstr "" - -#: motions/models.py:190 -msgid "Motion" -msgstr "" - -#: motions/models.py:744 -msgid "new" -msgstr "" - -#: motions/models.py:969 -#, python-format -msgid "%(time_and_messages)s by %(person)s" -msgstr "" - -#: motions/serializers.py:36 -#, python-format -msgid "Workflow %(pk)d does not exist." -msgstr "" - -#: motions/signals.py:22 -msgid "submitted" -msgstr "" - -#: motions/signals.py:27 motions/signals.py:60 -msgid "accepted" -msgstr "" - -#: motions/signals.py:32 motions/signals.py:66 -msgid "rejected" -msgstr "" - -#: motions/signals.py:37 -msgid "not decided" -msgstr "" - -#: motions/signals.py:47 -msgid "published" -msgstr "" - -#: motions/signals.py:52 motions/views.py:300 -msgid "permitted" -msgstr "" - -#: motions/signals.py:72 -msgid "withdrawed" -msgstr "" - -#: motions/signals.py:77 -msgid "adjourned" -msgstr "" - -#: motions/signals.py:83 -msgid "not concerned" -msgstr "" - -#: motions/signals.py:89 -msgid "refered to committee" -msgstr "" - -#: motions/signals.py:95 -msgid "needs review" -msgstr "" - -#: motions/signals.py:100 -msgid "rejected (not authorized)" -msgstr "" - -#: motions/views.py:110 -msgid "The parent motion does not exist." -msgstr "" - -#: motions/views.py:154 -msgid "Motion created" -msgstr "" - -#: motions/views.py:256 -msgid "Motion updated" -msgstr "" - -#: motions/views.py:260 -msgid "All supporters removed" -msgstr "" - -#: motions/views.py:264 -msgid "Comment {} updated" -msgstr "" - -#: motions/views.py:298 motions/views.py:310 -msgid "Version" -msgstr "" - -#: motions/views.py:302 -#, python-format -msgid "Version %d permitted successfully." -msgstr "" - -#: motions/views.py:307 -msgid "You can not delete the active version of a motion." -msgstr "" - -#: motions/views.py:312 -msgid "deleted" -msgstr "" - -#: motions/views.py:314 -#, python-format -msgid "Version %d deleted successfully." -msgstr "" - -#: motions/views.py:337 -msgid "You can not support this motion." -msgstr "" - -#: motions/views.py:339 -msgid "Motion supported" -msgstr "" - -#: motions/views.py:343 -msgid "You have supported this motion successfully." -msgstr "" - -#: motions/views.py:348 -msgid "You can not unsupport this motion." -msgstr "" - -#: motions/views.py:350 -msgid "Motion unsupported" -msgstr "" - -#: motions/views.py:351 -msgid "You have unsupported this motion successfully." -msgstr "" - -#: motions/views.py:374 -msgid "Invalid data. State must be an integer." -msgstr "" - -#: motions/views.py:377 -#, python-format -msgid "You can not set the state to %(state_id)d." -msgstr "" - -#: motions/views.py:385 -#, python-format -msgid "The state of the motion was set to %s." -msgstr "" - -#: motions/views.py:389 motions/views.py:458 motions/views.py:726 -msgid "State set to" -msgstr "" - -#: motions/views.py:413 -msgid "Invalid data. Recommendation must be an integer." -msgstr "" - -#: motions/views.py:417 -#, python-brace-format -msgid "You can not set the recommendation to {recommendation_state_id}." -msgstr "" - -#: motions/views.py:427 -#, python-format -msgid "The recommendation of the motion was set to %s." -msgstr "" - -#: motions/views.py:431 -msgid "Recommendation set to" -msgstr "" - -#: motions/views.py:439 -msgid "Cannot set an empty recommendation." -msgstr "" - -#: motions/views.py:479 -msgid "Vote created" -msgstr "" - -#: motions/views.py:483 -msgid "Vote created successfully." -msgstr "" - -#: motions/views.py:509 -msgid "Vote updated" -msgstr "" - -#: motions/views.py:518 -msgid "Vote deleted" -msgstr "" - -#: motions/views.py:652 -#, python-format -msgid "" -"Numbering aborted because the motion identifier \"%s\" already exists " -"outside of this category." -msgstr "" - -#: motions/views.py:675 -msgid "" -"Error: At least one identifier of this category does already exist in " -"another category." -msgstr "" - -#: motions/views.py:680 -#, python-brace-format -msgid "All motions in category {category} numbered successfully." -msgstr "" - -#: motions/views.py:731 -msgid "Followed recommendations successfully." -msgstr "" - -#: poll/models.py:194 -msgid "majority" -msgstr "" - -#: poll/models.py:196 poll/models.py:198 -msgid "undocumented" -msgstr "" - -#: poll/serializers.py:16 -msgid "Value for {} must not be less than -2" -msgstr "" - -#: users/serializers.py:49 -msgid "" -"The groups this user belongs to. A user will get all permissions granted to " -"each of his/her groups." -msgstr "" - -#: users/serializers.py:72 -msgid "Username, given name and surname can not all be empty." -msgstr "" - -#: users/serializers.py:109 -#, python-brace-format -msgid "Incorrect value \"{value}\". Expected app_label.codename string." -msgstr "" - -#: users/serializers.py:110 -#, python-brace-format -msgid "Invalid permission \"{value}\". Object does not exist." -msgstr "" - -#: users/views.py:91 -msgid "You can not deactivate yourself." -msgstr "" - -#: users/views.py:114 -msgid "You can not delete yourself." -msgstr "" - -#: users/views.py:131 -msgid "Password successfully reset." -msgstr "" - -#: users/views.py:172 -#, python-brace-format -msgid "{number} users successfully imported." -msgstr "" - -#: users/views.py:410 -msgid "Cookies have to be enabled to use OpenSlides." -msgstr "" - -#: users/views.py:413 -msgid "Username or password is not correct." -msgstr "" - -#: users/views.py:439 -#, python-brace-format -msgid "" -"Installation was successfully. Use {username} and {password} for first " -"login. Important: Please change your password!" -msgstr "" - -#: users/views.py:462 -msgid "You are not authenticated." -msgstr "" - -#: users/views.py:509 -msgid "Old password does not match." -msgstr "" diff --git a/openslides/locale/es/LC_MESSAGES/django.mo b/openslides/locale/es/LC_MESSAGES/django.mo deleted file mode 100644 index 3859b62df9e5b2ee191733df7d30d2cdcc522872..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12590 zcmbW7TZ~=RdB<16H3la@Xs#q(c4IsfnB%d**bEpjW*kiMCBBhMiL>XNJ!iJP&)$c9 zneo_6lu8vPQ7Tmx^eH9cp(Ut7s^zMYXjQe$L!v(QDyT$hiYnBHv}&pPQiZm^|5|&W zv(K5aaoO^k|Guotx4!%Oj^DcF>gNsD3hg%9)mIzy68N+0_`~(=24j8+{0`UxUjc6b z-vqaU{{r3%-o(pKfRBMYzyO>Ap93}TYv4WLKY|nBCvNoL9|Vu^+ylP?{wa7p_{ojN zJONtpcJM4Hl70X(g?R~l0K5p6;JYCI%)&>F`69Ro?gU>1r@_}j(R=;JjM)NCS9lV< zo9Cy&7I>k0|5NZ1gSApgv5{J903s@^{Y?&kS0sC_c`8`0+R3 zUEnPr_xs%ss(%7%-S2{TfUR;m1AGgVzHES)?clwj1s^@ZiYzl z_nY8ua0OJqKLYOt-vl28Z??Yw*Fe$vGAKD+1f}2CZ1VK(1TjIg2Ye7b2(Ey?0gA30 z5R&%$IZ*Q-1J&=@>iH+2_V-?e6Kqa;a15LRp8+MeKLo{}cR<HwcO5GZ?d; z_kj0+Pl9^?94I~e5jY9H13m`c#Nyib*Fo*$H$jbm4Yc6fpw_!;!k8Iw7pUt{rxVed43xd zUoU{TJo9Iu`1e;JCTac)d=%V>QAv+af|{=nqMGIfkgb?k!D;Yq@F@6kj8goW2fqe> z2NXa48I&G=nn^_WJ>Wy&Igq8yAA{QWJD>$`gt>>nDUhw1r$Mdrd!YF8I>?e{Bg)Ct z=3Y?a=RxiNdlfzpeuU>2s^=eqqWc1P3;6foHQ>*{8^Cuf{2x%`Hn6DZyA{;)gP`>8 zK=u42DE@Ro(en_ElP64_vdfhiRv1np5jGuf^)&2~aYT++{1*((3C3HyLe-wxfC}ejcmt4^~*i zb=*i#b%_sWX`j+VbxBrfb-y1BX|l5~)1IOsUh{RDcvjHnXyTJ}6c^%TxB|}8K1REm zCcTvIJVuiZ>WXNO(mqO)p6#L?q3LSVj?>Q5?xoGpbV=Sf(GJnBqUn+k)g|9Ad(|a5 zA|A6qdxZ8lO**TqOY6~cJ#a|}C0|{V=SkW(XoqPf?P;3qN!Mu)&d=P%{jbo@Rqt@u z&d#MHH`30~zDd)CYjHXoxF=#Hc%ZufFnDuy-vnDdJOn;T`(+v?V>&cl(q-APt}l9U zcA#6?tFBmowoDXJFFX|_om0Iq&x3B5Pv&-R*>0KWhgqH`leyVzlb{z``q;qs%egpe z+kTevy;!yj!D48O)Xs&r8!d)O%k1rjNhh#T5%$d9IJWJDps@AiwiCu-5q4}|w%aT? zU&iq=W9ZjQizrQU8zr_K6k#{bmhJiaZp9{LZ!XN%9hsN?ewr1~YqPMIE`}YmH-X+X zS?;A}Zp%E(m@~0ST8Pjzv2m0axlQM7-VcK_jD&_fkGe@OObTX+p`hai<|CxqTnlwt z=HVcYnXR3LuIK1>_El^7uXfJ&oeSFmq}XDCeb|7Oq#~;mb(jMR80PQomfS7{w5V9< zWWiE0LIWMs^h^}yP3DJ5Fc(8IqR<+L`(bh{jyjrlmRZDrG?|aOHYkcLnk$RYZf!55 z5klB%du8qzb0|&VPG+}8Nxv*k70dl___6A~^@=B~xP9qKs}7BcHqpgqk|LUq*a~th7NUHpC!G{-1Tn(sEZgub!j&4K0e_x_|5O~z zg>kE$GEi2N!|kNoG6#~pKn>h-PPQW}+7rm^y!2FqR-CP!?+1CllxCe3JC97}ql{g} zX*Wt*_CQYxA0)+$Jt7W;va+Nb+U2y&Y&~!jt3qVdv1~IC4UMNE)t$&OJ;;{tv|V(1 z3p#U&u6f!E;e67?fX+biW|6#k#@-)w9#|P4b##Qs10};Yq6GU6v+)7P3Iufp{a{vR zx3DWoT}tF6KAg>IZ_Dm;>OJh$3ySu_uowQT7h&^wgN7^*&z+WxFEzE7z2vdRoQ5{j zGLK6G8{TEaeg{6}p!0afL+wiH$J(iN>KA3Q_Ele=qhk)G13%_{!d!^jR=&{AXK7DP z$2q+wRV{Nk?hLeLxaW#dM=JdrB|Z!DuxObv;qngGV~%-mI-IJKjF)WH={TeiXcQzC zaB_~;+Pk;RdS7d&t8W$G7lSO4$Ft{GoH94HLF)QOUr)ly@Yg>RpK=1@+NKB zy*?r=MMRx0gkzU>s0}%Tu`KUP!=Sw&mf>x-$%*=T{ThlPO?Fy&q&UqL9z?@>-@{(N zAl~V7p9ny#@nLTb$JArgNolEqx77f}2hUJvu;SGLUDc)j{yOUc9Ep=>xdU;9c1l=s2#+( zuC(8(-4ziw4Tx5b58be3yiF^lRT^;x+S?oh&DtW-9>?#31Br(7Ys0zO+8{>gqXbpY z(fF36y(p1gjeOOnf?>G!tYp->%ec;o|ArI>LH;tMB+tRhBPKT_!^ymnIN5;s0(T-={rsBFel0Plx0-tLJ7N- z$&WJ+uR}!`~u2zzvZQ+ha3?JR`33o&`IP{60wt9F64_`!!a*oU7 zPI(y5k9Uw}5VLzBPI0S}PM@WhxVsOyq?=JJachTm(JQ39Ls0qmb%|J?!rE)pG=4Cu zTr7d4v7o~a&yT)3d4xiJIQR_nuVUe5JUDrMC!H{a55@r1(n>AEOa;0(Umcd%tSbRBN0 zIN!95#?d^`c68=mjKU?8s1YPd(Au11m_|>Xu+71(V+Q`ytgRr_)6S)7-16U*yqGMUcPD-p z)oCrl{f4|$g6_Wh8$00~748RG&xM^yQ=jSof4Q(1s%9pOOxvZB9rtjCBq}i_S)@-- zJP(3Fygl#;a;)XS2zQQKk;|!F>m?oFku23FrVezbs$ewJIJ$2*8tRxgbujNnovDY* zZa#H9ov|B^96mm^Pl1mhHuVUuYsT)F-oATkdgs)RyX^LRX13pT$MlZrX*y0FMK}s} z>-4*OX8X=Nrnxpe&KY~^I9YGb0aXX@**-BbHNz zqInxv(`@7Q4$cl4v%NLFVPDF!3B(fcW^56jEw=UJAWH7j0T}OH>^X6K|J3eb zKdp%tP0ezASJFCTch5z|fZQ1y<{OU0C8zzV{b|xn)}>)XXTBMPY}0x4-(T%4dNsB1#O2eTqVYPA85vD0tLK z(WL{V)EJJ91M7=v=6K2nGHAR4TnkQf?&Z6-Odn4F%6`H)Qr_B;vA9A7l?0eYW}bGi z++Ny7R(>FZs>0gpE5TTijf`F0*UnK95cJb!7U39Z=gW``1p6-{2Bo=S<7HlQGE1po ztX@o_UJ56u8HP|B5)CrTrj@6%0|52u7!HmQOTFv^cZ92GczIil1f6Qgm;tO?B)lapAWdm&gJM0?4F^sJ6E zsWv~@IV&V~_2sh>r%Q8OqIHt>J}*+Oz}M?I@&&dmqBuIosv|YJm{XRk%cYIFTql&X zML!Oqxg`|waad;93Ja_6%@W!rCxYQ_E}iYhCSqzgSJkCCUD$SP8I4|7e`sM6u8UVCw0(3^|+O6rOe%P88dUI;cB{5Sg~=U;shZzwfe z^TrN#0n@40IorUEWP1##C!P*SZ|NE zMVwUI(e<_CXW=E5Inc~28x+^Zud^7+=(UDQvlyix6Dsx~mt#7YdRfu2og#Piuw{<8 za$Y*hSoTmgScFn zNCD5&>)p}d(RU6B@UHanl*WOJnwV_oI(iE}Ox$cR#^Zaq~5 z`LRR3or<7Bkqm-a8{bEGjt;WBK`{^(U|jsnK|uFBr&ho|<*Y*-gi|MtVexKO_5nBs z4f6PS3UZ4On}^h})<`_TFsh|<^yp-(FOmq$Jt-nPFQ0S6^zD!zaNMLg7hF9{%OOye z@~b&&*GNd=h?F^7y?BZ5(8H38L7Q;xx+s{-Jn=oKf1m1FL#<&*!>xKNmS)t095V(I zmfV~JfyQenlHKQ25OMbN!6JXzW#D2po9nN>$S)(%c-ZS7vAQh=*7G)_J9o?~)P zK&~_7PO-{o^Fcq16{VeuI1k{|)~iS6Ewu7j9PoWoga;Z#LkbNcfjfhF(^8RUCpI+b z7bTooe7~uxUa3F=(_E=YHcg=P;u)&}JWvg+!b6vvA-{+#L~Tvnb;A~n1pm37O1 z8m#0Whp{Og*$b(3YH=wQXRGMSkFRlgTE7^$T4qCh$D_Ve*-n)SRomc)8lU$tWKB5} zM_evyvSvl|1a7-yv9+P)SJvpitYa`fnpwuqm@0`=;Z}x-r-H8xm5V z&CtZl4S+=N2$iW1eZe|p*5?#v8yXVp4V<<#xtdIwg{yLMLPquS)mJP(efHQ6U3le} ztiZFVeL2KI6#&jC~G3GiL=(~4~9BX>neaa1MGfv$M|y5x=% zu-K=PK&iXNmh1el>N4QT*fjpQowh}1CJ{fa~^WXcu!588H_m) zzpxL5N|3^2F+wKZPThJqp;}Yq_O57v^LYe2L@!TKkE(XRdhrTKg8sVbFwTZ%jPc~q z*(a28;u6!?F3Csw5}ygEB#~&RX6Wa7!E&0Bc9=u@zZ?ViES2@AN9}?n1Z}2L2?vxu z<`F_rQPdp+4TZGD)L_`bJi%G>bMMNc1d^&Qsym$fI)x&)CX2`)s6HA734`2!!qQay zO6sacSONRue)VPEQ5bR?8QiHxDnF(QDZ?gB;|x>f+k;Iz$*k|A`s@)`sD%#4E+h-R^Bknp-nX)U?BPCCeqF6m4E4}Un}`2YX_ diff --git a/openslides/locale/es/LC_MESSAGES/django.po b/openslides/locale/es/LC_MESSAGES/django.po deleted file mode 100644 index b1f472a5f..000000000 --- a/openslides/locale/es/LC_MESSAGES/django.po +++ /dev/null @@ -1,673 +0,0 @@ -# Language file of OpenSlides used by Transifex: -# https://www.transifex.com/openslides/openslides/ -# Copyright (C) 2011–2015 by OpenSlides team, see AUTHORS. -# This file is distributed under the same license as the OpenSlides package. -# Translators: -# johnfelipe , 2016 -# Maximilian Krambach , 2016-2017 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-05-23 16:13+0200\n" -"PO-Revision-Date: 2018-05-23 14:15+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: Spanish (http://www.transifex.com/openslides/openslides/language/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: agenda/models.py:206 -msgid "Agenda item" -msgstr "Item de la Agenda" - -#: agenda/models.py:207 -msgid "Hidden item" -msgstr "Elemento oculto" - -#: agenda/models.py:356 -#, python-brace-format -msgid "{user} is already on the list of speakers." -msgstr "{user} ya está en la lista de oradores." - -#: agenda/models.py:359 -msgid "An anonymous user can not be on lists of speakers." -msgstr "Un usuario anónimo no puede estar en listas de oradores." - -#: agenda/views.py:116 -msgid "The list of speakers is closed." -msgstr "La lista de oradores se cerró." - -#: agenda/views.py:125 agenda/views.py:150 -msgid "User does not exist." -msgstr "El usuario no existe." - -#: agenda/views.py:133 -#, python-format -msgid "User %s was successfully added to the list of speakers." -msgstr "Usuario %s se ha añadido correctamente a la lista de oradores." - -#: agenda/views.py:154 -msgid "Marked has to be a bool." -msgstr "" - -#: agenda/views.py:163 -msgid "The user is not in the list of speakers." -msgstr "" - -#: agenda/views.py:168 -msgid "You are successfully marked the speaker." -msgstr "" - -#: agenda/views.py:170 -msgid "You are successfully unmarked the speaker." -msgstr "" - -#: agenda/views.py:187 -msgid "You are not on the list of speakers." -msgstr "Usted no está en la lista de oradores." - -#: agenda/views.py:190 -msgid "You are successfully removed from the list of speakers." -msgstr "Usted ha sido eliminado de la lista de oradores." - -#: agenda/views.py:212 -msgid "speakers have been removed from the list of speakers." -msgstr "oradores han sido eliminados de la lista de oradores." - -#: agenda/views.py:214 -#, python-format -msgid "User %s has been removed from the list of speakers." -msgstr "Orador %s ha sido eliminado de la lista de oradores." - -#: agenda/views.py:216 -msgid "No speakers have been removed from the list of speakers." -msgstr "Ningun orador ha sido eliminado de la lista de oradores." - -#: agenda/views.py:236 -msgid "The list of speakers is empty." -msgstr "La lista de oradores está vacía." - -#: agenda/views.py:241 -msgid "Speaker does not exist." -msgstr "El orador no existe." - -#: agenda/views.py:243 -msgid "User is now speaking." -msgstr "El usuario está hablando." - -#: agenda/views.py:254 -#, python-format -msgid "There is no one speaking at the moment according to %(item)s." -msgstr "No hay nadie hablando acerca de %(item)s." - -#: agenda/views.py:256 -msgid "The speech is finished now." -msgstr "El discurso está terminado ahora." - -#: agenda/views.py:275 agenda/views.py:287 assignments/views.py:222 -msgid "Invalid data." -msgstr "Datos inválidos." - -#: agenda/views.py:300 -msgid "List of speakers successfully sorted." -msgstr "Lista de oradores ha sido ordenada correctamente." - -#: agenda/views.py:309 -msgid "Numbering of agenda items is deactivated." -msgstr "" - -#: agenda/views.py:312 -msgid "The agenda has been numbered." -msgstr "Los temas del programa han sido numerados." - -#: agenda/views.py:337 -msgid "There must not be a hierarchical loop. Please reload the page." -msgstr "No puede haber un círculo de hierarquías. Por favor recarque la página." - -#: agenda/views.py:341 -msgid "The agenda has been sorted." -msgstr "El programa ha sido ordenado." - -#: assignments/models.py:164 -msgid "Election" -msgstr "Elección" - -#: assignments/serializers.py:31 -msgid "Value for {} must be greater than 0" -msgstr "El valor de {} debe ser superior a 0" - -#: assignments/serializers.py:149 -#, python-format -msgid "You have to submit data for %d candidates." -msgstr "Usted tiene que enviar datos para %d candidatos." - -#: assignments/serializers.py:153 motions/serializers.py:236 -#, python-format -msgid "You have to submit data for %d vote values." -msgstr "Usted tiene que enviar datos para %d valores de voto." - -#: assignments/serializers.py:157 motions/serializers.py:240 -#, python-format -msgid "Vote value %s is invalid." -msgstr "El valor de voto %s no es válido." - -#: assignments/views.py:66 -msgid "You are already elected." -msgstr "Usted ya ha sido elegido." - -#: assignments/views.py:76 -msgid "You can not candidate to this election because it is finished." -msgstr "Usted no puede ser candidato para esta elección porque la elección ha terminado." - -#: assignments/views.py:85 -msgid "You were nominated successfully." -msgstr "Usted ha sido nombrado correctamente." - -#: assignments/views.py:90 -msgid "" -"You can not withdraw your candidature to this election because it is " -"finished." -msgstr "Usted no puede retirar su candidatura para esta elección porque ha terminado." - -#: assignments/views.py:95 -msgid "You are not a candidate of this election." -msgstr "Usted no es un candidato para esta elección." - -#: assignments/views.py:97 -msgid "You have withdrawn your candidature successfully." -msgstr "Usted ha retirado su candidatura con éxito." - -#: assignments/views.py:106 -#, python-format -msgid "Invalid data. Expected dictionary, got %s." -msgstr "Datos inválidos. Esperaba un diccionario, llegó %s." - -#: assignments/views.py:112 -msgid "Invalid data. Expected something like {\"user\": }." -msgstr "Datos inválidos. Esperaba algo como {\"user\": }." - -#: assignments/views.py:116 -#, python-format -msgid "Invalid data. User %d does not exist." -msgstr "Datos inválidos. El usuario %d no existe." - -#: assignments/views.py:136 -#, python-format -msgid "User %s is already elected." -msgstr "El usuario %s ya está elegido." - -#: assignments/views.py:138 -msgid "You can not nominate someone to this election because it is finished." -msgstr "No se puede nominar a alguien a esta elección porque ha terminado." - -#: assignments/views.py:144 -#, python-format -msgid "User %s is already nominated." -msgstr "El usuario %s ya está nominado." - -#: assignments/views.py:149 -#, python-format -msgid "User %s was nominated successfully." -msgstr "El usuario %s fue nominado correctamente." - -#: assignments/views.py:156 -msgid "" -"You can not delete someone's candidature to this election because it is " -"finished." -msgstr "No se puede eliminar la candidatura de alguien para esta elección porque ya ha terminado." - -#: assignments/views.py:159 -#, python-format -msgid "User %s has no status in this election." -msgstr "El usuario %s no tiene estatus en esta elección." - -#: assignments/views.py:161 -#, python-format -msgid "Candidate %s was withdrawn successfully." -msgstr "%s candidato fue retirado con éxito." - -#: assignments/views.py:173 -#, python-format -msgid "User %s is not a candidate of this election." -msgstr "El usuario %s no es un candidato de esta elección." - -#: assignments/views.py:175 -#, python-format -msgid "User %s was successfully elected." -msgstr "El usuario %s fue elegido con éxito." - -#: assignments/views.py:179 -#, python-format -msgid "User %s is not an elected candidate of this election." -msgstr "El usuario %s no es un candidato electo de esta elección." - -#: assignments/views.py:182 -#, python-format -msgid "User %s was successfully unelected." -msgstr "La elección del usuario %s de deshizo correctamente." - -#: assignments/views.py:192 -msgid "Can not create ballot because there are no candidates." -msgstr "No se puede crear la votación porque no hay candidatos." - -#: assignments/views.py:195 -msgid "Ballot created successfully." -msgstr "Boleta creada correctamente." - -#: assignments/views.py:210 -msgid "users has to be a list of IDs." -msgstr "tiene que ser una lista de IDs." - -#: assignments/views.py:237 -msgid "Assignment related users successfully sorted." -msgstr "Los usuarios relacionados a este asignamento han sido ordenados correctamente." - -#: core/config.py:50 core/config.py:76 -msgid "The config variable {} was not found." -msgstr "La variable de configuración {} no fue encontrado." - -#: core/config.py:85 -#, python-format -msgid "Wrong datatype. Expected %(expected_type)s, got %(got_type)s." -msgstr "Tipo de datos incorrecto. Espera %(expected_type)s, obtuvo %(got_type)s." - -#: core/config.py:95 -msgid "Invalid input. Choice does not match." -msgstr "Entrada inválida. Selección no coincide." - -#: core/config.py:105 -msgid "motions_comments has to be a dict." -msgstr "" - -#: core/config.py:111 -msgid "Each id has to be an int." -msgstr "" - -#: core/config.py:114 -msgid "Each id has to be greater then 0." -msgstr "" - -#: core/config.py:118 -msgid "Each commentsfield in motions_comments has to be a dict." -msgstr "" - -#: core/config.py:120 -msgid "A name and a public property have to be given." -msgstr "Un nombre y una propiedad pública tienen que ser transmitidos." - -#: core/config.py:122 -msgid "name has to be string." -msgstr "Name debe ser una cadena de caracteres." - -#: core/config.py:124 -msgid "public property has to be bool." -msgstr "La propiedad pública debe de ser booleano" - -#: core/config.py:130 -msgid "This has to be a dict." -msgstr "" - -#: core/config.py:137 core/config.py:153 -msgid "{} has to be given." -msgstr "" - -#: core/config.py:139 core/config.py:155 -msgid "{} has to be a string." -msgstr "" - -#: core/config.py:143 -msgid "Translations has to be a list." -msgstr "" - -#: core/config.py:146 -msgid "Every value has to be a dict, not {}." -msgstr "" - -#: core/config.py:177 -msgid "Too many values for config variables {} found." -msgstr "" - -#: core/config.py:261 -msgid "Invalid value for config attribute input_type." -msgstr "Valor inválido para el atributo input_type." - -#: core/config.py:263 -msgid "" -"Either config attribute 'choices' must not be None or 'input_type' must not " -"be 'choice'." -msgstr "El atributo 'choices' debe de ser None o 'input_type' no debe de ser 'choice'." - -#: core/config.py:266 -msgid "" -"Either config attribute 'choices' must be None or 'input_type' must be " -"'choice'." -msgstr "El atributo 'choices' debe ser Ninguno o 'input_type' debe ser 'choice'." - -#: core/config.py:276 -msgid "General" -msgstr "General" - -#: core/views.py:277 -msgid "The data has to be a list." -msgstr "" - -#: core/views.py:280 -msgid "All elements have to be dicts." -msgstr "" - -#: core/views.py:420 -msgid "The data has to be a dict." -msgstr "" - -#: core/views.py:426 -msgid "The id \"{}\" has to be int." -msgstr "" - -#: core/views.py:432 -msgid "Prune has to be an object." -msgstr "" - -#: core/views.py:435 -msgid "The prune projector id has to be int." -msgstr "" - -#: core/views.py:440 -msgid "The projector with id \"{}\" does not exist" -msgstr "" - -#: core/views.py:444 -msgid "Prune element has to be a dict or not given." -msgstr "" - -#: core/views.py:772 -msgid "All chat messages deleted successfully." -msgstr "Todos los mensajes de charla se han eliminado correctamente." - -#: mediafiles/models.py:87 -msgid "unknown" -msgstr "desconocido" - -#: motions/models.py:190 -msgid "Motion" -msgstr "Moción" - -#: motions/models.py:744 -msgid "new" -msgstr "nuevo" - -#: motions/models.py:969 -#, python-format -msgid "%(time_and_messages)s by %(person)s" -msgstr "%(time_and_messages)s de %(person)s" - -#: motions/serializers.py:36 -#, python-format -msgid "Workflow %(pk)d does not exist." -msgstr "Flujo %(pk)d no existe." - -#: motions/signals.py:22 -msgid "submitted" -msgstr "presentado" - -#: motions/signals.py:27 motions/signals.py:60 -msgid "accepted" -msgstr "aceptado" - -#: motions/signals.py:32 motions/signals.py:66 -msgid "rejected" -msgstr "rechazado" - -#: motions/signals.py:37 -msgid "not decided" -msgstr "no decidido" - -#: motions/signals.py:47 -msgid "published" -msgstr "publicado" - -#: motions/signals.py:52 motions/views.py:300 -msgid "permitted" -msgstr "permitido" - -#: motions/signals.py:72 -msgid "withdrawed" -msgstr "retirado" - -#: motions/signals.py:77 -msgid "adjourned" -msgstr "aplazado" - -#: motions/signals.py:83 -msgid "not concerned" -msgstr "no afectado" - -#: motions/signals.py:89 -msgid "refered to committee" -msgstr "remitido al comité" - -#: motions/signals.py:95 -msgid "needs review" -msgstr "necesita revisión" - -#: motions/signals.py:100 -msgid "rejected (not authorized)" -msgstr "rechazado (no autorizado)" - -#: motions/views.py:110 -msgid "The parent motion does not exist." -msgstr "La moción principal no existe." - -#: motions/views.py:154 -msgid "Motion created" -msgstr "Moción creada" - -#: motions/views.py:256 -msgid "Motion updated" -msgstr "Moción actualizada" - -#: motions/views.py:260 -msgid "All supporters removed" -msgstr "Todos los apoyadores fueron retirados" - -#: motions/views.py:264 -msgid "Comment {} updated" -msgstr "" - -#: motions/views.py:298 motions/views.py:310 -msgid "Version" -msgstr "Versión" - -#: motions/views.py:302 -#, python-format -msgid "Version %d permitted successfully." -msgstr "Versión %d permitida correctamente." - -#: motions/views.py:307 -msgid "You can not delete the active version of a motion." -msgstr "No puede eliminar la versión activa de una moción." - -#: motions/views.py:312 -msgid "deleted" -msgstr "eliminado" - -#: motions/views.py:314 -#, python-format -msgid "Version %d deleted successfully." -msgstr "La versión %d se ha eliminado correctamente." - -#: motions/views.py:337 -msgid "You can not support this motion." -msgstr "Usted no puede apoyar esta propuesta." - -#: motions/views.py:339 -msgid "Motion supported" -msgstr "Moción apoyada" - -#: motions/views.py:343 -msgid "You have supported this motion successfully." -msgstr "Le ha apoyado esta moción correctamente." - -#: motions/views.py:348 -msgid "You can not unsupport this motion." -msgstr "No puede desapoyar esta moción." - -#: motions/views.py:350 -msgid "Motion unsupported" -msgstr "Moción desapoyada." - -#: motions/views.py:351 -msgid "You have unsupported this motion successfully." -msgstr "Usted desapoyó esta moción correctamente." - -#: motions/views.py:374 -msgid "Invalid data. State must be an integer." -msgstr "Datos inválidos. Estado debe ser un número entero." - -#: motions/views.py:377 -#, python-format -msgid "You can not set the state to %(state_id)d." -msgstr "No puede asignar el estado a %(state_id)d." - -#: motions/views.py:385 -#, python-format -msgid "The state of the motion was set to %s." -msgstr "El estado de la moción fue establecido en %s." - -#: motions/views.py:389 motions/views.py:458 motions/views.py:726 -msgid "State set to" -msgstr "Estado establecido en" - -#: motions/views.py:413 -msgid "Invalid data. Recommendation must be an integer." -msgstr "Datos inválidos. Recomendación debe de ser un número entero." - -#: motions/views.py:417 -#, python-brace-format -msgid "You can not set the recommendation to {recommendation_state_id}." -msgstr "No puede asignar la recomendación a {recommendation_state_id}." - -#: motions/views.py:427 -#, python-format -msgid "The recommendation of the motion was set to %s." -msgstr "La recomendación de la moción fue establecido en %s." - -#: motions/views.py:431 -msgid "Recommendation set to" -msgstr "Recomendación establecido en" - -#: motions/views.py:439 -msgid "Cannot set an empty recommendation." -msgstr "" - -#: motions/views.py:479 -msgid "Vote created" -msgstr "Voto creado" - -#: motions/views.py:483 -msgid "Vote created successfully." -msgstr "Voto creado correctamente." - -#: motions/views.py:509 -msgid "Vote updated" -msgstr "Voto actualizado" - -#: motions/views.py:518 -msgid "Vote deleted" -msgstr "Voto eliminado" - -#: motions/views.py:652 -#, python-format -msgid "" -"Numbering aborted because the motion identifier \"%s\" already exists " -"outside of this category." -msgstr "" - -#: motions/views.py:675 -msgid "" -"Error: At least one identifier of this category does already exist in " -"another category." -msgstr "Error: Al menos un identificador de esta categoría ya existe en otra categoría." - -#: motions/views.py:680 -#, python-brace-format -msgid "All motions in category {category} numbered successfully." -msgstr "Todas mociones de la categoría {category} numeradas correctamente." - -#: motions/views.py:731 -msgid "Followed recommendations successfully." -msgstr "Las recomendaciones se han seguidos con éxito." - -#: poll/models.py:194 -msgid "majority" -msgstr "mayoría" - -#: poll/models.py:196 poll/models.py:198 -msgid "undocumented" -msgstr "Indocumentado" - -#: poll/serializers.py:16 -msgid "Value for {} must not be less than -2" -msgstr "El valor de {} no debe ser inferior a -2" - -#: users/serializers.py:49 -msgid "" -"The groups this user belongs to. A user will get all permissions granted to " -"each of his/her groups." -msgstr "Los grupos a las que pertenece este usuario. Un usuario obtendrá todos los permisos concedidos a cada uno de sus grupos." - -#: users/serializers.py:72 -msgid "Username, given name and surname can not all be empty." -msgstr "Nombre de usuario, nombre y apellido no todos pueden estar vacíos." - -#: users/serializers.py:109 -#, python-brace-format -msgid "Incorrect value \"{value}\". Expected app_label.codename string." -msgstr "Valor incorrecto \"{value}\". Esperaba app_label.codename cadena." - -#: users/serializers.py:110 -#, python-brace-format -msgid "Invalid permission \"{value}\". Object does not exist." -msgstr "Permiso inválido: \"{value}\". El objeto no existe." - -#: users/views.py:91 -msgid "You can not deactivate yourself." -msgstr "No puede desactivarse a sí mismo." - -#: users/views.py:114 -msgid "You can not delete yourself." -msgstr "No puede borrar a sí mismo." - -#: users/views.py:131 -msgid "Password successfully reset." -msgstr "Contraseña restablecida correctamente." - -#: users/views.py:172 -#, python-brace-format -msgid "{number} users successfully imported." -msgstr "" - -#: users/views.py:410 -msgid "Cookies have to be enabled to use OpenSlides." -msgstr "Tiene que permitir cookies para utilizar OpenSlides." - -#: users/views.py:413 -msgid "Username or password is not correct." -msgstr "Nombre de usuario o la contraseña no es correcta." - -#: users/views.py:439 -#, python-brace-format -msgid "" -"Installation was successfully. Use {username} and {password} for first " -"login. Important: Please change your password!" -msgstr "Instalación exitosa. Utilice {username} y {password} para el primer inicio de sesión. Importante: ¡Cambie su contraseña!" - -#: users/views.py:462 -msgid "You are not authenticated." -msgstr "Usted no está autenticado." - -#: users/views.py:509 -msgid "Old password does not match." -msgstr "La contraseña antigua no coincide." diff --git a/openslides/locale/fr/LC_MESSAGES/django.mo b/openslides/locale/fr/LC_MESSAGES/django.mo deleted file mode 100644 index ff9d903f0e24b88770c1401704d1f9bff01f812d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13153 zcmcJVTZ|;tdB=+wa~Uqi*f9w~LijAE-AU`+}5alUB$?tzo zRd;ny&+Y~(CC>i)RGrIrzWe!xcdx$id5`A|?K;|p7kb`H;Lk7SAD(YddET#pzX{gC z*TBobAAvRSXW*USRlNKh_+@Y>=!3K1bD-9J1H2vl2{;XY?sE72KJW16y#Fb95&es<@;s(`SAhKIUB^FHgR{l^`@voG4}&`Aw+s9u@E7U7 z0bT>X19CL)eejpTkH9a0U--16=MJzz{~O@-;9rAZ1pfuR0o113fi0ls9R0YYD0zMaYTT`S6kopvN>0y!27DIW0=@+5{BMERfHWzYA*q4?xlJub}9@7$)od_kjj{2K*}cBDfR$0F-=gWU;;A0(d|8El~RM zH=qIk0~EcVg_uL&9iaI2EU0m>gExckg3^~Mh}i+&2^#PeDE<8ocq#ZiX!W*u{}Kqv z-k*Zv#}B|yfd2?ef8PP6-|vB%{~;)T{CCm64q?J_?qug=RmFh z`=IuJ6_h@`4q~$2+n~<#WAINdU@e#%kYt-LotSmeD2YW^oN z+HZmPfYP%!L0IGc3^d>+FhT3ifa*UEO5eT->Rhja4}tF%Sc8~d^t+(eSqHW5--0^t z&q490Hsj>c0w1LR9H@1F1WJCFz$8?`+XZU=aZviS0zLq~25S8K#rx~%TulEc$QItC zAWM0_4vKHD74P2!Mc2QBsF-&pN}>MEAguJh0`3O8p!oOa;2iiCD8Bs{$W-szS$B?o z;8*BB3ySWyK_C1DgsF2jL8f@$0}q0K4{H4N43<8e0y%>BA}GCl3p@s1%%%sx$3XG_ zWl-OL3~JqLF>=}Yqx^%YyzhXQfUg(${Q}z)yi6fa2E$2=NN=Qt(Rf z8t@|UCQy8w1vTyjC_X-3^m|4B8E_BpUjV1Te+ISAd!Xk1C&-b#kBa^_4lRD%3SIz8 zHzV3n8b`M=_d!s$BY&$$_VIOER~??cH0i)en$E0!t52`!JOWC0WDn9wovVBv=0`$X zp+TB`M3;E4N3yCuI*a(O=QFfbn)q2h(zUqg>;nUu{L)uxPts5e?=hNuV@6w~iSN?6 z8)%rL&3TqU$>&0v>{UAYW!mjDJt6HOnt1#u?GD-znw|#jIPEm;PMYjZ&(*Z6XoqN@ zpy`n=>5=b873?GXLcP3Ynq(^dlP&0J(K@tL9Uj@hW%ifTlN0=YoOYO&)1IbDU-UfT zz*_?myY;V674KwIva{=Hm(xzsevPK*CR&Xqd(yK&+i!niU*M;U-&HV0=YH@TG})T; zuSwG*TaaJT^Cbt~CkvFF>1peqtzZaM+Hj9C2g}orEdkd`~YWgP3f{wS)ZkxukpP6!T z(+t`{7Bo$oHyUiXl(*Y!%wb$7&cZlKO&FPmp9QTrSu>~0UuR5|cNT+W;>=yaVA3J$h5;WOHI6F(r)0NVkR`CY1oQ7L6osd z8w#3sVmd;qNwpE~?g78uX0=8V*pZ{h*Ex+p%%M1fJBg`hC-Y_@Gwr~KHqpglqAXkrISO*imcw+YC(Rgc_-%yITrF;ZKBO-ay*JIET&TcsP7--AIEB!1g_C~UH+Q|0|pBTkr>nV#Ry1GD9{#WP## zX76g3_pIu7yC>WJV$iNPVkXLJQn($p>fZh+%}@ioot5p#j^<%xc3OI>NoTCBo$mT+ zx)LYNGiC{yEQJZDYR9cGs+;{CDZC$L^X7;+6v)b=R$$iRJTc|O8`u>h!=~YwzG$fQ zhEz90%XB|k+h$tm^j36clc8zc3E+Ix!hlXe@fMN1W!~H!Ht#(%KI`ZRj|WPIZG;i_ z9VFuuj%5hyJjTJS#BAkMlDd@0N_@DQ)!w?4s&S0}{g@dg!H9$tJx zGTv-yCws|bgEsHc9c7nx9JP28*Uf^92rD5`rv>5Ir5S2N%496d`O?5|EQ@7$o9%LG}2C|f6fyNzvd^cy(Brrr~4woWU~&)_j2fY~;Z z6n-7?;;j9ou^cx1Hm)n~)=PIqgpGZomE}V#sC&+)719cgI1lZu&Vgnfk!X+Ox50r# z!}_)1+8k{VBlJ;%D%Yrdi{efg$*xAe>QMeLTsu}WYvML`aOA!rg+Y)%%Ph%ru=9w? z4au-FuOv>!CqCJjFGh~*+gavWqN@kouyP)ajv04|mTy*9RtAdVHnd?62U$iTr%|Lz zE_@CL5p9$)4ztTNx8YChvTj{=NxD|p%n2KI<$5vsGGl4k{3}7?%$f5xjwy7pO|Iz% zan(CPzNajsKpRRptxSF-Dpv5@S|H7U-R*bjFv`ry}`v6Wa5HHU*ry5a#hbeK^*Fal z=mwK0Kb%|RM@Hu8APJf>b}Xm*i3mGcKg&T?uAfiX(!5ehhPH(}8Zmry$0gh$+2GJ8 zI@-$VO+0)S_T(Jb$eq%ly)-^RnnBF&1USW-l1`VU=eWC%xusoEEU|kBrsot=-oY>Y z`$QrpQ&@V9lE#lmm5n8kG!}F?;px#=Cv7M>88%7ys)8sNaFNEwhH~Ugp%5k0i$unW z%f++NwFbG)=0nQ6kxO|$wovT-b&yz9w;MBH9ksmdrukwArBYUHbMvhg7f&cW$IzZ! zfi?K**ujzI&~>>f;(XOMDodBgk2aov;-+TfKi1=0dsgD0d zoP^n$XMMUtGh)RfmzSC-2%5Tc_rhSsi_{2`BxnupF)X8AGiY#eYkC9!>20hal*=y0 zal7umD|zvfV9DP2*;Kc+5ceDKQVF{K>VBAM>!@%)(E3!+obk##{r@c&c0$$4WRY51ckKZv*c_aMho9?Y=!xHED&rEA^P0Uk+W9b$HWbG8UZ^OdXn z)X_lKyxD_kD{Rg_khjv=}~}->(}Zl2?rI=~%!_BdH@$^}&y@4X#A%7eB!)>!U;KYJ=L zcL(lGJ#8%K0dMZt9S*n2()DI=FH1zNoUDHKc;I*D%|3ElQqk$2%Iqqzye8g@lP*i`mi&eHSCEI7F4(>m=cgU9=^|`6tF}p_4O1zslS+JUI@3#Fg zx=Z(8oOgE5!^ii{?i!BMo+#1mUT*KoS?A5J#V{LCJJ024>PS21vOl{oPCDtliMqC% z-m~*A<9^;V9hrO0j+wirHYt~p$ye)T4=a1=7%moh#D8S^6w8vZzn=Bi%lcU}R_c?P z{wo=#*^Hy8zm66iiD4@?W7;)xY<%SQ2(v$WWAP zSpU_3nN^ugeaTHPifr0K*(@YcXbZVU4J&QK6}gr5*OQn*Oy97kTam+OVG5hsuiW2* z1$h>dkfNLvBwQ)Z*1Nhvo+&jfPEN`vLX^5HJ)$I+*eOtbfL`g=c^?(0q@DsBEit1M z9l$R&61JuAQ;cmS{q=INyrSjC39(XAiSu6Yl%+-ExZG*~VhJ*)22u^%CaSHe>CNJXz4=akQu-&QH>{Xgx)(FWok?6tR2=|e*(_2mS-5G{h< zveL&b+#WW-@x$zauG*pkXYH>)(f^Mn0$ z>`xWH{(8H=Zm+o=KYcRquj@)76%NbtUtp@`q6J8cFw#^?b(Zqq0R%ucR2BeBZJ}n( zU2|Mr%){1pP|iw85O-3k2wH8yaJpQR!~V-UH$DW$;Et=+!DBU4xF_Q9ll?y?I@>y7 z!aFgG977z|RV}!|+hg4jMo`>9R6L&W&g^jo!^jU=0<{zewwZX5AGs|?Oqx`3>Pg}X z4MM1t*tov2jyP%l0l!F1OCdU4cRGyH;7zGEOeR>aLB##CNCYVUAC>ZlNQ7beplXc0pZST#ToPB#phgosVXSl;v5M-z%Free#8Pp8H~ z=y8F^h4+k-X0N~Q0;8=%VyS+b9geY=Y{wyN1 z=#ol9XKh5Ll{BL?qH3CPR*S0Y2J4inC7BkUQDGDF zQ8>2n@H;s$N-$vv5@r!41+cTss6_m^cb_~Jdh^NiS+l6tRC6>(*=UMpHXfx^E-u0O zcuFVjKujBzd%}6kbu5`xft_Wn!o)epkD5wV5MnT9=j5JoU@etRN=7_{d4M#la zkikW{7A@Q`Ya3|?8I!x?2owzhvT2M=V#TeL`Mu0s7AaR}^C+mnwN=6}w+8GXB*(J$ zJ69QNV;!Seek`vIqowMk$u-@Q@9bc&MMHs$q)PF(99a0kYQ(T3V=P3myBz1P6_(J+ zpN2cx8;4FmK5%eZg27aPM>imfO2KRpEm8pZX6r`Su7q1=X#7dLov%v92)pN#>=m`* zQQgpeS%aEoh8OS$cJfY+$Ak^V;xd&RsTbRO6R8s+pyB}BZK~$ppN~y%m;l#p;dlwZ zC|;mDQDwce+z{q{IO^tI*E^aS$cX$)**;E1?O}N@w!;LM2=PDE*eq0>QbgxrW13JRbGZgR80(qa>;1 z97Bh#hLlg@rK9~km) zdYKbP&QhX2VHIlR7&cp=98!ip7T7wiFc?tPR;_x%9GB>_|GBx81Q{2j@`|O2%4I93 zKO2ijCs(y#qu@7JL`N-#QAvNQgm1IDD03)nXHt+W7|{$gj3xPhKWw#19-wq2_E?qr zw>+yje(p)CX1Sn{>MwBeZslZ4m*oV$m=D;%rfi&K(-Y=bImzcrbygH-+JG^3IuC7$>RbEmq&nb-)E`1>>kSmxoUH-!sny8u6 zb^lL-;>?B$B34!1s8Ts+9<|qAyaww~8Kqbpi2S8)OXvLH2IOi~6wV21F7fZL&yY6{ z>us@ncNq8f8z RdQn!FlT-ZRY-b4#{|jmV8T0@E diff --git a/openslides/locale/fr/LC_MESSAGES/django.po b/openslides/locale/fr/LC_MESSAGES/django.po deleted file mode 100644 index 9904938d8..000000000 --- a/openslides/locale/fr/LC_MESSAGES/django.po +++ /dev/null @@ -1,673 +0,0 @@ -# Language file of OpenSlides used by Transifex: -# https://www.transifex.com/openslides/openslides/ -# Copyright (C) 2011–2015 by OpenSlides team, see AUTHORS. -# This file is distributed under the same license as the OpenSlides package. -# Translators: -# Emanuel Schütze , 2017 -# Moira Brülisauer , 2015-2017 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-05-23 16:13+0200\n" -"PO-Revision-Date: 2018-05-23 14:15+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: French (http://www.transifex.com/openslides/openslides/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: agenda/models.py:206 -msgid "Agenda item" -msgstr "Point de l'ordre du jour" - -#: agenda/models.py:207 -msgid "Hidden item" -msgstr "élément masqué" - -#: agenda/models.py:356 -#, python-brace-format -msgid "{user} is already on the list of speakers." -msgstr "{user} est déjà sur la liste des orateurs." - -#: agenda/models.py:359 -msgid "An anonymous user can not be on lists of speakers." -msgstr "Un utilisateur anonyme no peut pas être sur la liste des orateurs." - -#: agenda/views.py:116 -msgid "The list of speakers is closed." -msgstr "La liste des orateurs est fermée." - -#: agenda/views.py:125 agenda/views.py:150 -msgid "User does not exist." -msgstr "L'utilisateur n'existe pas." - -#: agenda/views.py:133 -#, python-format -msgid "User %s was successfully added to the list of speakers." -msgstr "L'utilisateur %s a été ajouté avec succès à la liste des orateurs." - -#: agenda/views.py:154 -msgid "Marked has to be a bool." -msgstr "" - -#: agenda/views.py:163 -msgid "The user is not in the list of speakers." -msgstr "" - -#: agenda/views.py:168 -msgid "You are successfully marked the speaker." -msgstr "" - -#: agenda/views.py:170 -msgid "You are successfully unmarked the speaker." -msgstr "" - -#: agenda/views.py:187 -msgid "You are not on the list of speakers." -msgstr "Vous n'êtes pas sur la liste des orateurs." - -#: agenda/views.py:190 -msgid "You are successfully removed from the list of speakers." -msgstr "Vous avez été envelé à la liste des orateurs avec succès." - -#: agenda/views.py:212 -msgid "speakers have been removed from the list of speakers." -msgstr "Les orateurs on été envelé avec succès de la liste des orateurs." - -#: agenda/views.py:214 -#, python-format -msgid "User %s has been removed from the list of speakers." -msgstr "L' utilisateur %s a été envelé avec succès de la liste des orateurs." - -#: agenda/views.py:216 -msgid "No speakers have been removed from the list of speakers." -msgstr "Aucun orateur a été envelé de la liste des orateurs." - -#: agenda/views.py:236 -msgid "The list of speakers is empty." -msgstr "La liste des orateurs est vide." - -#: agenda/views.py:241 -msgid "Speaker does not exist." -msgstr "Orateur n'existe pas." - -#: agenda/views.py:243 -msgid "User is now speaking." -msgstr "utilisateur est entrain de parler." - -#: agenda/views.py:254 -#, python-format -msgid "There is no one speaking at the moment according to %(item)s." -msgstr "Il n'y a pas un a parlé au moment selon %(item)s." - -#: agenda/views.py:256 -msgid "The speech is finished now." -msgstr "Le discours maintenant terminé." - -#: agenda/views.py:275 agenda/views.py:287 assignments/views.py:222 -msgid "Invalid data." -msgstr "Données invalides." - -#: agenda/views.py:300 -msgid "List of speakers successfully sorted." -msgstr "Liste des orateurs a été trié avec succès." - -#: agenda/views.py:309 -msgid "Numbering of agenda items is deactivated." -msgstr "" - -#: agenda/views.py:312 -msgid "The agenda has been numbered." -msgstr "L'ordre du jour a été numéroté." - -#: agenda/views.py:337 -msgid "There must not be a hierarchical loop. Please reload the page." -msgstr "Il doit y avoir aucune boucle hiérarchique. Veuillez recharger la page." - -#: agenda/views.py:341 -msgid "The agenda has been sorted." -msgstr "L'ordre du jour a été trié." - -#: assignments/models.py:164 -msgid "Election" -msgstr "Election" - -#: assignments/serializers.py:31 -msgid "Value for {} must be greater than 0" -msgstr "La valeur de {} doit être supérieure à 0" - -#: assignments/serializers.py:149 -#, python-format -msgid "You have to submit data for %d candidates." -msgstr "Vous devez soumettre des données pour %d candidats." - -#: assignments/serializers.py:153 motions/serializers.py:236 -#, python-format -msgid "You have to submit data for %d vote values." -msgstr "Vous devez soumettre des données pour les valeurs %d votes." - -#: assignments/serializers.py:157 motions/serializers.py:240 -#, python-format -msgid "Vote value %s is invalid." -msgstr "Valeur de vote %s est invalide." - -#: assignments/views.py:66 -msgid "You are already elected." -msgstr "Vous êtes déja elu." - -#: assignments/views.py:76 -msgid "You can not candidate to this election because it is finished." -msgstr "Vous ne pouvez pas vous présenter pour cette élection car elle terminée." - -#: assignments/views.py:85 -msgid "You were nominated successfully." -msgstr "Vous avez été nominé avec succès. " - -#: assignments/views.py:90 -msgid "" -"You can not withdraw your candidature to this election because it is " -"finished." -msgstr "Vous ne pouvez pas retirer votre candidature à cette élection car elle terminée." - -#: assignments/views.py:95 -msgid "You are not a candidate of this election." -msgstr "Vous n'êtes pas un candidat de cette élection." - -#: assignments/views.py:97 -msgid "You have withdrawn your candidature successfully." -msgstr "Vous avez retiré votre candidature avec succès." - -#: assignments/views.py:106 -#, python-format -msgid "Invalid data. Expected dictionary, got %s." -msgstr "Données invalides. Dictionnaire attendu, obtenu %s." - -#: assignments/views.py:112 -msgid "Invalid data. Expected something like {\"user\": }." -msgstr "Données invalides. Attendu quelque chose comme {\"user\": }." - -#: assignments/views.py:116 -#, python-format -msgid "Invalid data. User %d does not exist." -msgstr "Données invalides. L'utilisateur %d ne existe pas." - -#: assignments/views.py:136 -#, python-format -msgid "User %s is already elected." -msgstr "L'utilisateur %s est déja elu." - -#: assignments/views.py:138 -msgid "You can not nominate someone to this election because it is finished." -msgstr "Vous ne pouvez pas nommer quelqu'un pour cette élection, car elle terminée." - -#: assignments/views.py:144 -#, python-format -msgid "User %s is already nominated." -msgstr "L'utilisateur %s est déja nommé." - -#: assignments/views.py:149 -#, python-format -msgid "User %s was nominated successfully." -msgstr "Le candidat %s a été nommé avec succès. " - -#: assignments/views.py:156 -msgid "" -"You can not delete someone's candidature to this election because it is " -"finished." -msgstr "Vous ne pouvez pas supprimer la candidature de quelqu'un à cette élection, car il est terminé." - -#: assignments/views.py:159 -#, python-format -msgid "User %s has no status in this election." -msgstr "L'utilisateur %s n'a pas de statut dans cette élection." - -#: assignments/views.py:161 -#, python-format -msgid "Candidate %s was withdrawn successfully." -msgstr "Le candidat %s a été rejeté avec succès." - -#: assignments/views.py:173 -#, python-format -msgid "User %s is not a candidate of this election." -msgstr "L'utilisateur %s n'est pas un candidat de cette élection." - -#: assignments/views.py:175 -#, python-format -msgid "User %s was successfully elected." -msgstr "L'utilisateur %s a été élu avec succès." - -#: assignments/views.py:179 -#, python-format -msgid "User %s is not an elected candidate of this election." -msgstr "L'utilisateur %s n'est pas un candidat élu de cette élection." - -#: assignments/views.py:182 -#, python-format -msgid "User %s was successfully unelected." -msgstr "L'utilisateur %s a été non élu avec succès." - -#: assignments/views.py:192 -msgid "Can not create ballot because there are no candidates." -msgstr "Vous ne pouvez pas créer des scrutins, car il n'y a pas de candidats." - -#: assignments/views.py:195 -msgid "Ballot created successfully." -msgstr "Le scrutin a été créé avec succès." - -#: assignments/views.py:210 -msgid "users has to be a list of IDs." -msgstr "Les utilisateurs doivent être une liste d'ID." - -#: assignments/views.py:237 -msgid "Assignment related users successfully sorted." -msgstr "Les candidats on été trié avec avec succès." - -#: core/config.py:50 core/config.py:76 -msgid "The config variable {} was not found." -msgstr "La variable de configuration {} n'a pas été trouvé." - -#: core/config.py:85 -#, python-format -msgid "Wrong datatype. Expected %(expected_type)s, got %(got_type)s." -msgstr "Type de données erronées. %(expected_type)s, obtenu %(got_type)s." - -#: core/config.py:95 -msgid "Invalid input. Choice does not match." -msgstr "Entrée invalide. Choix ne correspond pas." - -#: core/config.py:105 -msgid "motions_comments has to be a dict." -msgstr "" - -#: core/config.py:111 -msgid "Each id has to be an int." -msgstr "" - -#: core/config.py:114 -msgid "Each id has to be greater then 0." -msgstr "" - -#: core/config.py:118 -msgid "Each commentsfield in motions_comments has to be a dict." -msgstr "" - -#: core/config.py:120 -msgid "A name and a public property have to be given." -msgstr "Un nom et un une propriété public doivent être donnés." - -#: core/config.py:122 -msgid "name has to be string." -msgstr "Nom doit être un string" - -#: core/config.py:124 -msgid "public property has to be bool." -msgstr "La propriété publique doit être bool." - -#: core/config.py:130 -msgid "This has to be a dict." -msgstr "" - -#: core/config.py:137 core/config.py:153 -msgid "{} has to be given." -msgstr "" - -#: core/config.py:139 core/config.py:155 -msgid "{} has to be a string." -msgstr "" - -#: core/config.py:143 -msgid "Translations has to be a list." -msgstr "" - -#: core/config.py:146 -msgid "Every value has to be a dict, not {}." -msgstr "" - -#: core/config.py:177 -msgid "Too many values for config variables {} found." -msgstr "" - -#: core/config.py:261 -msgid "Invalid value for config attribute input_type." -msgstr "Valeur incorrecte pour l'attribut de configuration input_type." - -#: core/config.py:263 -msgid "" -"Either config attribute 'choices' must not be None or 'input_type' must not " -"be 'choice'." -msgstr "Soit l'attribut de configuration 'choix' ne doit pas être aucun ou 'input_type' ne dois pas être 'choix'." - -#: core/config.py:266 -msgid "" -"Either config attribute 'choices' must be None or 'input_type' must be " -"'choice'." -msgstr "Soit l'attribut de configuration 'choix' ne doit pas être aucun ou 'input_type' ne doit être 'choix'." - -#: core/config.py:276 -msgid "General" -msgstr "Général" - -#: core/views.py:277 -msgid "The data has to be a list." -msgstr "" - -#: core/views.py:280 -msgid "All elements have to be dicts." -msgstr "" - -#: core/views.py:420 -msgid "The data has to be a dict." -msgstr "" - -#: core/views.py:426 -msgid "The id \"{}\" has to be int." -msgstr "" - -#: core/views.py:432 -msgid "Prune has to be an object." -msgstr "" - -#: core/views.py:435 -msgid "The prune projector id has to be int." -msgstr "" - -#: core/views.py:440 -msgid "The projector with id \"{}\" does not exist" -msgstr "" - -#: core/views.py:444 -msgid "Prune element has to be a dict or not given." -msgstr "" - -#: core/views.py:772 -msgid "All chat messages deleted successfully." -msgstr "Tous les messages du chat ont été supprimés avec succès." - -#: mediafiles/models.py:87 -msgid "unknown" -msgstr "inconnu" - -#: motions/models.py:190 -msgid "Motion" -msgstr "Motion" - -#: motions/models.py:744 -msgid "new" -msgstr "nouveau" - -#: motions/models.py:969 -#, python-format -msgid "%(time_and_messages)s by %(person)s" -msgstr "%(time_and_messages)s par %(person)s" - -#: motions/serializers.py:36 -#, python-format -msgid "Workflow %(pk)d does not exist." -msgstr "Flux de travail %(pk)d n'existe pas." - -#: motions/signals.py:22 -msgid "submitted" -msgstr "présenté" - -#: motions/signals.py:27 motions/signals.py:60 -msgid "accepted" -msgstr "accepté" - -#: motions/signals.py:32 motions/signals.py:66 -msgid "rejected" -msgstr "rejeté" - -#: motions/signals.py:37 -msgid "not decided" -msgstr "ne pas decidé" - -#: motions/signals.py:47 -msgid "published" -msgstr "publié" - -#: motions/signals.py:52 motions/views.py:300 -msgid "permitted" -msgstr "permis" - -#: motions/signals.py:72 -msgid "withdrawed" -msgstr "retiré" - -#: motions/signals.py:77 -msgid "adjourned" -msgstr "ajourné" - -#: motions/signals.py:83 -msgid "not concerned" -msgstr "non concerné" - -#: motions/signals.py:89 -msgid "refered to committee" -msgstr "renvoyé à un comité." - -#: motions/signals.py:95 -msgid "needs review" -msgstr "doit être revu" - -#: motions/signals.py:100 -msgid "rejected (not authorized)" -msgstr "Rejeté (non autorisé)" - -#: motions/views.py:110 -msgid "The parent motion does not exist." -msgstr "La motion parental n'existe pas." - -#: motions/views.py:154 -msgid "Motion created" -msgstr "Motion créé" - -#: motions/views.py:256 -msgid "Motion updated" -msgstr "motion mise à jour" - -#: motions/views.py:260 -msgid "All supporters removed" -msgstr "Tous les partisans supprimés" - -#: motions/views.py:264 -msgid "Comment {} updated" -msgstr "" - -#: motions/views.py:298 motions/views.py:310 -msgid "Version" -msgstr "Version" - -#: motions/views.py:302 -#, python-format -msgid "Version %d permitted successfully." -msgstr "Version %d a été autorisé avec succes." - -#: motions/views.py:307 -msgid "You can not delete the active version of a motion." -msgstr "Vous ne pouvez pas suprimer la version active de cette motion. " - -#: motions/views.py:312 -msgid "deleted" -msgstr "Suprimé" - -#: motions/views.py:314 -#, python-format -msgid "Version %d deleted successfully." -msgstr "Version %d a été suprimé avec succes." - -#: motions/views.py:337 -msgid "You can not support this motion." -msgstr "Vous ne pouvez pas soutenir cette motion. " - -#: motions/views.py:339 -msgid "Motion supported" -msgstr "Motion soutenu" - -#: motions/views.py:343 -msgid "You have supported this motion successfully." -msgstr "Vous soutenez maintenant cette motion, vous avez été ajouté avec succès." - -#: motions/views.py:348 -msgid "You can not unsupport this motion." -msgstr "Vous ne pouvez pas retirer votre soutien pour cette motion. " - -#: motions/views.py:350 -msgid "Motion unsupported" -msgstr "Motion ne plus soutenue" - -#: motions/views.py:351 -msgid "You have unsupported this motion successfully." -msgstr "Vous avez retiré votre soutien pour cette motion avec succès." - -#: motions/views.py:374 -msgid "Invalid data. State must be an integer." -msgstr "Données invalides. Le statut doit être intègre." - -#: motions/views.py:377 -#, python-format -msgid "You can not set the state to %(state_id)d." -msgstr "Vous ne pouvez pas fixé le statut à %(state_id)d." - -#: motions/views.py:385 -#, python-format -msgid "The state of the motion was set to %s." -msgstr "Le statut de la motion a été fixé à %s." - -#: motions/views.py:389 motions/views.py:458 motions/views.py:726 -msgid "State set to" -msgstr "Changer le statut à" - -#: motions/views.py:413 -msgid "Invalid data. Recommendation must be an integer." -msgstr "Données invalides. La recommandation doit être un entier." - -#: motions/views.py:417 -#, python-brace-format -msgid "You can not set the recommendation to {recommendation_state_id}." -msgstr "Vous ne pouvez pas définir la recommandation à {recommendation_state_id}." - -#: motions/views.py:427 -#, python-format -msgid "The recommendation of the motion was set to %s." -msgstr "La recommandation de la motion a été fixée à %s." - -#: motions/views.py:431 -msgid "Recommendation set to" -msgstr "Recommandation définie à" - -#: motions/views.py:439 -msgid "Cannot set an empty recommendation." -msgstr "" - -#: motions/views.py:479 -msgid "Vote created" -msgstr "Votation a été créé" - -#: motions/views.py:483 -msgid "Vote created successfully." -msgstr "La votation a été créé avec succès." - -#: motions/views.py:509 -msgid "Vote updated" -msgstr "Votation a été mis à jour" - -#: motions/views.py:518 -msgid "Vote deleted" -msgstr "La votation a été supprimée." - -#: motions/views.py:652 -#, python-format -msgid "" -"Numbering aborted because the motion identifier \"%s\" already exists " -"outside of this category." -msgstr "" - -#: motions/views.py:675 -msgid "" -"Error: At least one identifier of this category does already exist in " -"another category." -msgstr "Erreur: Au moins un identifiant de cette catégorie existe déjà dans une autre catégorie." - -#: motions/views.py:680 -#, python-brace-format -msgid "All motions in category {category} numbered successfully." -msgstr "Toutes les motions de la catégorie {category} ont été numérotées avec succès." - -#: motions/views.py:731 -msgid "Followed recommendations successfully." -msgstr "Suivi des recommandations avec succès." - -#: poll/models.py:194 -msgid "majority" -msgstr "majorité" - -#: poll/models.py:196 poll/models.py:198 -msgid "undocumented" -msgstr "non documenté" - -#: poll/serializers.py:16 -msgid "Value for {} must not be less than -2" -msgstr "La valeur pour {} ne doit pas être inférieure à -2" - -#: users/serializers.py:49 -msgid "" -"The groups this user belongs to. A user will get all permissions granted to " -"each of his/her groups." -msgstr "Les groupes auxquels cet utilisateur appartient. Un utilisateur obtiendra toutes les autorisations accordées à chacun de ses groupes." - -#: users/serializers.py:72 -msgid "Username, given name and surname can not all be empty." -msgstr "Nom d'utilisateur, prénom et nom ne peuvent pas tous être vides." - -#: users/serializers.py:109 -#, python-brace-format -msgid "Incorrect value \"{value}\". Expected app_label.codename string." -msgstr "Valeur incorrecte \"{value}\". Attendu sous app_label.codename string." - -#: users/serializers.py:110 -#, python-brace-format -msgid "Invalid permission \"{value}\". Object does not exist." -msgstr "Autorisation non valable \"{value}\". L'object n'existe pas." - -#: users/views.py:91 -msgid "You can not deactivate yourself." -msgstr "Vous ne pouvez pas vous désactiver vous-même." - -#: users/views.py:114 -msgid "You can not delete yourself." -msgstr "Vous ne pouvez pas vous suprimer vous même." - -#: users/views.py:131 -msgid "Password successfully reset." -msgstr "Le mot de passe a été réinitialisé avec succès." - -#: users/views.py:172 -#, python-brace-format -msgid "{number} users successfully imported." -msgstr "" - -#: users/views.py:410 -msgid "Cookies have to be enabled to use OpenSlides." -msgstr "Les cookies doivent être activés pour utiliser OpenSlides." - -#: users/views.py:413 -msgid "Username or password is not correct." -msgstr "Nom d'utilisateur ou mot de passe n'est pas correcte." - -#: users/views.py:439 -#, python-brace-format -msgid "" -"Installation was successfully. Use {username} and {password} for first " -"login. Important: Please change your password!" -msgstr "L'installation a été terminé avec succès. Utilisez {username} et {password} pour la première connexion. Important: S'il vous plaît changer votre mot de passe!" - -#: users/views.py:462 -msgid "You are not authenticated." -msgstr "Vous n'êtes pas authentifié." - -#: users/views.py:509 -msgid "Old password does not match." -msgstr "L'ancien mot de passe ne correspond pas." diff --git a/openslides/locale/pt/LC_MESSAGES/django.mo b/openslides/locale/pt/LC_MESSAGES/django.mo deleted file mode 100644 index 300b68475f965734be352b02134c8a9a617dd867..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12491 zcmbW7dyE~|UB^#pn#bnZ(6rD7I5u^>+hniT&cn{;zw>*a-}N_dyzF_ywMM&{cG+ddoCp8o3jT0?e8QNY1U~_`z?Zy6n4&Qy33 zyo2WtgDvoj)%$OOm-Br24aP9kTnqBg+{~XF!RhM#UT_c3^Pu+m@d`f=-o*2l!S{f# zfo#qE7x-h~55V_4}j{QfLiyL!P~&!1;wAg1ts6B-(}2ha0jUMI-rv~$UpNEf82h+_w)Q3 zD0%(>RKGj;D84=kN=_dEE%-5TD|jB%{{I4eFZhk>`Sl9_5ByQyUxN~9|F?kJ*8%WH zz+V8Tz)yo3{|YEN{uvbASHNWL{{hf~9|0c+KMU>x{~MHi-p^$F!8vd*_)DPl<iu~TlFc80 z;>RoC+rh7a(%;uW>G!{a8vi;de*91Md^5s?<>nSp>)ZoEirEL=2|f*K+^0az{~1v0 z{~joPdKtuI&EJ69&p(2H_BQ5%IpXK5D2e#>T~K;|3xj6BJHfr+A}Btd2PL1cfCs=I zf=Gs#gP`7bK-u}{!CCNC@M-WWi;aRypy>Q-P<;M-Q2O(MEylb9JOYXjCqd1>0A}Ee zASPjMMo8Lk3)FfcxEuT}PSUe`cW(fmFrKK&*5xcXJkb1iQdAt*iiHPF!s z!Xon>P;$DCkC%f}70!TH@w^)pU*wOlG2J;!?d^4bjb#F$rs38 zbxB_li}Q#3z{hCPRb3rgkCy9!OS*BjyYqT@l6(2nd0I*PFirNW>lqJb6}+AHGqmTb zcd}{em25!za+>zDG+ok@?X*A-TywO8?hgMBzO%Y-f~_9*f*+ziN|SzuG+okBr?;T= zQr9~?xV%fZUH#cMS;W2QRFH(HdQqMSohYBm?ZT?vHrbD|JWZx@GiQ^a7g_q)!1l|9 zZrry0EaiK#YL|lL$QG$xh-@cbj*^y{>qJQy*tm##X0F?{?WLfw_2f2;x=|5@HZR+4 z7F;a5-BrfWua_2an&dW4Y&$5TPMWRSv-RDYP0HRvlx;dPFZ=y8E1=hAQ7>JNLNk{@ zZyC)O9{;WEK9Rl zJ6G6l6hNEkVlzn*FUD*IxfM%sKGc&ig&RQ^VT7wTI)iYfMreTFd8JM*b09@(E3hex z+G!72!+EE4qw;$=N}??2nh(Yyi+WW)n6%T3VTD}|x@Bayo^`mkwPp98>GPghgMR;1 zH&}?et#-;lSxpYNlTOPVO!5LXaLYN_j;v@;AhWa5Qw>^kwsy83)bAhgT+Kb?P(!qdEL-AITymi*z8;AF=Z5(xUgvSFV!#3gs`;M}W1CA94>Js|F ztjum>SCYDv$Vq%So73KweaNZzuvafA+DpS;_^)1!&EpLkvYcOdMl!z8)L!5Qw!@CWitM%FV7L0!|A|}d7rQlp|+JTw2N8V zlhbiduSr$Q%y+|qwhZ@NG3rRAf1|`_Q63d7vq8AL!}XYB-kT1mswCqjTXi}PDFhk? zi6xwzqqX+#EwkCz+Ue?B#rNePi{H^wpb7w`zAqgiQmYmE%JvY8h|S3Tc%_T!QvC$3U~TNVLcCyWl{g;r!ZgZnidv5&9@W z)pInyC222CWLG0!wW(kju01OmwdpdhbK<`tg+Y+N$SBEku=0q>4asmaZzN7OAU?U6 zFGgB67b<=ndLl60-InUgN;%JpLMb;i2*`^r=dIeZR7D-fobOE2Mp}H1=V-Wu8d0(~IOQ zO2$u5jmNtuGF+OA?aI^|dC0cOs7gs(4mXuofqjzjUcG6Vr_$0Tp<^ade|Te!AL&`5 zgCuCm*s+}ECnD_T`dN2sa{W@mmd4deGPEt+(TL%rJ3ir#$p(i$(bHBB5ApCtye#Lq zO74_L-NlU^q#4BQUW8NJuB6jv=_T&&EiUP16ieLNkzMu*Den+e{(Vy-Hm9)m8a0h? zjVc#QAZbI;VTWf&U!8KH%oeOuV z&qhAweak{|=hs1E)m(0a0c)%EVK*-qdMK5$YL}aDYq)qq;Tv>amMd@u-|RcsvK+b& zH&vW(+D2pQdi%-v{>MkGC^Xk|mWUZ|RxEHZ7EN_O1CX_BbKlw^@U zJ@GsU2J!abKIB--gAwi=wkHz+c>&U9F26$n?96x;&A%G zvXf6APiO7Kk@@4(4=L~w#HRP*x@PUJnVoy4XYQQdb-Uep*X+*QZ=KmSGegJeqXF& zM<-(3d2!!~;|Heq4Et$W)M|P^=XqtZvv$uyTny-+wQjA6Bi)h;!1RGM>*cdH>AT1L zzFqfNe|z6#Vz=C9cTU|iae*QlqH9*s)<0pBNF}fJb6HH0rYD0Wx#5ng8s)Ssj=~`1 zT(JH}DzWLjPHK&lsSZo#cp74X{6jNUsiRg#cUN8u`avhqS9mGE#WE==`Cvf0et!KA zby!vg>uPIpu%Wm{roPz(DOEBS?WeKML{)(;4%6J6=-IM}yYX{D$WDV~{pBR?r8ZfA zA+>$VA2!1MXJl{AP@s)hDT}0>AUSzbmK%(A^LB$a%EWiSi@-8ET67LJ=rK|SmHOjg zizH70dt=Eq=RtTi!hpm2u>Ka^LQC_AprjQs$A+s>MC{U zpWoTAP8UWLTXmZCHMMfIP&fEGEU3M?>4&1b;2NV{h70ZQMzN#TmF}>A&UeyNwvMLP zrMtGI&kj+Hh8{ix-(8(RF{;Eb48K)%2Gt5G4bG!ZNxgJ~ra$b;blcUy;sI4tFjkDf#Ov93xM7}h}FBw?HbyWMQndFKeQ znM>?{V&E2ZFmnp$wS&TQf_CV)g^D?WYB^EfPP$Jpx3JV zt)G)ChtIwiIB=BI1stz5Cc^T)wzyc+$x4C%h9+;1|H1HwYKAu;hiG$x9*t?(Ca$Td zqo_+^2_y=nF3Hu8HI-|}v*F)y{VbA4RH6KWqIit+TAz6rsns#+VqKPl=VI5PS7}N= zfJsv6T3yGDQU^${R${|IbS?nNEzH|6&fA=HnZ(h-E>-VBG6BE2vE0yLH=WB1&bgSw zB1K^{A(1NAU+lr)YIY(WUa%*BQQ(>oR-m$>kDSA*p_{=u2A!=ku~2nFS2@JJJzK_Y z3bsRsi3YyC9CmTVP@c|gN%+V)?oZgAv&ZclWgTU4c zVqVL|xKd=Ji`#?Cij`W$2`3PB4eYcpM=BiX1So?d>OqFH$qj*{(Ze~TV$3O%4`X6V zg_&=7KPm|KAv)9Umg_Io{f6-*MV0;jFj_KY2+Ea2*HIKjKF}@CNK-B0m>;*7^gDp7 zP>zV|c-(iLLWrSGo+%_yq--Q#o75?l!;~(C87Wpiq8w57<_hl4;0}vd>o4MqtAgAn zw&VI#;{ty3cJ)b_V)FxsqA?$>pNbVF>KNK&;02tDn^GbkQWRv<%z-tJm^8-`cj(|h z8EkOD__D?<%;XOc)htD<|3=ZPsrO4cF~-uQnhk_QiG~EP^2l#(^-2XbGmhCQrl&@e zD{HR8OlyQ@cM!c8z0Mgb@%7X>6MAa|`p_o&Hsqz=EZs|&t*S=RELx7RSh#e4CJ)Ob*~)Dq|-N$Qfyuc;X(FNjghQjDs(HE@2ekXe^F>N4gq J)7jil{y$GF^DzJb diff --git a/openslides/locale/pt/LC_MESSAGES/django.po b/openslides/locale/pt/LC_MESSAGES/django.po deleted file mode 100644 index 8d0130532..000000000 --- a/openslides/locale/pt/LC_MESSAGES/django.po +++ /dev/null @@ -1,672 +0,0 @@ -# Language file of OpenSlides used by Transifex: -# https://www.transifex.com/openslides/openslides/ -# Copyright (C) 2011–2015 by OpenSlides team, see AUTHORS. -# This file is distributed under the same license as the OpenSlides package. -# Translators: -# Marco A.G.Pinto , 2016-2017 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-05-23 16:13+0200\n" -"PO-Revision-Date: 2018-05-23 14:15+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/openslides/openslides/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: agenda/models.py:206 -msgid "Agenda item" -msgstr "Item da agenda" - -#: agenda/models.py:207 -msgid "Hidden item" -msgstr "Item oculto" - -#: agenda/models.py:356 -#, python-brace-format -msgid "{user} is already on the list of speakers." -msgstr "{user} já está na lista de oradores." - -#: agenda/models.py:359 -msgid "An anonymous user can not be on lists of speakers." -msgstr "Um utilizador anónimo não pode estar em listas de oradores." - -#: agenda/views.py:116 -msgid "The list of speakers is closed." -msgstr "A lista de oradores está fechada." - -#: agenda/views.py:125 agenda/views.py:150 -msgid "User does not exist." -msgstr "Utilizador não existe." - -#: agenda/views.py:133 -#, python-format -msgid "User %s was successfully added to the list of speakers." -msgstr "Utilizador %s adicionado com sucesso à lista de oradores." - -#: agenda/views.py:154 -msgid "Marked has to be a bool." -msgstr "" - -#: agenda/views.py:163 -msgid "The user is not in the list of speakers." -msgstr "" - -#: agenda/views.py:168 -msgid "You are successfully marked the speaker." -msgstr "" - -#: agenda/views.py:170 -msgid "You are successfully unmarked the speaker." -msgstr "" - -#: agenda/views.py:187 -msgid "You are not on the list of speakers." -msgstr "Não estás na lista de oradores." - -#: agenda/views.py:190 -msgid "You are successfully removed from the list of speakers." -msgstr "Foste removido com sucesso da lista de oradores." - -#: agenda/views.py:212 -msgid "speakers have been removed from the list of speakers." -msgstr "oradores foram removidos da lista de oradores." - -#: agenda/views.py:214 -#, python-format -msgid "User %s has been removed from the list of speakers." -msgstr "Utilizador %s foi removido da lista de oradores." - -#: agenda/views.py:216 -msgid "No speakers have been removed from the list of speakers." -msgstr "Nenhuns oradores foram removidos da lista de oradores." - -#: agenda/views.py:236 -msgid "The list of speakers is empty." -msgstr "A lista de oradores está vazia." - -#: agenda/views.py:241 -msgid "Speaker does not exist." -msgstr "Orador não existe." - -#: agenda/views.py:243 -msgid "User is now speaking." -msgstr "Utilizador está agora a discursar." - -#: agenda/views.py:254 -#, python-format -msgid "There is no one speaking at the moment according to %(item)s." -msgstr "Não há ninguém a discursar no momento, de acordo com %(item)s." - -#: agenda/views.py:256 -msgid "The speech is finished now." -msgstr "O discurso está terminado agora." - -#: agenda/views.py:275 agenda/views.py:287 assignments/views.py:222 -msgid "Invalid data." -msgstr "Dados inválidos." - -#: agenda/views.py:300 -msgid "List of speakers successfully sorted." -msgstr "Lista de oradores ordenada com sucesso." - -#: agenda/views.py:309 -msgid "Numbering of agenda items is deactivated." -msgstr "" - -#: agenda/views.py:312 -msgid "The agenda has been numbered." -msgstr "A agenda foi numerada." - -#: agenda/views.py:337 -msgid "There must not be a hierarchical loop. Please reload the page." -msgstr "Não deve haver um loop hierárquico. Por favor recarrega a página." - -#: agenda/views.py:341 -msgid "The agenda has been sorted." -msgstr "A agenda foi ordenada." - -#: assignments/models.py:164 -msgid "Election" -msgstr "Eleição" - -#: assignments/serializers.py:31 -msgid "Value for {} must be greater than 0" -msgstr "O valor para {} deve ser maior que 0" - -#: assignments/serializers.py:149 -#, python-format -msgid "You have to submit data for %d candidates." -msgstr "Tens de submeter dados para %d candidatos." - -#: assignments/serializers.py:153 motions/serializers.py:236 -#, python-format -msgid "You have to submit data for %d vote values." -msgstr "Tens de submeter dados para %d valores de voto." - -#: assignments/serializers.py:157 motions/serializers.py:240 -#, python-format -msgid "Vote value %s is invalid." -msgstr "O valor de voto %s é inválido." - -#: assignments/views.py:66 -msgid "You are already elected." -msgstr "Já estás eleito." - -#: assignments/views.py:76 -msgid "You can not candidate to this election because it is finished." -msgstr "Não podes candidatar-te a esta eleição porque ela está terminada." - -#: assignments/views.py:85 -msgid "You were nominated successfully." -msgstr "Foste nomeado com sucesso." - -#: assignments/views.py:90 -msgid "" -"You can not withdraw your candidature to this election because it is " -"finished." -msgstr "Não podes retirar a tua candidatura a esta eleição porque ela está terminada." - -#: assignments/views.py:95 -msgid "You are not a candidate of this election." -msgstr "Não és candidato desta eleição." - -#: assignments/views.py:97 -msgid "You have withdrawn your candidature successfully." -msgstr "Retiraste a tua candidatura com sucesso." - -#: assignments/views.py:106 -#, python-format -msgid "Invalid data. Expected dictionary, got %s." -msgstr "Dados inválidos. Dicionário esperado, obteve-se %s." - -#: assignments/views.py:112 -msgid "Invalid data. Expected something like {\"user\": }." -msgstr "Dados inválidos. Esperava-se algo como {\"utilizador\": }." - -#: assignments/views.py:116 -#, python-format -msgid "Invalid data. User %d does not exist." -msgstr "Dados inválidos. Utilizador %d não existe." - -#: assignments/views.py:136 -#, python-format -msgid "User %s is already elected." -msgstr "O utilizador %s já está eleito." - -#: assignments/views.py:138 -msgid "You can not nominate someone to this election because it is finished." -msgstr "Não podes nomear alguém para esta eleição porque ela está terminada." - -#: assignments/views.py:144 -#, python-format -msgid "User %s is already nominated." -msgstr "O utilizador %s já está nomeado." - -#: assignments/views.py:149 -#, python-format -msgid "User %s was nominated successfully." -msgstr "O utilizador %s foi nomeado com sucesso." - -#: assignments/views.py:156 -msgid "" -"You can not delete someone's candidature to this election because it is " -"finished." -msgstr "Não podes excluir a candidatura de alguém a esta eleição porque ela está terminada." - -#: assignments/views.py:159 -#, python-format -msgid "User %s has no status in this election." -msgstr "O utilizador %s não tem status nesta eleição." - -#: assignments/views.py:161 -#, python-format -msgid "Candidate %s was withdrawn successfully." -msgstr "O candidato %s foi retirado com sucesso." - -#: assignments/views.py:173 -#, python-format -msgid "User %s is not a candidate of this election." -msgstr "O utilizador %s não é um candidato desta eleição." - -#: assignments/views.py:175 -#, python-format -msgid "User %s was successfully elected." -msgstr "O utilizador %s foi eleito com sucesso." - -#: assignments/views.py:179 -#, python-format -msgid "User %s is not an elected candidate of this election." -msgstr "O utilizador %s não é um candidato eleito desta eleição." - -#: assignments/views.py:182 -#, python-format -msgid "User %s was successfully unelected." -msgstr "O utilizador %s foi não eleito com sucesso." - -#: assignments/views.py:192 -msgid "Can not create ballot because there are no candidates." -msgstr "Não é possível criar votação porque não há candidatos." - -#: assignments/views.py:195 -msgid "Ballot created successfully." -msgstr "Votação criada com sucesso." - -#: assignments/views.py:210 -msgid "users has to be a list of IDs." -msgstr "utilizadores tem que ser uma lista de IDs." - -#: assignments/views.py:237 -msgid "Assignment related users successfully sorted." -msgstr "Os utilizadores relacionados com a tarefa foram ordenados com sucesso." - -#: core/config.py:50 core/config.py:76 -msgid "The config variable {} was not found." -msgstr "A variável de configuração {} não foi encontrada." - -#: core/config.py:85 -#, python-format -msgid "Wrong datatype. Expected %(expected_type)s, got %(got_type)s." -msgstr "Tipo de dados errado. Esperava-se %(expected_type)s, obteu-se %(got_type)s." - -#: core/config.py:95 -msgid "Invalid input. Choice does not match." -msgstr "Entrada inválida. A escolha não coincide." - -#: core/config.py:105 -msgid "motions_comments has to be a dict." -msgstr "" - -#: core/config.py:111 -msgid "Each id has to be an int." -msgstr "" - -#: core/config.py:114 -msgid "Each id has to be greater then 0." -msgstr "" - -#: core/config.py:118 -msgid "Each commentsfield in motions_comments has to be a dict." -msgstr "" - -#: core/config.py:120 -msgid "A name and a public property have to be given." -msgstr "É necessário um nome e uma propriedade pública." - -#: core/config.py:122 -msgid "name has to be string." -msgstr "o nome tem de ser uma string." - -#: core/config.py:124 -msgid "public property has to be bool." -msgstr "a propriedade pública tem de ser booleano." - -#: core/config.py:130 -msgid "This has to be a dict." -msgstr "" - -#: core/config.py:137 core/config.py:153 -msgid "{} has to be given." -msgstr "" - -#: core/config.py:139 core/config.py:155 -msgid "{} has to be a string." -msgstr "" - -#: core/config.py:143 -msgid "Translations has to be a list." -msgstr "" - -#: core/config.py:146 -msgid "Every value has to be a dict, not {}." -msgstr "" - -#: core/config.py:177 -msgid "Too many values for config variables {} found." -msgstr "" - -#: core/config.py:261 -msgid "Invalid value for config attribute input_type." -msgstr "Valor inválido para atributo de configuração input_type." - -#: core/config.py:263 -msgid "" -"Either config attribute 'choices' must not be None or 'input_type' must not " -"be 'choice'." -msgstr "Qualquer atributo de configuração 'choices' não pode ser None ou 'input_type' não pode ser 'choice'." - -#: core/config.py:266 -msgid "" -"Either config attribute 'choices' must be None or 'input_type' must be " -"'choice'." -msgstr "Qualquer atributo de configuração 'choices' deve ser None ou 'input_type' deve ser 'choice'." - -#: core/config.py:276 -msgid "General" -msgstr "Geral" - -#: core/views.py:277 -msgid "The data has to be a list." -msgstr "" - -#: core/views.py:280 -msgid "All elements have to be dicts." -msgstr "" - -#: core/views.py:420 -msgid "The data has to be a dict." -msgstr "" - -#: core/views.py:426 -msgid "The id \"{}\" has to be int." -msgstr "" - -#: core/views.py:432 -msgid "Prune has to be an object." -msgstr "" - -#: core/views.py:435 -msgid "The prune projector id has to be int." -msgstr "" - -#: core/views.py:440 -msgid "The projector with id \"{}\" does not exist" -msgstr "" - -#: core/views.py:444 -msgid "Prune element has to be a dict or not given." -msgstr "" - -#: core/views.py:772 -msgid "All chat messages deleted successfully." -msgstr "Todas as mensagens de chat apagadas com sucesso." - -#: mediafiles/models.py:87 -msgid "unknown" -msgstr "desconhecido" - -#: motions/models.py:190 -msgid "Motion" -msgstr "Moção" - -#: motions/models.py:744 -msgid "new" -msgstr "novo" - -#: motions/models.py:969 -#, python-format -msgid "%(time_and_messages)s by %(person)s" -msgstr "%(time_and_messages)s por %(person)s" - -#: motions/serializers.py:36 -#, python-format -msgid "Workflow %(pk)d does not exist." -msgstr "Fluxo de trabalho %(pk)d não existe." - -#: motions/signals.py:22 -msgid "submitted" -msgstr "submetido" - -#: motions/signals.py:27 motions/signals.py:60 -msgid "accepted" -msgstr "aceite" - -#: motions/signals.py:32 motions/signals.py:66 -msgid "rejected" -msgstr "rejeitado" - -#: motions/signals.py:37 -msgid "not decided" -msgstr "não decidido" - -#: motions/signals.py:47 -msgid "published" -msgstr "publicado" - -#: motions/signals.py:52 motions/views.py:300 -msgid "permitted" -msgstr "permitido" - -#: motions/signals.py:72 -msgid "withdrawed" -msgstr "retirado" - -#: motions/signals.py:77 -msgid "adjourned" -msgstr "adiado" - -#: motions/signals.py:83 -msgid "not concerned" -msgstr "não preocupado" - -#: motions/signals.py:89 -msgid "refered to committee" -msgstr "referida à comissão" - -#: motions/signals.py:95 -msgid "needs review" -msgstr "necessita de revisão" - -#: motions/signals.py:100 -msgid "rejected (not authorized)" -msgstr "rejeitado (não autorizado)" - -#: motions/views.py:110 -msgid "The parent motion does not exist." -msgstr "A moção pai não existe." - -#: motions/views.py:154 -msgid "Motion created" -msgstr "Moção criada" - -#: motions/views.py:256 -msgid "Motion updated" -msgstr "Moção actualizada" - -#: motions/views.py:260 -msgid "All supporters removed" -msgstr "Todos os apoiantes removidos" - -#: motions/views.py:264 -msgid "Comment {} updated" -msgstr "" - -#: motions/views.py:298 motions/views.py:310 -msgid "Version" -msgstr "Versão" - -#: motions/views.py:302 -#, python-format -msgid "Version %d permitted successfully." -msgstr "Versão %d permitida com sucesso." - -#: motions/views.py:307 -msgid "You can not delete the active version of a motion." -msgstr "Não podes eliminar a versão activa de uma moção.." - -#: motions/views.py:312 -msgid "deleted" -msgstr "eliminada" - -#: motions/views.py:314 -#, python-format -msgid "Version %d deleted successfully." -msgstr "Versão %d eliminada com sucesso." - -#: motions/views.py:337 -msgid "You can not support this motion." -msgstr "Não podes apoiar esta moção." - -#: motions/views.py:339 -msgid "Motion supported" -msgstr "Moção apoiada" - -#: motions/views.py:343 -msgid "You have supported this motion successfully." -msgstr "Apoiaste esta moção com sucesso." - -#: motions/views.py:348 -msgid "You can not unsupport this motion." -msgstr "Não podes desapoiar esta moção." - -#: motions/views.py:350 -msgid "Motion unsupported" -msgstr "Moção não apoiada" - -#: motions/views.py:351 -msgid "You have unsupported this motion successfully." -msgstr "Desapoiaste esta moção com sucesso." - -#: motions/views.py:374 -msgid "Invalid data. State must be an integer." -msgstr "Dados inválidos. O estado deve ser um inteiro." - -#: motions/views.py:377 -#, python-format -msgid "You can not set the state to %(state_id)d." -msgstr "Não podes definir o estado para %(state_id)d." - -#: motions/views.py:385 -#, python-format -msgid "The state of the motion was set to %s." -msgstr "O estado da moção foi definido para %s." - -#: motions/views.py:389 motions/views.py:458 motions/views.py:726 -msgid "State set to" -msgstr "Estado definido para" - -#: motions/views.py:413 -msgid "Invalid data. Recommendation must be an integer." -msgstr "Dados inválidos. A recomendação deve ser um inteiro." - -#: motions/views.py:417 -#, python-brace-format -msgid "You can not set the recommendation to {recommendation_state_id}." -msgstr "Não podes definir a recomendação para {recommendation_state_id}." - -#: motions/views.py:427 -#, python-format -msgid "The recommendation of the motion was set to %s." -msgstr "A recomendação da moção foi definida para %s." - -#: motions/views.py:431 -msgid "Recommendation set to" -msgstr "Recomendação definida para" - -#: motions/views.py:439 -msgid "Cannot set an empty recommendation." -msgstr "" - -#: motions/views.py:479 -msgid "Vote created" -msgstr "Voto criado" - -#: motions/views.py:483 -msgid "Vote created successfully." -msgstr "Voto criado com sucesso." - -#: motions/views.py:509 -msgid "Vote updated" -msgstr "Voto actualizado" - -#: motions/views.py:518 -msgid "Vote deleted" -msgstr "Voto excluído" - -#: motions/views.py:652 -#, python-format -msgid "" -"Numbering aborted because the motion identifier \"%s\" already exists " -"outside of this category." -msgstr "" - -#: motions/views.py:675 -msgid "" -"Error: At least one identifier of this category does already exist in " -"another category." -msgstr "Erro: Pelo menos um identificador desta categoria já existe noutra categoria." - -#: motions/views.py:680 -#, python-brace-format -msgid "All motions in category {category} numbered successfully." -msgstr "Todas as moções na categoria {category} numeradas com sucesso." - -#: motions/views.py:731 -msgid "Followed recommendations successfully." -msgstr "Recomendações seguidas com sucesso." - -#: poll/models.py:194 -msgid "majority" -msgstr "maioria" - -#: poll/models.py:196 poll/models.py:198 -msgid "undocumented" -msgstr "indocumentado" - -#: poll/serializers.py:16 -msgid "Value for {} must not be less than -2" -msgstr "Valor para {} não pode ser inferior a -2" - -#: users/serializers.py:49 -msgid "" -"The groups this user belongs to. A user will get all permissions granted to " -"each of his/her groups." -msgstr "Os grupos a que este utilizador pertence. Um utilizador terá todas as permissões concedidas para cada um dos seus grupos." - -#: users/serializers.py:72 -msgid "Username, given name and surname can not all be empty." -msgstr "Username, primeiro nome e apelido não podem estar todos vazios." - -#: users/serializers.py:109 -#, python-brace-format -msgid "Incorrect value \"{value}\". Expected app_label.codename string." -msgstr "Valor incorrecto \"{value}\". Esperava-se uma string app_label.codename." - -#: users/serializers.py:110 -#, python-brace-format -msgid "Invalid permission \"{value}\". Object does not exist." -msgstr "Permissão inválida \"{value}\". O objecto não existe." - -#: users/views.py:91 -msgid "You can not deactivate yourself." -msgstr "Não podes desactivar-te a ti mesmo." - -#: users/views.py:114 -msgid "You can not delete yourself." -msgstr "Não podes apagar-te a ti mesmo." - -#: users/views.py:131 -msgid "Password successfully reset." -msgstr "Senha redefinida com sucesso." - -#: users/views.py:172 -#, python-brace-format -msgid "{number} users successfully imported." -msgstr "" - -#: users/views.py:410 -msgid "Cookies have to be enabled to use OpenSlides." -msgstr "Os cookies têm de estar activados para usar o OpenSlides." - -#: users/views.py:413 -msgid "Username or password is not correct." -msgstr "Username ou senha incorrectos." - -#: users/views.py:439 -#, python-brace-format -msgid "" -"Installation was successfully. Use {username} and {password} for first " -"login. Important: Please change your password!" -msgstr "Instalação com sucesso. Usa {username} e {password} no primeiro login. Importante: Por favor altera a tua senha!" - -#: users/views.py:462 -msgid "You are not authenticated." -msgstr "Não estás autenticado." - -#: users/views.py:509 -msgid "Old password does not match." -msgstr "A senha antiga não corresponde." diff --git a/openslides/locale/ru/LC_MESSAGES/django.mo b/openslides/locale/ru/LC_MESSAGES/django.mo deleted file mode 100644 index a577540c6b6bfe708adf6fec91e45cd15e1d3efd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 17547 zcmchddvIJ=eaA15@-QLc5h!ntLmW%QT1&R`K(?GX#s)(io5Xq1P-nG!C2hRASM0-z zqL|n*fh0~M#z06*f(f+KmMMd6EG);C%|K_$tJB@m8QOnSx|JBzryu4pTS$ft1k!wvGzE43-}bc4E!Z{DfqSvgWx6LW>9=y53UD409L`@10fY$ z_{t!72ly87a_~K1Klou#>-sV%y5INsKj0ef-~K8mhg(6t{}}jU@Jk>p1jj(S2HyZ* z4gR%%{tT$~{W~amtmLKeI`Fk%0sL+7UJ%g)p9bFo{sH(V@av%F`vI5(&wCAP1;@a* zf)9X_*B^l^!Eb>Y_e)T6dF@3(Fa)jxC6Bwo40r<6_#cC-!I!{{*1s0i_#7xc?gdwX zPlA_&-v*^WDg8>|5>WHs4(j=bK}ZIl2k9Cd2QLBt0=xqJH&Fe0S+v%*6_nn}paG}B zi@_&A$>R+8M)14-{uz%y2W2lWc)gRyn?S8|Ey!Om#lK$gAgJ-DK=JW?@JjH%LCIqc zL=0F4-w%EgTm}9;C_TM_!JEJi5UsW#IQf z$^C!90Wbq`1Kt73uJ?g210MnXbY-tc|05^akxE~aqe*j0oi&*T3z-jQk;6H); z!K*MD+36{8JNQ%ZHgE$<{ax@g;I-g?fm^{LCO-%s0G|NgiZf_kC&4d*-vl>-WsH6; zcmmWqegU$y;CzDB9pF2_8h8L?Nx|*CL9hdy25$vxp!n`(5qE$e2X6xZ6_h=^8|ACt zW8hBkU%<`awiPZ;JO;A#;7>sL?{`4{f?x3u)`Oltx4!E^+2xl&NCZFf_vd3&upC?s z%DzVV2TQ?Ypyc&6@Otp);4|PxCeirI`rWu&!1r>0FQ|2W8^nZyw_&8$f$P8zf)9cZ zgU^5^umUqz=pIzRw=&ty;4Tmn!Pmhx;LpH3*u%{Y;3MEh@JFDYUxM*n4L%6I3;Y(y zkl+G{a~WIJRkfz$P$CU1U2uopyaoj&Z2W0sQVdE@|gw2 z&ksTIyXu|T0+<7F(ct@_a?<2CEavD_a3C7-1TMRY=N44en0$4jqqc3TC-_et;q@F(Ca z!C!%-y5Rf`&Ys^4uHb&P$2&l+=MiuTcm#YccnW+K_*dYo!M_8UGWZYh_288_*CpU~ z@FK7ZYW{~n{(_VK`LiId6}*N;ybc@$Wk2r+#ow1ft>bH;?EONNj%x*1gBOEi;0wSH z(Zt7#Xdz8B$7!Oum&S0*&+mYe<4&4Bh||_3qLuzgr_;2XXyPCDvG(>6Q1&}PlU=-- zrq6ELK6~ZtO_zwmu6Y!c4<(#uUg5z0pX5JgV?R6ipY_)Q z*`PiJn&k6ay78a8LCimRVe-J^2zUq0&^|!BhxR_&YiRn&e&j3qyx4)wb*udKHK25& z__maGC2bo`AIv$pkG6%jnWoQev<&Utv=7q=3BjGTm(%W|$=+T!He-K%p~nQKxR8zBOUuz@*ZRocD>PiM@wuI=m(t{u z_tUo1Zl=9~wu^QvZ4)g|)8{+~_Wv9C|2Enh+H%?jv>w_GH2IM1TOVB5)^xf)pSE8Y z%X%t>@o;B0%I_Qx%jN87Sne&G;VHAMXCf?>a5OGWnd#(ekBO?|!(plG$Z~aJA}&?n*ObEXcz2i&Hbn3n zM^oc*wQQ>8umsJ>L~%uo#*rx&%9XN-M@)Gl%QGhr?VJR!n7#b(kzIip5sGkcS2wFw9+>Wo0v& zr4=e;`BHW=YT?0l)Kbb}g;knxd;&$3!dyHK_s~L&^oiqLg|M7fP#9&0i!2LuiH~g) zVRU1$kk{0kvbizi2vo`=g|L{H9=u9+CNCgX_R7whd?8oy0}J`|n~0%Z-;7#el_Y@3 z^fQ*_Ni%UYQW!PaN~Kg7u2w>`JU12>u#V+syjr#zyFQLkTgfahL=)A@&dSt8*nH`` zFF$93-V7Ed>N}(e7sH&y8f+?+;?khmP%*_Y3vc2J2}YFyLMzFjDr1Fm(}43aD##XD zcz()+cVTssE2imI?(H1TcZZn!?rgCdrbTImyu#Y;^qx$xImYNF(O|2xTTL_*ygQ7- zQnnbpr;vv==ZRaQTwG#U#ZPkaw4H3v#Tm2dt_hw)H9Ik}vzQ$Yi}O|!+|%}toowA@UC_SjG{J&`S!C*x9nj~PL8BZU%cFUF&VC}Xya%U`om zWzcMw976?(Xf!laakXTUflHYcCNVB-Ix8MhcTKKkho~l7np$B-@rq@b^8#JV@py=S zqEY;R7aU(KmMk9exh_`jr4J{7UFhv{=^A1PDQu}}#E2#4v`XQ{6S;nel8!|O( z7fou`#xrK4b%JKE@oXhG*6c<29WM~F2xci=ZX3Q+I$nshGcf6+!|9ryl?kqsou-0g zOZaJoz^yi52M&@*nA|2YIiEbJMxBo)6!`MN^>HH%yKpreVzxe%n~_pHu8?74cABe9 zu#GU4SW9!wUQpY;{k1Y*3W=JTpiQ}oq?I_h(ItZ>DX$r)S>I^~tdJ*_;}i}puSs&s z1l`^yIYaNf+;?Y71qEX>y~nzf%wQz0Mr0QC8ZE`u2|}%6iENZvig7fm;F~cU+@r|? zNpn;w0Bl-AnZbCL3-h7EI*NqON`+cS*Uh06m=>o|+$zRpWjFEA?Y&Jk?)3x-j8y4T zM2EygpfyNostQm20Hrr4Q0uVjPbv;!7dA!;QK3A>5~6t0%|`UWw-zHoN@X-zRbkm? zcKJHxhnv{u_H2$onAdaC;IbZ-DZNAt7+|!`H$M8KUP5}dlp8DLvPD8yJdsJl6$L_^ zC6U7Q1h&BNI5y+i$cJ!N&~&jx)n(~A(J?A2yJ)Hm-At+ydM0oY!o4|HUr3KZ0umUd z56Q+F5mlFsl1yvd!AXDTYy9r?H(WQ`{`)G)mUd zn7PG)n`~GMN>!02OSZGcjnvX^y=NKc89PglYSh}NJ-k}ES<9Pjn4KeMlPI>(h*Gu} zb)!qh%}(SlmCwymyIi%&RN}HpLS9bo>OJsgTPeuOFsh_VYSveb=?^;lc*`zQcw-iH z>RT1uO!2GA#-mM4tX2V}CC8^b*l1Jf(j~@8eMubLoVsZzrB{9@;QCd4DzJlGmZAnm zSOu5#Gr=u!Y1atVk9H=zdONe{EhPe^trS!prmC7{J)tjfY~9#f_GLm3#e#p532uw4 zwj%FviR8uN7T?mdiVac}YWsrcq+gM*yW3~dDJ}JLNrD=e7)fI{q2Siy_}GryeH5rb zn-SLWmJH96FDixI3bj*IV&$+n(%wOqK?N`#5@MID&~;muD#7!4PH8DhBzEr5Pzl?r zhG3ud*`g~G-8oF6M#AIskT3i zx-W~Ix?FZ_rPZjM7VeU46kP%Ryp>`%^NlhsJzbjvYpKc3zg!(2$EZ}J+qAbV->?ep zEEnmzTcN-@e7bLA$qMKyf_&AG_Kg(jWcg9&`a4HVD$yrq(jMff4#Ek1Hpu4h!~-I( zk~lSvl%ZN}c=k74y8zg5S z&#m}&dKYEN);L#Hb!BgMQME-um9n+7wo#?9tEI1PshF+(6-`P zmwsyo2QI&?pU;x(I7{f;;fq2YFl?fjtcFE%V{Yslrz&@cW?kr>WXid*YRHpov2snKpu1lI)>e~%4Hqg6b_Y$Vx@3E?%6UcK=D0Lo9yHN}y)6%|S!>+oP*1dM zpnqs+z+8H%(PjVAp@9K&wdpr>=YIXrs^rzWp*6a+Bl_13tTOl9C{YYp3cnrZ#74 zXX^WFM`|Z)bM=qa=4+>Gv!=eUc9e?~^?mjGbY*JCxIJ0>YHhxLz|@Y^57h6gKWu8p zYlmxR?3?-8tlnjU+99aT*PdoJUY(@FeC=>hI|xZj_cYy))E`uLCY&+Md6-EKoBDpb zoT<&$9}pAVGUs6kBy=4GO0C9c96iG^{WUgtP#S5ZiN(c_)eP^Uu^ywM$pl z00EW=k8^D@c%0de*r(ErT|u(IBlSm-JhHbh=2=>sa7C2iQr$evKgn=e(s93dtJy{u zXGC+)VY(Go#!P-1>)ns>=+cT;QpE}o(lKPh{I=6kc=-L+r#i%z{A(w>@IGIkso%E{ z-xw%FHHEZ0=eWmt^qBvT8ss<&6YvI#k;CCVv;^3J{`STQJ@ z`G~bsE9Uy%=DK*@q+t)-|9>Q~MC((8g;^cW*FM9%JabE&w`_a`>F;&Irn7Ssyb<2) zx{vVszSQY`W4$fB+GBTU69-$*^Bdh|ybbXr^f=!Cb+BXuL}DA~$XCml1(`dD>W~+n zejuoQ7BNbEc*>xu9kODS=xQer+pI#E3yE0JY1Ta_WiG7r`XkoK7}Xhnv3Ft}(GB4f z?Oi6}p$&i7;V~H6uXwFVJBG_+;HqKQ$6@cV^A7ldyF^qi%a+L!Ar8BEt8XTVo=OzQ zyh^TIZyhuJRVPag0`SnNa4Bpd{h^O$aFaf9S ztfx-JYoBF>Hdry!DHb@>?Yj;eUX+TE5?p=3iZY2pJoC}4J%t|5nA+oZMLs7X?i1*1 zHvNqV%T9eEf>eFf5&w$Y=!cL|zn@E@nW6_2Nj;*Y2+SM@t)5t{GbmOhX=yGSEzySp zyo-p$Oo`+SOVxr9>e3d8AyKPat*VG%wR zVSI9jj%v3q&fJ<~={lJkW^O^r;+wd*ZxNk;c-`NG>1{$bnQ&J zkEmrPj!js2k~s)mG#ij@0n824Yj+{NxB|@vWd$BLR4<7oT2WFlvu#L?)+~}P!X&`h zV33YAiOMZA#2`zVbu#3T2Jl?PdYk;2;E3KilcH~TAEx^2S|8fokJYzZVZsEx+tQ*q zXPQ>OZ6oSMC?agC4j~sprI!{8v1{nq*x2<+0WJ&MlyM9rossQzwJn=y4q1CpVv;K< z|1w}9^X3pEtvDQk0aO*XUbN&sfkyVDjx+TG#ANIqQqJma{BfHaJBlpClo+DCv>ENG z6WYpQhTGik#kC3zS=k&j$Om zgtqS1J7YOZ2NNmV?vi|6A)kVL(~q5sT{?v*3G!jTJUY$$T1^E@r%{tOS^`&dF75lR z2ei(moa<&f*k%!m%f9xq28fPZgpPu_S0RI|*eeA$nX@Zy>ibe(w$?t+yHnnfyH=PI zFXp1?azFZDy9Q0^LiV7|9yd&64N@J6laO=N*q+Z)oP^xzMtVIq z96wKzUC&Cae9wLD-D$|Wj<9|oajgOq+v*lR&#o00u519oK9h6Av=kN@-z+?yClROO zE<4_{OpN8S@5XzHPNWhfg7aa71basLL)z|nZ$>7o;|iABEMFF|vn1m+%Wiq@+3AxU zaW+L~PCq|_qE5L9^~4HG(N~8rBvv$xBa#A=12HxgwK=BvG+mp~i7gYALL;nbH`N%~ za?;Z|kWt#5HY$zoL|ig>Sk)S#UqSJdeonwPRpq5Nuhg`u8~w1r#*e1Sq+^yXT^8xC zicJ|or;^GpN&q@NAQY&m@K0T8wzvL#RMq$by;`>bt%DY(or<*!(}tb)g4}S}B4&L; zVp<)nl#U1x0>->_DW6G8sAPR z6*hdb+d}2g3*{0*1~Rv%t(r(>jIR<~#ZB1oUz3OtkxGun35nXCDPSI{ z&$P%jJtlEq9p$S(g=zg!e{$2d90a&mMg4DXK?!q;?~0ZP!W#HdTS7ca3Y3mnBVQYI zsmT{zw5PkMklORNc=2_t7gbXxsbb3R-F}@4mI)((q}=x^R^e>xTrl-L%GrM9l5(bC!B!T1GmmG~fDcw_woCx3&8^JQ@kUG}XQ#;I^ z6tgbvzSD=tto;ykobxXuv;$4@=C#|lU56;`39_SLpI=|%@+%|mE)qn;b`6Rq|BtG57xgB>H8s diff --git a/openslides/locale/ru/LC_MESSAGES/django.po b/openslides/locale/ru/LC_MESSAGES/django.po deleted file mode 100644 index ff31a0ad4..000000000 --- a/openslides/locale/ru/LC_MESSAGES/django.po +++ /dev/null @@ -1,672 +0,0 @@ -# Language file of OpenSlides used by Transifex: -# https://www.transifex.com/openslides/openslides/ -# Copyright (C) 2011–2015 by OpenSlides team, see AUTHORS. -# This file is distributed under the same license as the OpenSlides package. -# Translators: -# Andreas Engler , 2017-2018 -msgid "" -msgstr "" -"Project-Id-Version: OpenSlides\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-05-23 16:13+0200\n" -"PO-Revision-Date: 2018-05-23 14:15+0000\n" -"Last-Translator: Emanuel Schütze \n" -"Language-Team: Russian (http://www.transifex.com/openslides/openslides/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" - -#: agenda/models.py:206 -msgid "Agenda item" -msgstr "Пункт плана" - -#: agenda/models.py:207 -msgid "Hidden item" -msgstr "Скрытый элемент" - -#: agenda/models.py:356 -#, python-brace-format -msgid "{user} is already on the list of speakers." -msgstr "{user} уже в списке спикеров." - -#: agenda/models.py:359 -msgid "An anonymous user can not be on lists of speakers." -msgstr "Анонимный пользователь не может быть в списке спикеров." - -#: agenda/views.py:116 -msgid "The list of speakers is closed." -msgstr "Список спикеров закрыт." - -#: agenda/views.py:125 agenda/views.py:150 -msgid "User does not exist." -msgstr "Пользователь не существует." - -#: agenda/views.py:133 -#, python-format -msgid "User %s was successfully added to the list of speakers." -msgstr "Пользователь %s был успешно добавлен в список спикеров." - -#: agenda/views.py:154 -msgid "Marked has to be a bool." -msgstr "" - -#: agenda/views.py:163 -msgid "The user is not in the list of speakers." -msgstr "" - -#: agenda/views.py:168 -msgid "You are successfully marked the speaker." -msgstr "" - -#: agenda/views.py:170 -msgid "You are successfully unmarked the speaker." -msgstr "" - -#: agenda/views.py:187 -msgid "You are not on the list of speakers." -msgstr "Вас нет в списке спикеров." - -#: agenda/views.py:190 -msgid "You are successfully removed from the list of speakers." -msgstr "Вы успешно удалены из списка спикеров." - -#: agenda/views.py:212 -msgid "speakers have been removed from the list of speakers." -msgstr "Спикеры удалены из списка спикеров." - -#: agenda/views.py:214 -#, python-format -msgid "User %s has been removed from the list of speakers." -msgstr "Пользователь %s удален из списка спикеров." - -#: agenda/views.py:216 -msgid "No speakers have been removed from the list of speakers." -msgstr "Никакие спикеры не были удалены из списка спикеров." - -#: agenda/views.py:236 -msgid "The list of speakers is empty." -msgstr "Список спикеров пуст." - -#: agenda/views.py:241 -msgid "Speaker does not exist." -msgstr "Спикер не существует." - -#: agenda/views.py:243 -msgid "User is now speaking." -msgstr "Пользователь сейчас говорит." - -#: agenda/views.py:254 -#, python-format -msgid "There is no one speaking at the moment according to %(item)s." -msgstr "В данный момент нет спикера, согласованного с %(item)s." - -#: agenda/views.py:256 -msgid "The speech is finished now." -msgstr "Речь закончена." - -#: agenda/views.py:275 agenda/views.py:287 assignments/views.py:222 -msgid "Invalid data." -msgstr "Неверные данные." - -#: agenda/views.py:300 -msgid "List of speakers successfully sorted." -msgstr "Список ораторов успешно отсортирован." - -#: agenda/views.py:309 -msgid "Numbering of agenda items is deactivated." -msgstr "" - -#: agenda/views.py:312 -msgid "The agenda has been numbered." -msgstr "План был пронумерован." - -#: agenda/views.py:337 -msgid "There must not be a hierarchical loop. Please reload the page." -msgstr "Там не должно быть иерархического цикла. Перезагрузите пожалуйста страницу." - -#: agenda/views.py:341 -msgid "The agenda has been sorted." -msgstr "Повестка дня отсортирована." - -#: assignments/models.py:164 -msgid "Election" -msgstr "Выборы" - -#: assignments/serializers.py:31 -msgid "Value for {} must be greater than 0" -msgstr "Значение {} должно быть больше 0" - -#: assignments/serializers.py:149 -#, python-format -msgid "You have to submit data for %d candidates." -msgstr "Вы должны предоставить данные для %d кандидатов." - -#: assignments/serializers.py:153 motions/serializers.py:236 -#, python-format -msgid "You have to submit data for %d vote values." -msgstr "Вы должны представить данные для %d значения голосования." - -#: assignments/serializers.py:157 motions/serializers.py:240 -#, python-format -msgid "Vote value %s is invalid." -msgstr " Количество голосов %s является недопустимым." - -#: assignments/views.py:66 -msgid "You are already elected." -msgstr "Вы уже избраны." - -#: assignments/views.py:76 -msgid "You can not candidate to this election because it is finished." -msgstr "Вы не можете быть кандидатом на этих выборах, потому что они уже закончены." - -#: assignments/views.py:85 -msgid "You were nominated successfully." -msgstr "Вы были успешно выдвинуты." - -#: assignments/views.py:90 -msgid "" -"You can not withdraw your candidature to this election because it is " -"finished." -msgstr "Вы не можете снять свою кандидатуру на этих выборах, потому что они уже закончены." - -#: assignments/views.py:95 -msgid "You are not a candidate of this election." -msgstr "Вы не являетесь кандидатом этих выборов." - -#: assignments/views.py:97 -msgid "You have withdrawn your candidature successfully." -msgstr "Вы успешно отозвали свою кандидатуру." - -#: assignments/views.py:106 -#, python-format -msgid "Invalid data. Expected dictionary, got %s." -msgstr "Неверные данные. Ожидаемый словарь, получил %s." - -#: assignments/views.py:112 -msgid "Invalid data. Expected something like {\"user\": }." -msgstr "Неверные данные. Ожидаемое что-то вроде {\"user\": }." - -#: assignments/views.py:116 -#, python-format -msgid "Invalid data. User %d does not exist." -msgstr "Неверные данные. Пользователь %d не существует." - -#: assignments/views.py:136 -#, python-format -msgid "User %s is already elected." -msgstr "Пользователь %s уже избран." - -#: assignments/views.py:138 -msgid "You can not nominate someone to this election because it is finished." -msgstr "Вы не можете выдвинуть кого-то на эти выборы, потому что они уже закончены." - -#: assignments/views.py:144 -#, python-format -msgid "User %s is already nominated." -msgstr "Пользователь %s уже выдвинут." - -#: assignments/views.py:149 -#, python-format -msgid "User %s was nominated successfully." -msgstr "Пользователь %s был успешно выдвинут." - -#: assignments/views.py:156 -msgid "" -"You can not delete someone's candidature to this election because it is " -"finished." -msgstr "Вы не можете удалять чью-то кандидатуру на этих выборах, потому что они уже закончены." - -#: assignments/views.py:159 -#, python-format -msgid "User %s has no status in this election." -msgstr "Пользователь %s не имеет статуса в этих выборах." - -#: assignments/views.py:161 -#, python-format -msgid "Candidate %s was withdrawn successfully." -msgstr "Кандидат %s был успешно снят." - -#: assignments/views.py:173 -#, python-format -msgid "User %s is not a candidate of this election." -msgstr "Пользователь %s не является кандидатом на этих выборах." - -#: assignments/views.py:175 -#, python-format -msgid "User %s was successfully elected." -msgstr "Пользователь %s был успешно избран." - -#: assignments/views.py:179 -#, python-format -msgid "User %s is not an elected candidate of this election." -msgstr "Пользователь %s не был избран на этих выборах." - -#: assignments/views.py:182 -#, python-format -msgid "User %s was successfully unelected." -msgstr "Пользователь %s не был успешно избран." - -#: assignments/views.py:192 -msgid "Can not create ballot because there are no candidates." -msgstr "Невозможно создать избирательный бюллетень, потому что нет кандидатов." - -#: assignments/views.py:195 -msgid "Ballot created successfully." -msgstr "Избирательный бюллетень успешно создан." - -#: assignments/views.py:210 -msgid "users has to be a list of IDs." -msgstr "Пользователям должен быть список идентификаторов." - -#: assignments/views.py:237 -msgid "Assignment related users successfully sorted." -msgstr "Связанные присваивания пользователям успешно отсортированы." - -#: core/config.py:50 core/config.py:76 -msgid "The config variable {} was not found." -msgstr "Переменная конфигурации {} не была найдена." - -#: core/config.py:85 -#, python-format -msgid "Wrong datatype. Expected %(expected_type)s, got %(got_type)s." -msgstr "Неправильный тип данных. Ожидаемое %(expected_type)s, получили %(got_type)s." - -#: core/config.py:95 -msgid "Invalid input. Choice does not match." -msgstr "Неправильный ввод. Выбор не соответствует." - -#: core/config.py:105 -msgid "motions_comments has to be a dict." -msgstr "motions_comments должен быть dict." - -#: core/config.py:111 -msgid "Each id has to be an int." -msgstr "Каждый идентификатор должен быть int." - -#: core/config.py:114 -msgid "Each id has to be greater then 0." -msgstr "Каждый идентификатор должен быть больше 0." - -#: core/config.py:118 -msgid "Each commentsfield in motions_comments has to be a dict." -msgstr "Каждое поле комментариев в motions_comments должно быть dict." - -#: core/config.py:120 -msgid "A name and a public property have to be given." -msgstr "Имя и публичное свойство должны быть заполнены." - -#: core/config.py:122 -msgid "name has to be string." -msgstr "имя должно быть строкой." - -#: core/config.py:124 -msgid "public property has to be bool." -msgstr "Публичное свойство должна быть BOOL." - -#: core/config.py:130 -msgid "This has to be a dict." -msgstr "" - -#: core/config.py:137 core/config.py:153 -msgid "{} has to be given." -msgstr "{} должно быть дано." - -#: core/config.py:139 core/config.py:155 -msgid "{} has to be a string." -msgstr "{} должна быть строкой." - -#: core/config.py:143 -msgid "Translations has to be a list." -msgstr "Переводы должны быть списком." - -#: core/config.py:146 -msgid "Every value has to be a dict, not {}." -msgstr "Каждое значение должно быть dict, а не {}." - -#: core/config.py:177 -msgid "Too many values for config variables {} found." -msgstr "Найдено слишком много значений для переменных конфигурации {}." - -#: core/config.py:261 -msgid "Invalid value for config attribute input_type." -msgstr "Недопустимое значение атрибута конфигурации input_type." - -#: core/config.py:263 -msgid "" -"Either config attribute 'choices' must not be None or 'input_type' must not " -"be 'choice'." -msgstr "Либо конфигурационный атрибут 'choices' не должен быть None или 'input_type' не должно быть 'choice'." - -#: core/config.py:266 -msgid "" -"Either config attribute 'choices' must be None or 'input_type' must be " -"'choice'." -msgstr "Либо конфигурационный атрибут 'choices' должен быть None или 'input_type' должно быть 'choice'." - -#: core/config.py:276 -msgid "General" -msgstr "Генеральный" - -#: core/views.py:277 -msgid "The data has to be a list." -msgstr "" - -#: core/views.py:280 -msgid "All elements have to be dicts." -msgstr "" - -#: core/views.py:420 -msgid "The data has to be a dict." -msgstr "" - -#: core/views.py:426 -msgid "The id \"{}\" has to be int." -msgstr "" - -#: core/views.py:432 -msgid "Prune has to be an object." -msgstr "" - -#: core/views.py:435 -msgid "The prune projector id has to be int." -msgstr "" - -#: core/views.py:440 -msgid "The projector with id \"{}\" does not exist" -msgstr "" - -#: core/views.py:444 -msgid "Prune element has to be a dict or not given." -msgstr "" - -#: core/views.py:772 -msgid "All chat messages deleted successfully." -msgstr "Все сообщения чата успешно удалены." - -#: mediafiles/models.py:87 -msgid "unknown" -msgstr "неизвестный" - -#: motions/models.py:190 -msgid "Motion" -msgstr "Заявление" - -#: motions/models.py:744 -msgid "new" -msgstr "Новый" - -#: motions/models.py:969 -#, python-format -msgid "%(time_and_messages)s by %(person)s" -msgstr "%(time_and_messages)s от %(person)s" - -#: motions/serializers.py:36 -#, python-format -msgid "Workflow %(pk)d does not exist." -msgstr "Процесс %(pk)d не существует." - -#: motions/signals.py:22 -msgid "submitted" -msgstr "Отправлено" - -#: motions/signals.py:27 motions/signals.py:60 -msgid "accepted" -msgstr "принято" - -#: motions/signals.py:32 motions/signals.py:66 -msgid "rejected" -msgstr "отвергнуто" - -#: motions/signals.py:37 -msgid "not decided" -msgstr "не решено" - -#: motions/signals.py:47 -msgid "published" -msgstr "опубликовано" - -#: motions/signals.py:52 motions/views.py:300 -msgid "permitted" -msgstr "разрешено" - -#: motions/signals.py:72 -msgid "withdrawed" -msgstr "отозваны" - -#: motions/signals.py:77 -msgid "adjourned" -msgstr "отложено" - -#: motions/signals.py:83 -msgid "not concerned" -msgstr "не касается" - -#: motions/signals.py:89 -msgid "refered to committee" -msgstr "отнесено к комитету" - -#: motions/signals.py:95 -msgid "needs review" -msgstr "требует пересмотра" - -#: motions/signals.py:100 -msgid "rejected (not authorized)" -msgstr "отклонено (не авторизован)" - -#: motions/views.py:110 -msgid "The parent motion does not exist." -msgstr "Родительское предложение не существует." - -#: motions/views.py:154 -msgid "Motion created" -msgstr "Заявление создано" - -#: motions/views.py:256 -msgid "Motion updated" -msgstr "Заявление обновлено" - -#: motions/views.py:260 -msgid "All supporters removed" -msgstr "Все сторонники удалены" - -#: motions/views.py:264 -msgid "Comment {} updated" -msgstr "" - -#: motions/views.py:298 motions/views.py:310 -msgid "Version" -msgstr "Версия" - -#: motions/views.py:302 -#, python-format -msgid "Version %d permitted successfully." -msgstr "Версия %d успешно стартовала." - -#: motions/views.py:307 -msgid "You can not delete the active version of a motion." -msgstr "Вы не можете удалить активную версию заявления." - -#: motions/views.py:312 -msgid "deleted" -msgstr "удалено " - -#: motions/views.py:314 -#, python-format -msgid "Version %d deleted successfully." -msgstr "Версия %d успешно удалена." - -#: motions/views.py:337 -msgid "You can not support this motion." -msgstr "Вы не можете поддерживать это заявление." - -#: motions/views.py:339 -msgid "Motion supported" -msgstr "Заявление поддерживается" - -#: motions/views.py:343 -msgid "You have supported this motion successfully." -msgstr "Вы успешно поддержали это заявление." - -#: motions/views.py:348 -msgid "You can not unsupport this motion." -msgstr "Вы не можете поддерживать это заявление." - -#: motions/views.py:350 -msgid "Motion unsupported" -msgstr "Заявление без поддержки" - -#: motions/views.py:351 -msgid "You have unsupported this motion successfully." -msgstr "Вы не успешно поддерживаете это заявление." - -#: motions/views.py:374 -msgid "Invalid data. State must be an integer." -msgstr "Неверные данные. Состояние должно быть целым числом." - -#: motions/views.py:377 -#, python-format -msgid "You can not set the state to %(state_id)d." -msgstr "Вы не можете установить состояние на %(state_id)d." - -#: motions/views.py:385 -#, python-format -msgid "The state of the motion was set to %s." -msgstr "Состояние заявления было установлено в %s." - -#: motions/views.py:389 motions/views.py:458 motions/views.py:726 -msgid "State set to" -msgstr "Состояние установлено на" - -#: motions/views.py:413 -msgid "Invalid data. Recommendation must be an integer." -msgstr "Неверные данные. Рекомендация должна быть целом числом." - -#: motions/views.py:417 -#, python-brace-format -msgid "You can not set the recommendation to {recommendation_state_id}." -msgstr "Вы не можете установить рекомендацию {recommendation_state_id}." - -#: motions/views.py:427 -#, python-format -msgid "The recommendation of the motion was set to %s." -msgstr "Рекомендация заявления была установлена на %s." - -#: motions/views.py:431 -msgid "Recommendation set to" -msgstr "Рекомендацию установить на" - -#: motions/views.py:439 -msgid "Cannot set an empty recommendation." -msgstr "Невозможно установить пустую рекомендацию." - -#: motions/views.py:479 -msgid "Vote created" -msgstr "Голосование создано" - -#: motions/views.py:483 -msgid "Vote created successfully." -msgstr "Голосование успешно создано." - -#: motions/views.py:509 -msgid "Vote updated" -msgstr "Голосование обновлено" - -#: motions/views.py:518 -msgid "Vote deleted" -msgstr "Голосование удалено" - -#: motions/views.py:652 -#, python-format -msgid "" -"Numbering aborted because the motion identifier \"%s\" already exists " -"outside of this category." -msgstr "" - -#: motions/views.py:675 -msgid "" -"Error: At least one identifier of this category does already exist in " -"another category." -msgstr "Ошибка: По крайней мере один идентификатор этой категории уже существует в другой категории." - -#: motions/views.py:680 -#, python-brace-format -msgid "All motions in category {category} numbered successfully." -msgstr "Все заявления в категории {category} успешно пронумерованы." - -#: motions/views.py:731 -msgid "Followed recommendations successfully." -msgstr "Следующие рекомендации успешно." - -#: poll/models.py:194 -msgid "majority" -msgstr "большинство" - -#: poll/models.py:196 poll/models.py:198 -msgid "undocumented" -msgstr "недокументированный" - -#: poll/serializers.py:16 -msgid "Value for {} must not be less than -2" -msgstr "Значение для {} не должно быть меньше, чем -2" - -#: users/serializers.py:49 -msgid "" -"The groups this user belongs to. A user will get all permissions granted to " -"each of his/her groups." -msgstr "Группы, к которым принадлежит данный пользователь. Пользователь получит все права, предоставленные каждому из его / ее группы." - -#: users/serializers.py:72 -msgid "Username, given name and surname can not all be empty." -msgstr "Имя пользователя, имя и фамилия не могут быть пустыми." - -#: users/serializers.py:109 -#, python-brace-format -msgid "Incorrect value \"{value}\". Expected app_label.codename string." -msgstr "Неверное значение \"{value}\". Ожидаемая app_label.codename строка." - -#: users/serializers.py:110 -#, python-brace-format -msgid "Invalid permission \"{value}\". Object does not exist." -msgstr "Неверное разрешение \"{value}\". Объект не существует." - -#: users/views.py:91 -msgid "You can not deactivate yourself." -msgstr "Вы не можете отключить себя." - -#: users/views.py:114 -msgid "You can not delete yourself." -msgstr "Вы не можете удалить себя." - -#: users/views.py:131 -msgid "Password successfully reset." -msgstr "Пароль успешно сброшен." - -#: users/views.py:172 -#, python-brace-format -msgid "{number} users successfully imported." -msgstr "{number} пользователей успешно импортировано." - -#: users/views.py:410 -msgid "Cookies have to be enabled to use OpenSlides." -msgstr "Куки должны быть включены для пользования OpenSlides." - -#: users/views.py:413 -msgid "Username or password is not correct." -msgstr "Имя пользователя или пароль не является правильным." - -#: users/views.py:439 -#, python-brace-format -msgid "" -"Installation was successfully. Use {username} and {password} for first " -"login. Important: Please change your password!" -msgstr "Установка была успешна. Используйте {username} и {password} для первого входа в систему. Важно: Пожалуйста, измените пароль!" - -#: users/views.py:462 -msgid "You are not authenticated." -msgstr "Вы не авторизованы." - -#: users/views.py:509 -msgid "Old password does not match." -msgstr "Старый пароль не совпадает." diff --git a/openslides/mediafiles/models.py b/openslides/mediafiles/models.py index 1e5580932..8b5262b37 100644 --- a/openslides/mediafiles/models.py +++ b/openslides/mediafiles/models.py @@ -1,6 +1,5 @@ from django.conf import settings from django.db import models -from django.utils.translation import ugettext as _ from ..core.config import config from ..utils.autoupdate import inform_changed_data @@ -74,7 +73,7 @@ class Mediafile(RESTModelMixin, models.Model): try: size = self.mediafile.size except OSError: - size_string = _("unknown") + size_string = "unknown" else: if size < 1024: size_string = "< 1 kB" diff --git a/openslides/motions/models.py b/openslides/motions/models.py index b5fedd80c..626d9dc3e 100644 --- a/openslides/motions/models.py +++ b/openslides/motions/models.py @@ -7,7 +7,6 @@ from django.core.exceptions import ImproperlyConfigured, ValidationError from django.db import IntegrityError, models, transaction from django.db.models import Max from django.utils import formats, timezone -from django.utils.translation import ugettext as _, ugettext_noop from jsonfield import JSONField from openslides.agenda.models import Item @@ -259,7 +258,7 @@ class Motion(RESTModelMixin, models.Model): ("can_manage", "Can manage motions"), ) ordering = ("identifier",) - verbose_name = ugettext_noop("Motion") + verbose_name = "Motion" def __str__(self): """ @@ -330,22 +329,16 @@ class Motion(RESTModelMixin, models.Model): if self.is_amendment(): parent_identifier = self.parent.identifier or "" if without_blank: - prefix = "%s%s" % ( - parent_identifier, - config["motions_amendments_prefix"], - ) + prefix = f"{parent_identifier} {config['motions_amendments_prefix']} " else: - prefix = "%s %s " % ( - parent_identifier, - config["motions_amendments_prefix"], - ) + prefix = f"{parent_identifier} {config['motions_amendments_prefix']} " elif self.category is None or not self.category.prefix: prefix = "" else: if without_blank: - prefix = "%s" % self.category.prefix + prefix = self.category.prefix else: - prefix = "%s " % self.category.prefix + prefix = f"{self.category.prefix} " self._identifier_prefix = prefix # Use the already assigned identifier_number, if the motion has one. @@ -386,10 +379,10 @@ class Motion(RESTModelMixin, models.Model): """ if initial_increment: number += 1 - identifier = "%s%s" % (prefix, self.extend_identifier_number(number)) + identifier = f"{prefix}{self.extend_identifier_number(number)}" while Motion.objects.filter(identifier=identifier).exists(): number += 1 - identifier = "%s%s" % (prefix, self.extend_identifier_number(number)) + identifier = f"{prefix}{self.extend_identifier_number(number)}" return number, identifier def extend_identifier_number(self, number): @@ -438,7 +431,7 @@ class Motion(RESTModelMixin, models.Model): return poll else: raise WorkflowError( - "You can not create a poll in state %s." % self.state.name + f"You can not create a poll in state {self.state.name}." ) @property @@ -454,7 +447,7 @@ class Motion(RESTModelMixin, models.Model): 'state' can be the id of a state object or a state object. """ - if type(state) is int: + if isinstance(state, int): state = State.objects.get(pk=state) if not state.dont_set_identifier: @@ -472,7 +465,7 @@ class Motion(RESTModelMixin, models.Model): workflow from config. """ - if type(workflow) is int: + if isinstance(workflow, int): workflow = Workflow.objects.get(pk=workflow) if workflow is not None: @@ -492,7 +485,7 @@ class Motion(RESTModelMixin, models.Model): 'recommendation' can be the id of a state object or a state object. """ - if type(recommendation) is int: + if isinstance(recommendation, int): recommendation = State.objects.get(pk=recommendation) self.recommendation = recommendation @@ -517,7 +510,7 @@ class Motion(RESTModelMixin, models.Model): Note: It has to be the same return value like in JavaScript. """ if self.identifier: - title = "%s %s" % (_(self._meta.verbose_name), self.identifier) + title = f"{self._meta.verbose_name} {self.identifier}" else: title = self.title return title @@ -530,9 +523,9 @@ class Motion(RESTModelMixin, models.Model): Note: It has to be the same return value like in JavaScript. """ if self.identifier: - title = "%s %s" % (_(self._meta.verbose_name), self.identifier) + title = f"{self._meta.verbose_name} {self.identifier}" else: - title = "%s (%s)" % (self.title, _(self._meta.verbose_name)) + title = f"{self.title} ({self._meta.verbose_name})" return title @property @@ -555,8 +548,7 @@ class Motion(RESTModelMixin, models.Model): """ Write a log message. - The message should be in English and translatable, - e. g. motion.write_log(message_list=[ugettext_noop('Message Text')]) + The message should be in English. """ if person and not person.is_authenticated: person = None @@ -679,9 +671,9 @@ class SubmitterManager(models.Manager): for the initial sorting of the submitters. """ if self.filter(user=user, motion=motion).exists(): - raise OpenSlidesError(_("{user} is already a submitter.").format(user=user)) + raise OpenSlidesError(f"{user} is already a submitter.") if isinstance(user, AnonymousUser): - raise OpenSlidesError(_("An anonymous user can not be a submitter.")) + raise OpenSlidesError("An anonymous user can not be a submitter.") weight = ( self.filter(motion=motion).aggregate(models.Max("weight"))["weight__max"] or 0 @@ -804,8 +796,7 @@ class MotionChangeRecommendation(RESTModelMixin, models.Model): if self.collides_with_other_recommendation(recommendations): raise ValidationError( - "The recommendation collides with an existing one (line %s - %s)." - % (self.line_from, self.line_to) + f"The recommendation collides with an existing one (line {self.line_from} - {self.line_to})." ) return super().save(*args, **kwargs) @@ -815,11 +806,7 @@ class MotionChangeRecommendation(RESTModelMixin, models.Model): def __str__(self): """Return a string, representing this object.""" - return "Recommendation for Motion %s, line %s - %s" % ( - self.motion_id, - self.line_from, - self.line_to, - ) + return f"Recommendation for Motion {self.motion_id}, line {self.line_from} - {self.line_to}" class Category(RESTModelMixin, models.Model): @@ -875,7 +862,7 @@ class MotionBlock(RESTModelMixin, models.Model): agenda_items = GenericRelation(Item, related_name="topics") class Meta: - verbose_name = ugettext_noop("Motion block") + verbose_name = "Motion block" default_permissions = () def __str__(self): @@ -906,7 +893,7 @@ class MotionBlock(RESTModelMixin, models.Model): return self.title def get_agenda_title_with_type(self): - return "%s (%s)" % (self.get_agenda_title(), _(self._meta.verbose_name)) + return f"{self.get_agenda_title()} ({self._meta.verbose_name})" class MotionLog(RESTModelMixin, models.Model): @@ -940,12 +927,10 @@ class MotionLog(RESTModelMixin, models.Model): """ localtime = timezone.localtime(self.time) time = formats.date_format(localtime, "DATETIME_FORMAT") - time_and_messages = "%s " % time + "".join(map(_, self.message_list)) + message_list = "".join(self.message_list) + time_and_messages = f"{time} {message_list}" if self.person is not None: - return _("%(time_and_messages)s by %(person)s") % { - "time_and_messages": time_and_messages, - "person": self.person, - } + return f"{time_and_messages} by {self.person}" return time_and_messages def get_root_rest_element(self): @@ -1016,7 +1001,7 @@ class MotionPoll(RESTModelMixin, CollectDefaultVotesMixin, BasePoll): # type: i """ Representation method only for debugging purposes. """ - return "MotionPoll for motion %s" % self.motion + return f"MotionPoll for motion {self.motion}" def set_options(self, skip_autoupdate=False): """Create the option class for this poll.""" @@ -1027,9 +1012,6 @@ class MotionPoll(RESTModelMixin, CollectDefaultVotesMixin, BasePoll): # type: i def get_percent_base_choice(self): return config["motions_poll_100_percent_base"] - def get_slide_context(self, **context): - return super(MotionPoll, self).get_slide_context(poll=self) - def get_root_rest_element(self): """ Returns the motion to this instance which is the root REST element. @@ -1145,8 +1127,8 @@ class State(RESTModelMixin, models.Model): self.check_next_states() if self.recommendation_label == "": raise WorkflowError( - "The field recommendation_label of {} must not " - "be an empty string.".format(self) + f"The field recommendation_label of {self} must not " + "be an empty string." ) super(State, self).save(**kwargs) @@ -1158,8 +1140,7 @@ class State(RESTModelMixin, models.Model): for state in self.next_states.all(): if not state.workflow == self.workflow: raise WorkflowError( - "%s can not be next state of %s because it does not belong to the same workflow." - % (state, self) + f"{state} can not be next state of {self} because it does not belong to the same workflow." ) def get_root_rest_element(self): @@ -1223,6 +1204,6 @@ class Workflow(RESTModelMixin, models.Model): """Checks whether the first_state itself belongs to the workflow.""" if self.first_state and not self.first_state.workflow == self: raise WorkflowError( - "%s can not be first state of %s because it " - "does not belong to it." % (self.first_state, self) + f"{self.first_state} can not be first state of {self} because it " + "does not belong to it." ) diff --git a/openslides/motions/serializers.py b/openslides/motions/serializers.py index df8ab3baf..7208e8583 100644 --- a/openslides/motions/serializers.py +++ b/openslides/motions/serializers.py @@ -1,7 +1,6 @@ from typing import Dict, Optional from django.db import transaction -from django.utils.translation import ugettext as _ from ..poll.serializers import default_votes_validator from ..utils.auth import get_group_model @@ -39,9 +38,7 @@ def validate_workflow_field(value): Validator to ensure that the workflow with the given id exists. """ if not Workflow.objects.filter(pk=value).exists(): - raise ValidationError( - {"detail": _("Workflow %(pk)d does not exist.") % {"pk": value}} - ) + raise ValidationError({"detail": f"Workflow {value} does not exist."}) class StatuteParagraphSerializer(ModelSerializer): @@ -163,10 +160,10 @@ class AmendmentParagraphsJSONSerializerField(Field): """ Checks that data is a list of strings. """ - if type(data) is not list: + if not isinstance(data, list): raise ValidationError({"detail": "Data must be a list."}) for paragraph in data: - if type(paragraph) is not str and paragraph is not None: + if not isinstance(paragraph, str) and paragraph is not None: raise ValidationError( {"detail": "Paragraph must be either a string or null/None."} ) @@ -226,7 +223,7 @@ class MotionPollSerializer(ModelSerializer): def __init__(self, *args, **kwargs): # The following dictionary is just a cache for several votes. self._votes_dicts: Dict[int, Dict[int, int]] = {} - return super().__init__(*args, **kwargs) + super().__init__(*args, **kwargs) def get_yes(self, obj): try: @@ -280,14 +277,13 @@ class MotionPollSerializer(ModelSerializer): if len(votes) != len(instance.get_vote_values()): raise ValidationError( { - "detail": _("You have to submit data for %d vote values.") - % len(instance.get_vote_values()) + "detail": f"You have to submit data for {len(instance.get_vote_values())} vote values." } ) - for vote_value, vote_weight in votes.items(): + for vote_value in votes.keys(): if vote_value not in instance.get_vote_values(): raise ValidationError( - {"detail": _("Vote value %s is invalid.") % vote_value} + {"detail": f"Vote value {vote_value} is invalid."} ) instance.set_vote_objects_with_values( instance.get_options().get(), votes, skip_autoupdate=True @@ -459,14 +455,16 @@ class MotionSerializer(ModelSerializer): if "amendment_paragraphs" in data: data["amendment_paragraphs"] = list( map( - lambda entry: validate_html(entry) if type(entry) is str else None, + lambda entry: validate_html(entry) + if isinstance(entry, str) + else None, data["amendment_paragraphs"], ) ) data["text"] = "" else: - if "text" in data and len(data["text"]) == 0: - raise ValidationError({"detail": _("This field may not be blank.")}) + if "text" in data and not data["text"]: + raise ValidationError({"detail": "This field may not be blank."}) return data diff --git a/openslides/motions/signals.py b/openslides/motions/signals.py index af36edeaa..e531b34fd 100644 --- a/openslides/motions/signals.py +++ b/openslides/motions/signals.py @@ -1,5 +1,4 @@ from django.apps import apps -from django.utils.translation import ugettext_noop from .models import State, Workflow @@ -17,7 +16,7 @@ def create_builtin_workflows(sender, **kwargs): workflow_1 = Workflow(name="Simple Workflow") workflow_1.save(skip_autoupdate=True) state_1_1 = State( - name=ugettext_noop("submitted"), + name="submitted", workflow=workflow_1, allow_create_poll=True, allow_support=True, @@ -25,7 +24,7 @@ def create_builtin_workflows(sender, **kwargs): ) state_1_1.save(skip_autoupdate=True) state_1_2 = State( - name=ugettext_noop("accepted"), + name="accepted", workflow=workflow_1, recommendation_label="Acceptance", css_class="success", @@ -33,7 +32,7 @@ def create_builtin_workflows(sender, **kwargs): ) state_1_2.save(skip_autoupdate=True) state_1_3 = State( - name=ugettext_noop("rejected"), + name="rejected", workflow=workflow_1, recommendation_label="Rejection", css_class="danger", @@ -41,7 +40,7 @@ def create_builtin_workflows(sender, **kwargs): ) state_1_3.save(skip_autoupdate=True) state_1_4 = State( - name=ugettext_noop("not decided"), + name="not decided", workflow=workflow_1, recommendation_label="No decision", css_class="default", @@ -55,7 +54,7 @@ def create_builtin_workflows(sender, **kwargs): workflow_2 = Workflow(name="Complex Workflow") workflow_2.save(skip_autoupdate=True) state_2_1 = State( - name=ugettext_noop("published"), + name="published", workflow=workflow_2, allow_support=True, allow_submitter_edit=True, @@ -63,7 +62,7 @@ def create_builtin_workflows(sender, **kwargs): ) state_2_1.save(skip_autoupdate=True) state_2_2 = State( - name=ugettext_noop("permitted"), + name="permitted", workflow=workflow_2, recommendation_label="Permission", allow_create_poll=True, @@ -71,7 +70,7 @@ def create_builtin_workflows(sender, **kwargs): ) state_2_2.save(skip_autoupdate=True) state_2_3 = State( - name=ugettext_noop("accepted"), + name="accepted", workflow=workflow_2, recommendation_label="Acceptance", css_class="success", @@ -79,7 +78,7 @@ def create_builtin_workflows(sender, **kwargs): ) state_2_3.save(skip_autoupdate=True) state_2_4 = State( - name=ugettext_noop("rejected"), + name="rejected", workflow=workflow_2, recommendation_label="Rejection", css_class="danger", @@ -87,14 +86,14 @@ def create_builtin_workflows(sender, **kwargs): ) state_2_4.save(skip_autoupdate=True) state_2_5 = State( - name=ugettext_noop("withdrawed"), + name="withdrawed", workflow=workflow_2, css_class="default", merge_amendment_into_final=-1, ) state_2_5.save(skip_autoupdate=True) state_2_6 = State( - name=ugettext_noop("adjourned"), + name="adjourned", workflow=workflow_2, recommendation_label="Adjournment", css_class="default", @@ -102,7 +101,7 @@ def create_builtin_workflows(sender, **kwargs): ) state_2_6.save(skip_autoupdate=True) state_2_7 = State( - name=ugettext_noop("not concerned"), + name="not concerned", workflow=workflow_2, recommendation_label="No concernment", css_class="default", @@ -110,7 +109,7 @@ def create_builtin_workflows(sender, **kwargs): ) state_2_7.save(skip_autoupdate=True) state_2_8 = State( - name=ugettext_noop("refered to committee"), + name="refered to committee", workflow=workflow_2, recommendation_label="Referral to committee", css_class="default", @@ -118,14 +117,14 @@ def create_builtin_workflows(sender, **kwargs): ) state_2_8.save(skip_autoupdate=True) state_2_9 = State( - name=ugettext_noop("needs review"), + name="needs review", workflow=workflow_2, css_class="default", merge_amendment_into_final=-1, ) state_2_9.save(skip_autoupdate=True) state_2_10 = State( - name=ugettext_noop("rejected (not authorized)"), + name="rejected (not authorized)", workflow=workflow_2, recommendation_label="Rejection (not authorized)", css_class="default", diff --git a/openslides/motions/views.py b/openslides/motions/views.py index 0de3668f4..953fe8c3d 100644 --- a/openslides/motions/views.py +++ b/openslides/motions/views.py @@ -8,7 +8,6 @@ from django.core.exceptions import ValidationError as DjangoValidationError from django.db import IntegrityError, transaction from django.db.models.deletion import ProtectedError from django.http.request import QueryDict -from django.utils.translation import ugettext as _, ugettext_noop from rest_framework import status from ..core.config import config @@ -149,9 +148,7 @@ class MotionViewSet(ModelViewSet): try: parent_motion = Motion.objects.get(pk=request.data["parent_id"]) except Motion.DoesNotExist: - raise ValidationError( - {"detail": _("The parent motion does not exist.")} - ) + raise ValidationError({"detail": "The parent motion does not exist."}) else: parent_motion = None @@ -193,7 +190,7 @@ class MotionViewSet(ModelViewSet): submitters_id = [] if not isinstance(submitters_id, list): raise ValidationError( - {"detail": _("If submitters_id is given, it has to be a list.")} + {"detail": "If submitters_id is given, it has to be a list."} ) submitters_id_unique = set() @@ -211,7 +208,7 @@ class MotionViewSet(ModelViewSet): continue # Do not add users that do not exist # Add the request user, if he is authenticated and no submitters were given: - if len(submitters) == 0 and request.user.is_authenticated: + if not submitters and request.user.is_authenticated: submitters.append(request.user) # create all submitters @@ -219,7 +216,7 @@ class MotionViewSet(ModelViewSet): Submitter.objects.add(submitter, motion) # Write the log message and initiate response. - motion.write_log([ugettext_noop("Motion created")], request.user) + motion.write_log(["Motion created"], request.user) # Send new submitters and supporters via autoupdate because users # without permission to see users may not have them but can get it now. @@ -289,16 +286,14 @@ class MotionViewSet(ModelViewSet): # Write the log message, check removal of supporters and initiate response. # TODO: Log if a motion was updated. - updated_motion.write_log([ugettext_noop("Motion updated")], request.user) + updated_motion.write_log(["Motion updated"], request.user) if ( config["motions_remove_supporters"] and updated_motion.state.allow_support and not has_perm(request.user, "motions.can_manage") ): updated_motion.supporters.clear() - updated_motion.write_log( - [ugettext_noop("All supporters removed")], request.user - ) + updated_motion.write_log(["All supporters removed"], request.user) # Send new supporters via autoupdate because users # without permission to see users may not have them but can get it now. @@ -339,12 +334,12 @@ class MotionViewSet(ModelViewSet): while ancestor is not None: if ancestor == motion: raise ValidationError( - {"detail": _("There must not be a hierarchical loop.")} + {"detail": "There must not be a hierarchical loop."} ) ancestor = ancestor.sort_parent inform_changed_data(motions) - return Response({"detail": _("The motions has been sorted.")}) + return Response({"detail": "The motions has been sorted."}) @detail_route(methods=["POST", "DELETE"]) def manage_comments(self, request, pk=None): @@ -363,18 +358,14 @@ class MotionViewSet(ModelViewSet): section_id = request.data.get("section_id") if not section_id or not isinstance(section_id, int): raise ValidationError( - {"detail": _("You have to provide a section_id of type int.")} + {"detail": "You have to provide a section_id of type int."} ) try: section = MotionCommentSection.objects.get(pk=section_id) except MotionCommentSection.DoesNotExist: raise ValidationError( - { - "detail": _("A comment section with id {} does not exist").format( - section_id - ) - } + {"detail": f"A comment section with id {section_id} does not exist."} ) # the request user needs to see and write to the comment section @@ -385,9 +376,7 @@ class MotionViewSet(ModelViewSet): ): raise ValidationError( { - "detail": _( - "You are not allowed to see or write to the comment section." - ) + "detail": "You are not allowed to see or write to the comment section." } ) @@ -395,7 +384,7 @@ class MotionViewSet(ModelViewSet): # validate comment comment_value = request.data.get("comment", "") if not isinstance(comment_value, str): - raise ValidationError({"detail": _("The comment should be a string.")}) + raise ValidationError({"detail": "The comment should be a string."}) comment, created = MotionComment.objects.get_or_create( motion=motion, section=section, defaults={"comment": comment_value} @@ -405,10 +394,8 @@ class MotionViewSet(ModelViewSet): comment.save() # write log - motion.write_log( - [ugettext_noop("Comment {} updated").format(section.name)], request.user - ) - message = _("Comment {} updated").format(section.name) + motion.write_log([f"Comment {section.name} updated"], request.user) + message = f"Comment {section.name} updated" else: # DELETE try: comment = MotionComment.objects.get(motion=motion, section=section) @@ -418,11 +405,8 @@ class MotionViewSet(ModelViewSet): else: comment.delete() - motion.write_log( - [ugettext_noop("Comment {} deleted").format(section.name)], - request.user, - ) - message = _("Comment {} deleted").format(section.name) + motion.write_log([f"Comment {section.name} deleted"], request.user) + message = f"Comment {section.name} deleted" return Response({"detail": message}) @@ -470,9 +454,7 @@ class MotionViewSet(ModelViewSet): try: motion = Motion.objects.get(pk=item["id"]) except Motion.DoesNotExist: - raise ValidationError( - {"detail": "Motion {} does not exist".format(item["id"])} - ) + raise ValidationError({"detail": f"Motion {item['id']} does not exist"}) # Remove all submitters. Submitter.objects.filter(motion=motion).delete() @@ -483,7 +465,7 @@ class MotionViewSet(ModelViewSet): submitter = get_user_model().objects.get(pk=submitter_id) except get_user_model().DoesNotExist: raise ValidationError( - {"detail": "Submitter {} does not exist".format(submitter_id)} + {"detail": f"Submitter {submitter_id} does not exist"} ) Submitter.objects.add(submitter, motion) new_submitters.append(submitter) @@ -501,11 +483,7 @@ class MotionViewSet(ModelViewSet): # Send response. return Response( - { - "detail": _("{number} motions successfully updated.").format( - number=len(motion_result) - ) - } + {"detail": f"{len(motion_result)} motions successfully updated."} ) @detail_route(methods=["post", "delete"]) @@ -528,23 +506,21 @@ class MotionViewSet(ModelViewSet): and not motion.is_submitter(request.user) and not motion.is_supporter(request.user) ): - raise ValidationError({"detail": _("You can not support this motion.")}) + raise ValidationError({"detail": "You can not support this motion."}) motion.supporters.add(request.user) - motion.write_log([ugettext_noop("Motion supported")], request.user) + motion.write_log(["Motion supported"], request.user) # Send new supporter via autoupdate because users without permission # to see users may not have it but can get it now. inform_changed_data([request.user]) - message = _("You have supported this motion successfully.") + message = "You have supported this motion successfully." else: # Unsupport motion. # request.method == 'DELETE' if not motion.state.allow_support or not motion.is_supporter(request.user): - raise ValidationError( - {"detail": _("You can not unsupport this motion.")} - ) + raise ValidationError({"detail": "You can not unsupport this motion."}) motion.supporters.remove(request.user) - motion.write_log([ugettext_noop("Motion unsupported")], request.user) - message = _("You have unsupported this motion successfully.") + motion.write_log(["Motion unsupported"], request.user) + message = "You have unsupported this motion successfully." # Initiate response. return Response({"detail": message}) @@ -568,14 +544,11 @@ class MotionViewSet(ModelViewSet): state_id = int(state) except ValueError: raise ValidationError( - {"detail": _("Invalid data. State must be an integer.")} + {"detail": "Invalid data. State must be an integer."} ) if state_id not in [item.id for item in motion.state.next_states.all()]: raise ValidationError( - { - "detail": _("You can not set the state to %(state_id)d.") - % {"state_id": state_id} - } + {"detail": f"You can not set the state to {state_id}."} ) motion.set_state(state_id) else: @@ -587,17 +560,15 @@ class MotionViewSet(ModelViewSet): update_fields=["state", "identifier", "identifier_number"], skip_autoupdate=True, ) - message = _("The state of the motion was set to %s.") % motion.state.name + message = f"The state of the motion was set to {motion.state.name}." # Write the log message and initiate response. motion.write_log( - message_list=[ugettext_noop("State set to"), " ", motion.state.name], + message_list=[f"State set to {motion.state.name}"], person=request.user, skip_autoupdate=True, ) - inform_changed_data( - motion, information="State set to {}.".format(motion.state.name) - ) + inform_changed_data(motion, information=f"State set to {motion.state.name}.") return Response({"detail": message}) @detail_route(methods=["put"]) @@ -619,7 +590,7 @@ class MotionViewSet(ModelViewSet): recommendation_state_id = int(recommendation_state) except ValueError: raise ValidationError( - {"detail": _("Invalid data. Recommendation must be an integer.")} + {"detail": "Invalid data. Recommendation must be an integer."} ) recommendable_states = State.objects.filter( workflow=motion.workflow_id, recommendation_label__isnull=False @@ -629,9 +600,7 @@ class MotionViewSet(ModelViewSet): ]: raise ValidationError( { - "detail": _( - "You can not set the recommendation to {recommendation_state_id}." - ).format(recommendation_state_id=recommendation_state_id) + "detail": f"You can not set the recommendation to {recommendation_state_id}." } ) motion.set_recommendation(recommendation_state_id) @@ -646,11 +615,11 @@ class MotionViewSet(ModelViewSet): if motion.recommendation else "None" ) - message = _("The recommendation of the motion was set to %s.") % label + message = f"The recommendation of the motion was set to {label}." # Write the log message and initiate response. motion.write_log( - message_list=[ugettext_noop("Recommendation set to"), " ", label], + message_list=["Recommendation set to", " ", label], person=request.user, skip_autoupdate=True, ) @@ -698,9 +667,7 @@ class MotionViewSet(ModelViewSet): try: motion = Motion.objects.get(pk=item["id"]) except Motion.DoesNotExist: - raise ValidationError( - {"detail": "Motion {} does not exist".format(item["id"])} - ) + raise ValidationError({"detail": f"Motion {item['id']} does not exist"}) # Set or reset recommendation. recommendation_state_id = item["recommendation"] @@ -717,9 +684,7 @@ class MotionViewSet(ModelViewSet): ]: raise ValidationError( { - "detail": _( - "You can not set the recommendation to {recommendation_state_id}." - ).format(recommendation_state_id=recommendation_state_id) + "detail": "You can not set the recommendation to {recommendation_state_id}." } ) motion.set_recommendation(recommendation_state_id) @@ -734,7 +699,7 @@ class MotionViewSet(ModelViewSet): # Write the log message. motion.write_log( - message_list=[ugettext_noop("Recommendation set to"), " ", label], + message_list=["Recommendation set to", " ", label], person=request.user, skip_autoupdate=True, ) @@ -747,18 +712,14 @@ class MotionViewSet(ModelViewSet): # Send response. return Response( - { - "detail": _("{number} motions successfully updated.").format( - number=len(motion_result) - ) - } + {"detail": f"{len(motion_result)} motions successfully updated."} ) @detail_route(methods=["post"]) def follow_recommendation(self, request, pk=None): motion = self.get_object() if motion.recommendation is None: - raise ValidationError({"detail": _("Cannot set an empty recommendation.")}) + raise ValidationError({"detail": "Cannot set an empty recommendation."}) # Set state. motion.set_state(motion.recommendation) @@ -779,7 +740,7 @@ class MotionViewSet(ModelViewSet): skip_autoupdate=True, ) motion.write_log( - message_list=[ugettext_noop("State set to"), " ", motion.state.name], + message_list=["State set to", " ", motion.state.name], person=request.user, skip_autoupdate=True, ) @@ -801,15 +762,13 @@ class MotionViewSet(ModelViewSet): try: with transaction.atomic(): poll = motion.create_poll(skip_autoupdate=True) - except WorkflowError as e: - raise ValidationError({"detail": e}) - motion.write_log( - [ugettext_noop("Vote created")], request.user, skip_autoupdate=True - ) + except WorkflowError as err: + raise ValidationError({"detail": err}) + motion.write_log(["Vote created"], request.user, skip_autoupdate=True) inform_changed_data(motion) return Response( - {"detail": _("Vote created successfully."), "createdPollId": poll.pk} + {"detail": "Vote created successfully.", "createdPollId": poll.pk} ) @list_route(methods=["post"]) @@ -855,16 +814,12 @@ class MotionViewSet(ModelViewSet): try: motion = Motion.objects.get(pk=item["id"]) except Motion.DoesNotExist: - raise ValidationError( - {"detail": "Motion {} does not exist".format(item["id"])} - ) + raise ValidationError({"detail": f"Motion {item['id']} does not exist"}) # Set new tags for tag_id in item["tags"]: if not Tag.objects.filter(pk=tag_id).exists(): - raise ValidationError( - {"detail": "Tag {} does not exist".format(tag_id)} - ) + raise ValidationError({"detail": f"Tag {tag_id} does not exist"}) motion.tags.set(item["tags"]) # Finish motion. @@ -875,11 +830,7 @@ class MotionViewSet(ModelViewSet): # Send response. return Response( - { - "detail": _("{number} motions successfully updated.").format( - number=len(motion_result) - ) - } + {"detail": f"{len(motion_result)} motions successfully updated."} ) @@ -907,7 +858,7 @@ class MotionPollViewSet(UpdateModelMixin, DestroyModelMixin, GenericViewSet): """ response = super().update(*args, **kwargs) poll = self.get_object() - poll.motion.write_log([ugettext_noop("Vote updated")], self.request.user) + poll.motion.write_log(["Vote updated"], self.request.user) return response def destroy(self, *args, **kwargs): @@ -916,7 +867,7 @@ class MotionPollViewSet(UpdateModelMixin, DestroyModelMixin, GenericViewSet): """ poll = self.get_object() result = super().destroy(*args, **kwargs) - poll.motion.write_log([ugettext_noop("Vote deleted")], self.request.user) + poll.motion.write_log(["Vote deleted"], self.request.user) return result @@ -986,26 +937,20 @@ class MotionCommentSectionViewSet(ModelViewSet): """ try: result = super().destroy(*args, **kwargs) - except ProtectedError as e: + except ProtectedError as err: # The protected objects can just be motion comments. - motions = [ - '"' + str(comment.motion) + '"' for comment in e.protected_objects.all() - ] + motions = [f'"{comment.motion}"' for comment in err.protected_objects.all()] count = len(motions) motions_verbose = ", ".join(motions[:3]) if count > 3: motions_verbose += ", ..." if count == 1: - msg = _("This section has still comments in motion {}.").format( - motions_verbose - ) + msg = f"This section has still comments in motion {motions_verbose}." else: - msg = _("This section has still comments in motions {}.").format( - motions_verbose - ) + msg = f"This section has still comments in motions {motions_verbose}." - msg += " " + _("Please remove all comments before deletion.") + msg += " " + "Please remove all comments before deletion." raise ValidationError({"detail": msg}) return result @@ -1098,9 +1043,9 @@ class CategoryViewSet(ModelViewSet): if not category.prefix: prefix = "" elif without_blank: - prefix = "%s" % category.prefix + prefix = category.prefix else: - prefix = "%s " % category.prefix + prefix = f"{category.prefix} " motions = category.motion_set.all() motion_list = request.data.get("motions") if motion_list: @@ -1119,19 +1064,12 @@ class CategoryViewSet(ModelViewSet): if motion.is_amendment(): parent_identifier = motion.parent.identifier or "" if without_blank: - prefix = "%s%s" % ( - parent_identifier, - config["motions_amendments_prefix"], - ) + prefix = f"{parent_identifier}{config['motions_amendments_prefix']}" else: - prefix = "%s %s " % ( - parent_identifier, - config["motions_amendments_prefix"], - ) + prefix = f"{parent_identifier} {config['motions_amendments_prefix']} " number += 1 - new_identifier = "%s%s" % ( - prefix, - motion.extend_identifier_number(number), + new_identifier = ( + f"{prefix}{motion.extend_identifier_number(number)}" ) motions_to_be_sorted.append( { @@ -1153,12 +1091,10 @@ class CategoryViewSet(ModelViewSet): for obj in motions_to_be_sorted: if Motion.objects.filter(identifier=obj["new_identifier"]).exists(): # Set the error message and let the code run into an IntegrityError + new_identifier = obj["new_identifier"] error_message = ( - _( - 'Numbering aborted because the motion identifier "%s" ' - "already exists outside of this category." - ) - % obj["new_identifier"] + f'Numbering aborted because the motion identifier "{new_identifier}" ' + "already exists outside of this category." ) motion = obj["motion"] motion.identifier = obj["new_identifier"] @@ -1186,16 +1122,11 @@ class CategoryViewSet(ModelViewSet): instances.append(child.agenda_item) except IntegrityError: if error_message is None: - error_message = _( - "Error: At least one identifier of this category does " - "already exist in another category." - ) + error_message = "Error: At least one identifier of this category does already exist in another category." response = Response({"detail": error_message}, status=400) else: inform_changed_data(instances) - message = _( - "All motions in category {category} numbered " "successfully." - ).format(category=category) + message = f"All motions in category {category} numbered " "successfully." response = Response({"detail": message}) return response @@ -1248,17 +1179,13 @@ class MotionBlockViewSet(ModelViewSet): motion.save(skip_autoupdate=True) # Write the log message. motion.write_log( - message_list=[ - ugettext_noop("State set to"), - " ", - motion.state.name, - ], + message_list=["State set to", " ", motion.state.name], person=request.user, skip_autoupdate=True, ) instances.append(motion) inform_changed_data(instances) - return Response({"detail": _("Followed recommendations successfully.")}) + return Response({"detail": "Followed recommendations successfully."}) class ProtectedErrorMessageMixin: @@ -1271,10 +1198,10 @@ class ProtectedErrorMessageMixin: motions_verbose += ", ..." if count == 1: - msg = _("This {} is assigned to motion {}.").format(name, motions_verbose) + msg = f"This {name} is assigned to motion {motions_verbose}." else: - msg = _("This {} is assigned to motions {}.").format(name, motions_verbose) - return msg + " " + _("Please remove all assignments before deletion.") + msg = f"This {name} is assigned to motions {motions_verbose}." + return f"{msg} Please remove all assignments before deletion." class WorkflowViewSet(ModelViewSet, ProtectedErrorMessageMixin): @@ -1310,8 +1237,8 @@ class WorkflowViewSet(ModelViewSet, ProtectedErrorMessageMixin): """ try: result = super().destroy(*args, **kwargs) - except ProtectedError as e: - msg = self.getProtectedErrorMessage("workflow", e) + except ProtectedError as err: + msg = self.getProtectedErrorMessage("workflow", err) raise ValidationError({"detail": msg}) return result @@ -1349,11 +1276,11 @@ class StateViewSet( state.workflow.first_state.pk == state.pk ): # is this the first state of the workflow? raise ValidationError( - {"detail": _("You cannot delete the first state of the workflow.")} + {"detail": "You cannot delete the first state of the workflow."} ) try: result = super().destroy(*args, **kwargs) - except ProtectedError as e: - msg = self.getProtectedErrorMessage("workflow", e) + except ProtectedError as err: + msg = self.getProtectedErrorMessage("workflow", err) raise ValidationError({"detail": msg}) return result diff --git a/openslides/poll/models.py b/openslides/poll/models.py index 502cd22fa..146342814 100644 --- a/openslides/poll/models.py +++ b/openslides/poll/models.py @@ -5,7 +5,6 @@ from typing import Optional, Type from django.core.exceptions import ObjectDoesNotExist from django.core.validators import MinValueValidator from django.db import models -from django.utils.translation import ugettext as _ class BaseOption(models.Model): @@ -29,7 +28,7 @@ class BaseOption(models.Model): def get_vote_class(self): if self.vote_class is None: raise NotImplementedError( - "The option class %s has to have an attribute vote_class." % self + f"The option class {self} has to have an attribute vote_class." ) return self.vote_class @@ -64,7 +63,7 @@ class BaseVote(models.Model): return self.print_weight() def get_value(self): - return _(self.value) + return self.value def print_weight(self, raw=False): if raw: @@ -150,12 +149,15 @@ class BasePoll(models.Model): return True return False - def set_options(self, options_data=[], skip_autoupdate=False): + def set_options(self, options_data=None, skip_autoupdate=False): """ Adds new option objects to the poll. option_data: A list of arguments for the option. """ + if options_data is None: + options_data = [] + for option_data in options_data: option = self.get_option_class()(**option_data) option.poll = self @@ -224,11 +226,11 @@ def print_value(value, percent_base=0): 'undocumented' or the vote value with percent value if so. """ if value == -1: - verbose_value = _("majority") + verbose_value = "majority" elif value == -2: - verbose_value = _("undocumented") + verbose_value = "undocumented" elif value is None: - verbose_value = _("undocumented") + verbose_value = "undocumented" else: if percent_base: locale.setlocale(locale.LC_ALL, "") @@ -237,5 +239,5 @@ def print_value(value, percent_base=0): locale.format("%.1f", value * percent_base), ) else: - verbose_value = "%s" % value + verbose_value = value return verbose_value diff --git a/openslides/poll/serializers.py b/openslides/poll/serializers.py index 974fba17a..48c56ea9c 100644 --- a/openslides/poll/serializers.py +++ b/openslides/poll/serializers.py @@ -1,5 +1,3 @@ -from django.utils.translation import ugettext as _ - from ..utils.rest_api import ValidationError @@ -16,6 +14,6 @@ def default_votes_validator(data): and data[key] < -2 ): raise ValidationError( - {"detail": _("Value for {} must not be less than -2").format(key)} + {"detail": f"Value for {key} must not be less than -2"} ) return data diff --git a/openslides/users/models.py b/openslides/users/models.py index 0af1fdf5a..1aea7fef4 100644 --- a/openslides/users/models.py +++ b/openslides/users/models.py @@ -100,7 +100,7 @@ class UserManager(BaseUserManager): counter = 0 while True: counter += 1 - test_name = "%s %d" % (base_name, counter) + test_name = f"{base_name} {counter}" if not self.filter(username=test_name).exists(): generated_username = test_name break @@ -247,7 +247,7 @@ class User(RESTModelMixin, PermissionsMixin, AbstractBaseUser): helptext = " Is the email sender correct?" connection.close() raise ValidationError( - {"detail": "Error {}. Cannot send email.{}".format(error, helptext)} + {"detail": f"Error {error}. Cannot send email.{helptext}"} ) except smtplib.SMTPRecipientsRefused: pass # Run into returning false later diff --git a/openslides/users/serializers.py b/openslides/users/serializers.py index 38a9914a8..349146321 100644 --- a/openslides/users/serializers.py +++ b/openslides/users/serializers.py @@ -1,6 +1,5 @@ from django.contrib.auth.hashers import make_password from django.contrib.auth.models import Permission -from django.utils.translation import ugettext as _, ugettext_lazy from ..utils.autoupdate import inform_changed_data from ..utils.rest_api import ( @@ -47,7 +46,7 @@ class UserFullSerializer(ModelSerializer): many=True, required=False, queryset=Group.objects.exclude(pk=1), - help_text=ugettext_lazy( + help_text=( "The groups this user belongs to. A user will " "get all permissions granted to each of " "his/her groups." @@ -79,11 +78,7 @@ class UserFullSerializer(ModelSerializer): data.get("username") or data.get("first_name") or data.get("last_name") ): raise ValidationError( - { - "detail": _( - "Username, given name and surname can not all be empty." - ) - } + {"detail": "Username, given name and surname can not all be empty."} ) # Generate username. But only if it is not set and the serializer is not @@ -122,12 +117,8 @@ class PermissionRelatedField(RelatedField): """ default_error_messages = { - "incorrect_value": ugettext_lazy( - 'Incorrect value "{value}". Expected app_label.codename string.' - ), - "does_not_exist": ugettext_lazy( - 'Invalid permission "{value}". Object does not exist.' - ), + "incorrect_value": 'Incorrect value "{value}". Expected app_label.codename string.', + "does_not_exist": 'Invalid permission "{value}". Object does not exist.', } def to_representation(self, value): diff --git a/openslides/users/views.py b/openslides/users/views.py index c41323cf4..49fc7c65f 100644 --- a/openslides/users/views.py +++ b/openslides/users/views.py @@ -18,7 +18,6 @@ from django.core.exceptions import ValidationError as DjangoValidationError from django.db import transaction from django.utils.encoding import force_bytes, force_text from django.utils.http import urlsafe_base64_decode, urlsafe_base64_encode -from django.utils.translation import ugettext as _ from ..core.config import config from ..core.signals import permission_change @@ -108,7 +107,7 @@ class UserViewSet(ModelViewSet): # The user has all permissions so he may update every user. if request.data.get("is_active") is False and user == request.user: # But a user can not deactivate himself. - raise ValidationError({"detail": _("You can not deactivate yourself.")}) + raise ValidationError({"detail": "You can not deactivate yourself."}) else: # The user does not have all permissions so he may only update himself. if str(request.user.pk) != self.kwargs["pk"]: @@ -134,7 +133,7 @@ class UserViewSet(ModelViewSet): """ instance = self.get_object() if instance == self.request.user: - raise ValidationError({"detail": _("You can not delete yourself.")}) + raise ValidationError({"detail": "You can not delete yourself."}) self.perform_destroy(instance) return Response(status=status.HTTP_204_NO_CONTENT) @@ -151,9 +150,9 @@ class UserViewSet(ModelViewSet): raise ValidationError({"detail": " ".join(errors)}) user.set_password(request.data.get("password")) user.save() - return Response({"detail": _("Password successfully reset.")}) - else: - raise ValidationError({"detail": "Password has to be a string."}) + return Response({"detail": "Password successfully reset."}) + + raise ValidationError({"detail": "Password has to be a string."}) @list_route(methods=["post"]) @transaction.atomic @@ -193,9 +192,7 @@ class UserViewSet(ModelViewSet): inform_changed_data(created_users) return Response( { - "detail": _("{number} users successfully imported.").format( - number=len(created_users) - ), + "detail": f"{len(created_users)} users successfully imported.", "importedTrackIds": imported_track_ids, } ) @@ -230,13 +227,11 @@ class UserViewSet(ModelViewSet): except ConnectionRefusedError: raise ValidationError( { - "detail": "Cannot connect to SMTP server on {}:{}".format( - settings.EMAIL_HOST, settings.EMAIL_PORT - ) + "detail": f"Cannot connect to SMTP server on {settings.EMAIL_HOST}:{settings.EMAIL_PORT}" } ) - except smtplib.SMTPException as e: - raise ValidationError({"detail": "{}: {}".format(e.errno, e.strerror)}) + except smtplib.SMTPException as err: + raise ValidationError({"detail": f"{err.errno}: {err.strerror}"}) success_users = [] user_pks_without_email = [] @@ -249,8 +244,8 @@ class UserViewSet(ModelViewSet): success_users.append(user) else: user_pks_without_email.append(user.pk) - except DjangoValidationError as e: - raise ValidationError(e.message_dict) + except DjangoValidationError as err: + raise ValidationError(err.message_dict) connection.close() inform_changed_data(success_users) @@ -358,13 +353,13 @@ class GroupViewSet(ModelViewSet): new_permissions = diff(given_permissions, old_permissions) # Some permissions are added. - if len(new_permissions) > 0: + if new_permissions: elements: List[Element] = [] signal_results = permission_change.send( None, permissions=new_permissions, action="added" ) all_full_data = async_to_sync(element_cache.get_all_full_data)() - for receiver, signal_collections in signal_results: + for __, signal_collections in signal_results: for cachable in signal_collections: for full_data in all_full_data.get( cachable.get_collection_string(), {} @@ -476,11 +471,11 @@ class UserLoginView(APIView): # If the client tells that cookies are disabled, do not continue as guest (if enabled) if not self.request.data.get("cookies", True): raise ValidationError( - {"detail": _("Cookies have to be enabled to use OpenSlides.")} + {"detail": "Cookies have to be enabled to use OpenSlides."} ) form = AuthenticationForm(self.request, data=self.request.data) if not form.is_valid(): - raise ValidationError({"detail": _("Username or password is not correct.")}) + raise ValidationError({"detail": "Username or password is not correct."}) self.user = form.get_user() auth_login(self.request, self.user) return super().post(*args, **kwargs) @@ -505,13 +500,10 @@ class UserLoginView(APIView): context["info_text"] = "" else: if user.check_password("admin"): - context["info_text"] = _( - "Installation was successfully. Use {username} and " - "{password} for first login. Important: Please change " + context["info_text"] = ( + f"Installation was successfully. Use admin and " + "admin for first login. Important: Please change " "your password!" - ).format( - username="admin", - password="admin", ) else: context["info_text"] = "" @@ -537,7 +529,7 @@ class UserLogoutView(APIView): def post(self, *args, **kwargs): if not self.request.user.is_authenticated: - raise ValidationError({"detail": _("You are not authenticated.")}) + raise ValidationError({"detail": "You are not authenticated."}) auth_logout(self.request) return super().post(*args, **kwargs) @@ -588,7 +580,7 @@ class SetPasswordView(APIView): user.save() update_session_auth_hash(request, user) else: - raise ValidationError({"detail": _("Old password does not match.")}) + raise ValidationError({"detail": "Old password does not match."}) return super().post(request, *args, **kwargs) @@ -623,7 +615,7 @@ class PasswordResetView(APIView): "username": user.get_username(), } # Send a django.core.mail.EmailMessage to `to_email`. - subject = _("Password reset for {}").format(site_name) + subject = f"Password reset for {site_name}" subject = "".join(subject.splitlines()) body = self.get_email_body(**context) from_email = None # TODO: Add nice from_email here. @@ -680,13 +672,13 @@ class PasswordResetConfirmView(APIView): password = request.data.get("password") if not (uidb64 and token and password): raise ValidationError( - {"detail": _("You have to provide user_id, token and password.")} + {"detail": "You have to provide user_id, token and password."} ) user = self.get_user(uidb64) if user is None: - raise ValidationError({"detail": _("User does not exist.")}) + raise ValidationError({"detail": "User does not exist."}) if not default_token_generator.check_token(user, token): - raise ValidationError({"detail": _("Invalid token.")}) + raise ValidationError({"detail": "Invalid token."}) try: validate_password(password, user=user) except DjangoValidationError as errors: diff --git a/openslides/utils/arguments.py b/openslides/utils/arguments.py index 35a0ca426..518aca500 100644 --- a/openslides/utils/arguments.py +++ b/openslides/utils/arguments.py @@ -9,7 +9,7 @@ class OpenSlidesArguments: if not self.args: raise KeyError("Arguments are not set.") if not hasattr(self.args, key): - raise KeyError("Key '{}' is not in the OpenSlides arguments.".format(key)) + raise KeyError(f"Key '{key}' is not in the OpenSlides arguments.") return getattr(self.args, key) def get(self, key: str, default: Any) -> Any: diff --git a/openslides/utils/auth.py b/openslides/utils/auth.py index 7de638f7c..d617eddc3 100644 --- a/openslides/utils/auth.py +++ b/openslides/utils/auth.py @@ -31,8 +31,7 @@ def get_group_model() -> Model: ) except LookupError: raise ImproperlyConfigured( - "AUTH_GROUP_MODEL refers to model '%s' that has not been installed" - % settings.AUTH_GROUP_MODEL + f"AUTH_GROUP_MODEL refers to model '{settings.AUTH_GROUP_MODEL}' that has not been installed" ) @@ -69,7 +68,7 @@ async def async_has_perm(user_id: int, perm: str) -> bool: user_collection_string, user_id ) if user_data is None: - raise RuntimeError("User with id {} does not exist.".format(user_id)) + raise RuntimeError(f"User with id {user_id} does not exist.") if GROUP_ADMIN_PK in user_data["groups_id"]: # User in admin group (pk 2) grants all permissions. has_perm = True @@ -83,7 +82,7 @@ async def async_has_perm(user_id: int, perm: str) -> bool: ) if group is None: raise RuntimeError( - "User is in non existing group with id {}.".format(group_id) + f"User is in non existing group with id {group_id}." ) if perm in group["permissions"]: @@ -134,7 +133,7 @@ async def async_in_some_groups(user_id: int, groups: List[int]) -> bool: user_collection_string, user_id ) if user_data is None: - raise RuntimeError("User with id {} does not exist.".format(user_id)) + raise RuntimeError(f"User with id {user_id} does not exist.") if GROUP_ADMIN_PK in user_data["groups_id"]: # User in admin group (pk 2) grants all permissions. in_some_groups = True @@ -205,6 +204,6 @@ def user_to_user_id(user: AnyUser) -> int: user_id = user.pk else: raise TypeError( - "Unsupported type for user. User {} has type {}.".format(user, type(user)) + f"Unsupported type for user. User {user} has type {type(user)}." ) return user_id diff --git a/openslides/utils/cache.py b/openslides/utils/cache.py index d45c45e5d..34280f444 100644 --- a/openslides/utils/cache.py +++ b/openslides/utils/cache.py @@ -207,10 +207,8 @@ class ElementCache: # When change_id is lower then the lowest change_id in redis, we can # not inform the user about deleted elements. raise RuntimeError( - "change_id {} is lower then the lowest change_id in redis {}. " - "Catch this exception and rerun the method with change_id=0.".format( - change_id, lowest_change_id - ) + f"change_id {change_id} is lower then the lowest change_id in redis {lowest_change_id}. " + "Catch this exception and rerun the method with change_id=0." ) raw_changed_elements, deleted_elements = await self.cache_provider.get_data_since( @@ -270,7 +268,7 @@ class ElementCache: # Try to write a special key. # If this succeeds, there is noone else currently updating the cache. # TODO: Make a timeout. Else this could block forever - lock_name = "restricted_data_{}".format(user_id) + lock_name = f"restricted_data_{user_id}" if await self.cache_provider.set_lock(lock_name): future: asyncio.Future = asyncio.Future() self.restricted_data_cache_updater[user_id] = future @@ -375,10 +373,8 @@ class ElementCache: # When change_id is lower then the lowest change_id in redis, we can # not inform the user about deleted elements. raise RuntimeError( - "change_id {} is lower then the lowest change_id in redis {}. " - "Catch this exception and rerun the method with change_id=0.".format( - change_id, lowest_change_id - ) + f"change_id {change_id} is lower then the lowest change_id in redis {lowest_change_id}. " + "Catch this exception and rerun the method with change_id=0." ) # If another coroutine or another daphne server also updates the restricted diff --git a/openslides/utils/cache_providers.py b/openslides/utils/cache_providers.py index 854bebcc0..cfce075b1 100644 --- a/openslides/utils/cache_providers.py +++ b/openslides/utils/cache_providers.py @@ -108,7 +108,7 @@ class RedisCacheProvider: await redis.eval( "return redis.call('del', 'fake_key', unpack(redis.call('keys', ARGV[1])))", keys=[], - args=["{}*".format(self.prefix)], + args=[f"{self.prefix}*"], ) async def reset_full_cache(self, data: Dict[str, str]) -> None: @@ -123,7 +123,7 @@ class RedisCacheProvider: tr.eval( "return redis.call('del', 'fake_key', unpack(redis.call('keys', ARGV[1])))", keys=[], - args=["{}{}*".format(self.prefix, self.restricted_user_cache_key)], + args=[f"{self.prefix}{self.restricted_user_cache_key}*"], ) tr.delete(self.get_change_id_cache_key()) tr.delete(self.get_full_data_cache_key()) @@ -296,14 +296,14 @@ class RedisCacheProvider: """ # TODO: Improve lock. See: https://redis.io/topics/distlock async with get_connection() as redis: - return await redis.setnx("{}lock_{}".format(self.prefix, lock_name), 1) + return await redis.setnx(f"{self.prefix}lock_{lock_name}", 1) async def get_lock(self, lock_name: str) -> bool: """ Returns True, when the lock for the restricted_data of an user is set. Else False. """ async with get_connection() as redis: - return await redis.get("{}lock_{}".format(self.prefix, lock_name)) + return await redis.get(f"{self.prefix}lock_{lock_name}") async def del_lock(self, lock_name: str) -> None: """ @@ -311,7 +311,7 @@ class RedisCacheProvider: lock is not set. """ async with get_connection() as redis: - await redis.delete("{}lock_{}".format(self.prefix, lock_name)) + await redis.delete(f"{self.prefix}lock_{lock_name}") async def get_change_id_user(self, user_id: int) -> Optional[int]: """ diff --git a/openslides/utils/consumers.py b/openslides/utils/consumers.py index f0366ec6d..34ec38080 100644 --- a/openslides/utils/consumers.py +++ b/openslides/utils/consumers.py @@ -123,7 +123,7 @@ class SiteConsumer(ProtocollAsyncJsonWebsocketConsumer): projector_data: Dict[int, Dict[str, Any]] = {} for projector_id in self.listen_projector_ids: data = all_projector_data.get( - projector_id, {"error": "No data for projector {}".format(projector_id)} + projector_id, {"error": f"No data for projector {projector_id}"} ) new_hash = hash(str(data)) if new_hash != self.projector_hash[projector_id]: diff --git a/openslides/utils/main.py b/openslides/utils/main.py index f9e3afa39..aa3b7a98e 100644 --- a/openslides/utils/main.py +++ b/openslides/utils/main.py @@ -80,7 +80,7 @@ def get_default_settings_dir(openslides_type: str = None) -> str: elif openslides_type == WINDOWS_PORTABLE_VERSION: parent_directory = get_win32_portable_dir() else: - raise TypeError("%s is not a valid OpenSlides type." % openslides_type) + raise TypeError(f"{openslides_type} is not a valid OpenSlides type.") return os.path.join(parent_directory, "openslides") @@ -188,7 +188,7 @@ def get_default_user_data_dir(openslides_type: str) -> str: elif openslides_type == WINDOWS_PORTABLE_VERSION: default_user_data_dir = get_win32_portable_dir() else: - raise TypeError("%s is not a valid OpenSlides type." % openslides_type) + raise TypeError(f"{openslides_type} is not a valid OpenSlides type.") return default_user_data_dir @@ -298,9 +298,9 @@ def open_browser(host: str, port: int) -> None: """ if host == "0.0.0.0": # Windows does not support 0.0.0.0, so use 'localhost' instead - start_browser("http://localhost:%s" % port) + start_browser(f"http://localhost:{port}") else: - start_browser("http://%s:%s" % (host, port)) + start_browser(f"http://{host}:{port}") def start_browser(browser_url: str) -> None: diff --git a/openslides/utils/utils.py b/openslides/utils/utils.py index 56895eaa1..18ad3b89e 100644 --- a/openslides/utils/utils.py +++ b/openslides/utils/utils.py @@ -39,7 +39,7 @@ def get_element_id(collection_string: str, id: int) -> str: """ Returns a combined string from the collection_string and an id. """ - return "{}:{}".format(collection_string, id) + return f"{collection_string}:{id}" def split_element_id(element_id: Union[str, bytes]) -> Tuple[str, int]: @@ -92,8 +92,6 @@ def get_model_from_collection_string(collection_string: str) -> Type[Model]: model = _models_to_collection_string[collection_string] except KeyError: raise ValueError( - "Invalid message. A valid collection_string is missing. Got {}".format( - collection_string - ) + f"Invalid message. A valid collection_string is missing. Got {collection_string}" ) return model diff --git a/tests/example_data_generator/management/commands/create-example-data.py b/tests/example_data_generator/management/commands/create-example-data.py index a3b7f8711..6771387d6 100644 --- a/tests/example_data_generator/management/commands/create-example-data.py +++ b/tests/example_data_generator/management/commands/create-example-data.py @@ -92,32 +92,28 @@ class Command(BaseCommand): "-t", "--topics", type=int, - help="Number of topics to be created (default {}).".format(DEFAULT_NUMBER), + help=f"Number of topics to be created (default {DEFAULT_NUMBER}).", ) parser.add_argument( "-m", "--motions", type=int, - help="Number of motions to be created (default {}).".format(DEFAULT_NUMBER), + help=f"Number of motions to be created (default {DEFAULT_NUMBER}).", ) parser.add_argument( "-a", "--assignments", type=int, - help="Number of assignments to be created (default {}).".format( - DEFAULT_NUMBER - ), + help=f"Number of assignments to be created (default {DEFAULT_NUMBER}).", ) parser.add_argument( "-u", "--users", nargs=2, type=int, - help="Number of users to be created. The first number of users is " - 'added to the group "Staff" (default {}). The second number ' - "of users is not added to any group (default {}).".format( - DEFAULT_NUMBER, DEFAULT_NUMBER - ), + help=f"Number of users to be created. The first number of users is " + 'added to the group "Staff" (default {DEFAULT_NUMBER}). The second number ' + "of users is not added to any group (default {DEFAULT_NUMBER}).", ) def handle(self, *args, **options): @@ -132,7 +128,7 @@ class Command(BaseCommand): if number_of_topics is None and not options["only"]: number_of_topics = DEFAULT_NUMBER if number_of_topics is not None and number_of_topics > 0: - self.stdout.write("Start creating {} topcis ...".format(number_of_topics)) + self.stdout.write(f"Start creating {number_of_topics} topcis ...") current_topics = list(Topic.objects.values_list("id", flat=True)) new_topics = [] for i in range(number_of_topics): @@ -143,9 +139,7 @@ class Command(BaseCommand): items.append(Item(content_object=topic, type=Item.AGENDA_ITEM)) Item.objects.bulk_create(items) self.stdout.write( - self.style.SUCCESS( - "{} topcis successfully created.".format(number_of_topics) - ) + self.style.SUCCESS(f"{number_of_topics} topcis successfully created.") ) elif number_of_topics is not None and number_of_topics < 0: raise CommandError("Number for topics must not be negative.") @@ -156,7 +150,7 @@ class Command(BaseCommand): if number_of_motions is None and not options["only"]: number_of_motions = DEFAULT_NUMBER if number_of_motions is not None and number_of_motions > 0: - self.stdout.write("Start creating {} motions ...".format(number_of_motions)) + self.stdout.write(f"Start creating {number_of_motions} motions ...") text = "" for i in range(MOTION_NUMBER_OF_PARAGRAPHS): text += dedent(LOREM_IPSUM[i % 3]) @@ -164,9 +158,7 @@ class Command(BaseCommand): motion = Motion(title=get_random_string(20, self.chars), text=text) motion.save(skip_autoupdate=True) self.stdout.write( - self.style.SUCCESS( - "{} motions successfully created.".format(number_of_motions) - ) + self.style.SUCCESS(f"{number_of_motions} motions successfully created.") ) elif number_of_motions is not None and number_of_motions < 0: raise CommandError("Number for motions must not be negative.") @@ -177,9 +169,7 @@ class Command(BaseCommand): if number_of_assignments is None and not options["only"]: number_of_assignments = DEFAULT_NUMBER if number_of_assignments is not None and number_of_assignments > 0: - self.stdout.write( - "Start creating {} assignments ...".format(number_of_assignments) - ) + self.stdout.write(f"Start creating {number_of_assignments} assignments ...") current_assignments = list(Assignment.objects.values_list("id", flat=True)) new_assignments = [] for i in range(number_of_assignments): @@ -193,7 +183,7 @@ class Command(BaseCommand): Item.objects.bulk_create(items) self.stdout.write( self.style.SUCCESS( - "{} assignments successfully created.".format(number_of_assignments) + f"{number_of_assignments} assignments successfully created." ) ) elif number_of_assignments is not None and number_of_assignments < 0: @@ -212,7 +202,7 @@ class Command(BaseCommand): else: staff_users = options["users"][0] if staff_users is not None and staff_users > 0: - self.stdout.write("Start creating {} staff users ...".format(staff_users)) + self.stdout.write(f"Start creating {staff_users} staff users ...") group_staff = Group.objects.get(name="Staff") hashed_password = make_password(PASSWORD) current_users = list(User.objects.values_list("id", flat=True)) @@ -236,7 +226,7 @@ class Command(BaseCommand): user.groups.add(group_staff) self.stdout.write( self.style.SUCCESS( - "{} staff users successfully created.".format(staff_users) + f"{staff_users} staff users successfully created." ) ) elif staff_users is not None and staff_users < 0: @@ -251,9 +241,7 @@ class Command(BaseCommand): else: default_users = options["users"][1] if default_users is not None and default_users > 0: - self.stdout.write( - "Start creating {} default users ...".format(default_users) - ) + self.stdout.write(f"Start creating {default_users} default users ...") hashed_password = make_password(PASSWORD) new_users = [] for i in range(default_users): @@ -273,7 +261,7 @@ class Command(BaseCommand): else: self.stdout.write( self.style.SUCCESS( - "{} default users successfully created.".format(default_users) + f"{default_users} default users successfully created." ) ) elif default_users is not None and default_users < 0: diff --git a/tests/integration/agenda/test_models.py b/tests/integration/agenda/test_models.py index aa0d01f4f..417b9c25f 100644 --- a/tests/integration/agenda/test_models.py +++ b/tests/integration/agenda/test_models.py @@ -9,7 +9,7 @@ class TestItemManager(TestCase): Test that get_root_and_children needs only one db query. """ for i in range(10): - Topic.objects.create(title="item{}".format(i)) + Topic.objects.create(title=f"item{i}") with self.assertNumQueries(1): Item.objects.get_root_and_children() diff --git a/tests/integration/agenda/test_viewset.py b/tests/integration/agenda/test_viewset.py index bcfc68c4c..d747f063f 100644 --- a/tests/integration/agenda/test_viewset.py +++ b/tests/integration/agenda/test_viewset.py @@ -2,7 +2,6 @@ import pytest from django.contrib.auth import get_user_model from django.contrib.auth.models import Permission from django.urls import reverse -from django.utils.translation import ugettext from rest_framework import status from rest_framework.test import APIClient @@ -117,7 +116,7 @@ def test_agenda_item_db_queries(): TODO: The last three request are a bug. """ for index in range(10): - Topic.objects.create(title="topic{}".format(index)) + Topic.objects.create(title=f"topic{index}") parent = Topic.objects.create(title="parent").agenda_item child = Topic.objects.create(title="child").agenda_item child.parent = parent @@ -236,20 +235,12 @@ class ManageSpeaker(TestCase): reverse("item-manage-speaker", args=[self.item.pk]), {"speaker": "1"} ) self.assertEqual(response.status_code, 200) - self.assertEqual( - response.data.get("detail"), - ugettext("No speakers have been removed from the list of speakers."), - ) def test_remove_someone_else_invalid_data(self): response = self.client.delete( reverse("item-manage-speaker", args=[self.item.pk]), {"speaker": "invalid"} ) self.assertEqual(response.status_code, 200) - self.assertEqual( - response.data.get("detail"), - ugettext("No speakers have been removed from the list of speakers."), - ) def test_remove_someone_else_non_admin(self): admin = get_user_model().objects.get(username="admin") diff --git a/tests/integration/assignments/test_viewset.py b/tests/integration/assignments/test_viewset.py index 4474606c6..e75e365fc 100644 --- a/tests/integration/assignments/test_viewset.py +++ b/tests/integration/assignments/test_viewset.py @@ -26,7 +26,7 @@ def test_assignment_db_queries(): TODO: The last request are a bug. """ for index in range(10): - Assignment.objects.create(title="assignment{}".format(index), open_posts=1) + Assignment.objects.create(title=f"assignment{index}", open_posts=1) assert count_queries(Assignment.get_elements) == 15 diff --git a/tests/integration/core/test_viewset.py b/tests/integration/core/test_viewset.py index 792076d44..9e7082b58 100644 --- a/tests/integration/core/test_viewset.py +++ b/tests/integration/core/test_viewset.py @@ -18,7 +18,7 @@ def test_projector_db_queries(): * 1 request to get the list of the projector defaults. """ for index in range(10): - Projector.objects.create(name="Projector{}".format(index)) + Projector.objects.create(name=f"Projector{index}") assert count_queries(Projector.get_elements) == 2 @@ -43,7 +43,7 @@ def test_tag_db_queries(): * 1 requests to get the list of all tags. """ for index in range(10): - Tag.objects.create(name="tag{}".format(index)) + Tag.objects.create(name=f"tag{index}") assert count_queries(Tag.get_elements) == 1 diff --git a/tests/integration/helpers.py b/tests/integration/helpers.py index 1a4537a1c..343c56309 100644 --- a/tests/integration/helpers.py +++ b/tests/integration/helpers.py @@ -114,14 +114,10 @@ def count_queries(func, *args, **kwargs) -> int: with context: func(*args, **kwargs) - print( - "%d queries executed\nCaptured queries were:\n%s" - % ( - len(context), - "\n".join( - "%d. %s" % (i, query["sql"]) - for i, query in enumerate(context.captured_queries, start=1) - ), - ) + queries = "\n".join( + f"{i}. {query['sql']}" + for i, query in enumerate(context.captured_queries, start=1) ) + + print(f"{len(context)} queries executed\nCaptured queries were:\n{queries}") return len(context) diff --git a/tests/integration/mediafiles/test_viewset.py b/tests/integration/mediafiles/test_viewset.py index 4abe7a4b9..1ed697e4a 100644 --- a/tests/integration/mediafiles/test_viewset.py +++ b/tests/integration/mediafiles/test_viewset.py @@ -14,8 +14,8 @@ def test_mediafiles_db_queries(): """ for index in range(10): Mediafile.objects.create( - title="some_file{}".format(index), - mediafile=SimpleUploadedFile("some_file{}".format(index), b"some content."), + title=f"some_file{index}", + mediafile=SimpleUploadedFile(f"some_file{index}", b"some content."), ) assert count_queries(Mediafile.get_elements) == 1 diff --git a/tests/integration/motions/test_viewset.py b/tests/integration/motions/test_viewset.py index e1d190ffc..fb7a8c250 100644 --- a/tests/integration/motions/test_viewset.py +++ b/tests/integration/motions/test_viewset.py @@ -56,7 +56,7 @@ def test_motion_db_queries(): section2 = MotionCommentSection.objects.create(name="test_section") for index in range(10): - motion = Motion.objects.create(title="motion{}".format(index)) + motion = Motion.objects.create(title=f"motion{index}") MotionComment.objects.create( comment="test_comment", motion=motion, section=section1 @@ -66,7 +66,7 @@ def test_motion_db_queries(): ) get_user_model().objects.create_user( - username="user_{}".format(index), password="password" + username=f"user_{index}", password="password" ) # TODO: Create some polls etc. @@ -80,7 +80,7 @@ def test_category_db_queries(): * 1 requests to get the list of all categories. """ for index in range(10): - Category.objects.create(name="category{}".format(index)) + Category.objects.create(name=f"category{index}") assert count_queries(Category.get_elements) == 1 @@ -93,7 +93,7 @@ def test_statute_paragraph_db_queries(): """ for index in range(10): StatuteParagraph.objects.create( - title="statute_paragraph{}".format(index), text="text{}".format(index) + title=f"statute_paragraph{index}", text=f"text{index}" ) assert count_queries(StatuteParagraph.get_elements) == 1 @@ -475,7 +475,7 @@ class RetrieveMotion(TestCase): self.motion.create_poll() for index in range(10): get_user_model().objects.create_user( - username="user_{}".format(index), password="password" + username=f"user_{index}", password="password" ) def test_guest_state_with_required_permission_to_see(self): @@ -889,7 +889,7 @@ class ManageComments(TestCase): ) self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) self.assertEqual( - response.data["detail"], "A comment section with id 42 does not exist" + response.data["detail"], "A comment section with id 42 does not exist." ) def test_create_comment(self): @@ -1700,7 +1700,7 @@ class CreateMotionPoll(TestCase): for key in ("yes", "no", "abstain"): self.assertTrue( response.data["polls"][1][key] is None, - 'Vote value "{}" should be None.'.format(key), + f"Vote value '{key}' should be None.", ) diff --git a/tests/integration/topics/test_viewset.py b/tests/integration/topics/test_viewset.py index 2c8121ce4..c23fda18b 100644 --- a/tests/integration/topics/test_viewset.py +++ b/tests/integration/topics/test_viewset.py @@ -18,7 +18,7 @@ def test_topic_item_db_queries(): * 1 request to get the agenda item """ for index in range(10): - Topic.objects.create(title="topic-{}".format(index)) + Topic.objects.create(title=f"topic-{index}") assert count_queries(Topic.get_elements) == 3 diff --git a/tests/integration/users/test_viewset.py b/tests/integration/users/test_viewset.py index b72f478a0..faf8db452 100644 --- a/tests/integration/users/test_viewset.py +++ b/tests/integration/users/test_viewset.py @@ -21,7 +21,7 @@ def test_user_db_queries(): * 1 requests to get the list of all groups. """ for index in range(10): - User.objects.create(username="user{}".format(index)) + User.objects.create(username=f"user{index}") assert count_queries(User.get_elements) == 3 @@ -34,7 +34,7 @@ def test_group_db_queries(): * 1 request to get the permissions """ for index in range(10): - Group.objects.create(name="group{}".format(index)) + Group.objects.create(name=f"group{index}") assert count_queries(Group.get_elements) == 2 diff --git a/tests/integration/utils/test_consumers.py b/tests/integration/utils/test_consumers.py index 62d0cfc7e..fd91a3566 100644 --- a/tests/integration/utils/test_consumers.py +++ b/tests/integration/utils/test_consumers.py @@ -49,8 +49,8 @@ async def get_communicator(): def get_communicator(query_string=""): nonlocal communicator # use the outer communicator variable if query_string: - query_string = "?{}".format(query_string) - communicator = WebsocketCommunicator(application, "/ws/{}".format(query_string)) + query_string = f"?{query_string}" + communicator = WebsocketCommunicator(application, f"/ws/{query_string}") return communicator yield get_communicator @@ -211,7 +211,7 @@ async def test_with_user(): session[BACKEND_SESSION_KEY] = "django.contrib.auth.backends.ModelBackend" session.save() scn = settings.SESSION_COOKIE_NAME - cookies = (b"cookie", "{}={}".format(scn, session.session_key).encode()) + cookies = (b"cookie", f"{scn}={session.session_key}".encode()) communicator = WebsocketCommunicator(application, "/ws/", headers=[cookies]) connected, __ = await communicator.connect() diff --git a/tests/unit/utils/cache_provider.py b/tests/unit/utils/cache_provider.py index 7684c0914..917ae822b 100644 --- a/tests/unit/utils/cache_provider.py +++ b/tests/unit/utils/cache_provider.py @@ -15,7 +15,7 @@ def restrict_elements(elements: List[Dict[str, Any]]) -> List[Dict[str, Any]]: if key == "id": restricted_element[key] = value else: - restricted_element[key] = "restricted_{}".format(value) + restricted_element[key] = f"restricted_{value}" out.append(restricted_element) return out