From 4f415b6190d5803d66e615731054b301456899bf Mon Sep 17 00:00:00 2001 From: Hericode Date: Wed, 9 Jul 2025 10:31:47 +0200 Subject: [PATCH] Initial commit --- LICENSE | 661 ++++++++++++++ bin/transform_weblate.sh | 11 + embed_group.html | 81 ++ index.html | 45 + res/css/base.css | 66 ++ res/css/layout.css | 45 + res/css/module_base.css | 66 ++ res/css/module_button.css | 19 + res/css/module_date.css | 37 + res/css/module_event.css | 72 ++ res/css/module_group.css | 77 ++ res/css/module_tag.css | 15 + res/locale/ar.js | 1257 +++++++++++++++++++++++++ res/locale/be.js | 1257 +++++++++++++++++++++++++ res/locale/bn.js | 1260 ++++++++++++++++++++++++++ res/locale/ca.js | 1257 +++++++++++++++++++++++++ res/locale/cs.js | 1661 ++++++++++++++++++++++++++++++++++ res/locale/cy.js | 1257 +++++++++++++++++++++++++ res/locale/da.js | 219 +++++ res/locale/de.js | 1501 ++++++++++++++++++++++++++++++ res/locale/dsb.js | 4 + res/locale/en_US.js | 1661 ++++++++++++++++++++++++++++++++++ res/locale/eo.js | 1257 +++++++++++++++++++++++++ res/locale/es.js | 1440 +++++++++++++++++++++++++++++ res/locale/eu.js | 1257 +++++++++++++++++++++++++ res/locale/fa.js | 1265 ++++++++++++++++++++++++++ res/locale/fi.js | 1257 +++++++++++++++++++++++++ res/locale/fr_FR.js | 1655 +++++++++++++++++++++++++++++++++ res/locale/gd.js | 1340 +++++++++++++++++++++++++++ res/locale/gl.js | 1660 +++++++++++++++++++++++++++++++++ res/locale/he.js | 380 ++++++++ res/locale/hr.js | 1615 +++++++++++++++++++++++++++++++++ res/locale/hu.js | 1661 ++++++++++++++++++++++++++++++++++ res/locale/id.js | 1268 ++++++++++++++++++++++++++ res/locale/it.js | 1658 +++++++++++++++++++++++++++++++++ res/locale/ja.js | 1293 ++++++++++++++++++++++++++ res/locale/kab.js | 1257 +++++++++++++++++++++++++ res/locale/kn.js | 1257 +++++++++++++++++++++++++ res/locale/ko.js | 38 + res/locale/nl.js | 1547 +++++++++++++++++++++++++++++++ res/locale/nn.js | 1443 +++++++++++++++++++++++++++++ res/locale/oc.js | 1257 +++++++++++++++++++++++++ res/locale/pl.js | 1647 +++++++++++++++++++++++++++++++++ res/locale/pt.js | 1257 +++++++++++++++++++++++++ res/locale/pt_BR.js | 1258 +++++++++++++++++++++++++ res/locale/ru.js | 1257 +++++++++++++++++++++++++ res/locale/sl.js | 1257 +++++++++++++++++++++++++ res/locale/sv.js | 1641 +++++++++++++++++++++++++++++++++ res/locale/th.js | 1 + res/locale/tr.js | 208 +++++ res/locale/tt.js | 3 + res/locale/zh_Hans.js | 1452 +++++++++++++++++++++++++++++ res/locale/zh_Hant.js | 1296 ++++++++++++++++++++++++++ src/context.js | 190 ++++ src/global.js | 89 ++ src/model/event.js | 128 +++ src/model/group.js | 51 ++ src/model/host.js | 25 + src/model/user.js | 81 ++ src/pages/page_event.js | 24 + src/pages/page_event_edit.js | 37 + src/pages/page_group.js | 31 + src/pages/page_index.js | 121 +++ src/pages/page_logout.js | 26 + src/pages/page_user.js | 23 + src/request/req_event.js | 185 ++++ src/request/req_group.js | 261 ++++++ src/request/req_host.js | 226 +++++ src/request/req_login.js | 197 ++++ src/request/req_meta.js | 226 +++++ src/route.js | 35 + src/widgets/base_view.js | 214 +++++ src/widgets/button_view.js | 9 + src/widgets/date_view.js | 50 + src/widgets/event_view.js | 259 ++++++ src/widgets/group_view.js | 100 ++ src/widgets/tag_tpl.js | 9 + 77 files changed, 52208 insertions(+) create mode 100644 LICENSE create mode 100644 bin/transform_weblate.sh create mode 100644 embed_group.html create mode 100644 index.html create mode 100644 res/css/base.css create mode 100644 res/css/layout.css create mode 100644 res/css/module_base.css create mode 100644 res/css/module_button.css create mode 100644 res/css/module_date.css create mode 100644 res/css/module_event.css create mode 100644 res/css/module_group.css create mode 100644 res/css/module_tag.css create mode 100644 res/locale/ar.js create mode 100644 res/locale/be.js create mode 100644 res/locale/bn.js create mode 100644 res/locale/ca.js create mode 100644 res/locale/cs.js create mode 100644 res/locale/cy.js create mode 100644 res/locale/da.js create mode 100644 res/locale/de.js create mode 100644 res/locale/dsb.js create mode 100644 res/locale/en_US.js create mode 100644 res/locale/eo.js create mode 100644 res/locale/es.js create mode 100644 res/locale/eu.js create mode 100644 res/locale/fa.js create mode 100644 res/locale/fi.js create mode 100644 res/locale/fr_FR.js create mode 100644 res/locale/gd.js create mode 100644 res/locale/gl.js create mode 100644 res/locale/he.js create mode 100644 res/locale/hr.js create mode 100644 res/locale/hu.js create mode 100644 res/locale/id.js create mode 100644 res/locale/it.js create mode 100644 res/locale/ja.js create mode 100644 res/locale/kab.js create mode 100644 res/locale/kn.js create mode 100644 res/locale/ko.js create mode 100644 res/locale/nl.js create mode 100644 res/locale/nn.js create mode 100644 res/locale/oc.js create mode 100644 res/locale/pl.js create mode 100644 res/locale/pt.js create mode 100644 res/locale/pt_BR.js create mode 100644 res/locale/ru.js create mode 100644 res/locale/sl.js create mode 100644 res/locale/sv.js create mode 100644 res/locale/th.js create mode 100644 res/locale/tr.js create mode 100644 res/locale/tt.js create mode 100644 res/locale/zh_Hans.js create mode 100644 res/locale/zh_Hant.js create mode 100644 src/context.js create mode 100644 src/global.js create mode 100644 src/model/event.js create mode 100644 src/model/group.js create mode 100644 src/model/host.js create mode 100644 src/model/user.js create mode 100644 src/pages/page_event.js create mode 100644 src/pages/page_event_edit.js create mode 100644 src/pages/page_group.js create mode 100644 src/pages/page_index.js create mode 100644 src/pages/page_logout.js create mode 100644 src/pages/page_user.js create mode 100644 src/request/req_event.js create mode 100644 src/request/req_group.js create mode 100644 src/request/req_host.js create mode 100644 src/request/req_login.js create mode 100644 src/request/req_meta.js create mode 100644 src/route.js create mode 100644 src/widgets/base_view.js create mode 100644 src/widgets/button_view.js create mode 100644 src/widgets/date_view.js create mode 100644 src/widgets/event_view.js create mode 100644 src/widgets/group_view.js create mode 100644 src/widgets/tag_tpl.js diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..db9fb08 --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + Mobilizon + Copyright (C) 2018 - 2024 Framasoft + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/bin/transform_weblate.sh b/bin/transform_weblate.sh new file mode 100644 index 0000000..bd2e2b9 --- /dev/null +++ b/bin/transform_weblate.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# +# Transform Weblate JSON files to js files +# +# 1) download the translation files as a zip from +# https://weblate.framasoft.org/projects/mobilizon/ +# 2) unzip the archive, copy all frontend/src/i18n/ to res/locale +# 3) run this script from the base directory + +find ./res/locale -name *.json -exec sh -c 'sed -e "1s/^/CTX.setMessages\(/" -e "\$s/\$/);/" $0 > ./res/locale/$(basename $0 .json).js' {} \; +rm ./res/locale/*.json diff --git a/embed_group.html b/embed_group.html new file mode 100644 index 0000000..75e9968 --- /dev/null +++ b/embed_group.html @@ -0,0 +1,81 @@ + + + + +Mobilistache, Mobilizon with a mustache + + + + + + + + + + + + + + + + + + + + + + diff --git a/index.html b/index.html new file mode 100644 index 0000000..9eb5e4a --- /dev/null +++ b/index.html @@ -0,0 +1,45 @@ + + + + +Mobilistache, Mobilizon with a mustache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/res/css/base.css b/res/css/base.css new file mode 100644 index 0000000..9487cd5 --- /dev/null +++ b/res/css/base.css @@ -0,0 +1,66 @@ +/* + * Base rules + * See smacss.com + */ + +body { + background-color: #27272a; + color: #d1d5db; + line-height: 1.5; +} + +h1, h2, h3, h4, h5 { + color: #ffffff; +} +h1 { + font-size: xx-large; + font-weight: bold; +} +h2 { + font-size: x-large; + font-weight: bold; +} +h3 { + font-size: large; + font-weight: bold; +} + +nav { + display: flex; +} + +a { + color: #ffffff; +} + +menu { + padding: 0px; +} + +button > svg { + display: block; +} + +fieldset { + margin-bottom: 2rem; +} +label { + font-weight: bold; +} +input[type=text], input[type=datetime-local], +input[type=password], +select, +textarea { + background-color: #3f3f46; + color: #d1d5db; + border-radius: 0.2rem; + border-width: 0.1rem; + border-color: #e5e7eb; + width: 100%; + padding: 0.5rem 0.75rem; + box-sizing: border-box; +} +input:focus, select:focus, textarea:focus { + outline: 0.2rem solid #3b82f6; +} + diff --git a/res/css/layout.css b/res/css/layout.css new file mode 100644 index 0000000..ec189ae --- /dev/null +++ b/res/css/layout.css @@ -0,0 +1,45 @@ +/* + * Layout rules + * See smacss.com + */ + +.l-section { + max-width: 70rem; + flex-grow: 1; +} + +.l-subsection { + max-width: 25rem; + flex-grow: 1; + padding: 0.5rem; +} + +.l-nobullet { + list-style-type: none; + padding: 0px; +} + +.l-centered { + margin: auto; +} +.l-centering > * { + margin-left: auto; + margin-right: auto; +} + +.l-flexcenter { + display: flex; + align-items: center; + justify-content: space-evenly; + column-gap: 0.4rem; +} +.l-flexjustify { + display: flex; + align-items: center; + justify-content: space-between; + column-gap: 0.4rem; +} + +.l-flexfill { + flex-grow: 1; +} diff --git a/res/css/module_base.css b/res/css/module_base.css new file mode 100644 index 0000000..8b9df95 --- /dev/null +++ b/res/css/module_base.css @@ -0,0 +1,66 @@ +.header { + background-color: #18181b; + padding: 0.6rem 1rem; +} + +.avatar { + object-fit: cover; + object-position: 50% 50%; + max-width: 100%; + max-height: 100%; + border-radius: 100%; +} + +.notice { + font-size: small; + font-style: italic; + font-weight: normal; +} + +.form-field, +.form-control { + margin-top: 0.5rem; +} + +.form-field > label, +.form-field > .label-like { + display: block; +} +.form-field.form-field-checkbox > label { + display: inline-block; +} +.form-field > input { + display: inline-block; +} +.form-field > .input-like { + display: inline-block; + width: 100%; + box-sizing: border-box; + position: relative; +} +.form-field-short { + max-width: 30rem; +} + +.input-withicon { + padding-right: 2rem; +} +.input-icon { + position: absolute; + right: 0.5rem; + height: 100%; + display: inline-flex; + align-items: center; + justify-content: center; +} +.input-icon > button { + background-color: transparent; + border: 0px; + padding: 0px; +} + +.form-control { + display: flex; + flex-direction: row; + justify-content: flex-end; +} diff --git a/res/css/module_button.css b/res/css/module_button.css new file mode 100644 index 0000000..9c8851e --- /dev/null +++ b/res/css/module_button.css @@ -0,0 +1,19 @@ +.btn { + border-radius: 0.25rem; + padding: 0.5rem 1rem; + text-decoration: none; + border-width: 0px; + cursor: pointer; + box-sizing: border-box; +} + +.btn-nav { + color: #ffffff; + background-color: #1e7b9d; +} +.btn-nav:hover { + background-color: #155668; +} +.btn-nav:active { + box-shadow: 0px 0px 0px 0.25rem #93c5fd; +} diff --git a/res/css/module_date.css b/res/css/module_date.css new file mode 100644 index 0000000..44d7e48 --- /dev/null +++ b/res/css/module_date.css @@ -0,0 +1,37 @@ +/* + * Date modules + * See smacss.com, src/widgets/date_tpl.js + */ +.date-icon { + padding: 0.1rem 0.5rem; + display: flex; + flex-grow: 0; + flex-direction: column; + text-align: center; + border-top: 0.5rem solid #f3425f; + border-radius: 0.5rem; + background-color: #374151; + font-size: small; + font-variant: small-caps; + color: #ffffff; +} + +.date-icon-short { + line-height: 1.25; + min-width: 2.5rem; +} + +.date-icon-full > div { + display: flex; + flex-direction: row; + align-items: baseline; + justify-content: center; + column-gap: 0.3rem; +} +.date-icon-date { + font-weight: bold; + font-size: large; +} +.date-icon-time { + font-weight: bold; +} diff --git a/res/css/module_event.css b/res/css/module_event.css new file mode 100644 index 0000000..3245ddf --- /dev/null +++ b/res/css/module_event.css @@ -0,0 +1,72 @@ +/* + * Event list item module + * See smacss.com, src/widgets/event_view.js + */ + +.event-banner { + max-height: 20rem; + width: 100%; + display: flex; + justify-content: center; +} +.event-banner > img { + max-width: 100%; + max-height: 100%; + border-radius: 0.5rem; + object-fit: contain; +} + +.event-listitem { + display: flex; + align-items: center; + border-radius: 0.5rem; + background-color: #474467; + margin-top: 1rem; + margin-bottom: 1rem; + padding: 0.5rem; + max-width: 50rem; +} + +.event-listitem-banner { + width: 12rem; + min-width: 12rem; + height: 10rem; + display: flex; + align-items: center; + justify-content: center; +} +.event-listitem-banner > img { + max-width: 100%; + max-height: 100%; +} + +.event-listitem-content { + padding: 0.5rem; + flex-grow: 1; +} + +.event-listitem header { + display: flex; + align-items: flex-start; + column-gap: 1rem; +} + +.event-listitem h1, +.event-listitem h2, +.event-listitem h3, +.event-listitem h4, +.event-listitem h5, +.event-listitem h6 { + font-size: large; + margin-top: 0px; +} + +.event-listitem nav { + justify-content: flex-end; +} + +.event-detail > header { + display: flex; + flex-direction: row; + column-gap: 1rem; +} diff --git a/res/css/module_group.css b/res/css/module_group.css new file mode 100644 index 0000000..aba3e24 --- /dev/null +++ b/res/css/module_group.css @@ -0,0 +1,77 @@ +.group-banner { + display: flex; + flex-direction: column; + align-items: center; +} + +.group-banner-background { + height: 30vh; + width: 100%; + object-fit: cover; + object-position: 50% 50%; +} + +.group-banner > div { + position: relative; + margin-top: 1rem; + display: flex; + flex-direction: column; + align-items: center; +} + +.group-banner-avatar { + position: absolute; + width: 8rem; + height: 8rem; + top: -7rem; +} + +.group-listitem { + display: flex; + flex-direction: row; + align-items: center; + column-gap: 0.5rem; + border-radius: 0.5rem; + background-color: #474467; + margin-top: 1rem; + margin-bottom: 1rem; + padding: 0.5rem; + max-width: 50rem; +} + +.group-listitem-avatar { + width: 4rem; + height: 4rem; +} + +.group-listitem-content { + display: flex; + flex-direction: column; + justify-content: space-evenly; + flex-grow: 1; +} + +.event-listitem header { + display: flex; + align-items: flex-start; + column-gap: 1rem; +} + +.group-listitem h1, +.group-listitem h2, +.group-listitem h3, +.group-listitem h4, +.group-listitem h5, +.group-listitem h6 { + font-size: large; + margin: 0px; + +} + +.group-listitem-handle { + font-size: small; +} + +.group-listitem nav { + justify-content: flex-end; +} diff --git a/res/css/module_tag.css b/res/css/module_tag.css new file mode 100644 index 0000000..5c2fbb8 --- /dev/null +++ b/res/css/module_tag.css @@ -0,0 +1,15 @@ + + +.taglist { + display: flex; + flex-direction: row; + flex-wrap: wrap; + column-gap: 0.3rem; +} +.tag { + padding: 0.3rem; + border-radius: 0.2rem; + background-color: #e6e4f4; + font-size: small; + color: #3c416e; +} \ No newline at end of file diff --git a/res/locale/ar.js b/res/locale/ar.js new file mode 100644 index 0000000..4b73782 --- /dev/null +++ b/res/locale/ar.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "", + "+ Create a post": "", + "+ Create an event": "", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "", + "A validation email was sent to {email}": "لقد تم إرسال رسالة إلكترونية للتأكيد إلى {email}", + "API": "", + "Abandon editing": "", + "About": "عن", + "About Mobilizon": "عن Mobilizon", + "About anonymous participation": "", + "About instance": "", + "About this event": "عن هذه الفعالية", + "About this instance": "عن مثيل الخادم هذا", + "About {instance}": "", + "Accept": "", + "Accepted": "تم قبوله", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "الحساب", + "Account settings": "إعدادات الحساب", + "Actions": "الإجراءات", + "Activate browser push notifications": "", + "Activated": "", + "Active": "", + "Activity": "", + "Actor": "", + "Add": "إضافة", + "Add / Remove…": "", + "Add a contact": "", + "Add a new post": "", + "Add a note": "إضافة ملاحظة", + "Add a todo": "", + "Add an address": "إضافة عنوان", + "Add an instance": "إضافة مثيل خادم", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "أضف بعض الوسوم", + "Add to my calendar": "أضفها إلى تقويمي", + "Additional comments": "تعليقات إضافية", + "Admin": "المدير", + "Admin dashboard": "", + "Admin settings": "إعدادات المدير", + "Admin settings successfully saved.": "تم حفظ إعدادات المدير بنجاح.", + "Administration": "الإدارة", + "Administrator": "", + "All activities": "", + "All good, let's continue!": "", + "All the places have already been taken": "", + "Allow all comments from users with accounts": "", + "Allow registrations": "السماح بإنشاء حسابات", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "مشارِك مجهول", + "Anonymous participants will be asked to confirm their participation through e-mail.": "", + "Anonymous participations": "المشاركات المجهولة", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "", + "Are you sure you want to cancel your participation at event \"{title}\"?": "هل أنت متأكد مِن أنك تريد الغاء مشاركتك في فعالية \"{title}\"؟", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "الصورة الرمزية", + "Back to group list": "", + "Back to previous page": "العودة إلى الصفحة السابقة", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "", + "Before you can login, you need to click on the link inside it to validate your account.": "", + "Begins on": "", + "Big Blue Button": "", + "Bold": "", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "", + "By {group}": "", + "By {username}": "حسب {username}", + "Can be an email or a link, or just plain text.": "", + "Cancel": "الغاء", + "Cancel anonymous participation": "", + "Cancel creation": "إلغاء الإنشاء", + "Cancel discussion title edition": "", + "Cancel edition": "إلغاء التحرير", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "إلغاء طلب مشارَكتي…", + "Cancel my participation…": "إلغاء مشارَكتي…", + "Cancelled": "", + "Cancelled: Won't happen": "تم إلغاؤها : لن تُجرى", + "Change": "تعديل", + "Change my email": "تغيير عنوان بريدي الإلكتروني", + "Change my identity…": "تغيير هويتي…", + "Change my password": "تغيير كلمتي السرية", + "Change timezone": "", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "", + "Clear": "امسح", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "", + "Click to upload": "اضغط للتحميل", + "Close": "", + "Close comments for all (except for admins)": "", + "Closed": "", + "Comment body": "", + "Comment deleted": "تم حذف التعليق", + "Comment text can't be empty": "", + "Comments": "التعليقات", + "Comments are closed for everybody else.": "", + "Confirm my participation": "تأكيد مشاركتي", + "Confirm my particpation": "تأكيد مشاركتي", + "Confirm participation": "", + "Confirmed": "", + "Confirmed at": "", + "Confirmed: Will happen": "مؤكّدة : سيتمّ إجراؤها", + "Congratulations, your account is now created!": "", + "Contact": "", + "Continue editing": "مواصلة التحرير", + "Cookies and Local storage": "", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "البلد", + "Create": "انشاء", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "", + "Create a new event": "انشاء فعالية جديدة", + "Create a new group": "إنشاء فريق جديد", + "Create a new identity": "إنشاء هوية جديدة", + "Create a new list": "أنشئ قائمة جديدة", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "", + "Create discussion": "", + "Create event": "", + "Create group": "إنشاء فريق", + "Create identity": "", + "Create my event": "انشئ فعاليتي", + "Create my group": "انشئ فريقي", + "Create my profile": "انشئ ملفي التعريفي", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "", + "Current page": "الصفحة الحالية", + "Custom": "مخصص", + "Custom URL": "", + "Custom text": "نص مخصص", + "Daily email summary": "", + "Dashboard": "لوح التحكم", + "Date": "التاريخ", + "Date and time": "", + "Date and time settings": "إعدادات التاريخ والوقت", + "Date parameters": "إعدادات التاريخ", + "Decline": "", + "Decrease": "", + "Default": "افتراضي", + "Default Mobilizon privacy policy": "", + "Default Mobilizon terms": "", + "Delete": "حذف", + "Delete account": "حذف الحساب", + "Delete conversation": "", + "Delete discussion": "", + "Delete event": "حذف الفعالية", + "Delete everything": "حذف الكل", + "Delete group": "", + "Delete my account": "احذف حسابي", + "Delete post": "", + "Delete this discussion": "", + "Delete this identity": "حذف هذه الهوية", + "Delete your identity": "احذف هويتك", + "Delete {eventTitle}": "احذف {eventTitle}", + "Delete {preferredUsername}": "حذف {preferredUsername}", + "Deleting comment": "جارٍ حذف التعليق", + "Deleting event": "حذف الفعالية", + "Deleting my account will delete all of my identities.": "سيؤدي حذف حسابي إلى حذف كافة هوياتي", + "Deleting your Mobilizon account": "حذف حساب Mobilizon الخاص بك", + "Demote": "", + "Description": "الوصف", + "Details": "", + "Didn't receive the instructions?": "", + "Disabled": "", + "Discussions": "", + "Discussions list": "", + "Display name": "الإسم المعروض", + "Display participation price": "عرض سعر المشارَكة", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "النطاق", + "Draft": "مسودة", + "Drafts": "المسودات", + "Due on": "", + "Duplicate": "", + "Edit": "تحرير", + "Edit post": "", + "Edit profile {profile}": "", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "مثال: تونس ، رقص ، شطرنج…", + "Either on the {instance} instance or on another instance.": "", + "Either the account is already validated, either the validation token is incorrect.": "", + "Either the email has already been changed, either the validation token is incorrect.": "", + "Either the participation request has already been validated, either the validation token is incorrect.": "", + "Element title": "", + "Element value": "", + "Email": "البريد الإلكتروني", + "Email address": "", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "", + "Ends on…": "ينتهي في…", + "Enter the link URL": "ادخل عنوان الرابط", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "", + "Error details copied!": "", + "Error message": "", + "Error stacktrace": "", + "Error while changing email": "", + "Error while loading the preview": "", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "خطأ أثناء تأكيد الحساب", + "Error while validating participation request": "", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "فعالية", + "Event URL": "", + "Event already passed": "", + "Event cancelled": "أُلغِيَت الفعالية", + "Event creation": "إنشاء الفعاليات", + "Event description body": "", + "Event edition": "تعديل الفعاليات", + "Event list": "قائمة الفعاليات", + "Event metadata": "", + "Event page settings": "إعدادات صفحة الفعالية", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "في انتظار تأكيد الفعالية", + "Event {eventTitle} deleted": "", + "Event {eventTitle} reported": "", + "Events": "الفعاليات", + "Events nearby": "", + "Events tagged with {tag}": "", + "Everything": "", + "Ex: mobilizon.fr": "مثال : mobilizon.fr", + "Ex: someone@mobilizon.org": "", + "Explore": "استكشاف", + "Explore events": "", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "", + "Featured events": "الفعاليات على الأولى", + "Federated Group Name": "", + "Federation": "الفديرالية", + "Fediverse account": "", + "Fetch more": "", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "البحث عن عنوان", + "Find an instance": "البحث عن مثيل خادم", + "Find another instance": "", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "", + "Followers": "المتابِعون", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "المتابَعون", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "مثال : لندن، تايكواندو، معمار…", + "Forgot your password ?": "هل نسيت كلمتك السرية؟", + "Forgot your password?": "", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "بداية مِن {startDate} at {startTime} إلى غاية {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "مِن {startDate} على {startTime} إلى غاية {endDate} على {endTime}", + "From the {startDate} to the {endDate}": "بداية مِن {startDate} إلى غاية {endDate}", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "إلتقاء ⋅ تنظيم ⋅ حشد", + "General": "العامة", + "General information": "معلومات عامة", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "جارٍ الحصول على الموقع", + "Getting there": "", + "Glossary": "", + "Go": "هيل بنا", + "Go to the event page": "", + "Google Meet": "", + "Group": "", + "Group Followers": "", + "Group Members": "", + "Group URL": "", + "Group activity": "", + "Group address": "", + "Group description body": "", + "Group display name": "", + "Group name": "اسم الفريق", + "Group profiles": "", + "Group settings": "", + "Group settings saved": "", + "Group short description": "", + "Group visibility": "", + "Group {displayName} created": "تم إنشاء الفريق {displayName}", + "Group {groupTitle} reported": "", + "Groups": "الفِرَق", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "الصورة على الصفحة الأولى", + "Hide replies": "اخفاء الردود", + "Home": "", + "Home to {number} users": "", + "Homepage": "", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "أوافق على {instanceRules} و على {termsOfService}", + "I create an identity": "أنشيء هوية", + "I don't have a Mobilizon account": "ليس لدي حساب Mobilizon", + "I have a Mobilizon account": "عندي حساب Mobilizon", + "I have an account on another Mobilizon instance.": "لدي حساب على مثيل خادم آخر لـ Mobilizon", + "I participate": "أشارِك", + "I want to allow people to participate without an account.": "", + "I want to approve every participation request": "أريد أن أوافق على كل طلب مشاركة", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "", + "Identity {displayName} created": "تم إنشاء الهوية {displayName}", + "Identity {displayName} deleted": "تم حذف هذه الهوية {displayName}", + "Identity {displayName} updated": "تم تحديث الهوية {displayName}", + "If allowed by organizer": "", + "If an account with this email exists, we just sent another confirmation email to {email}": "", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "", + "Instance Long Description": "", + "Instance Name": "اسم مثيل الخادم", + "Instance Privacy Policy": "", + "Instance Privacy Policy Source": "", + "Instance Privacy Policy URL": "", + "Instance Rules": "", + "Instance Short Description": "", + "Instance Slogan": "", + "Instance Terms": "الشروط العامة لمثيل الخادم", + "Instance Terms Source": "", + "Instance Terms URL": "", + "Instance administrator": "", + "Instance configuration": "", + "Instance feeds": "", + "Instance languages": "", + "Instance rules": "", + "Instance settings": "إعدادات مثيل الخادم", + "Instances": "مثيلات الخوادم", + "Instances following you": "", + "Instances you follow": "", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "دعوة عضو جديد", + "Invite member": "", + "Invited": "", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "", + "Join group": "", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "", + "Language": "اللغة", + "Last IP adress": "", + "Last group created": "", + "Last published event": "آخِر فعالية تم نشرها", + "Last published events": "", + "Last sign-in": "", + "Last week": "الأسبوع الماضي", + "Latest posts": "", + "Learn more": "معرفة المزيد", + "Learn more about Mobilizon": "معرفة المزيد عن Mobilizon", + "Learn more about {instance}": "", + "Leave": "", + "Leave event": "إلغاء مشاركتي في الفعالية", + "Leave group": "", + "Leaving event \"{title}\"": "إلغاء مشاركتي في الفعالية \"{title}\"", + "Legal": "", + "Let's define a few settings": "", + "License": "الرخصة", + "Limited number of places": "عدد الأماكن محدود", + "List title": "", + "Live": "", + "Load more": "تحميل المزيد", + "Load more activities": "", + "Loading comments…": "", + "Local": "", + "Local time ({timezone})": "", + "Locality": "البلدية", + "Location": "", + "Log in": "لِج", + "Log out": "الخروج", + "Login": "لِج", + "Login on Mobilizon!": "الولوج إلى Mobilizon!", + "Login on {instance}": "الولوج على {instance}", + "Login status": "حالة الولوج", + "Main languages you/your moderators speak": "", + "Manage participations": "إدارة المشارَكات", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "", + "Member": "", + "Members": "الأعضاء", + "Members-only post": "", + "Mentions": "", + "Message": "رسالة", + "Microsoft Teams": "", + "Mobilizon": "", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "", + "Moderated comments (shown after approval)": "", + "Moderation": "الإشراف", + "Moderation log": "سِجِل الإشراف", + "Moderation logs": "", + "Moderator": "", + "Move": "", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "حسابي", + "My events": "فعالياتي", + "My groups": "", + "My identities": "هوياتي", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "الإسم", + "Navigated to {pageTitle}": "", + "New discussion": "محادثة جديدة", + "New email": "العنوان الجديد للبريد الإلكتروني", + "New folder": "مجلد جديد", + "New link": "رابط جديد", + "New members": "", + "New note": "ملاحظة جديدة", + "New password": "الكلمة السرية الجديدة", + "New post": "", + "New profile": "ملف تعريفي جديد", + "Next": "", + "Next month": "", + "Next page": "الصفحة التالية", + "Next week": "", + "No address defined": "لم يتم تحديد أي عنوان", + "No closed reports yet": "", + "No comment": "ليس هناك تعليقات", + "No comments yet": "ليس هناك أية تعليقات بعدُ", + "No discussions yet": "", + "No end date": "مِن دون تاريخ نهاية", + "No events found": "لم يتم العثور على أية فعالية", + "No follower matches the filters": "", + "No group found": "لم يتم العثور على أي فريق", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "لم يتم العثور على أي فريق", + "No information": "", + "No instance follows your instance yet.": "", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "", + "No member matches the filters": "", + "No members found": "", + "No memberships found": "", + "No message": "ليس هناك رسائل", + "No moderation logs yet": "", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "", + "No open reports yet": "", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "", + "No posts yet": "", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "ليس هناك أية نتيجة لِـ \"{queryText}\"", + "No results for {search}": "", + "No rules defined yet.": "", + "None": "", + "Not accessible with a wheelchair": "", + "Not approved": "", + "Not confirmed": "", + "Notes": "الملاحظات", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "", + "Notifications": "", + "Notifications for manually approved participations to an event": "", + "Notify participants": "", + "Now, create your first profile:": "", + "Number of places": "عدد الأماكن", + "OK": "حسنًا", + "Old password": "الكلمة السرية القديمة", + "On {date}": "يوم {date}", + "On {date} ending at {endTime}": "يوم {date} يتنهي على {endTime}", + "On {date} from {startTime} to {endTime}": "يوم {date} مِن {startTime} إلى غاية {endTime}", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "", + "Open": "مفتوح", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Opened reports": "", + "Or": "أو", + "Ordered list": "", + "Organized": "", + "Organized by": "", + "Organized by {name}": "يُنظّمُها {name}", + "Organizer": "المُنظِّم", + "Organizer notifications": "", + "Organizers": "المنظمون·ات", + "Other": "", + "Other actions": "", + "Other notification options:": "", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "الصفحة", + "Page limited to my group (asks for auth)": "", + "Page not found": "الصفحة غير موجودة", + "Parent folder": "", + "Partially accessible with a wheelchair": "", + "Participant": "مشارِك·ة", + "Participants": "المُشارِكون", + "Participate": "شارِك", + "Participate using your email address": "", + "Participation approval": "تأكيد المشاركات", + "Participation confirmation": "تأكيد مشاركتك", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "الكلمة السرية", + "Password (confirmation)": "الكلمة السرية (تأكيد)", + "Password reset": "تصفير الكلمة السرية", + "Past events": "الفعاليات المُنصرمة", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "اختر هوية", + "Pick an instance": "", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "", + "Please do not use it in any real way.": "", + "Please enter your password to confirm this action.": "", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "", + "Post": "", + "Post URL": "", + "Post a comment": "إضافة تعليق", + "Post a reply": "إضافة ردّ", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "الرمز البريدي", + "Posts": "", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "", + "Preferences": "التفضيلات", + "Previous": "", + "Previous month": "", + "Previous page": "الصفحة السابقة", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "شروط الخصوصية", + "Privacy policy": "", + "Private event": "فعالية خاصة", + "Private feeds": "", + "Profile": "", + "Profile feeds": "", + "Profiles": "الملفات التعريفية", + "Profiles and federation": "", + "Promote": "", + "Public": "", + "Public RSS/Atom Feed": "", + "Public comment moderation": "الإشراف على التعليقات العمومية", + "Public event": "فعالية للعامة", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "", + "Publish": "انشرها", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "", + "Radius": "", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "المنطقة", + "Register": "إنشاء حساب", + "Register an account on {instanceName}!": "", + "Register on this instance": "", + "Registration is allowed, anyone can register.": "", + "Registration is closed.": "", + "Registration is currently closed.": "التسجيلات مُغلقة حاليا.", + "Registrations": "", + "Registrations are restricted by allowlisting.": "", + "Reject": "رفض", + "Reject member": "", + "Rejected": "", + "Remember my participation in this browser": "", + "Remove": "", + "Remove link": "", + "Rename": "", + "Rename resource": "", + "Reopen": "", + "Replay": "", + "Reply": "رد", + "Report": "أبلغ", + "Report #{reportNumber}": "", + "Report this comment": "الإبلاغ عن هذا التعليق", + "Report this event": "الإبلاغ عن هذه الفعالية", + "Report this group": "", + "Report this post": "", + "Reported": "م الإبلاغ عنه", + "Reported by": "أبلغ عنه", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "", + "Reported group": "", + "Reported identity": "", + "Reports": "التقارير", + "Reports list": "", + "Request for participation confirmation sent": "", + "Resend confirmation email": "إعادة ارسال بريد التأكيد", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "صفّر كلمتي السرية", + "Reset password": "", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "", + "Restricted": "", + "Return to the group page": "", + "Right now": "", + "Role": "الدور", + "Rules": "", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "", + "Save": "حفظ", + "Save draft": "حفظ المسودة", + "Schedule": "", + "Search": "البحث", + "Search events, groups, etc.": "البحث عن فعاليات أو فِرق إلخ.", + "Searching…": "البحث جارٍ…", + "Select a language": "اختر لغة", + "Select a radius": "", + "Select a timezone": "", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "", + "Send the report": "ارسال التقرير", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "الإعدادات", + "Share": "", + "Share this event": "شارك الفعالية", + "Share this group": "", + "Share this post": "", + "Short bio": "", + "Show map": "اعرض الخريطة", + "Show me where I am": "", + "Show remaining number of places": "عرض الأماكن المتبقيّة", + "Show the time when the event begins": "", + "Show the time when the event ends": "", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "", + "Sign up": "التسجيل", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "تبدأ في…", + "Status": "الحالة", + "Street": "شارع", + "Submit": "", + "Subtitles": "", + "Suspend": "", + "Suspend group": "", + "Suspended": "", + "Tag search": "", + "Task lists": "", + "Technical details": "", + "Tentative": "", + "Tentative: Will be confirmed later": "مؤقتة: سيتم تأكيدها لاحقًا", + "Terms": "شروط الإستخدام", + "Terms of service": "شروط الإستخدام", + "Text": "", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "تم تحديث مسودّة الفعالية", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "تم إنشاء الفعالية كمسودّة", + "The event has been published": "تم نشر الفعالية", + "The event has been updated": "تم تحديث الفعالية", + "The event has been updated and published": "تم تحديث الفعالية ونشرها", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "", + "The page you're looking for doesn't exist.": "الصفحة التي تبحث عنها غير موجودة.", + "The password was successfully changed": "تم تعديل الكلمة السرية بنجاح", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no discussions yet": "", + "These events may interest you": "قد تهُمّك هذه الفعاليات", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "", + "This event has been cancelled.": "", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "", + "This weekend": "", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "", + "Timezone detected as {timezone}.": "", + "Title": "العنوان", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "", + "To create and manage your events": "", + "To create or join an group and start organizing with other people": "", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "", + "Today": "", + "Tomorrow": "", + "Tools": "", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "النوع", + "Type or select a date…": "", + "URL": "", + "URL copied to clipboard": "", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "مجهول", + "Unknown actor": "", + "Unknown error.": "خطأ مجهول.", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "التغييرات غير مُحتَفَظ بها", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "قادمة", + "Upcoming events": "", + "Upcoming events from your groups": "", + "Update": "", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "تحديث الفعالية {name}", + "Update group": "", + "Update my event": "تعديل فعاليتي", + "Update post": "", + "Updated": "تم تحديثه", + "Uploaded media size": "", + "Use my location": "", + "User": "", + "User settings": "", + "Username": "إسم المستخدم", + "Users": "المستخدِمون", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "", + "View account on {hostname} (in a new window)": "", + "View all": "", + "View all events": "", + "View all posts": "", + "View event page": "عرض صفحة الفعالية", + "View everything": "عرض الكل", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "", + "Visible everywhere on the web (public)": "", + "Waiting for organization team approval.": "", + "Warning": "تنبيه", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "", + "Website / URL": "موقع الويب / الرابط", + "Weekly email summary": "", + "Welcome back {username}!": "أهلا بك ثانيةً {username}!", + "Welcome back!": "أهلًا بك ثانيةً!", + "Welcome to Mobilizon, {username}!": "مرحبًا بك إلى موبيليزون ، {username}!", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "من يمكنه رؤية هذه الفعالية والمشاركة فيها", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Yesterday": "", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "في الوقت الحالي أنت لا تُتابِع أي مثيل خادم.", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "لقد ألغيتَ مشاركتك", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "يجب عليك الولوج.", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "تم حذف حسابك بنجاح", + "Your account has been validated": "لقد تم تأكيد حسابك", + "Your account is being validated": "جارٍ تأكيد حسابك", + "Your account is nearly ready, {username}": "إنّ حسابك جاهز تقريبًا ، يا {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "", + "Your email": "", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "", + "Your upcoming events": "", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "", + "[This comment has been deleted]": "[لقد حُذِف هذا التعليق]", + "[deleted]": "", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "كـ {identity}", + "contact uninformed": "", + "create a group": "", + "create an event": "", + "default Mobilizon privacy policy": "", + "default Mobilizon terms": "", + "e.g. 10 Rue Jangot": "مثال : 10 شارع جانغو", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "", + "instance rules": "", + "more than 1360 contributors": "", + "profile@instance": "", + "report #{report_number}": "", + "return to the event's page": "", + "terms of service": "الشروط العامة للإستخدام", + "with another identity…": "بهوية أخرى…", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "{approved} / {total} أماكن", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "", + "{number} members": "", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "", + "© The OpenStreetMap Contributors": "© مساهمو ومساهمات OpenStreetMap" +}); diff --git a/res/locale/be.js b/res/locale/be.js new file mode 100644 index 0000000..507205e --- /dev/null +++ b/res/locale/be.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "", + "+ Create a post": "", + "+ Create an event": "", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Зручны, незалежны і этычны інструмент для сходаў, арганізацыі і мабілізацыі.", + "A validation email was sent to {email}": "На {email} дасланы ліст для пацвярджэння", + "API": "", + "Abandon editing": "", + "About": "Інфармацыя", + "About Mobilizon": "Пра Mobilizon", + "About anonymous participation": "", + "About instance": "", + "About this event": "Пра гэту падзею", + "About this instance": "Пра гэты сервер", + "About {instance}": "", + "Accept": "", + "Accepted": "Прынята", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "Рахунак", + "Account settings": "", + "Actions": "", + "Activate browser push notifications": "", + "Activated": "", + "Active": "", + "Activity": "", + "Actor": "", + "Add": "Дадаць", + "Add / Remove…": "", + "Add a contact": "", + "Add a new post": "", + "Add a note": "Дадаць нататку", + "Add a todo": "", + "Add an address": "Дадаць адрас", + "Add an instance": "Дадаць сервер", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "Дадаць цэтлікі", + "Add to my calendar": "Дадаць у календар", + "Additional comments": "Дадатковыя каментарыі", + "Admin": "Адміністратар", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "Налады адміністратара захаваны.", + "Administration": "Адміністрацыя", + "Administrator": "", + "All activities": "", + "All good, let's continue!": "", + "All the places have already been taken": "Усе месцы занятыя|Даступнае адно месца|Даступныя {places} месцы|Даступна {places} месцаў", + "Allow all comments from users with accounts": "", + "Allow registrations": "Дазволіць рэгістравацца", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "Ананімны ўдзельнік", + "Anonymous participants will be asked to confirm their participation through e-mail.": "", + "Anonymous participations": "Ананімныя ўдзельнікі", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "Вы сапраўды хочаце выдаліць гэты каментарый? Гэта дзеянне нельга адмяніць.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Вы сапраўды жадаеце выдаліць гэту падзею? Гэта дзеянне нельга адмяніць. Магчыма, варта замест гэтага пагаварыць з аўтарам ці аўтаркай падзеі ці адрэдагаваць падзею.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Вы сапраўды жадаеце адмяніць стварэнне падзеі? Вы страціце ўсе свае рэдагаванні.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Вы сапраўды жадаеце адмяніць рэдагаванне падзеі? Вы страціце ўсе рэдагаванні.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Вы сапраўды хочаце адмовіцца ад удзелу ў падзеі «{title}»?", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "Вы сапраўды хочаце выдаліць гэту падзею? Гэта дзеянне нельга адмяніць.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "Аватар", + "Back to group list": "", + "Back to previous page": "", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "", + "Before you can login, you need to click on the link inside it to validate your account.": "Каб увайсці з уліковым запісам, патрэбна спачатку перайсці па спасылцы, якая прыйшла вам у лісце.", + "Begins on": "", + "Big Blue Button": "", + "Bold": "", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "", + "By {group}": "", + "By {username}": "Ад {username}", + "Can be an email or a link, or just plain text.": "", + "Cancel": "Адмяніць", + "Cancel anonymous participation": "", + "Cancel creation": "Адмяніць стварэнне", + "Cancel discussion title edition": "", + "Cancel edition": "Адмяніць рэдагаванне", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "Адмяніць мой запыт на ўдзел…", + "Cancel my participation…": "Адмяніць мой удзел…", + "Cancelled": "", + "Cancelled: Won't happen": "Адменена: не адбудзецца", + "Change": "Змяніць", + "Change my email": "", + "Change my identity…": "Змяніць маю ідэнтычнасць…", + "Change my password": "Змяніць мой пароль", + "Change timezone": "", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "", + "Clear": "Ачысціць", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "", + "Click to upload": "Націсніце, каб запампаваць", + "Close": "Закрыць", + "Close comments for all (except for admins)": "Закрыць каментарыі для ўсіх (акрамя адміністрацыі)", + "Closed": "Закрыта", + "Comment body": "", + "Comment deleted": "Каментарый выдалены", + "Comment text can't be empty": "", + "Comments": "Каментарыі", + "Comments are closed for everybody else.": "", + "Confirm my participation": "", + "Confirm my particpation": "Пацвердзіць мой удзел", + "Confirm participation": "", + "Confirmed": "", + "Confirmed at": "", + "Confirmed: Will happen": "Пацверджана: адбудзецца", + "Congratulations, your account is now created!": "", + "Contact": "", + "Continue editing": "Працягнуць рэдагаванне", + "Cookies and Local storage": "", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "Краіна", + "Create": "Стварыць", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "", + "Create a new event": "Стварыць новую падзею", + "Create a new group": "Стварыць новую групу", + "Create a new identity": "Стварыць новую ідэнтычнасць", + "Create a new list": "", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "", + "Create discussion": "", + "Create event": "", + "Create group": "Стварыць групу", + "Create identity": "", + "Create my event": "Стварыць падзею", + "Create my group": "Стварыць групу", + "Create my profile": "Стварыць профіль", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "Стварыць токен", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "Бягучая ідэнтычнасць змененая на {identityName}, каб можна было рэдагаваць гэту падзею.", + "Current page": "", + "Custom": "", + "Custom URL": "", + "Custom text": "", + "Daily email summary": "", + "Dashboard": "Панэль кіравання", + "Date": "Дата", + "Date and time": "", + "Date and time settings": "Наладкі даты і часу", + "Date parameters": "Параметры даты", + "Decline": "", + "Decrease": "", + "Default": "Па змоўчанні", + "Default Mobilizon privacy policy": "", + "Default Mobilizon terms": "", + "Delete": "Выдаліць", + "Delete account": "Выдаліць рахунак", + "Delete conversation": "", + "Delete discussion": "", + "Delete event": "Выдаліць падзею", + "Delete everything": "Выдаліць усё", + "Delete group": "", + "Delete my account": "Выдаліць мой рахунак", + "Delete post": "", + "Delete this discussion": "", + "Delete this identity": "Выдаліць гэту ідэнтычнасць", + "Delete your identity": "Выдаліць ідэнтычнасць", + "Delete {eventTitle}": "Выдаліць {eventTitle}", + "Delete {preferredUsername}": "Выдаліць {preferredUsername}", + "Deleting comment": "Выдаліць каментарый", + "Deleting event": "Выдаліць падзею", + "Deleting my account will delete all of my identities.": "", + "Deleting your Mobilizon account": "Выдаленне вашага Mobilizon рахунку", + "Demote": "", + "Description": "Апісанне", + "Details": "", + "Didn't receive the instructions?": "", + "Disabled": "", + "Discussions": "", + "Discussions list": "", + "Display name": "Адлюстравальнае імя", + "Display participation price": "Паказваць цану ўдзелу", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "Дамен", + "Draft": "Чарнавік", + "Drafts": "Чарнавікі", + "Due on": "", + "Duplicate": "", + "Edit": "Рэдагаваць", + "Edit post": "", + "Edit profile {profile}": "", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "Напр.: Стакгольм, танцы, шахматы…", + "Either on the {instance} instance or on another instance.": "", + "Either the account is already validated, either the validation token is incorrect.": "Або уліковы запіс ужо пацверджаны, або апазнавальны код для пацвярджэння некарэктны.", + "Either the email has already been changed, either the validation token is incorrect.": "", + "Either the participation request has already been validated, either the validation token is incorrect.": "", + "Element title": "", + "Element value": "", + "Email": "Электронная пошта", + "Email address": "", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "", + "Ends on…": "Заканчваецца…", + "Enter the link URL": "Увядзіце адрас URL", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "", + "Error details copied!": "", + "Error message": "", + "Error stacktrace": "", + "Error while changing email": "Памылка пры змяненні email", + "Error while loading the preview": "", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "Памылка падчас пацвярджэння ўліковага запісу", + "Error while validating participation request": "", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "Падзея", + "Event URL": "", + "Event already passed": "Падзея ўжо прайшла", + "Event cancelled": "Падзея адмененая", + "Event creation": "Стварэнне падзеі", + "Event description body": "", + "Event edition": "Рэдагаванне падзеі", + "Event list": "Спіс падзей", + "Event metadata": "", + "Event page settings": "Наладкі старонкі падзеі", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "Падзея чакае пацвярджэння", + "Event {eventTitle} deleted": "Падзея {eventTitle} выдаленая", + "Event {eventTitle} reported": "Паведамленне пра праблемы з падзеяй {eventTitle} дасланае", + "Events": "Падзеі", + "Events nearby": "", + "Events tagged with {tag}": "", + "Everything": "", + "Ex: mobilizon.fr": "Напр.: mobilizon.fr", + "Ex: someone@mobilizon.org": "", + "Explore": "Агляд", + "Explore events": "", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "Памылка пры захаванні налад адміністратара", + "Featured events": "Прапанаваныя падзеі", + "Federated Group Name": "", + "Federation": "Федерацыя", + "Fediverse account": "", + "Fetch more": "", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "Знайсці адрас", + "Find an instance": "Знайсці сервер", + "Find another instance": "", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "", + "Followers": "Падпісчыкі", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "Падпіскі", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "Напр.: Мінск, тхэквандо, архітэктура…", + "Forgot your password ?": "Забылі пароль?", + "Forgot your password?": "", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "Ад {startDate}, {startTime} да {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Ад {startDate}, {startTime} да {endDate}, {endTime}", + "From the {startDate} to the {endDate}": "Ад {startDate} да {endDate}", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "Сход ⋅ Арганізацыя ⋅ Мабілізацыя", + "General": "Галоўны", + "General information": "Агульная інфармацыя", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "Атрыманне месцапалажэння", + "Getting there": "", + "Glossary": "", + "Go": "Перайсці", + "Go to the event page": "", + "Google Meet": "", + "Group": "", + "Group Followers": "", + "Group Members": "", + "Group URL": "", + "Group activity": "", + "Group address": "", + "Group description body": "", + "Group display name": "", + "Group name": "Назва групы", + "Group profiles": "", + "Group settings": "", + "Group settings saved": "", + "Group short description": "", + "Group visibility": "", + "Group {displayName} created": "Створаная група {displayName}", + "Group {groupTitle} reported": "", + "Groups": "Групы", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "Ілюстрацыя да загалоўка", + "Hide replies": "Прыхаваць адказы", + "Home": "", + "Home to {number} users": "", + "Homepage": "", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "", + "I create an identity": "Я ствараю ідэнтычнасць", + "I don't have a Mobilizon account": "Я ня маю рахунку Mobilizon", + "I have a Mobilizon account": "У мяне ёсць рахунак Mobilizon", + "I have an account on another Mobilizon instance.": "Мой Mobilizon рахунак знаходзіцца на іншым серверы.", + "I participate": "Я прымаю ўдзел", + "I want to allow people to participate without an account.": "Я жадаю дазволіць людзям удзельнічаць без стварэння рахунку.", + "I want to approve every participation request": "Я хачу пацвярджаць кожны запыт на ўдзел", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "", + "Identity {displayName} created": "Створаная ідэнтычнасць {displayName}", + "Identity {displayName} deleted": "Выдаленая ідэнтычнасць {displayName}", + "Identity {displayName} updated": "Ідэнтычнасць {displayName} абноўленая", + "If allowed by organizer": "", + "If an account with this email exists, we just sent another confirmation email to {email}": "Калі ўліковы запіс з гэтым адрасам існуе, мы толькі што даслалі ліст на {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Калі гэтая ідэнтычнасць — адміністратар нейкіх груп, спачатку трэба выдаліць гэтыя групы, а потым можна будзе выдаліць гэта ідэнтычнасць.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "", + "Instance Long Description": "", + "Instance Name": "Імя сервера", + "Instance Privacy Policy": "", + "Instance Privacy Policy Source": "", + "Instance Privacy Policy URL": "", + "Instance Rules": "", + "Instance Short Description": "", + "Instance Slogan": "", + "Instance Terms": "", + "Instance Terms Source": "", + "Instance Terms URL": "", + "Instance administrator": "", + "Instance configuration": "", + "Instance feeds": "", + "Instance languages": "", + "Instance rules": "", + "Instance settings": "Налады сервера", + "Instances": "Серверы", + "Instances following you": "", + "Instances you follow": "", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "", + "Invite member": "", + "Invited": "", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "Далучайцеся да {instance}, які з'яўляецца серверам Mobilizon", + "Join group": "", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "", + "Language": "", + "Last IP adress": "", + "Last group created": "", + "Last published event": "Апошняя апублікаваная падзея", + "Last published events": "", + "Last sign-in": "", + "Last week": "На мінулым тыдні", + "Latest posts": "", + "Learn more": "Даведацца болей", + "Learn more about Mobilizon": "Даведацца болей аб Mobilizon", + "Learn more about {instance}": "", + "Leave": "", + "Leave event": "Выйсці з падзеі", + "Leave group": "", + "Leaving event \"{title}\"": "Выхад з падзеі «{title}»", + "Legal": "", + "Let's define a few settings": "", + "License": "Ліцэнзія", + "Limited number of places": "Абмежаваная колькасць месцаў", + "List title": "", + "Live": "", + "Load more": "Паказаць болей", + "Load more activities": "", + "Loading comments…": "", + "Local": "", + "Local time ({timezone})": "", + "Locality": "Месца", + "Location": "", + "Log in": "Увайсці", + "Log out": "Выйсці", + "Login": "Увайсці", + "Login on Mobilizon!": "Уваход у Mobilizon!", + "Login on {instance}": "", + "Login status": "", + "Main languages you/your moderators speak": "", + "Manage participations": "Кіраванне ўдзеламі", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "Пазначыць як гатовае", + "Member": "", + "Members": "Сябры", + "Members-only post": "", + "Mentions": "", + "Message": "", + "Microsoft Teams": "", + "Mobilizon": "", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "", + "Moderated comments (shown after approval)": "Каментарыі ў мадэрацыі (з'явяцца пасля адабрэння)", + "Moderation": "", + "Moderation log": "", + "Moderation logs": "", + "Moderator": "", + "Move": "", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "Мой уліковы запіс", + "My events": "Мае падзеі", + "My groups": "", + "My identities": "Мае ідэнтычнасці", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "Імя", + "Navigated to {pageTitle}": "", + "New discussion": "", + "New email": "", + "New folder": "", + "New link": "", + "New members": "", + "New note": "Новая нататка", + "New password": "Новы пароль", + "New post": "", + "New profile": "", + "Next": "", + "Next month": "", + "Next page": "Наступная старонка", + "Next week": "", + "No address defined": "Адрас не вызначаны", + "No closed reports yet": "Пакуль што закрытых паведамленняў пра праблемы няма", + "No comment": "Без каментарыяў", + "No comments yet": "Каментарыяў пакуль што няма", + "No discussions yet": "", + "No end date": "Без даты заканчэння", + "No events found": "Падзеі не знойдзеныя", + "No follower matches the filters": "", + "No group found": "Групы не знойдзеныя", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "Групы не знойдзеныя", + "No information": "", + "No instance follows your instance yet.": "Сервераў, якія падпісаныя на ваш сервер, пакуль што няма.", + "No instance to approve|Approve instance|Approve {number} instances": "Няма сервераў для ўхвалення|Ухваліць сервер|Ухваліць {number} сервера|Ухваліць {number} сервераў", + "No instance to reject|Reject instance|Reject {number} instances": "Няма серверам для адмаўлення|Адмовіць серверу|Адмовіць {number} серверам|Адмовіць {number} серверам", + "No instance to remove|Remove instance|Remove {number} instances": "Няма сервераў для выдалення|Выдаліць сервер|Выдаліць {number} сервера|Выдаліць {number} сервера", + "No languages found": "", + "No member matches the filters": "", + "No members found": "", + "No memberships found": "", + "No message": "Няма поведамленняў", + "No moderation logs yet": "", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "", + "No open reports yet": "Адкрытых паведамленняў пра праблемы няма", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "", + "No posts yet": "", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "Вырашаных праблем, пра якія былі паведамленні, няма", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "Рэзультатаў па «{queryText}» няма", + "No results for {search}": "", + "No rules defined yet.": "", + "None": "", + "Not accessible with a wheelchair": "", + "Not approved": "", + "Not confirmed": "", + "Notes": "Нататкі", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "", + "Notifications": "", + "Notifications for manually approved participations to an event": "", + "Notify participants": "", + "Now, create your first profile:": "", + "Number of places": "Колькасць месцаў", + "OK": "OK", + "Old password": "Стары пароль", + "On {date}": "", + "On {date} ending at {endTime}": "", + "On {date} from {startTime} to {endTime}": "", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "", + "Open": "Адчыніць", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Opened reports": "", + "Or": "", + "Ordered list": "", + "Organized": "", + "Organized by": "", + "Organized by {name}": "", + "Organizer": "", + "Organizer notifications": "", + "Organizers": "", + "Other": "", + "Other actions": "", + "Other notification options:": "", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "Старонка", + "Page limited to my group (asks for auth)": "", + "Page not found": "", + "Parent folder": "", + "Partially accessible with a wheelchair": "", + "Participant": "Удзельнік", + "Participants": "Удзельнікі", + "Participate": "Удзельнічаць", + "Participate using your email address": "", + "Participation approval": "Дазваленне ўдзелу", + "Participation confirmation": "Паццьвярджэнне ўдзелу", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "", + "Password (confirmation)": "", + "Password reset": "", + "Past events": "", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "", + "Pick an instance": "", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "", + "Please do not use it in any real way.": "", + "Please enter your password to confirm this action.": "", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "", + "Post": "", + "Post URL": "", + "Post a comment": "Даслаць каментар", + "Post a reply": "Даслаць адказ", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "", + "Posts": "", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "", + "Preferences": "", + "Previous": "", + "Previous month": "", + "Previous page": "", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "", + "Privacy policy": "", + "Private event": "", + "Private feeds": "", + "Profile": "", + "Profile feeds": "", + "Profiles": "", + "Profiles and federation": "", + "Promote": "", + "Public": "", + "Public RSS/Atom Feed": "", + "Public comment moderation": "", + "Public event": "", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "", + "Publish": "", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "", + "Radius": "", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "", + "Register": "", + "Register an account on {instanceName}!": "", + "Register on this instance": "", + "Registration is allowed, anyone can register.": "", + "Registration is closed.": "", + "Registration is currently closed.": "", + "Registrations": "", + "Registrations are restricted by allowlisting.": "", + "Reject": "", + "Reject member": "", + "Rejected": "", + "Remember my participation in this browser": "", + "Remove": "", + "Remove link": "", + "Rename": "", + "Rename resource": "", + "Reopen": "", + "Replay": "", + "Reply": "", + "Report": "", + "Report #{reportNumber}": "", + "Report this comment": "", + "Report this event": "", + "Report this group": "", + "Report this post": "", + "Reported": "", + "Reported by": "", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "", + "Reported group": "", + "Reported identity": "", + "Reports": "", + "Reports list": "", + "Request for participation confirmation sent": "", + "Resend confirmation email": "", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "", + "Reset password": "", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "", + "Restricted": "", + "Return to the group page": "", + "Right now": "", + "Role": "", + "Rules": "", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "", + "Save": "", + "Save draft": "", + "Schedule": "", + "Search": "", + "Search events, groups, etc.": "", + "Searching…": "", + "Select a language": "", + "Select a radius": "", + "Select a timezone": "", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "", + "Send the report": "", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "", + "Share": "", + "Share this event": "", + "Share this group": "", + "Share this post": "", + "Short bio": "", + "Show map": "", + "Show me where I am": "", + "Show remaining number of places": "", + "Show the time when the event begins": "", + "Show the time when the event ends": "", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "", + "Sign up": "", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "", + "Status": "", + "Street": "", + "Submit": "", + "Subtitles": "", + "Suspend": "", + "Suspend group": "", + "Suspended": "", + "Tag search": "", + "Task lists": "", + "Technical details": "", + "Tentative": "", + "Tentative: Will be confirmed later": "", + "Terms": "", + "Terms of service": "", + "Text": "", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "", + "The event has been published": "", + "The event has been updated": "", + "The event has been updated and published": "", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "", + "The page you're looking for doesn't exist.": "", + "The password was successfully changed": "", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no discussions yet": "", + "These events may interest you": "", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "", + "This event has been cancelled.": "", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "", + "This weekend": "", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "", + "Timezone detected as {timezone}.": "", + "Title": "", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "", + "To create and manage your events": "", + "To create or join an group and start organizing with other people": "", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "", + "Today": "", + "Tomorrow": "", + "Tools": "", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "", + "Type or select a date…": "", + "URL": "", + "URL copied to clipboard": "", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "", + "Unknown actor": "", + "Unknown error.": "", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "", + "Upcoming events": "", + "Upcoming events from your groups": "", + "Update": "", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "", + "Update group": "", + "Update my event": "", + "Update post": "", + "Updated": "", + "Uploaded media size": "", + "Use my location": "", + "User": "", + "User settings": "", + "Username": "", + "Users": "", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "", + "View account on {hostname} (in a new window)": "", + "View all": "", + "View all events": "", + "View all posts": "", + "View event page": "", + "View everything": "", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "", + "Visible everywhere on the web (public)": "", + "Waiting for organization team approval.": "", + "Warning": "", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "", + "Website / URL": "", + "Weekly email summary": "", + "Welcome back {username}!": "", + "Welcome back!": "", + "Welcome to Mobilizon, {username}!": "", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Yesterday": "", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "", + "Your account has been validated": "", + "Your account is being validated": "", + "Your account is nearly ready, {username}": "", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "", + "Your email": "", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "", + "Your upcoming events": "", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "", + "[This comment has been deleted]": "", + "[deleted]": "", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "", + "contact uninformed": "", + "create a group": "", + "create an event": "", + "default Mobilizon privacy policy": "", + "default Mobilizon terms": "", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "", + "instance rules": "", + "more than 1360 contributors": "", + "profile@instance": "", + "report #{report_number}": "", + "return to the event's page": "", + "terms of service": "", + "with another identity…": "", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "", + "{number} members": "", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "", + "© The OpenStreetMap Contributors": "" +}); diff --git a/res/locale/bn.js b/res/locale/bn.js new file mode 100644 index 0000000..fc42f49 --- /dev/null +++ b/res/locale/bn.js @@ -0,0 +1,1260 @@ +CTX.setMessages({ + "#{tag}": "", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "", + "+ Create a post": "", + "+ Create an event": "", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "", + "A validation email was sent to {email}": "", + "API": "", + "Abandon editing": "", + "About": "সম্পর্কে", + "About Mobilizon": "", + "About anonymous participation": "", + "About instance": "", + "About this event": "", + "About this instance": "", + "About {instance}": "", + "Accept": "", + "Accepted": "অনুমদিত", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "অ্", + "Account settings": "", + "Actions": "", + "Activate browser push notifications": "", + "Activated": "", + "Active": "", + "Activity": "", + "Actor": "", + "Add": "যোগ", + "Add / Remove…": "", + "Add a contact": "", + "Add a new post": "", + "Add a note": "", + "Add a todo": "", + "Add an address": "", + "Add an instance": "", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "", + "Add to my calendar": "", + "Additional comments": "", + "Admin": "অ্যাড", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "", + "Administration": "কর্তৃপক্ষ", + "Administrator": "", + "All activities": "", + "All good, let's continue!": "", + "All the places have already been taken": "", + "Allow all comments from users with accounts": "", + "Allow registrations": "", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "", + "Anonymous participants will be asked to confirm their participation through e-mail.": "", + "Anonymous participations": "", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "", + "Are you sure you want to cancel your participation at event \"{title}\"?": "", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "অবতার", + "Back to group list": "", + "Back to previous page": "", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "", + "Before you can login, you need to click on the link inside it to validate your account.": "", + "Begins on": "", + "Big Blue Button": "", + "Bold": "", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "", + "By {group}": "", + "By {username}": "", + "Can be an email or a link, or just plain text.": "", + "Cancel": "বাতিল", + "Cancel anonymous participation": "", + "Cancel creation": "", + "Cancel discussion title edition": "", + "Cancel edition": "", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "", + "Cancel my participation…": "", + "Cancelled": "", + "Cancelled: Won't happen": "", + "Change": "পরিবর্তন", + "Change my email": "", + "Change my identity…": "", + "Change my password": "", + "Change timezone": "", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "", + "Clear": "পরিষ্কার", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "", + "Click to upload": "", + "Close": "বন্ধ", + "Close comments for all (except for admins)": "", + "Closed": "বন্ধকৃত", + "Comment body": "", + "Comment deleted": "", + "Comment text can't be empty": "", + "Comments": "মতামত", + "Comments are closed for everybody else.": "", + "Confirm my participation": "", + "Confirm my particpation": "", + "Confirm participation": "", + "Confirmed": "", + "Confirmed at": "", + "Confirmed: Will happen": "", + "Congratulations, your account is now created!": "", + "Contact": "", + "Continue editing": "", + "Cookies and Local storage": "", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "দেশ", + "Create": "বানাও", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "", + "Create a new event": "", + "Create a new group": "", + "Create a new identity": "", + "Create a new list": "", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "", + "Create discussion": "", + "Create event": "", + "Create group": "", + "Create identity": "", + "Create my event": "", + "Create my group": "", + "Create my profile": "", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "", + "Current page": "", + "Custom": "আলাদা", + "Custom URL": "", + "Custom text": "", + "Daily email summary": "", + "Dashboard": "মূলপাতা", + "Date": "তারিখ", + "Date and time": "", + "Date and time settings": "", + "Date parameters": "", + "Decline": "", + "Decrease": "", + "Default": "মূল", + "Default Mobilizon privacy policy": "", + "Default Mobilizon terms": "", + "Delete": "মুছো", + "Delete account": "", + "Delete conversation": "", + "Delete discussion": "", + "Delete event": "", + "Delete everything": "", + "Delete group": "", + "Delete my account": "", + "Delete post": "", + "Delete this discussion": "", + "Delete this identity": "", + "Delete your identity": "", + "Delete {eventTitle}": "", + "Delete {preferredUsername}": "", + "Deleting comment": "", + "Deleting event": "", + "Deleting my account will delete all of my identities.": "", + "Deleting your Mobilizon account": "", + "Demote": "", + "Description": "বিস্তারিত", + "Details": "", + "Didn't receive the instructions?": "", + "Disabled": "", + "Discussions": "", + "Discussions list": "", + "Display name": "", + "Display participation price": "", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "ডোমেইন", + "Draft": "খসড়া", + "Drafts": "খসড়াসমূহ", + "Due on": "", + "Duplicate": "", + "Edit": "সম্পাদন", + "Edit post": "", + "Edit profile {profile}": "", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "", + "Either on the {instance} instance or on another instance.": "", + "Either the account is already validated, either the validation token is incorrect.": "", + "Either the email has already been changed, either the validation token is incorrect.": "", + "Either the participation request has already been validated, either the validation token is incorrect.": "", + "Element title": "", + "Element value": "", + "Email": "ইমেইল", + "Email address": "", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "", + "Ends on…": "", + "Enter the link URL": "", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "", + "Error details copied!": "", + "Error message": "", + "Error stacktrace": "", + "Error while changing email": "", + "Error while loading the preview": "", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "", + "Error while validating participation request": "", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "ঘটনা", + "Event URL": "", + "Event already passed": "", + "Event cancelled": "", + "Event creation": "", + "Event description body": "", + "Event edition": "", + "Event list": "", + "Event metadata": "", + "Event page settings": "", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "", + "Event {eventTitle} deleted": "", + "Event {eventTitle} reported": "", + "Events": "ঘটনা", + "Events nearby": "", + "Events tagged with {tag}": "", + "Everything": "", + "Ex: mobilizon.fr": "", + "Ex: someone@mobilizon.org": "", + "Explore": "অভিযান", + "Explore events": "", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "", + "Featured events": "", + "Federated Group Name": "", + "Federation": "", + "Fediverse account": "", + "Fetch more": "", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "", + "Find an instance": "", + "Find another instance": "", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "", + "Followers": "", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "", + "Forgot your password ?": "", + "Forgot your password?": "", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "", + "From the {startDate} to the {endDate}": "", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "", + "General": "", + "General information": "", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "", + "Getting there": "", + "Glossary": "", + "Go": "", + "Go to the event page": "", + "Google Meet": "", + "Group": "", + "Group Followers": "", + "Group Members": "", + "Group URL": "", + "Group activity": "", + "Group address": "", + "Group description body": "", + "Group display name": "", + "Group name": "", + "Group profiles": "", + "Group settings": "", + "Group settings saved": "", + "Group short description": "", + "Group visibility": "", + "Group {displayName} created": "", + "Group {groupTitle} reported": "", + "Groups": "", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "", + "Hide replies": "", + "Home": "", + "Home to {number} users": "", + "Homepage": "", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "", + "I create an identity": "", + "I don't have a Mobilizon account": "", + "I have a Mobilizon account": "", + "I have an account on another Mobilizon instance.": "", + "I participate": "", + "I want to allow people to participate without an account.": "", + "I want to approve every participation request": "", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "", + "Identity {displayName} created": "", + "Identity {displayName} deleted": "", + "Identity {displayName} updated": "", + "If allowed by organizer": "", + "If an account with this email exists, we just sent another confirmation email to {email}": "", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "", + "Instance Long Description": "", + "Instance Name": "", + "Instance Privacy Policy": "", + "Instance Privacy Policy Source": "", + "Instance Privacy Policy URL": "", + "Instance Rules": "", + "Instance Short Description": "", + "Instance Slogan": "", + "Instance Terms": "", + "Instance Terms Source": "", + "Instance Terms URL": "", + "Instance administrator": "", + "Instance configuration": "", + "Instance feeds": "", + "Instance languages": "", + "Instance rules": "", + "Instance settings": "", + "Instances": "", + "Instances following you": "", + "Instances you follow": "", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "", + "Invite member": "", + "Invited": "", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "", + "Join group": "", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "", + "Language": "", + "Last IP adress": "", + "Last group created": "", + "Last published event": "", + "Last published events": "", + "Last sign-in": "", + "Last week": "", + "Latest posts": "", + "Learn more": "", + "Learn more about Mobilizon": "", + "Learn more about {instance}": "", + "Leave": "", + "Leave event": "", + "Leave group": "", + "Leaving event \"{title}\"": "", + "Legal": "", + "Let's define a few settings": "", + "License": "", + "Limited number of places": "", + "List title": "", + "Live": "", + "Load more": "", + "Load more activities": "", + "Loading comments…": "", + "Local": "", + "Local time ({timezone})": "", + "Locality": "", + "Location": "", + "Log in": "", + "Log out": "", + "Login": "", + "Login on Mobilizon!": "", + "Login on {instance}": "", + "Login status": "", + "Main languages you/your moderators speak": "", + "Manage participations": "", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "", + "Member": "", + "Members": "", + "Members-only post": "", + "Mentions": "", + "Message": "", + "Microsoft Teams": "", + "Mobilizon": "", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "", + "Moderated comments (shown after approval)": "", + "Moderation": "", + "Moderation log": "", + "Moderation logs": "", + "Moderator": "", + "Move": "", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "", + "My events": "", + "My groups": "", + "My identities": "", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "", + "Navigated to {pageTitle}": "", + "New discussion": "", + "New email": "", + "New folder": "", + "New link": "", + "New members": "", + "New note": "", + "New password": "", + "New post": "", + "New profile": "", + "Next": "", + "Next month": "", + "Next page": "", + "Next week": "", + "No address defined": "", + "No closed reports yet": "", + "No comment": "", + "No comments yet": "", + "No discussions yet": "", + "No end date": "", + "No events found": "", + "No follower matches the filters": "", + "No group found": "", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "", + "No information": "", + "No instance follows your instance yet.": "", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "", + "No member matches the filters": "", + "No members found": "", + "No memberships found": "", + "No message": "", + "No moderation logs yet": "", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "", + "No open reports yet": "", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "", + "No posts yet": "", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "", + "No results for {search}": "", + "No rules defined yet.": "", + "None": "", + "Not accessible with a wheelchair": "", + "Not approved": "", + "Not confirmed": "", + "Notes": "", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "", + "Notifications": "", + "Notifications for manually approved participations to an event": "", + "Notify participants": "", + "Now, create your first profile:": "", + "Number of places": "", + "OK": "", + "Old password": "", + "On {date}": "", + "On {date} ending at {endTime}": "", + "On {date} from {startTime} to {endTime}": "", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "", + "Open": "", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Opened reports": "", + "Or": "", + "Ordered list": "", + "Organized": "", + "Organized by": "", + "Organized by {name}": "", + "Organizer": "", + "Organizer notifications": "", + "Organizers": "", + "Other": "", + "Other actions": "", + "Other notification options:": "", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "", + "Page limited to my group (asks for auth)": "", + "Page not found": "", + "Parent folder": "", + "Partially accessible with a wheelchair": "", + "Participant": "", + "Participants": "", + "Participate": "", + "Participate using your email address": "", + "Participation approval": "", + "Participation confirmation": "", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "", + "Password (confirmation)": "", + "Password reset": "", + "Past events": "", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "", + "Pick an instance": "", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "", + "Please do not use it in any real way.": "আসলভাবে এটা ব্যবহার করো না।", + "Please enter your password to confirm this action.": "", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "", + "Post": "", + "Post URL": "", + "Post a comment": "", + "Post a reply": "", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "", + "Posts": "", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "", + "Preferences": "", + "Previous": "", + "Previous month": "", + "Previous page": "", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "", + "Privacy policy": "", + "Private event": "", + "Private feeds": "", + "Profile": "", + "Profile feeds": "", + "Profiles": "", + "Profiles and federation": "", + "Promote": "", + "Public": "", + "Public RSS/Atom Feed": "", + "Public comment moderation": "", + "Public event": "", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "", + "Publish": "", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "", + "Radius": "", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "", + "Register": "", + "Register an account on {instanceName}!": "", + "Register on this instance": "", + "Registration is allowed, anyone can register.": "", + "Registration is closed.": "", + "Registration is currently closed.": "", + "Registrations": "", + "Registrations are restricted by allowlisting.": "", + "Reject": "", + "Reject member": "", + "Rejected": "", + "Remember my participation in this browser": "", + "Remove": "", + "Remove link": "", + "Rename": "", + "Rename resource": "", + "Reopen": "", + "Replay": "", + "Reply": "", + "Report": "", + "Report #{reportNumber}": "", + "Report this comment": "", + "Report this event": "", + "Report this group": "", + "Report this post": "", + "Reported": "", + "Reported by": "", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "", + "Reported group": "", + "Reported identity": "", + "Reports": "", + "Reports list": "", + "Request for participation confirmation sent": "", + "Resend confirmation email": "", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "", + "Reset password": "", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "", + "Restricted": "", + "Return to the group page": "", + "Right now": "", + "Role": "", + "Rules": "", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "", + "Save": "", + "Save draft": "", + "Schedule": "", + "Search": "", + "Search events, groups, etc.": "", + "Searching…": "", + "Select a language": "", + "Select a radius": "", + "Select a timezone": "", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "", + "Send the report": "", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "", + "Share": "", + "Share this event": "", + "Share this group": "", + "Share this post": "", + "Short bio": "", + "Show map": "", + "Show me where I am": "", + "Show remaining number of places": "", + "Show the time when the event begins": "", + "Show the time when the event ends": "", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "", + "Sign up": "", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "", + "Status": "", + "Street": "", + "Submit": "", + "Subtitles": "", + "Suspend": "", + "Suspend group": "", + "Suspended": "", + "Tag search": "", + "Task lists": "", + "Technical details": "", + "Tentative": "", + "Tentative: Will be confirmed later": "", + "Terms": "", + "Terms of service": "", + "Text": "", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "", + "The event has been published": "", + "The event has been updated": "", + "The event has been updated and published": "", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "", + "The page you're looking for doesn't exist.": "", + "The password was successfully changed": "", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no discussions yet": "", + "These events may interest you": "", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "", + "This application will be allowed to publish events, participate to events": " ", + "This application will be allowed to see all of your events organized, the events you participate to, …": " ", + "This event has been cancelled.": "", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "", + "This weekend": "", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "", + "Timezone detected as {timezone}.": "", + "Title": "", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "", + "To create and manage your events": "", + "To create or join an group and start organizing with other people": "", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "", + "Today": "", + "Tomorrow": "", + "Tools": "", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "", + "Type or select a date…": "", + "URL": "", + "URL copied to clipboard": "", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "", + "Unknown actor": "", + "Unknown error.": "", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "", + "Upcoming events": "", + "Upcoming events from your groups": "", + "Update": "", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "", + "Update group": "", + "Update my event": "", + "Update post": "", + "Updated": "", + "Uploaded media size": "", + "Use my location": "", + "User": "", + "User settings": "", + "Username": "", + "Users": "", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "", + "View account on {hostname} (in a new window)": "", + "View all": "", + "View all events": "", + "View all posts": "", + "View event page": "", + "View everything": "", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "", + "Visible everywhere on the web (public)": "", + "Waiting for organization team approval.": "", + "Warning": "", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "", + "Website / URL": "", + "Weekly email summary": "", + "Welcome back {username}!": "", + "Welcome back!": "", + "Welcome to Mobilizon, {username}!": "", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Yesterday": "", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "", + "Your account has been validated": "", + "Your account is being validated": "", + "Your account is nearly ready, {username}": "", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "", + "Your email": "", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "", + "Your upcoming events": "", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "", + "[This comment has been deleted]": "", + "[deleted]": "", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "", + "contact uninformed": "", + "create a group": "", + "create an event": "", + "default Mobilizon privacy policy": "", + "default Mobilizon terms": "", + "detail": " ", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "", + "instance rules": "", + "more than 1360 contributors": "", + "profile@instance": "", + "report #{report_number}": "", + "return to the event's page": "", + "terms of service": "", + "with another identity…": "", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "", + "{number} members": "", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "", + "© The OpenStreetMap Contributors": "" +}); diff --git a/res/locale/ca.js b/res/locale/ca.js new file mode 100644 index 0000000..5265bc8 --- /dev/null +++ b/res/locale/ca.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Amagat)", + "(this folder)": "(aquesta carpeta)", + "(this link)": "(aquest enllaç)", + "+ Add a resource": "+ Afegeix un recurs", + "+ Create a post": "", + "+ Create an event": "+ Prepara una activitat", + "+ Start a discussion": "+ Comença una discussió", + "{contact} will be displayed as contact.": "Es mostrarà {contact} com a contacte.|Es mostraran {contact} com a contactes.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "S'ha acceptat la soŀlicitud de seguiment de @{username}", + "@{username}'s follow request was rejected": "S'ha rebutjat la soŀlicitud de seguir-te de @{username}", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Una cookie és un arxiu petit amb informació que s'envia al teu ordinador quan visites una web. Quan tornes a visitar el lloc web, la cookie fa que el lloc pugui reconèixer el teu navegador. Les cookies poden conservar preferències i altres informacions. Pots configurar el teu navegador perquè rebutgi totes les cookies. Ara bé, això podria fer que algunes funcionalitats o serveis d'algunes webs deixessin de funcionar bé. L'emmagatzematge local funciona de la mateixa manera, però permet desar més informació.", + "A discussion has been created or updated": "S'ha creat o actualitzat una discussió", + "A federated software": "Un software federat", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "S'ha actualitzat un membre", + "A member requested to join one of my groups": "Un membre ha soŀlicitat unir-se a un dels meus grups", + "A new version is available.": "Hi ha una nova versió disponible.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Un lloc pel codi de conducta, normes o guies. Podeu fer servir etiquetes HTML.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Un lloc per explicar en detall qui sou i què fa diferent la vostra instància de les altres. Podeu fer servir etiquetes HTML.", + "A place to publish something to the whole world, your community or just your group members.": "Un lloc per publicar un missatge per als membres del teu grup, per a tota la comunitat, o per al món sencer.", + "A place to store links to documents or resources of any type.": "Un lloc per desar enllaços a documents o recursos de qualsevol tipus.", + "A post has been published": "Han publicat una nova entrada", + "A post has been updated": "S'ha modificat una entrada", + "A practical tool": "Una eina pràctica", + "A resource has been created or updated": "S'ha creat o modificat un recurs", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Un subtítol de reclam per la pàgina principal de la instància. Per defecte és \"Gather ⋅ Organize ⋅ Mobilize\"", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Una eina senzilla, emancipatòria i ètica per a reunir-nos, organitzar-nos i mobilitzar-nos.", + "A validation email was sent to {email}": "S'ha enviat un mail de validació a {email}", + "API": "API", + "Abandon editing": "Surt de l'edició", + "About": "Quant a", + "About Mobilizon": "Quant a Mobilizon", + "About anonymous participation": "Quant a la participació anònima", + "About instance": "", + "About this event": "Sobre aquesta activitat", + "About this instance": "Quant a aquesta instància", + "About {instance}": "Quant a {instance}", + "Accept": "Accepta", + "Accepted": "Acceptada", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "Accessible només a membres", + "Accessible through link": "Accessible amb enllaç", + "Account": "Compte", + "Account settings": "Ajustaments de compte", + "Actions": "Accions", + "Activate browser push notifications": "Activa les notificacions de navegador", + "Activated": "Activat", + "Active": "Activa", + "Activity": "Accions", + "Actor": "Agent", + "Add": "Afegeix", + "Add / Remove…": "Afegir / eliminar…", + "Add a contact": "Afegeix un contacte", + "Add a new post": "Fes una nova publicació", + "Add a note": "Afegeix una nota", + "Add a todo": "Afegeix una tasca", + "Add an address": "Afegeix una adreça", + "Add an instance": "Afegeix una instància", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "Afegeix algunes etiquetes", + "Add to my calendar": "Afegeix al meu calendari", + "Additional comments": "Altres comentaris", + "Admin": "Administrador", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "La configuració de l'administrador s'ha desat correctament.", + "Administration": "Administració", + "Administrator": "Administradora", + "All activities": "Totes les accions", + "All good, let's continue!": "Molt bé, continuem!", + "All the places have already been taken": "No hi ha més places disponibles", + "Allow all comments from users with accounts": "Permet comentaris de qualsevol usuària registrada", + "Allow registrations": "Permetre registres", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "S'ha produït un error mentre es refrescava la pàgina.", + "An error has occured. Sorry about that. You may try to reload the page.": "S'ha produït un error, ho sentim. Prova de recarregar la pàgina.", + "An ethical alternative": "Una alternativa ètica", + "An event I'm going to has been updated": "S'ha actualitzat una activitat a la qual assistiré", + "An event I'm going to has posted an announcement": "Han publicat un anunci en una activitat a la qual assistiré", + "An event I'm organizing has a new comment": "Han fet un comentari nou a una activitat que organitzo", + "An event I'm organizing has a new participation": "Una persona més participarà a una activitat que organitzo", + "An event I'm organizing has a new pending participation": "Hi ha una nova assistència pendent a una activitat que organitzo", + "An event from one of my groups has been published": "S'ha publicat una activitat en un dels meus grups", + "An event from one of my groups has been updated or deleted": "S'ha actualitzat o esborrat una activitat d'un dels meus grups", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Una instància és una versió del software de Mobilizon instaŀlada i executant-se en un servidor. Qualsevol persona amb els coneixements suficients pot engegar una instància de {mobilizon_software} o d'altres aplicacions federades, pertanyents al \"fedivers\". El nom d'aquesta instància és {instance_name}. Mobilizon és una xarxa federada de múltiples instàncies (com el correu electrònic), així que les usuàries registrades en instàncies diferents poden comunicar-se encara que no estiguin registrades a la mateixa instància.", + "And {number} comments": "I {number} comentaris", + "Announcements and mentions notifications are always sent straight away.": "Els anuncis i les mencions ja es notifiquen directament.", + "Anonymous participant": "Participant anònim", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Els participants anònims hauran de confirmar la seva participació a través del correu electrònic.", + "Anonymous participations": "Participacions anònimes", + "Any day": "Qualsevol dia", + "Any type": "", + "Anyone can join freely": "Qualsevol s'hi pot afegir", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "Qualsevol persona que vulgui fer-se membre del teu grup ho podrà fer des de la pàgina del grup.", + "Application": "Aplicació", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Segur que voleu suprimir tot el compte? Ho perdràs tot. Les identitats, la configuració, els esdeveniments creats, els missatges i les participacions desapareixeran per sempre.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Estàs segur/a que vols esborrar completament aquest grup? Tots els membres, incloent-hi els remots, seran notificats i esborrats del grup, i totes les dades del grup (activitats, publicacions, discussions, tasques...) seran destruïdes irreversiblement.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Segur que vols esborrar aquest comentari? Aquesta acció és irreversible.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Segur que vols esborrar aquesta activitat? Aquesta acció és irreversible. En comptes d'això, pots parlar amb la persona creadora de l'activitat o modificar l'activitat.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Estàs segur/a que vols suspendre aquest grup? Tots els membres, incloent-hi els remots, seran notificats i esborrats del grup, i totes les dades del grup (activitats, publicacions, discussions, tasques...) seran destruïdes irreversiblement.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Estàs segur/a que vols suspendre el grup? Com que aquest grup surt de la instància {instance}, aquesta acció només n'esborrarà les dades locals, els/les membres locals i rebutjarà possibles dades futures.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Segur que vols esborrar aquesta activitat? Perdràs tots els canvis.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Segur que vols canceŀlar l'edició? Perdràs tots els canvis que hagis fet.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Segur que vols deixar de participar a l'activitat \"{title}\"?", + "Are you sure you want to delete this entire discussion?": "Estàs segur/a que vols esborrar tota aquesta conversa?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Segur que vols esborrar aquesta activitat? Aquesta acció és irreversible.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Com que l'organitzadora de l'activitat ha triat validar manualment les soŀlicituds per participar-hi, hauràs d'esperar la seva decisió. T'arribarà un correu comunicant-te-la.", + "Ask your instance admin to {enable_feature}.": "Demana a l'administració de la instància de {enable_feature}.", + "Assigned to": "Assignat a", + "Atom feed for events and posts": "Flux Atom d'activitats i publicacions", + "Attending": "", + "Avatar": "Avatar", + "Back to group list": "", + "Back to previous page": "Tornar a la pàgina anterior", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "Bàner", + "Before you can login, you need to click on the link inside it to validate your account.": "Per a validar el compte i poder entrar, has de clicar l'enllaç que t'hem enviat en el mail.", + "Begins on": "Comença a", + "Big Blue Button": "", + "Bold": "Negreta", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "Notificacions de navegador", + "Bullet list": "", + "By others": "Les d'altres", + "By {group}": "De {group}", + "By {username}": "De {username}", + "Can be an email or a link, or just plain text.": "Pot ser una adreça de correu, un enllaç o text pla.", + "Cancel": "Canceŀla", + "Cancel anonymous participation": "Cancelar la participació anònima", + "Cancel creation": "Canceŀla la creació", + "Cancel discussion title edition": "", + "Cancel edition": "Canceŀla l'edició", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "Canceŀla la meva soŀlicitud de participació…", + "Cancel my participation…": "Canceŀla la meva participació…", + "Cancelled": "Canceŀlada", + "Cancelled: Won't happen": "Canceŀlada: No es farà", + "Change": "Canvia-la", + "Change my email": "Canviar el meu correu", + "Change my identity…": "Canvia la meva identitat…", + "Change my password": "Canvia la contrasenya", + "Change timezone": "Canvia el fus horari", + "Check your inbox (and your junk mail folder).": "Mira la teva safata d'entrada (i la de brossa, per si de cas).", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "Municipi o regió", + "Clear": "Esborra", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "Esborra les dades d'assistència de totes les activitats", + "Clear participation data for this event": "Esborra les dades d'assistència per aquesta activitat", + "Clear timezone field": "", + "Click for more information": "Fes clic per a més informació", + "Click to upload": "Clica per pujar", + "Close": "Deshabilita", + "Close comments for all (except for admins)": "Deshabilita els comentaris per a tothom excepte admins", + "Closed": "Deshabilitats", + "Comment body": "", + "Comment deleted": "S'ha esborrat el comentari", + "Comment text can't be empty": "El comentari no pot ser buit", + "Comments": "Comentaris", + "Comments are closed for everybody else.": "Els comentaris estan tancats per a tots els altres.", + "Confirm my participation": "Confirmar la meva participació", + "Confirm my particpation": "Confirma la meva participació", + "Confirm participation": "", + "Confirmed": "Confirmada", + "Confirmed at": "Confirmada a", + "Confirmed: Will happen": "Confirmada: Es farà", + "Congratulations, your account is now created!": "Felicitats, ja tens el compte creat!", + "Contact": "Contacte", + "Continue editing": "Continua editant", + "Cookies and Local storage": "Cookies i emmagatzematge local", + "Copy URL to clipboard": "Copia la URL al portaretalls", + "Copy details to clipboard": "Copia els detalls al porta-retalls", + "Country": "País/estat", + "Create": "Crea", + "Create a calc": "Crea un full de càlcul", + "Create a discussion": "Crea un discussió", + "Create a folder": "Crea una carpeta", + "Create a new event": "Crea una activitat nova", + "Create a new group": "Crea un grup nou", + "Create a new identity": "Crea una nova identitat", + "Create a new list": "Crea una llista nova", + "Create a new profile": "Crea un perfil nou", + "Create a pad": "Crea un pad", + "Create a videoconference": "Crea una videoconferència", + "Create an account": "Crea un compte", + "Create discussion": "", + "Create event": "Crea una activitat", + "Create group": "Crea un grup", + "Create identity": "", + "Create my event": "Crea l'activitat", + "Create my group": "Crea el grup", + "Create my profile": "Crea el perfil", + "Create new links": "Crea enllaços nous", + "Create resource": "Crea un recurs", + "Create the discussion": "Crea la discussió", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Crea llistes de tasques, assigna responsables i marca dates límit.", + "Create token": "Crea un token", + "Created by {name}": "Creat per {name}", + "Created by {username}": "Creat per {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "La identitat actual ha canviat a a {identityName} per tal de gestionar aquesta activitat.", + "Current page": "Pàgina actual", + "Custom": "Personalitzar", + "Custom URL": "URL personalitzada", + "Custom text": "Text personalitzat", + "Daily email summary": "Un correu resum màxim cada dia", + "Dashboard": "Tauler de control", + "Date": "Data", + "Date and time": "Data i hora", + "Date and time settings": "Configuració de data i hora", + "Date parameters": "Paràmetres de la data", + "Decline": "Rebutja", + "Decrease": "", + "Default": "Predeterminats", + "Default Mobilizon privacy policy": "Política de privacitat per defecte de Mobilizon", + "Default Mobilizon terms": "Condicions per defecte de Mobilizon", + "Delete": "Esborra-ho", + "Delete account": "Eliminar el compte", + "Delete conversation": "Esborra la conversa", + "Delete discussion": "ESborra la discussió", + "Delete event": "Esborra l'activitat", + "Delete everything": "Eliminar-ho tot", + "Delete group": "Esborra el grup", + "Delete my account": "Eliminar el meu compte", + "Delete post": "Esborra la publicació", + "Delete this discussion": "Esborra la discussió", + "Delete this identity": "Esborra aquesta identitat", + "Delete your identity": "Esborra la teva identitat", + "Delete {eventTitle}": "Esborra {eventTitle}", + "Delete {preferredUsername}": "Esborra {preferredUsername}", + "Deleting comment": "S'està esborrant el comentari", + "Deleting event": "S'està esborrant l'activitat", + "Deleting my account will delete all of my identities.": "Al suprimir el compte, se suprimeixen totes les identitats.", + "Deleting your Mobilizon account": "Eliminar el vostre compte de Mobilizon", + "Demote": "Degrada", + "Description": "Descripció", + "Details": "", + "Didn't receive the instructions?": "No has rebut les instruccions?", + "Disabled": "Desactivat", + "Discussions": "Discussions", + "Discussions list": "", + "Display name": "Nom per mostrar", + "Display participation price": "Preu per participar", + "Displayed nickname": "Sobrenom per mostrar", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Es mostrarà a la pàgina d'inici i a les etiquetes meta. Hauria d'explicar en un sol paragraf què és Mobilizon i què fa que aquesta instància sigui especial.", + "Do not receive any mail": "No vull rebre cap correu", + "Do you wish to {create_event} or {explore_events}?": "Vols {create_event} o {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Vols {create_group} o {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "Domini", + "Draft": "Esborrany", + "Drafts": "Esborranys", + "Due on": "Fins a", + "Duplicate": "Duplica", + "Edit": "Edita", + "Edit post": "Edita la publicació", + "Edit profile {profile}": "Edita el perfil {profile}", + "Edited {ago}": "S'ha editat {ago}", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "Ex.: Vilafranca, dansa, escacs…", + "Either on the {instance} instance or on another instance.": "Ja sigui a la instància {instant} o a una altra instància.", + "Either the account is already validated, either the validation token is incorrect.": "O bé el compte ja ha estat validat, o bé el codi de validació és incorrecte.", + "Either the email has already been changed, either the validation token is incorrect.": "O el correu electrònic ja s'ha canviat, o el testimoni de validació és incorrecte.", + "Either the participation request has already been validated, either the validation token is incorrect.": "O bé la soŀlicitud de participació ja s'ha validat, o bé la clau de validació no és correcta.", + "Element title": "", + "Element value": "", + "Email": "Email", + "Email address": "Adreça de correu", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "Habilitat", + "Ends on…": "Acaba al…", + "Enter the link URL": "Introdueix la URL de l'enllaç", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Posa el teu correu aquí sota i t'enviarem les instruccions per a canviar la teva contrasenya.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Escriu les vostres polítiques de privacitat. Es permeten etiquetes HTML. Pots fer servir les {mobilizon_privacy_policy} com a plantilla.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Escriu les vostres condicions. Es permeten etiquetes HTML. Pots fer servir les {mobilizon_terms} com a plantilla.", + "Error": "Error", + "Error details copied!": "S'han copiat els detalls de l'error!", + "Error message": "Missatge d'error", + "Error stacktrace": "Error amb traça", + "Error while changing email": "Error al canviar el correu electrònic", + "Error while loading the preview": "S'ha produït un error carregant la vista prèvia", + "Error while login with {provider}. Retry or login another way.": "S'ha produït un error iniciant sessió amb {provider}. Torna-ho a provar o prova un altre mètode d'inici de sessió.", + "Error while login with {provider}. This login provider doesn't exist.": "S'ha produït un error en iniciar la sessió amb {provider}. No existeix aquesta proveïdora d'identitats.", + "Error while reporting group {groupTitle}": "No s'ha pogut denunciar el grup {groupTitle}", + "Error while subscribing to push notifications": "S'ha produït un error en subscriure't a les notificacions automàtiques", + "Error while suspending group": "S'ha produït un error en suspendre el grup", + "Error while updating participation status inside this browser": "S'ha produït un error en actualitzar l'assistència en aquest navegador", + "Error while validating account": "S'ha produït un error a l'hora de validar el compte", + "Error while validating participation request": "S'ha produït un error en validar la soŀlicitud de participació", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "És una alternativa ètica als esdeveniments, grups i pàgines de Facebook. Mobilizon és una eina dissenyada per servir-te. Fin de la cita.", + "Event": "Activitat", + "Event URL": "URL de l'activitat", + "Event already passed": "L'activitat ja ha passat", + "Event cancelled": "S'ha canceŀlat l'activitat", + "Event creation": "Crear esdeveniment", + "Event description body": "", + "Event edition": "Edició de l'esdeveniment", + "Event list": "Llista d'esdeveniments", + "Event metadata": "", + "Event page settings": "Configuració de la pàgina d'activitat", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "L'activitat no està confirmada", + "Event {eventTitle} deleted": "S'ha esborrat {eventTitle}", + "Event {eventTitle} reported": "S'ha denunciat {eventTitle}", + "Events": "Activitats", + "Events nearby": "Activitats prop de tu", + "Events tagged with {tag}": "Activitats etiquetades amb {tag}", + "Everything": "Tot", + "Ex: mobilizon.fr": "Ex.: mobilizon.fr", + "Ex: someone@mobilizon.org": "Ex: algu@mobilizon.org", + "Explore": "Explora", + "Explore events": "Explora activitats", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "Error al guardar la configuració d'administració", + "Featured events": "Activitats destacades", + "Federated Group Name": "Nom federat del grup", + "Federation": "Federació", + "Fediverse account": "", + "Fetch more": "Carrega'n més", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "Cerca una adreça", + "Find an instance": "Cerca una instància", + "Find another instance": "Cerca una altra instància", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "Seguidor/a", + "Followers": "Seguidors/es", + "Followers will receive new public events and posts.": "Les seguidores rebran les publicacions i activitats noves.", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "Seguint", + "For instance: London": "Per exemple: Lleida", + "For instance: London, Taekwondo, Architecture…": "Per exemple: Lleida, Ioga, Història…", + "Forgot your password ?": "Has oblidat la contrasenya?", + "Forgot your password?": "Has oblidat la contrasenya?", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "Des de {startDate} a {startTime} fins a {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Des de {startDate} a {startTime} fins a {endDate} a {endTime}", + "From the {startDate} to the {endDate}": "Des de {startDate} fins a {endDate}", + "From yourself": "Les teves", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "Trobem-nos ⋅ Organitzem-nos ⋅ Mobilitzem-nos", + "General": "General", + "General information": "Informació general", + "General settings": "Configuració general", + "Geolocation was not determined in time.": "", + "Getting location": "Obtenció d'ubicació", + "Getting there": "Com arribar-hi", + "Glossary": "Glossari", + "Go": "Anar", + "Go to the event page": "Porta'm a la pàgina de l'activitat", + "Google Meet": "", + "Group": "Grup", + "Group Followers": "Seguidors del grup", + "Group Members": "Membres del grup", + "Group URL": "URL del grup", + "Group activity": "Accions de grups", + "Group address": "Adreça del grup", + "Group description body": "", + "Group display name": "Nom per mostrar del grup", + "Group name": "Nom del grup", + "Group profiles": "", + "Group settings": "Opcions del grup", + "Group settings saved": "S'han desat les preferències del grup", + "Group short description": "Descripció curta del grup", + "Group visibility": "Visibilitat del grup", + "Group {displayName} created": "S'ha creat el grup {displayName}", + "Group {groupTitle} reported": "S'ha denunciat el grup {groupTitle}", + "Groups": "Grups", + "Groups are not enabled on this instance.": "Els grups no estan disponibles en aquesta instància.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Els grups són espais de coordinació i preparació per organitzar millor les activitats i gestionar una comunitat.", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "Imatge de capçalera", + "Hide replies": "Amaga les respostes", + "Home": "Inici", + "Home to {number} users": "Una comunitat de {number} membres", + "Homepage": "", + "Hourly email summary": "Un correu resum màxim cada hora", + "I agree to the {instanceRules} and {termsOfService}": "Accepto les {instanceRules} i les {termsOfService}", + "I create an identity": "Creo una identitat", + "I don't have a Mobilizon account": "No tinc un compte de Mobilizon", + "I have a Mobilizon account": "Tinc un compte de Mobilizon", + "I have an account on another Mobilizon instance.": "Tinc un compte de Mobilizon d'una altra instància.", + "I participate": "Participo", + "I want to allow people to participate without an account.": "Vull permetre que tothom. participi sense un compte.", + "I want to approve every participation request": "Vull aprovar cada soŀlicitud de participació", + "I've been mentionned in a comment under an event": "M'han esmentat en un comentari d'una activitat", + "I've been mentionned in a group discussion": "M'han esmentat en una discussió de grup", + "ICS feed for events": "Calendari ICS de les activitats", + "ICS/WebCal Feed": "Calendari ICS/WebCal", + "Identities": "Identitats", + "Identity {displayName} created": "S'ha creat la identitat {displayName}", + "Identity {displayName} deleted": "S'ha esborrat la identitat {displayName}", + "Identity {displayName} updated": "S'ha actualitzat la identitat {displayName}", + "If allowed by organizer": "Si ho permet l'organitzadora", + "If an account with this email exists, we just sent another confirmation email to {email}": "Si existeix un compte amb aquest email, simplement enviem un altre email de confirmació a {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Si aquesta identitat és l'única administradora d'algun grup, has d'esborrar els grups abans de poder esborrar la identitat.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Si et pregunten per la teva identitat federada, es forma amb un nom d'usuària i el nom de la instància. Per exemple, la identitat federada del teu primer perfil és:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Si has optat per validar manualment les participants, Mobilizon t'enviarà un correu per informar-te de les soŀlicituds per participar. Pots triar la freqüència màxima amb què t'arribaran aquí a sota.", + "If you want, you may send a message to the event organizer here.": "Si voleu, aquí podeu enviar un missatge a l'organitzador d'esdeveniments.", + "Ignore": "Ignora", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "En el context següent, una aplicació és una peça de software, bé proporcionada per l'equip de Mobilizon, bé per altri, i es fa servir per interactuar amb la teva instància.", + "In the past": "", + "Increase": "", + "Instance": "Instància", + "Instance Long Description": "Descripció llarga de la instància", + "Instance Name": "Nom de la instància", + "Instance Privacy Policy": "Política de privacitat de la instància", + "Instance Privacy Policy Source": "Font de la política de privacitat de la instància", + "Instance Privacy Policy URL": "Adreça de la política de privacitat de la instància", + "Instance Rules": "Normes de la instància", + "Instance Short Description": "Descripció curta de la instància", + "Instance Slogan": "Eslògan de la instància", + "Instance Terms": "Condiciones de la instància", + "Instance Terms Source": "Font de les condicions de la instància", + "Instance Terms URL": "URL de les condicions de la instància", + "Instance administrator": "Administradora de la instància", + "Instance configuration": "Configuració de la instància", + "Instance feeds": "Fluxos d'instàncies", + "Instance languages": "Llengües de la instància", + "Instance rules": "Normes de la instància", + "Instance settings": "Configuracions de la instància", + "Instances": "Instàncies", + "Instances following you": "Instàncies que us segueixen", + "Instances you follow": "Instancies que seguiu", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "Interactua amb contingut remot", + "Invite a new member": "Convida algú", + "Invite member": "Convida", + "Invited": "Convidat/da", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Pot ser que el contingut no sigui accessible en aquesta instància perquè els perfils o grups creadors del contingut hi estiguin bloquejats.", + "Italic": "Cursiva", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "Uneix-te a {instance}, una instància de Mobilizon", + "Join group": "Suma't al grup", + "Join group {group}": "Afegeix-te al grup {group}", + "Keep the entire conversation about a specific topic together on a single page.": "Reserva una pàgina per la conversa d'un tema específic.", + "Key words": "Paraules clau", + "Language": "Llengua", + "Last IP adress": "Última adreça IP", + "Last group created": "Els grups més nous", + "Last published event": "Última activitat publicada", + "Last published events": "Les últimes activitats publicades", + "Last sign-in": "Última connexió", + "Last week": "La setmana passada", + "Latest posts": "Últimes publicacions", + "Learn more": "Més informació", + "Learn more about Mobilizon": "Més informació sobre Mobilizon", + "Learn more about {instance}": "Més informació sobre {instance}", + "Leave": "Surt", + "Leave event": "Deixar l’esdeveniment", + "Leave group": "", + "Leaving event \"{title}\"": "Deixar l’esdeveniment \"{title}\"", + "Legal": "Legal", + "Let's define a few settings": "Configurem algunes coses", + "License": "Llicència", + "Limited number of places": "Places limitades", + "List title": "Títol de la llista", + "Live": "", + "Load more": "Carrega'n més", + "Load more activities": "Carrega més accions", + "Loading comments…": "S'estan carregant els comentaris…", + "Local": "Local", + "Local time ({timezone})": "", + "Locality": "Localitat", + "Location": "Ubicació", + "Log in": "Inicia sessió", + "Log out": "Tanca la sessió", + "Login": "Inicia sessió", + "Login on Mobilizon!": "Entra a Mobilizon!", + "Login on {instance}": "Connectar-se a", + "Login status": "Estat de la sessió", + "Main languages you/your moderators speak": "Llengües principals que parleu o enteneu l'equip de moderació", + "Manage participations": "Gestiona les participacions", + "Manually approve new followers": "Aprova manualment les noves seguidores", + "Manually invite new members": "Invitacions manuals", + "Mark as resolved": "Marca com resolta", + "Member": "Membre", + "Members": "Membres", + "Members-only post": "", + "Mentions": "Mencions", + "Message": "Missatge", + "Microsoft Teams": "", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon és una xarxa federada. Podeu interactuar amb aquest esdeveniment des d’un servidor diferent.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon és una aplicació federada, i per tant, si les administradores ho han configurat així, et permet interactuar amb contingut d'altres instàncies, tal com apuntar-te a grups o a activitats creades en algun altre servidor.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon és una eina que t'ajuda a trobar, crear i organitzar activitats.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon no és un monstre enorme, sinó una multitud de webs de Mobilizon interconnectades.", + "Mobilizon software": "Software Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon fa servir un sistema de perfils per compartimentar les teves accions. Pots crear tants perfils com necessitis.", + "Mobilizon version": "Versió de Mobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon t'enviarà un correu quan les activitats a les quals estiguis apuntat/da tinguin canvis importants: data o hora, adreça, confirmació o canceŀlació, etc.", + "Moderate new members": "", + "Moderated comments (shown after approval)": "Comentaris moderats (mostrats després de ser aprovats)", + "Moderation": "Moderació", + "Moderation log": "Registre de la moderació", + "Moderation logs": "", + "Moderator": "Moderadora", + "Move": "Mou", + "Move \"{resourceName}\"": "Mou \"{resourceName}\"", + "Move resource to the root folder": "Mou el recurs a la carpeta arrel", + "Move resource to {folder}": "Mou el recurs a {folder}", + "My account": "El meu compte", + "My events": "Les meves activitats", + "My groups": "Els grups on sóc", + "My identities": "Les meves identitats", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "Alerta! Les condicions per defecte no han estat validades per advocada i per tant és probable que no us cobreixin legalment en totes situacions possibles. Tampoc són específiques per a tots els països i jurisdiccions. Si tens dubtes, consulta algun advocat/da.", + "Name": "Nom", + "Navigated to {pageTitle}": "", + "New discussion": "Discussió nova", + "New email": "Nou correu electrònic", + "New folder": "Afegeix una carpeta", + "New link": "Afegeix un enllaç", + "New members": "Nous membres", + "New note": "Nota nova", + "New password": "Contrasenya nova", + "New post": "Entrada nova", + "New profile": "Nou perfil", + "Next": "Següent", + "Next month": "El mes que ve", + "Next page": "Pàgina següent", + "Next week": "La setmana que ve", + "No address defined": "No s'ha definit l'adreça", + "No closed reports yet": "Encara no hi ha informes tancats", + "No comment": "Sense comentaris", + "No comments yet": "Encara no hi ha comentaris", + "No discussions yet": "Encara no s'ha obert cap discussió", + "No end date": "Sense data de finalització", + "No events found": "No s'ha trobat cap esdeveniment", + "No follower matches the filters": "No hi ha cap seguidor que hi coincideixi", + "No group found": "No s'ha trobat cap grup", + "No group matches the filters": "No hi ha cap grup que coincideixi amb els filtres", + "No group member found": "", + "No groups found": "No s'han trobat grups", + "No information": "No n'hi ha informació", + "No instance follows your instance yet.": "Encara no hi ha cap instància que segueixi la teva.", + "No instance to approve|Approve instance|Approve {number} instances": "No hi ha cap instància per aprovar|Aprova la instància|Aprova les {number} instàncies", + "No instance to reject|Reject instance|Reject {number} instances": "No hi ha cap instància per rebutjar|Rebutja la instància|Rebutja les {number} instàncies", + "No instance to remove|Remove instance|Remove {number} instances": "No hi ha cap instància per esborrar|Esborra la instància|Esborra les {number} instàncies", + "No languages found": "No s'ha trobat cap llengua", + "No member matches the filters": "No hi ha cap membre que coincideixi amb els filtres especificats", + "No members found": "No se n'han trobat membres", + "No memberships found": "No se n'han trobat membres", + "No message": "Sense missatges", + "No moderation logs yet": "Encara no hi ha registres de moderació", + "No more activity to display.": "No hi ha res més a mostrar.", + "No one is participating|One person participating|{going} people participating": "Ningú hi assistirà|Una persona hi participarà|HI participaran {going} persones", + "No open reports yet": "No hi ha cap denúncia oberta", + "No organized events found": "No s'han trobat activitats organitzades", + "No organized events listed": "", + "No participant matches the filters": "Cap participant coincideix amb els filtres", + "No participant to approve|Approve participant|Approve {number} participants": "Cap participant per aprovar|Aprova la participant|Aprova {number} participants", + "No participant to reject|Reject participant|Reject {number} participants": "Cap participant per rebutjar|Rebutja la participant|Rebutja {number} participants", + "No participations listed": "", + "No posts found": "No s'ha trobat cap publicació", + "No posts yet": "Encara no s'ha publicat res", + "No profile matches the filters": "No hi ha cap perfil que coincideixi amb els filtres", + "No public upcoming events": "No hi ha cap activitat aviat", + "No resolved reports yet": "No hi ha cap denúncia resolta", + "No resources in this folder": "No hi ha cap recurs en aquesta carpeta", + "No resources selected": "No s'ha triat cap recurs|S'ha triat un recurs|S'han triat {count} recursos", + "No resources yet": "Encara no s'ha afegit cap recurs", + "No results for \"{queryText}\"": "No s'ha trobat cap resultat per \"{queryText}\"", + "No results for {search}": "", + "No rules defined yet.": "Encara no s'han definit les normes.", + "None": "Cap", + "Not accessible with a wheelchair": "", + "Not approved": "Sense aprovar", + "Not confirmed": "Sense confirmar", + "Notes": "Notes", + "Notification before the event": "Notificació abans de l'activitat", + "Notification on the day of the event": "Notificació al dia de l'activitat", + "Notification settings": "Opcions de notificacions", + "Notifications": "Notificacions", + "Notifications for manually approved participations to an event": "Notificacions per participacions aprovades manualment", + "Notify participants": "Notifica les participants", + "Now, create your first profile:": "Ara crea't el teu primer perfil:", + "Number of places": "Nombre de places", + "OK": "OK", + "Old password": "Contrasenya vella", + "On {date}": "A {data}", + "On {date} ending at {endTime}": "A {date} i acaba a {endTime}", + "On {date} from {startTime} to {endTime}": "A {date} de {startTime} a {endTime}", + "On {date} starting at {startTime}": "A {date} i comença a {startTime}", + "On {instance} and other federated instances": "A {instance} i a altres instàncies federades", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "Només accessible amb un enllaç", + "Only accessible through link (private)": "Només accessible mitjançant un enllaç (privat)", + "Only accessible to members of the group": "Només accessible als membres del grup", + "Only alphanumeric lowercased characters and underscores are supported.": "Només es permeten els caràcters alfanumèrics en minúscula i els guions baixos.", + "Only group members can access discussions": "Només els membres del grup poden accedir a les discussions", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "Només les moderadores poden crear, modificar i esborrar publicacions.", + "Only registered users may fetch remote events from their URL.": "", + "Open": "Obre", + "Open a topic on our forum": "Obre un tema al fòrum", + "Open an issue on our bug tracker (advanced users)": "Obre una incidència (ús avançat)", + "Opened reports": "Denúncies obertes", + "Or": "O", + "Ordered list": "", + "Organized": "Organitzat", + "Organized by": "Organitzat per", + "Organized by {name}": "Organitzat per {name}", + "Organizer": "Organitzadora", + "Organizer notifications": "Notificacions d'organitzadora", + "Organizers": "Organitzadores", + "Other": "Altres", + "Other actions": "", + "Other notification options:": "Altres opcions de notificacions:", + "Other software may also support this.": "Poden haver-hi altres softwares compatibles.", + "Otherwise this identity will just be removed from the group administrators.": "Sinó, aquesta identitat serà esborrada del grup d'administració.", + "Page": "Pàgina", + "Page limited to my group (asks for auth)": "La pàgina està restringida al meu grup (demana autenticació)", + "Page not found": "No s'ha trobat la pàgina", + "Parent folder": "Carpeta mare", + "Partially accessible with a wheelchair": "", + "Participant": "Participant", + "Participants": "Participants", + "Participate": "Participa", + "Participate using your email address": "Participa-hi amb el correu electrònic", + "Participation approval": "Aprovació de participació", + "Participation confirmation": "Confirmació de participació", + "Participation notifications": "Notificacions de participació", + "Participation requested!": "S'ha enviat la soŀlicitud per participar-hi!", + "Participation with account": "", + "Participation without account": "", + "Participations": "Participacions", + "Password": "Contrasenya", + "Password (confirmation)": "Contrasenya (confirmació)", + "Password reset": "Restabliment de contrasenya", + "Past events": "Activitats passades", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "Pendent", + "Personal feeds": "Fluxos personals", + "Pick": "Tria", + "Pick a profile or a group": "Tria un perfil o un grup", + "Pick an identity": "Tria una identitat", + "Pick an instance": "Tria una instància", + "Please add as many details as possible to help identify the problem.": "Afegeix tots els detalls possibles per ajudar-nos a identificar el problema.", + "Please check your spam folder if you didn't receive the email.": "Comprova la teva carpeta de brossa si no t'ha arribat el mail a la safata d'entrada.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Si creus que és un error, contacta amb les administradores d'aquesta instància de Mobilizon.", + "Please do not use it in any real way.": "Sisplau, no ho facis servir per coses que no siguin proves.", + "Please enter your password to confirm this action.": "Posa la teva contrasenya per confirmar l'acció.", + "Please make sure the address is correct and that the page hasn't been moved.": "Assegura't que l'adreça és correcta i que la pàgina no s'ha mogut.", + "Please read the {fullRules} published by {instance}'s administrators.": "Llegeix les {fullRules} publicades per l'equip d'administració de {instance}.", + "Post": "Publicació", + "Post URL": "", + "Post a comment": "Publica un comentari", + "Post a reply": "Publica una resposta", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "Codi postal", + "Posts": "Publicacions", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Funciona amb {mobilizon}. © 2018 - {date} Les contribuïdores de Mobilizon - Fet amb el suport econòmic de {contributors}.", + "Preferences": "Preferències", + "Previous": "Anterior", + "Previous month": "", + "Previous page": "Pàgina anterior", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "Política de privacitat", + "Privacy policy": "Política de privacitat", + "Private event": "Activitat privada", + "Private feeds": "Fluxos privats", + "Profile": "Perfil", + "Profile feeds": "Fluxos d'informació del perfil", + "Profiles": "Perfils", + "Profiles and federation": "Perfils i federació", + "Promote": "Ascendeix", + "Public": "Públic", + "Public RSS/Atom Feed": "Fluxos RSS/Atom públics", + "Public comment moderation": "Moderació de comentaris públics", + "Public event": "Activitat pública", + "Public feeds": "Fluxos públics", + "Public iCal Feed": "Flux iCal públic", + "Public preview": "Previsualització pública", + "Publication date": "Data de publicació", + "Publish": "Publica", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "Activitats amb {comments} comentaris i {participations} participacions confirmades", + "Push": "Notificacions automàtiques", + "Quote": "", + "RSS/Atom Feed": "Flux RSS/Atom", + "Radius": "Radi", + "Recap every week": "Avisa'm cada setmana", + "Receive one email for each activity": "Un correu per cada novetat", + "Receive one email per request": "Un correu per soŀlicitud", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "S'està redirigint el navegador al contingut…", + "Redo": "", + "Refresh profile": "Actualitza el perfil", + "Regenerate new links": "Regenera els enllaços", + "Region": "Regió", + "Register": "Registra't", + "Register an account on {instanceName}!": "Fes-te un compte a {instanceName}!", + "Register on this instance": "Registra't en aquesta instància", + "Registration is allowed, anyone can register.": "El registre és obert, qualsevol s'hi pot afegir.", + "Registration is closed.": "El registre està tancat.", + "Registration is currently closed.": "El registre està tancat.", + "Registrations": "Tipus de registre", + "Registrations are restricted by allowlisting.": "El registre està limitat per una llista positiva.", + "Reject": "Rebutja", + "Reject member": "", + "Rejected": "Rebutjades", + "Remember my participation in this browser": "Recorda la meva participació en aquest navegador", + "Remove": "Esborra", + "Remove link": "", + "Rename": "Canvia'n el nom", + "Rename resource": "Canvia el nom del recurs", + "Reopen": "Reobre", + "Replay": "", + "Reply": "Respon", + "Report": "Denuncia", + "Report #{reportNumber}": "Informe #{reportNumber}", + "Report this comment": "Denuncia aquest comentari", + "Report this event": "Denuncia aquesta activitat", + "Report this group": "Denuncia aquest grup", + "Report this post": "", + "Reported": "Denunciada", + "Reported by": "Denunciada per", + "Reported by someone on {domain}": "Denunciada per algú a {domain}", + "Reported by {reporter}": "Denunciada per {reporter}", + "Reported group": "S'ha denunciat el grup", + "Reported identity": "Identitat denunciada", + "Reports": "Denúncies", + "Reports list": "", + "Request for participation confirmation sent": "S'ha enviat la soŀlicitud de participació", + "Resend confirmation email": "Reenvia el correu de confirmació", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "Restableix la meva contrasenya", + "Reset password": "", + "Resolved": "Resolts", + "Resource provided is not an URL": "El recurs no és una URL", + "Resources": "Recursos", + "Restricted": "Restringit", + "Return to the group page": "Torna a la pàgina del grup", + "Right now": "Ara mateix", + "Role": "Rol", + "Rules": "Normes", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL i la seva successora, TLS, són tecnologies que fan segures les comunicacions de les dades quan fem servir el servei. Pots comprovar que la teva connexió a aquest servidor és segura mirant a la barra d'adreces del teu navegador. Quan comença amb {https} i/o hi apareix un pany o cadenat de color verd, llavors vol dir que estàs fent servir TLS.", + "SSL/TLS": "SSL/TLS", + "Save": "Desa", + "Save draft": "Desa l'esborrany", + "Schedule": "", + "Search": "Cerca", + "Search events, groups, etc.": "Cerca activitats, grups, etc.", + "Searching…": "S'està cercant…", + "Select a language": "Tria una llengua", + "Select a radius": "Tria un radi de distància", + "Select a timezone": "Tria un fus horari", + "Select languages": "Tria les llengües", + "Select the activities for which you wish to receive an email or a push notification.": "Tria les activitats de les quals vols rebre'n avisos per correu o notificacions automàtiques.", + "Send": "", + "Send email": "Envia correu", + "Send notification e-mails": "Envia correus de notificació", + "Send password reset": "", + "Send the confirmation email again": "Reenvia el correu de confirmació", + "Send the report": "Envia la denúncia", + "Set an URL to a page with your own privacy policy.": "Configura un enllaç a una pàgina amb la vostra política de privacitat.", + "Set an URL to a page with your own terms.": "Estableix la URL d'una pàgina amb les vostres condicions.", + "Settings": "Opcions", + "Share": "Compartir", + "Share this event": "Comparteix aquesta activitat", + "Share this group": "Comparteix aquest grup", + "Share this post": "", + "Short bio": "Autodescripció curta", + "Show map": "Mostra el mapa", + "Show me where I am": "", + "Show remaining number of places": "Mostra el nombre de places disponibles", + "Show the time when the event begins": "Mostra l'hora d'inici de l'activitat", + "Show the time when the event ends": "Mostra l'hora final de l'activitat", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "Inicia sessió amb", + "Sign up": "Crea un compte", + "Since you are a new member, private content can take a few minutes to appear.": "Com que acabes d'entrar com a membre, el contingut privat pot trigar uns minuts en aparèixer.", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Alguns termes que es fan servir a sota, tècnics o d'altres, poden representar conceptes difícils d'entendre d'entrada. Hem recollit un glossari per facilitar-ne la comprensió:", + "Starts on…": "Comença a …", + "Status": "Estat", + "Street": "Carrer", + "Submit": "Envia", + "Subtitles": "", + "Suspend": "Suspèn", + "Suspend group": "Suspen el grup", + "Suspended": "Suspesa", + "Tag search": "", + "Task lists": "Llista de tasques", + "Technical details": "Detalls tècnics", + "Tentative": "Provisional", + "Tentative: Will be confirmed later": "Provisional: Ho confirmaran més endavant", + "Terms": "Condicions", + "Terms of service": "Condicions del servei", + "Text": "Text", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "L'adreça de correu del compte ha canviat. Comprova el teu correu per verificar-la.", + "The actual number of participants may differ, as this event is hosted on another instance.": "El nombre concret de participants pot ser diferent perquè aquesta activitat està publicada en una altra instància.", + "The content came from another server. Transfer an anonymous copy of the report?": "El contingut ha arribat des d'un altre servidor. Vols enviar-hi una còpia anònima de la denúncia?", + "The draft event has been updated": "S'ha actualitzat l'esborrany", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "S'ha creat l'activitat com a esborrany", + "The event has been published": "S'ha publicat l'activitat", + "The event has been updated": "L'activitat s'ha actualitzat", + "The event has been updated and published": "L'activitat s'ha actualitzat i publicat", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "L'organització de l'activitat ha triat validar manualment la participació. Vols afegir un missatge explicant breument per què vols participar-hi?", + "The event organizer didn't add any description.": "L'organització de l'activitat no ha afegit cap descripció.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "L'organització de l'activitat aprova les soŀlicituds manualment. Com que vols participar-hi sense compte, et demanem que esbossis per què vols participar-hi.", + "The event title will be ellipsed.": "S'abreujarà el títol de l'activitat.", + "The event will show as attributed to this group.": "L'activitat es mostrarà atribuïda an aquest grup.", + "The event will show as attributed to this profile.": "L'activitat apareixerà atribuïda an aquest perfil.", + "The event will show as attributed to your personal profile.": "L'activitat es mostrarà atribuïda al teu perfil personal.", + "The event {event} was created by {profile}.": "{profile} ha creat {event}.", + "The event {event} was deleted by {profile}.": "{profile} ha esborrat l'activitat {event}.", + "The event {event} was updated by {profile}.": "{profile} ha actualitzat l'activitat {event}.", + "The events you created are not shown here.": "Aquí no apareixen les activitats que has creat tu.", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "El grup és obert a tothom.", + "The group can now only be joined with an invite.": "El grup ara només és obert a persones amb invitació.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Es llistarà públicament el grup en els resultats de cerca i podrà ser suggerit en la secció d'explorar. Només se'n mostrarà informació pública.", + "The group's avatar was changed.": "S'ha canviat l'avatar del grup.", + "The group's banner was changed.": "S'ha canviat la foto de portada del grup.", + "The group's physical address was changed.": "S'ha canviat l'adreça postal del grup.", + "The group's short description was changed.": "S'ha canviat la descripció curta del grup.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "L'administradora de la instància és la persona o entitat que gestiona aquesta instància de Mobilizon.", + "The member was approved": "", + "The member was removed from the group {group}": "S'ha esborrat el/la membre del grup {group}", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "L'única manera de sumar més membres al grup és amb una invitació emesa per una administradora.", + "The organiser has chosen to close comments.": "L'organitzadora ha decidit tancar els comentaris.", + "The page you're looking for doesn't exist.": "La pàgina que buscaves no existeix.", + "The password was successfully changed": "S'ha canviat amb èxit la contrasenya", + "The post {post} was created by {profile}.": "{profile} ha creat l'entrada {post}.", + "The post {post} was deleted by {profile}.": "{profile} ha esborrat l'entrada {post}.", + "The post {post} was updated by {profile}.": "{profile} ha actualitzat l'entrada {post}.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "S'enviarà la denúncia a les persones moderadores de la teva instància. Pots explicar aquí a sota per què denuncies aquest contingut.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "La imatge que heu seleccionat és massa gran. Ha de ser més petita que {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Els detalls tècnics de l'error solen ajudar l'equip de desenvolupament a resoldre el problema. Afegeix-nos als comentaris, sisplau.", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Es farà servir la {default_privacy_policy}. Es presentarà traduïda a la llengua de cada usària.", + "The {default_terms} will be used. They will be translated in the user's language.": "Es faran servir els {default_terms}. Seràn traduïts a la llengua de cada usuària.", + "There are {participants} participants.": "Hi ha {participants} participants.", + "There is no activity yet. Start doing some things to see activity appear here.": "Encara no hi ha hagut activitat. Si fas alguna cosa n'apareixerà aquí una nota.", + "There will be no way to recover your data.": "No hi haurà cap manera de recuperar les teves dades.", + "There's no discussions yet": "No hi ha cap discussió", + "These events may interest you": "Pot ser que t'interessin aquestes activitats", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Aquests fluxos porten informació per a les creadores o participants d'una activitat. És millor mantenir-los privats. Pots trobar fluxos de perfil en la pàgina d'edició de cada perfil.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Aquests fluxos porten informació per a les creadores o participants d'una activitat. És millor mantenir-los privats. Pots trobar fluxos per cada perfil teu en les opcions de notificacions.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Aquesta instància de Mobilizon i l'organització d'aquesta activitat permeten la participació anònima, però demanen una validació per correu.", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "Aquesta URL no és compatible", + "This event has been cancelled.": "Aquesta activitat ha estat canceŀlada.", + "This event is accessible only through it's link. Be careful where you post this link.": "Aquesta activitat només és accessible a través d'aquest enllaç. Vigila com el comparteixes.", + "This group doesn't have a description yet.": "El grup encara no té descripció.", + "This group is accessible only through it's link. Be careful where you post this link.": "Aquest grup només és accessible a través d'aquest enllaç. Tingue-ho en compte a l'hora de compartir-lo.", + "This group is invite-only": "Aquest grup funciona per invitació", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "Aquest identificador és únic per al teu perfil. Permet als altres trobar-te.", + "This information is saved only on your computer. Click for details": "Aquesta informació només es desa al teu ordinador. Fes clic per més detalls", + "This instance hasn't got push notifications enabled.": "Aquesta instància no és compatible amb les notificacions automàtiques.", + "This instance isn't opened to registrations, but you can register on other instances.": "Aquesta instància no té el registre obert, però en pots buscar una altra.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Aquesta instància, {instanceName} ({domain}), allotja el teu perfil. Recorda'n el nom, és important.", + "This is a demonstration site to test Mobilizon.": "Lloc web de prova de Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "És com el teu nom d'usuària federada ({username}) però per a grups. Permetrà trobar el grup a la federació i serà únic.", + "This month": "Aquest mes", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "Aquesta opció es farà servir per mostrar-te la web i escriure't els correus en la llengua adequada.", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Aquesta web no està moderada i les dades que hi introdueixis es destruiran automàticament cada dia a les 00:01, hora de París.", + "This week": "Aquesta setmana", + "This weekend": "Aquest cap de setmana", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Això farà que s'esborrin o s'anonimitzin tots els continguts (activitats, comentaris, missatges, participacions…) que s'hagin creat des d'aquesta identitat.", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "Fus horari", + "Timezone detected as {timezone}.": "S'ha detectat el fus horari {timezone}.", + "Title": "Títol", + "To activate more notifications, head over to the notification settings.": "Pots activar més notificacions a les preferències.", + "To confirm, type your event title \"{eventTitle}\"": "Per confirmar, escriu el títol de l'activitat \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "Per confirmar, escriu el nom de la identitat \"{preferredUsername}\"", + "To create and manage multiples identities from a same account": "Per crear i gestionar múltiples identitats des d'un mateix compte", + "To create and manage your events": "Per preparar i gestionar activitats", + "To create or join an group and start organizing with other people": "Per muntar o apuntar-te a un grup i organitzar-te amb altres persones", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "Per apuntar-te a una activitat des d'una de les teves identitats", + "Today": "Avui", + "Tomorrow": "Demà", + "Tools": "", + "Transfer to {outsideDomain}": "Transfereix a {outsideDomain}", + "Triggered profile refreshment": "S'ha activat l'actualització de perfil", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "Escriu", + "Type or select a date…": "Escriu o tria una data…", + "URL": "URL", + "URL copied to clipboard": "S'ha copiat la URL al portapapers", + "Unable to copy to clipboard": "No s'ha pogut copiar al porta-retalls", + "Unable to create the group. One of the pictures may be too heavy.": "No s'ha pogut crear el grup. Una de les imatges és massa grossa.", + "Unable to create the profile. The avatar picture may be too heavy.": "No s'ha pogut crear el perfil. La imatge d'avatar és massa grossa.", + "Unable to detect timezone.": "No s'ha pogut detectar el fus horari.", + "Unable to load event for participation. The error details are provided below:": "No s'ha pogut carregar l'activitat. Els detalls de l'error es detallen a sota:", + "Unable to save your participation in this browser.": "No s'ha pogut desar al navegador la teva assistència.", + "Unable to update the profile. The avatar picture may be too heavy.": "No s'ha pogut actualitzar el perfil. La imatge d'avatar és massa grossa.", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "Malauradament, l'organització de l'activitat ha rebutjat la teva soŀlicitud de participació.", + "Unknown": "Desconegut", + "Unknown actor": "Agent desconegut/da", + "Unknown error.": "Error desconegut.", + "Unknown value for the openness setting.": "Nivell d'obertura del grup desconegut.", + "Unlogged participation": "", + "Unsaved changes": "Canvis sense desar", + "Unsubscribe to browser push notifications": "Canceŀla la subscripció a les notificacions de navegador", + "Unsuspend": "Aprova", + "Upcoming": "Properament", + "Upcoming events": "Activitats properes en temps", + "Upcoming events from your groups": "", + "Update": "Actualitza", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "Actualitza l'activitat {name}", + "Update group": "Actualitza el grup", + "Update my event": "Actualitza l'activitat", + "Update post": "Actualitza la publicació", + "Updated": "S'ha actualitzat", + "Uploaded media size": "Mida dels arxius pujats", + "Use my location": "Agafa la meva ubicació", + "User": "Usuària", + "User settings": "Configuració personal", + "Username": "Nom d'usuària", + "Users": "Usuàries", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "|Mostra la resposta|Mostra les {totalReplies} resposta", + "View account on {hostname} (in a new window)": "", + "View all": "Mostra-ho tot", + "View all events": "Mostra totes les activitats", + "View all posts": "Mostra totes les publicacions", + "View event page": "Mostra la pàgina de l'activitat", + "View everything": "Mostra-ho tot", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "mostra la pàgina a {hostname} (s'obrirà en una pestanya nova)", + "Visibility was set to an unknown value.": "S'ha canviat el nivell de visibilitat del grup.", + "Visibility was set to private.": "El grup s'ha fet privat.", + "Visibility was set to public.": "El grup s'ha fet públic.", + "Visible everywhere on the web": "Visible per tothom a la web", + "Visible everywhere on the web (public)": "Visible a tot arreu (públic)", + "Waiting for organization team approval.": "Pendent de l'aprovació de l'equip d'organització.", + "Warning": "Alerta", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "No hem pogut desar la informació d'assistència en aquest navegador. Això sí, la confirmació d'assistència sí que ha arribat al servidor. És només que el teu navegador no ho reflectirà bé.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Les vostres valoracions ens ajuden a millorar el software. Per informar-nos d'aquest problema, tens dues possibilitats (requereixen un compte):", + "We just sent an email to {email}": "S'acaba d'enviar un correu a {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Fem servir el teu fus horari perquè les notificacions de les activitats t'arribin a temps.", + "We will redirect you to your instance in order to interact with this event": "Et redirigirem a la teva instància perquè puguis interactuar amb aquesta activitat", + "We will redirect you to your instance in order to interact with this group": "Et redirigirem a la teva instància perquè puguis interactuar amb aquest grup", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "T'enviarem un correu una hora abans que comenci l'activitat, perquè no te n'oblidis.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Farem servir el fus horari per enviar un recordatori al matí de l'activitat.", + "Website": "Lloc web", + "Website / URL": "Web / URL", + "Weekly email summary": "Correu de resum setmanal", + "Welcome back {username}!": "Bentornat/da {username}!", + "Welcome back!": "Bentornat/da!", + "Welcome to Mobilizon, {username}!": "Benvingut/da a Mobilizon, {username}!", + "What can I do to help?": "Què podem fer per ajudar?", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Quan una moderadora del grup crea una activitat i l'atribueix al grup, apareixerà aquí.", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "Qui pot veure i participar en aquesta activitat", + "Who can view this post": "Qui pot veure aquesta publicació", + "Who published {number} events": "Amb {number} activitats publicades", + "Why create an account?": "Per què m'hauria de crear un compte?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Et facilitarà veure i gestionar des d'aquest dispositiu la teva participació a la pàgina de l'activitat. Desmarca-ho si hi ha més gent que faci servir aquest dispositiu.", + "Within {number} kilometers of {place}": "|Dins d'un km de {place}|A menys de {number} km de {place}", + "Yesterday": "Ahir", + "You accepted the invitation to join the group.": "Has acceptat la invitació per afegir-te al grup.", + "You added the member {member}.": "Has afegit el/la membre {member}.", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "Has arxivat la discussió {discussion}.", + "You are not an administrator for this group.": "No ets administrador/a d'aquest grup.", + "You are not part of any group.": "No formes de cap grup.", + "You are offline": "Estàs desconnectat/da", + "You are participating in this event anonymously": "Estàs registrada anònimament com a participant", + "You are participating in this event anonymously but didn't confirm participation": "Figures com a participant anònima d'aquesta activitat però no has confirmat la participació", + "You can add tags by hitting the Enter key or by adding a comma": "Pots afegir etiquetes prement Enter o afegint una coma", + "You can pick your timezone into your preferences.": "Pots triar la zona horària en les preferències.", + "You can try another search term or drag and drop the marker on the map": "Pots provar amb altres paraules de cerca o arrossegar l'indicador al mapa", + "You can't change your password because you are registered through {provider}.": "No pots canviar la teva contrasenya perquè estàs registrat/da amb {provider}.", + "You can't use push notifications in this browser.": "No pots rebre notificacions automàtiques en aquest navegador.", + "You changed your email or password": "Has canviat el teu mail o contrasenya", + "You created the discussion {discussion}.": "Has obert la discussió {discussion}.", + "You created the event {event}.": "Has creat l'activitat {event}.", + "You created the folder {resource}.": "Has creat la carpeta {resource}.", + "You created the group {group}.": "Has creat el grup {group}.", + "You created the post {post}.": "Has creat l'entrada {post}.", + "You created the resource {resource}.": "Has creat el recurs {resource}.", + "You deleted the discussion {discussion}.": "Has esborrat la discussió {discussion}.", + "You deleted the event {event}.": "Has esborrat l'activitat {event}.", + "You deleted the folder {resource}.": "Has esborrat la carpeta {resource}.", + "You deleted the post {post}.": "Has esborrat l'entrada {post}.", + "You deleted the resource {resource}.": "Has esborrat la carpeta {resource}.", + "You demoted the member {member} to an unknown role.": "Has tret alguns poders a {member}.", + "You demoted {member} to moderator.": "Has rebaixat a moderació els poders de {member}.", + "You demoted {member} to simple member.": "Has tret tot els poders especials a {member}.", + "You didn't create or join any event yet.": "No t'has apuntat a cap activitat ni n'has creat cap.", + "You don't follow any instances yet.": "Encara no pots seguir cap instància.", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "Has exclòs el/la membre {member}.", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "{invitedBy} t'ha convidat a afegir-te al següent grup:", + "You have been removed from this group's members.": "T'han tret d'aquest grup.", + "You have cancelled your participation": "Has canceŀlat la teva participació", + "You have one event in {days} days.": "No tens cap activitat en {days} dies|Tens una activitat en {days} dies.|Tens {count} activitats en {days} dies", + "You have one event today.": "No tens cap activitat avui|Avui tens una activitat|Avui tens {count} activitats", + "You have one event tomorrow.": "No tens cap activitat per demà|Demà tens una activitat|Demà tens {count} activitats", + "You invited {member}.": "Has convidat {member}.", + "You may clear all participation information for this device with the buttons below.": "Pots esborrar tota la informació d'assistències que hi ha en aquest dispositiu amb els botons de sota.", + "You may now close this window, or {return_to_event}.": "Ja pots tancar aquesta finestra o {return_to_event}.", + "You may show some members as contacts.": "Pots mostrar-ne alguns membres com a contactes.", + "You moved the folder {resource} into {new_path}.": "Has mogut la carpeta {resource} a {new_path}.", + "You moved the folder {resource} to the root folder.": "Has mogut la carpeta {recurs} a la carpeta arrel.", + "You moved the resource {resource} into {new_path}.": "Has mogut el recurs {resource} a {new_path}.", + "You moved the resource {resource} to the root folder.": "Has mogut el recurs {resource} a la carpeta arrel.", + "You need to login.": "Has d'iniciar sessió.", + "You posted a comment on the event {event}.": "Has comentat l'activitat {event}.", + "You promoted the member {member} to an unknown role.": "Has atorgat alguns poders a {member}.", + "You promoted {member} to administrator.": "Has atorgat poders d'administració a {member}.", + "You promoted {member} to moderator.": "Has atorgat poders de moderació a {member}.", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "Has canviat el nom de discussió de {old_discussion} a {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Has canviat el nom de la carpeta de {old_resource_title} a {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Has canviat el nom del recurs de {old_resource_title} a {resource}.", + "You replied to a comment on the event {event}.": "Has respost a un comentari a l'activitat {event}.", + "You replied to the discussion {discussion}.": "Has obert la discussió {discussion}.", + "You requested to join the group.": "Has soŀlicitat afegir-te al grup.", + "You updated the event {event}.": "Has actualitzat l'activitat {event}.", + "You updated the group {group}.": "Has actualitzat el grup {group}.", + "You updated the member {member}.": "Has actualitzat el/la membre {member}.", + "You updated the post {post}.": "Has actualitzat l'entrada {post}.", + "You were demoted to an unknown role by {profile}.": "{profile} t'ha tret alguns poders.", + "You were demoted to moderator by {profile}.": "{profile} t'ha rebaixat els poders a moderació.", + "You were demoted to simple member by {profile}.": "{profile} t'ha tret tots els poders especials.", + "You were promoted to administrator by {profile}.": "{profile} t'ha atorgat poders d'administració.", + "You were promoted to an unknown role by {profile}.": "{profile} t'ha atorgat alguns poders.", + "You were promoted to moderator by {profile}.": "{profile} t'ha atorgat poders de moderació.", + "You will be able to add an avatar and set other options in your account settings.": "Pots afegir un avatar i editar altres opcions en les preferències del compte.", + "You will be redirected to the original instance": "Seràs redirigit/da a la instància original", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "Vols participar en l'activitat següent", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Rebràs un recordatori cada dilluns que tinguis activitats properes planificades.", + "You'll need to change the URLs where there were previously entered.": "Hauràs d'actualitzar les URL allà on les haguessis introduïdes.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Hauràs de fer arribar l'enllaç del grup a les persones que vulguis que accedeixin al perfil del grup. No es podrà trobar en la cerca de Mobilizon ni als motors de cerca generals.", + "You'll receive a confirmation email.": "Rebràs un correu de confirmació.", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "S'ha esborrat el teu compte", + "Your account has been validated": "El teu compte ha estat validat", + "Your account is being validated": "El teu compte està sent validat", + "Your account is nearly ready, {username}": "El teu compte està gairebé apunt, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "El municipi i el radi només es faran servir per suggerir-te activitats properes. El radi d'activitats es considera des del centre administratiu de l'àrea.", + "Your current email is {email}. You use it to log in.": "El teu correu actual és {email}. Fes-lo servir per iniciar sessió.", + "Your email": "El teu mail", + "Your email address was automatically set based on your {provider} account.": "La teva adreça de correu està configurada pel teu compte de {provider}.", + "Your email has been changed": "S'ha canviat la teva adreça de correu", + "Your email is being changed": "S'està canviant la teva adreça de correu", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "El teu correu només es farà servir per confirmar que ets una persona real i per enviar-te possibles actualitzacions d'aquesta activitat. Ni altres instàncies ni l'organització de l'activitat podran veure'l.", + "Your federated identity": "La teva identitat federada", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "S'ha confirmat la teva participació", + "Your participation has been rejected": "S'ha denegat la teva participació", + "Your participation has been requested": "S'ha soŀlicitat la teva participació", + "Your participation request has been validated": "Has estat validat/da com a participant", + "Your participation request is being validated": "Se t'està validant com a participant", + "Your participation status has been changed": "Ha canviat l'estat de participació", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "L'estat de la teva assistència només es desa en aquest dispositiu, i té una caducitat d'un mes a partir del final de l'activitat.", + "Your participation still has to be approved by the organisers.": "Les organitzadores encara no t'han aprovat com a participant.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Es validarà la teva participació un cop hagis seguit l'enllaç de confirmació del correu, que t'arribarà després que una organitzadora accepti la teva soŀlicitud.", + "Your participation will be validated once you click the confirmation link into the email.": "La teva assistència serà validada un cop hagis fet clic a l'enllaç de confirmació que t'arribarà al correu.", + "Your position was not available.": "", + "Your profile will be shown as contact.": "Es mostrarà el teu perfil com a contacte.", + "Your timezone is currently set to {timezone}.": "El fus horari que tens configurat és {timezone}.", + "Your timezone was detected as {timezone}.": "S'ha detectat el fus horari {timezone}.", + "Your timezone {timezone} isn't supported.": "El fus horari {timezone} no és compatible amb la plataforma.", + "Your upcoming events": "Properes activitats al teu calendari", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "[Aquest comentari ha estat esborrat pel seu autor/a]", + "[This comment has been deleted]": "[Comentari esborrat]", + "[deleted]": "[esborrat]", + "a non-existent report": "una denúncia que ja no existeix", + "access to the group's private content as well": "", + "and {number} groups": "i {number} grups", + "any distance": "qualsevol distància", + "as {identity}": "com a {identity}", + "contact uninformed": "contacte", + "create a group": "crea un grup", + "create an event": "crea una activitat", + "default Mobilizon privacy policy": "política de privacitat per defecte de Mobilizon", + "default Mobilizon terms": "condicions de Mobilizon per defecte", + "e.g. 10 Rue Jangot": "ex.: 13 Rue del Percebe", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "activa la funcionalitat", + "explore the events": "explora les activitats", + "explore the groups": "explora els grups", + "full rules": "normes completes", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "Flux iCal", + "instance rules": "normes de la instància", + "more than 1360 contributors": "més de 1360 contribuïdores", + "profile@instance": "perfil@instancia", + "report #{report_number}": "denúncia #{report_number}", + "return to the event's page": "torna a la pàgina de l'activitat", + "terms of service": "condicions del servei", + "with another identity…": "amb una altra identitat…", + "your notification settings": "", + "{'@'}{username}": "{'@'}{username}", + "{approved} / {total} seats": "{approved} / {total} places", + "{available}/{capacity} available places": "Places esgotades|Hi ha {available}/{capacity} places disponibles", + "{count} km": "{count} km", + "{count} members": "Cap membre|Un membre|{count} membres", + "{count} members or followers": "", + "{count} participants": "Cap participant per ara|Un/a participant|{count} participants", + "{count} requests waiting": "{count} soŀlicituds pendents", + "{folder} - Resources": "{folder} - Recursos", + "{group} activity timeline": "Cronologia de les accions de {group}", + "{group} events": "Activitats de {group}", + "{group} posts": "", + "{group}'s events": "Activitats de {group}", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} és una instància del software {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} és una instància de {mobilizon_link}, una aplicació de software lliure construïda per una comunitat.", + "{member} accepted the invitation to join the group.": "{member} ha acceptat afegir-se al grup.", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "{member} ha rebutjat la invitació per afegir-se al grup.", + "{member} requested to join the group.": "{member} ha soŀlicitat afegir-se al grup.", + "{member} was invited by {profile}.": "{profile} ha convidat {member}.", + "{moderator} added a note on {report}": "{moderator} ha afegit una nota a {report}", + "{moderator} closed {report}": "{moderator} ha tancat {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} ha esborrat l'activitat \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} ha esborrat un comentari de {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} ha eliminat un comentari de {author} en l'activitat {event}", + "{moderator} has deleted user {user}": "{moderator} ha esborrat l'usuari/a {user}", + "{moderator} has done an unknown action": "{moderator} ha fet alguna acció", + "{moderator} has unsuspended group {profile}": "{moderator} ha aixecat la suspensió al grup {profile}", + "{moderator} has unsuspended profile {profile}": "{moderator} ha aixecat la suspensió a {profile}", + "{moderator} marked {report} as resolved": "{moderator} ha resolt {report}", + "{moderator} reopened {report}": "{moderator} ha reobert {report}", + "{moderator} suspended group {profile}": "{moderator} ha suspès el grup {profile}", + "{moderator} suspended profile {profile}": "{moderator} ha suspès el perfil {profile}", + "{nb} km": "{nb} km", + "{number} members": "{number} membres", + "{number} memberships": "{number} membres", + "{number} organized events": "No hi ha activitats organitzades|Hi ha una activitat organitzada|Hi ha {number} activitats organitzades", + "{number} participations": "Sense participants|Un/a participant|{number} participants", + "{number} posts": "Sense publicacions|Una publicació|{number} publicacions", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "Ha canviat el nom del grup {old_group_name} a {group}.", + "{profile} (by default)": "{profile} (per defecte)", + "{profile} added the member {member}.": "{profile} ha afegit el/la membre {member}.", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "{profile} ha arxivat la discussió {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} ha obert la discussió {discussion}.", + "{profile} created the folder {resource}.": "{profile} ha creat la carpeta {resource}.", + "{profile} created the group {group}.": "{profile} ha creat el grup {group}.", + "{profile} created the resource {resource}.": "{profile} ha creat el recurs {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} ha esborrat la discussió {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} ha esborrat la carpeta {resource}.", + "{profile} deleted the resource {resource}.": "{profile} ha esborrat el recurs {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} ha tret alguns poders a {member}.", + "{profile} demoted {member} to moderator.": "{profile} ha rebaixat a moderació els poders de {member}.", + "{profile} demoted {member} to simple member.": "{profile} ha tret tots els poders especials de {member}.", + "{profile} excluded member {member}.": "{profile} ha exclòs el/la membre {membre}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} ha mogut la carpeta {resource} a {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} ha mogut la carpeta {recurs} a la carpeta arrel.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} ha mogut el recurs {resource} a {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} ha mogut el recurs {resource} a la carpeta arrel.", + "{profile} posted a comment on the event {event}.": "{profile} ha comentat l'activitat {event}.", + "{profile} promoted {member} to administrator.": "{profile} ha atorgat poders d'administració a {member}.", + "{profile} promoted {member} to an unknown role.": "{profile} ha atorgat alguns poders a {member}.", + "{profile} promoted {member} to moderator.": "{profile} ha atorgat poders de moderació a {member}.", + "{profile} quit the group.": "{profile} ha sortit del grup.", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} ha canviat el nom de la discussió de {old_discussion} a {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} ha canviat el nom de la carpeta de {old_resource_title} a {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} ha canviat el nom del recurs de {old_resource_title} a {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} ha respost a un comentari de l'activitat {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} ha respost a la discussió {discussion}.", + "{profile} updated the group {group}.": "{profile} ha actualitzat el grup {group}.", + "{profile} updated the member {member}.": "{profile} ha actualitzat el/la membre {member}.", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "{title} ({count} pendents)", + "{username} was invited to {group}": "{username} ha estat convidat a {group}", + "© The OpenStreetMap Contributors": "© Les persones contribuïdores d'OpenStreetMap" +}); diff --git a/res/locale/cs.js b/res/locale/cs.js new file mode 100644 index 0000000..2bc2b49 --- /dev/null +++ b/res/locale/cs.js @@ -0,0 +1,1661 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Maskované)", + "(this folder)": "(tato složka)", + "(this link)": "(tento odkaz)", + "+ Add a resource": "+ Přidat zdroj", + "+ Create a post": "+ Vytvořit příspěvek", + "+ Create an event": "+ Vytvořit událost", + "+ Start a discussion": "+ Zahájit diskusi", + "0 Bytes": "0 bajtů", + "{contact} will be displayed as contact.": "{contact} bude zobrazen jako kontakt.|{contact} bude zobrazen jako kontakty.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "Žádost o sledování uživatele @{username} byla přijata", + "@{username}'s follow request was rejected": "Žádost o sledování uživatele @{username} byla zamítnuta", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Soubor cookie je malý soubor obsahující informace, který je odeslán do vašeho počítače při návštěvě webové stránky. Při další návštěvě stránky umožní soubor cookie rozpoznat váš prohlížeč. Soubory cookie mohou ukládat uživatelské preference a další informace. Prohlížeč můžete nastavit tak, aby všechny soubory cookie odmítal. To však může vést k částečnému fungování některých funkcí nebo služeb webových stránek. Místní úložiště funguje stejným způsobem, ale umožňuje uložit více dat.", + "A discussion has been created or updated": "Byla vytvořena nebo aktualizována diskuse", + "A federated software": "Federativní software", + "A fediverse account URL to follow for event updates": "URL účtu fediverse, kterou můžete sledovat pro aktualizace událostí", + "A few lines about your group": "Několik řádků o vaší skupině", + "A link to a page presenting the event schedule": "Odkaz na stránku s rozvrhem událostí", + "A link to a page presenting the price options": "Odkaz na stránku s cenovými možnostmi", + "A member has been updated": "Člen byl aktualizován", + "A member requested to join one of my groups": "Člen požádal o vstup do jedné z mých skupin", + "A new version is available.": "Je dostupná nová verze.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Místo pro váš kodex chování, pravidla nebo pokyny. Můžete použít značky HTML.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Místo, kde můžete vysvětlit, kdo jste a čím se vaše instance odlišuje. Můžete použít značky HTML.", + "A place to publish something to the whole world, your community or just your group members.": "Místo, kde můžete něco zveřejnit celému světu, své komunitě nebo jen členům své skupiny.", + "A place to store links to documents or resources of any type.": "Místo pro ukládání odkazů na dokumenty nebo zdroje libovolného typu.", + "A post has been published": "Příspěvek byl zveřejněn", + "A post has been updated": "Příspěvek byl aktualizován", + "A practical tool": "Praktický nástroj", + "A resource has been created or updated": "Byl vytvořen nebo aktualizován zdroj", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Krátký slogan pro domovskou stránku instance. Výchozí hodnota je \"Setkávat se ⋅ Organizovat ⋅ Mobilizovat\"", + "A twitter account handle to follow for event updates": "Handle twitterového účtu, s kterým můžete sledovat aktualizace událostí", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Uživatelsky přívětivý, emancipovaný a etický nástroj pro setkávání, organizování a mobilizaci.", + "A validation email was sent to {email}": "Ověřovací email byl odeslán na {email}", + "API": "API", + "Abandon editing": "Zákaz editování", + "About": "O nás", + "About Mobilizon": "O Mobilizonu", + "About anonymous participation": "O anonymní účasti", + "About instance": "O instanci", + "About this event": "O této události", + "About this instance": "O této instanci", + "About {instance}": "O {instance}", + "Accept": "Přijmout", + "Accept follow": "Přijmout sledování", + "Accepted": "Přijato", + "Access drafts events": "Přístup k návrhům událostí", + "Access followed groups": "Přístup ke sledovaným skupinám", + "Access group activities": "Přístup k aktivitám skupiny", + "Access group discussions": "Přístup k diskuzím ve skupinách", + "Access group events": "Přístup k událostem skupiny", + "Access group followers": "Přístup ke skupině sledujících", + "Access group members": "Přístup členů skupiny", + "Access group memberships": "Přístup ke členství ve skupině", + "Access group suggested events": "Navržené události přístupové skupiny", + "Access group todo-lists": "Přístup ke skupinovým seznamům úkolů", + "Access organized events": "Přístup k pořádaným akcím", + "Access participations": "Přístup k participacím", + "Access your group's resources": "Přístup ke zdrojům vaší skupiny", + "Accessibility": "Zpřístupnění", + "Accessible only by link": "Přístupné pouze odkazem", + "Accessible only to members": "Přístupné pouze členům", + "Accessible through link": "Přístupné přes odkaz", + "Account": "Účet", + "Account settings": "Nastavení účtu", + "Actions": "Akce", + "Activate browser push notifications": "Aktivace oznámení push v prohlížeči", + "Activate notifications": "Aktivace oznámení", + "Activated": "Aktivováno", + "Active": "Aktivní", + "Activity": "Aktivita", + "Actor": "Aktér", + "Adapt to system theme": "Přizpůsobení motivu systému", + "Add": "Přidat", + "Add / Remove…": "Přidat / odebrat…", + "Add a contact": "Přidat kontakt", + "Add a new post": "Přidat nový příspěvek", + "Add a note": "Přidat poznámku", + "Add a recipient": "Přidejte příjemce", + "Add a todo": "Přidání úkolu", + "Add an address": "Přidat adresu", + "Add an instance": "Přidat instanci", + "Add link": "Přidat odkaz", + "Add new…": "Přidat nový…", + "Add picture": "Přidat obrázek", + "Add some tags": "Přidat značky", + "Add to my calendar": "Přidat do mého kalendáře", + "Additional comments": "Další komentáře", + "Admin": "Admin", + "Admin dashboard": "Ovládací panel administrátora", + "Admin settings": "Nastavení administrátora", + "Admin settings successfully saved.": "Administrátorské nastavení bylo uloženo.", + "Administration": "Administrace", + "Administrator": "Administrátor", + "All": "Vše", + "All activities": "Všechny aktivity", + "All good, let's continue!": "Vše v pořádku, pokračujme!", + "All the places have already been taken": "Všechna místa byla již obsazena", + "Allow all comments from users with accounts": "Povolit všechny komentáře přihlášených uživatelů", + "Allow registrations": "Povolit registrace", + "An URL to an external ticketing platform": "URL na externí platformu pro prodej vstupenek", + "An anonymous profile joined the event {event}.": "K události {event} se připojil anonymní profil.", + "An error has occured while refreshing the page.": "Při obnovování stránky došlo k chybě.", + "An error has occured. Sorry about that. You may try to reload the page.": "Došlo k chybě. Omlouváme se za ni. Můžete zkusit stránku načíst znovu.", + "An ethical alternative": "Etická alternativa", + "An event I'm going to has been updated": "Událost, na kterou se chystám, byla aktualizována", + "An event I'm going to has posted an announcement": "Na události, na kterou se chystám, bylo zveřejněno oznámení", + "An event I'm organizing has a new comment": "Událost, kterou organizuji, má nový komentář", + "An event I'm organizing has a new participation": "Událost, kterou pořádám, má novou účast", + "An event I'm organizing has a new pending participation": "Událost, kterou pořádám, má novou čekající účast", + "An event from one of my groups has been published": "V jedné z mých skupin byla zveřejněna událost", + "An event from one of my groups has been updated or deleted": "Událost z jedné z mých skupin byla aktualizována nebo odstraněna", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Instance je nainstalovaná verze softwaru Mobilizon spuštěná na serveru. Instanci může spustit kdokoli, kdo používá {mobilizon_software} nebo jiné federativní aplikace, tzv. \"fediverse\". Název této instance je {instance_name}. Mobilizon je federativní síť více instancí (stejně jako e-mailové servery), uživatelé registrovaní v různých instancích spolu mohou komunikovat, i když se nezaregistrovali ve stejné instanci.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "„Aplikační programovací rozhraní“ neboli „API“ je komunikační protokol, který umožňuje softwarovým komponentám vzájemně komunikovat. Mobilizon API například umožňuje softwarovým nástrojům třetích stran komunikovat s instancemi Mobilizon a provádět určité akce, jako je odesílání událostí vaším jménem, automaticky a na dálku.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events, automatically and remotely.": "\"Aplikační programové rozhraní\" nebo \"API\" je komunikační protokol, který umožňuje softwarovým komponentám vzájemně komunikovat. Rozhraní API Mobilizonu může například umožnit softwarovým nástrojům třetích stran komunikovat s instancemi Mobilizonu a automaticky a na dálku provádět určité akce, například odesílání událostí.", + "And {number} comments": "A {number} komentářů", + "Announcements": "Oznámení", + "Announcements and mentions notifications are always sent straight away.": "Oznámení a zmínky jsou vždy odesílány ihned.", + "Announcements for {eventTitle}": "Oznámení pro {eventTitle}", + "Anonymous participant": "Anonymní účastník", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Anonymní účastníci budou požádáni o potvrzení své účasti e-mailem.", + "Anonymous participations": "Anonymní účasti", + "Any category": "Jakákoliv kategorie", + "Any day": "Jakýkoliv den", + "Any distance": "Jakákoli vzdálenost", + "Any type": "Jakýkoli typ", + "Anyone can join freely": "Každý se může volně připojit", + "Anyone can request being a member, but an administrator needs to approve the membership.": "O členství může požádat kdokoli, ale musí ho schválit správce.", + "Anyone wanting to be a member from your group will be able to from your group page.": "Každý, kdo se chce stát členem vaší skupiny, se může stát členem na stránce skupiny.", + "Application": "Aplikace", + "Application authorized": "Žádost autorizována", + "Application not found": "Aplikace nebyla nalezena", + "Application was revoked": "Aplikace byla zrušena", + "Apply filters": "Použít filtry", + "Approve member": "Schválit člena", + "Apps": "Aplikace", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Opravdu chcete smazat celý svůj účet? Ztratíte vše. Identity, nastavení, vytvořené události, zprávy i záznamy o vaší účasti budou navždy smazány.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Opravdu chcete úplně odstranit tuto skupinu? Všichni členové - včetně vzdálených - budou informováni a odstraněni ze skupiny a všechna data skupiny (události, příspěvky, diskuse, todos...) budou nenávratně zničena.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Opravdu chcete tento komentář smazat? Tuto akci nelze vrátit zpět.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Opravdu chcete smazat tento komentář? Je to nevratná událost.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator and ask them to edit their event instead.": "Opravdu chcete tuto událost smazat? Tuto akci nelze vrátit zpět. Možná se budete chtít zapojit do diskuze s tvůrcem události a požádat ho, aby místo toho upravil svou událost.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Opravdu chcete smazat tuto událost? Tuto akci nelze vzít zpět. Možná budete chtít zapojit do diskuse tvůrce události nebo místo toho upravit její událost.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Opravdu chcete pozastavit tuto skupinu? Všichni členové - včetně vzdálených - budou informováni a odstraněni ze skupiny a všechna data skupiny (události, příspěvky, diskuse, todos...) budou nenávratně zničena.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Opravdu chcete pozastavit tuto skupinu? Protože tato skupina pochází z instance {instance}, dojde pouze k odstranění místních členů a odstranění místních dat a také k odmítnutí všech budoucích dat.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Opravdu chcete zrušit vytváření události? Přijdete o všechny provedené změny.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Chcete ukončit úpravy události? Přijdete o všechny provedené změny.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Chcete zrušit svoji účast na události \"{title}\"?", + "Are you sure you want to delete this entire conversation?": "Opravdu chcete celou tuto konverzaci smazat?", + "Are you sure you want to delete this entire discussion?": "Jste si jistý, že chcete celou tuto diskusi smazat?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Určitě chcete smazat tuto událost? Nelze to vrátit zpět.", + "Are you sure you want to delete this post? This action cannot be reverted.": "Určitě chcete tento příspěvek smazat? Tuto akci nelze vrátit zpět.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Opravdu chcete opustit skupinu {jméno skupiny}? Ztratíte přístup k soukromému obsahu této skupiny. Tuto akci nelze vzít zpět.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Vzhledem k tomu, že se organizátor akce rozhodl žádosti o účast ověřovat ručně, bude vaše účast skutečně potvrzena až poté, co obdržíte e-mail s oznámením o přijetí.", + "Ask your instance admin to {enable_feature}.": "Požádejte správce instance o {enable_feature}.", + "Assigned to": "Přiřazeno k", + "Atom feed for events and posts": "Atom feed pro události a příspěvky", + "Attending": "Návštěvnost", + "Authorize": "Autorizovat", + "Authorize application": "Autorizovat aplikaci", + "Authorized on {authorization_date}": "Autorizováno dne {authorization_date}", + "Autorize this application to access your account?": "Autorizovat tuto aplikaci pro přístup k vašemu účtu?", + "Avatar": "Avatar", + "Back to group list": "Zpět na seznam skupin", + "Back to homepage": "Zpět na úvodní stránku", + "Back to previous page": "Zpět na předchozí stranu", + "Back to profile list": "Zpět na seznam profilů", + "Back to top": "Zpět na začátek", + "Back to user list": "Zpět na seznam uživatelů", + "Banner": "úvodní obrázek", + "Become part of the community and start organizing events": "Staňte se součástí komunity a začněte organizovat akce", + "Before you can login, you need to click on the link inside it to validate your account.": "Před prohlášením musíte kliknout na odkaz v něm, pro potvrzení vašeho účtu.", + "Begins on": "Začíná na", + "Best match": "Nejlepší shoda", + "Big Blue Button": "Big Blue Button", + "Bold": "Tučný", + "Booking": "Rezervace", + "Breadcrumbs": "Drobečková navigace", + "Browser notifications": "Upozornění prohlížeče", + "Browser tab icon and PWA icon of the instance. Defaults to the upstream Mobilizon icon.": "Ikona karty prohlížeče a ikona PWA instance. Ve výchozím nastavení je to ikona Mobilizon z upstreamu.", + "Bullet list": "Bodový seznam", + "By bike": "Na kole", + "By car": "Automobilem", + "By others": "Od ostatních", + "By transit": "Tranzitní dopravou", + "By {group}": "Od {group}", + "By {username}": "Od {username}", + "Calendar": "Kalendář", + "Can be an email or a link, or just plain text.": "Může to být e-mail, odkaz nebo prostý text.", + "Cancel": "Zrušit", + "Cancel anonymous participation": "Zrušit anonymní účast", + "Cancel creation": "Zrušit vytváření", + "Cancel discussion title edition": "Zrušit vydání diskuzního titulu", + "Cancel edition": "Zrušit úpravu", + "Cancel follow request": "Zrušit žádost o sledování", + "Cancel membership request": "Zrušení žádosti o členství", + "Cancel my participation request…": "Zrušit moji žádost o účast…", + "Cancel my participation…": "Zrušit moji účast…", + "Cancel participation": "Zrušit účast", + "Cancelled": "Zrušeno", + "Cancelled: Won't happen": "Zrušeno: Neuskuteční se", + "Categories": "Kategorie", + "Category": "Kategorie", + "Category illustrations credits": "Kredity pro ilustraci kategorie", + "Category list": "Seznam kategorií", + "Change": "Změnit", + "Change email": "Změnit e-mail", + "Change my email": "Změnit můj email", + "Change my identity…": "Změnit identitu…", + "Change my password": "Změnit heslo", + "Change role": "Změnit roli", + "Change the filters.": "Vyměňte filtry.", + "Change timezone": "Změna časového pásma", + "Change user email": "Změnit e-mail uživatele", + "Change user role": "Změnit uživatelskou roli", + "Check your device to continue. You may now close this window.": "Zkontrolujte své zařízení a pokračujte. Nyní můžete toto okno zavřít.", + "Check your inbox (and your junk mail folder).": "Zkontrolujte si doručenou poštu (a složku nevyžádané pošty).", + "Choose the source of the instance's Privacy Policy": "Výběr zdroje zásad ochrany osobních údajů instance", + "Choose the source of the instance's Terms": "Výběr zdroje podmínek instance", + "City or region": "Město nebo region", + "Clear": "Vymazat", + "Clear address field": "Vymazat pole adresy", + "Clear date filter field": "Vymazat pole filtru data", + "Clear participation data for all events": "Jasné údaje o účasti na všech akcích", + "Clear participation data for this event": "Jasné údaje o účasti na této akci", + "Clear timezone field": "Vymazat pole časové pásmo", + "Click for more information": "Klikněte pro více informací", + "Click to upload": "Nahraj kliknutím", + "Close": "Zavřít", + "Close comments for all (except for admins)": "Všem uzavřít komentáře (mimo správce)", + "Close map": "Zavřít mapu", + "Closed": "Uzavřeno", + "Comment body": "Tělo komentáře", + "Comment deleted": "Komentář byl smazán", + "Comment deleted and report resolved": "Komentář smazán a hlášení vyřešeno", + "Comment from a private conversation": "Komentář ze soukromé konverzace", + "Comment from an event announcement": "Komentář z oznámení o události", + "Comment from {'@'}{username} reported": "Komentář od uživatele {'@'}{username} byl nahlášen", + "Comment text can't be empty": "Text komentáře nemůže být prázdný", + "Comment under event {eventTitle}": "Komentář pod událostí {eventTitle}", + "Comments": "Komentáře", + "Comments are closed for everybody else.": "Komentáře pro všechny ostatní jsou uzavřeny.", + "Confirm": "Potvrdit", + "Confirm my participation": "Potvrdit účast", + "Confirm my particpation": "Potvrdit moji účast", + "Confirm participation": "Potvrdit účast", + "Confirm user": "Potvrzení uživatele", + "Confirmed": "Potvrzeno", + "Confirmed at": "Potvrzeno v", + "Confirmed: Will happen": "Potvrzeno: Proběhne", + "Congratulations, your account is now created!": "Gratulujeme, váš účet je nyní vytvořen!", + "Contact": "Kontakt", + "Continue": "Pokračovat", + "Continue editing": "Pokračovat v úpravách", + "Conversation with {participants}": "Konverzace s {participants}", + "Conversations": "Konverzace", + "Cookies and Local storage": "Soubory cookie a místní úložiště", + "Copy URL to clipboard": "Kopírování URL do schránky", + "Copy details to clipboard": "Kopírování údajů do schránky", + "Country": "Země", + "Create": "Vytvořit", + "Create a calc": "Vytvořit calc", + "Create a discussion": "Vytvořit diskusi", + "Create a folder": "Vytvořit složku", + "Create a new event": "Vytvořit novou událost", + "Create a new group": "Vytvořit novou skupinu", + "Create a new identity": "Vytvořit novou identitu", + "Create a new list": "Vytvoření nového seznamu", + "Create a new metadata element": "Vytvoření nového prvku metadat", + "Create a new profile": "Vytvořit nový profil", + "Create a pad": "Vytvořit pad", + "Create a videoconference": "Vytvoření videokonference", + "Create an account": "Vytvořit účet", + "Create discussion": "Vytvořit diskusi", + "Create event": "Vytvořit událost", + "Create feed tokens": "Vytvoření tokenů feedu", + "Create group": "Vytvořit skupinu", + "Create group discussions": "Vytváření skupinových diskusí", + "Create group resources": "Vytvořit skupinové zdroje", + "Create identity": "Vytvořit identitu", + "Create my event": "Vytvořit moji událost", + "Create my group": "Vytvořit skupinu", + "Create my profile": "Vytvořit si profil", + "Create new links": "Vytvořit nové odkazy", + "Create new profiles": "Vytvoření nových profilů", + "Create resource": "Vytvořit zdroj", + "Create the discussion": "Vytvoření diskuse", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Vytvořte si seznamy úkolů, které potřebujete udělat, přiřaďte je a nastavte termíny jejich splnění.", + "Create token": "Vytvořit klíč", + "Created by {name}": "Vytvořil {name}", + "Created by {username}": "Vytvořil {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "Současná identita se změnila na {identityName} pro správu této události.", + "Current page": "Současná stránka", + "Custom": "Vlastní", + "Custom URL": "Vlastní URL", + "Custom text": "Vlastní text", + "Daily email summary": "Denní e-mailový přehled", + "Dark": "Tmavý", + "Dashboard": "Přehled", + "Date": "Datum", + "Date and time": "Datum a čas", + "Date and time settings": "Nastavení data a času", + "Date parameters": "Parametry data", + "Deactivate notifications": "Deaktivace oznámení", + "Decline": "Pokles", + "Decrease": "Snížení", + "Default": "Výchozí", + "Default Mobilizon privacy policy": "Výchozí zásady ochrany osobních údajů Mobilizon", + "Default Mobilizon terms": "Výchozí podmínky Mobilizon", + "Default Picture": "Výchozí obrázek", + "Default picture when an event or group doesn't have one.": "Výchozí obrázek, pokud událost nebo skupina žádný nemá.", + "Delete": "Smazat", + "Delete account": "Smazat účet", + "Delete comment": "Smazat komentář", + "Delete comment and resolve report": "Smazat komentář a vyřešit hlášení", + "Delete comments": "Mazání komentářů", + "Delete conversation": "Smazat konverzaci", + "Delete discussion": "Smazat diskusi", + "Delete event": "Smazat událost", + "Delete event and resolve report": "Odstranit událost a vyřešit hlášení", + "Delete events": "Odstranění událostí", + "Delete everything": "Vymazat vše", + "Delete feed tokens": "Odstranění tokenů feedu", + "Delete group": "Smazat skupinu", + "Delete group discussions": "Smazání skupinových diskusí", + "Delete group posts": "Odstranit příspěvky skupiny", + "Delete group resources": "Odstranit prostředky skupiny", + "Delete my account": "Smazat můj účet", + "Delete post": "Smazat příspěvek", + "Delete profiles": "Smazání profilů", + "Delete this conversation": "Smazat tuto konverzaci", + "Delete this discussion": "Smazat tuto diskusi", + "Delete this identity": "Smazat tuto identitu", + "Delete your identity": "Smaže vaši identitu", + "Delete {eventTitle}": "Smazat {eventTitle}", + "Delete {preferredUsername}": "Smazat {preferredUsername}", + "Deleting comment": "Komentář se odstraňuje", + "Deleting event": "Událost se odstraňuje", + "Deleting my account will delete all of my identities.": "Smazáním účtu se smažou všechny vaše identity.", + "Deleting your Mobilizon account": "Vymazání vašeho Mobilizon účtu", + "Demote": "Odvolat", + "Describe your event": "Popište svou událost", + "Description": "Popis", + "Details": "Detaily", + "Device activation": "Aktivace zařízení", + "Didn't receive the instructions?": "Neobdrželi jste pokyny?", + "Disabled": "Vypnuto", + "Discussions": "Diskuse", + "Discussions list": "Seznam diskusí", + "Display name": "Přezdívka", + "Display participation price": "Zobrazit cenu za účast", + "Displayed nickname": "Zobrazovaná přezdívka", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Zobrazuje se na domovské stránce a v metaznačkách. Popište v jednom odstavci, co je Mobilizon a čím je tato instance výjimečný.", + "Distance": "Vzdálenost", + "Do not receive any mail": "Nepřijímat žádnou poštu", + "Do you really want to suspend the account « {emailAccount} » ?": "Opravdu chcete pozastavit účet \" {emailAccount} \" ?", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Opravdu chcete tento účet pozastavit? Všechny profily uživatele budou smazány.", + "Do you really want to suspend this profile? All of the profiles content will be deleted.": "Opravdu chcete tento profil pozastavit? Veškerý obsah profilu bude smazán.", + "Do you wish to {create_event} or {explore_events}?": "Přejete si {create_event} nebo {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Přejete si {create_group} nebo {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "Je třeba událost potvrdit později, nebo je zrušena?", + "Domain": "Doména", + "Domain or instance name": "Název domény nebo instance", + "Draft": "Koncept", + "Drafts": "Koncepty", + "Due on": "Platnost do", + "Duplicate": "Duplikát", + "Edit": "Upravit", + "Edit post": "Upravit příspěvek", + "Edit profile {profile}": "Upravit profil {profile}", + "Edit user email": "Upravit e-mail uživatele", + "Edited {ago}": "Upraveno {ago}", + "Edited {relative_time} ago": "Upraveno před {relative_time}", + "Eg: Stockholm, Dance, Chess…": "Např.: Stockholm, tanec, šachy, …", + "Either on the {instance} instance or on another instance.": "Buď na instanci {instance} nebo na jiné instanci.", + "Either the account is already validated, either the validation token is incorrect.": "Buď byl účet již potvrzený nebo jde o chybný validační token.", + "Either the email has already been changed, either the validation token is incorrect.": "Buď byl e-mail již upraven nebo jde o chybný validační token.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Buď byla žádost o účast již potvrzena nebo jde o chybný validační token.", + "Either your participation has already been cancelled, either the validation token is incorrect.": "Buď byla vaše účast již zrušena, nebo je ověřovací token nesprávný.", + "Element title": "název prvku", + "Element value": "hodnota prvku", + "Email": "E-mail", + "Email address": "E-mailová adresa", + "Email validate": "Ověřit platnost e-mailu", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "E-maily obvykle neobsahují velká písmena, ujistěte se, že jste neudělali překlep.", + "Enabled": "Povoleno", + "Ends on…": "Končí v…", + "Enter the code displayed on your device": "Zadejte kód zobrazený na zařízení", + "Enter the link URL": "Vložte URL odkazu", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Zadejte níže svou e-mailovou adresu a my vám zašleme pokyny ke změně hesla.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Zadejte vlastní zásady ochrany osobních údajů. Povolené značky HTML. Jako šablona je k dispozici {mobilizon_privacy_policy}.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Zadejte vlastní podmínky. Povolené značky HTML. {mobilizon_terms} jsou poskytovány jako šablona.", + "Error": "Chyba", + "Error details copied!": "Podrobnosti o chybě zkopírovány!", + "Error message": "Chybová zpráva", + "Error stacktrace": "Stacktrace chyby", + "Error while adding tag: {error}": "Chyba při přidávání značky: {error}", + "Error while cancelling your participation": "Při rušení vaší účasti došlo k chybě", + "Error while changing email": "Při změně e-mailu došlo k chybě", + "Error while loading the preview": "Chyba při načítání náhledu", + "Error while login with {provider}. Retry or login another way.": "Chyba při přihlašování pomocí {provider}. Zkuste to znovu nebo se přihlaste jiným způsobem.", + "Error while login with {provider}. This login provider doesn't exist.": "Chyba při přihlašování pomocí {provider}. Tento poskytovatel přihlášení neexistuje.", + "Error while reporting group {groupTitle}": "Chyba při hlášení skupiny {groupTitle}", + "Error while subscribing to push notifications": "Chyba při odběru oznámení push", + "Error while suspending group": "Chyba při pozastavení skupiny", + "Error while updating participation status inside this browser": "Chyba při aktualizaci stavu účasti v tomto prohlížeči", + "Error while validating account": "Při potvrzování účtu došlo k chybě", + "Error while validating participation request": "Při potvrzování žádosti o účast došlo k chybě", + "Etherpad notes": "Etherpad poznámky", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Mobilizon je etická alternativa k událostem, skupinám a stránkám na Facebooku, nástroj určený k tomu, aby vám sloužil. Tečka.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Mobilizon je {tool_designed_to_serve_you} etickou alternativou k událostem, skupinám a stránkám na Facebooku. Tečka.", + "Event": "Událost", + "Event URL": "URL Události", + "Event already passed": "Událost již proběhla", + "Event cancelled": "Událost zrušena", + "Event creation": "Vytváření události", + "Event date": "Datum události", + "Event deleted": "Událost odstraněna", + "Event deleted and report resolved": "Událost odstraněna a hlášení vyřešeno", + "Event description body": "Tělo popisu události", + "Event edition": "Úprava události", + "Event list": "Seznam událostí", + "Event metadata": "Metadata Události", + "Event page settings": "Nastavení stránky události", + "Event status": "Stav události", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Časové pásmo události bude ve výchozím nastavení odpovídat časovému pásmu adresy události, pokud existuje, nebo vašemu vlastnímu nastavení časového pásma.", + "Event to be confirmed": "Událost k potvrzení", + "Event {eventTitle} deleted": "Událost {eventTitle} smazána", + "Event {eventTitle} reported": "Událost {eventTitle} nahlášena", + "Events": "Události", + "Events close to you": "Události ve vašem okolí", + "Events nearby": "Události v okolí", + "Events nearby {position}": "Události v okolí {position}", + "Events tagged with {tag}": "Události označené tagem {tag}", + "Everything": "Vše", + "Ex: mobilizon.fr": "Např.: mobilizon.fr", + "Ex: someone@mobilizon.org": "Např: someone@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "Např: někdo{'@'}mobilizon.org", + "Explore": "Prozkoumat", + "Explore events": "Prozkoumat události", + "Explore!": "Prozkoumejte!", + "Export": "Export", + "External provider URL": "URL externího poskytovatele", + "External registration": "Externí registrace", + "Failed to get location.": "Nepodařilo se zjistit polohu.", + "Failed to save admin settings": "Při ukládání administrátorských nastavení došlo k chybě", + "Favicon": "Favicon", + "Featured events": "Doporučené události", + "Federated Group Name": "Název federativní skupiny", + "Federation": "Federace", + "Fediverse account": "účet Fediverse", + "Fetch more": "Získat více", + "Filter": "Filtr", + "Filter by name": "Filtrování podle jména", + "Filter by profile or group name": "Filtrování podle jména profilu nebo skupiny", + "Find an address": "Najít adresu", + "Find an instance": "Najít instanci", + "Find another instance": "Vyhledání další instance", + "Find or add an element": "Najít nebo přidat prvek", + "First steps": "První kroky", + "Follow": "Sledovat", + "Follow a new instance": "Sledovat novou instanci", + "Follow instance": "Sledovat instance", + "Follow request pending approval": "Následná žádost čeká na schválení", + "Follow requests will be approved by a group moderator": "Žádosti o sledování bude schvalovat moderátor skupiny", + "Follow status": "Sledování stavu", + "Followed": "Sledováno", + "Followed, pending response": "Sledováno, čeká se na odpověď", + "Follower": "Sledující", + "Followers": "Sledující", + "Followers will receive new public events and posts.": "Sledující budou dostávat nové veřejné události a příspěvky.", + "Following": "Sledujte", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Sledování skupiny vám umožní být informováni o {group_upcoming_public_events}, zatímco připojení ke skupině znamená, že získáte {access_to_group_private_content_as_well}, včetně skupinových diskusí, zdrojů skupiny a příspěvků určených pouze pro členy.", + "Followings": "Sledování", + "Follows us": "Sleduje nás", + "Follows us, pending approval": "Sleduje nás, čeká na schválení", + "For instance: London": "Pro instanci: Londýn", + "For instance: London, Taekwondo, Architecture…": "Například: London, Taekwondo, architektura, …", + "Forgot your password ?": "Zapomenuté heslo?", + "Forgot your password?": "Zapomněli jste heslo?", + "Framadate poll": "Anketa Framadate", + "From my groups": "Z mých skupin", + "From the {startDate} at {startTime} to the {endDate}": "Od {startDate} v {startTime} do {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Od {startDate} v {startTime} do {endDate} v {endTime}", + "From the {startDate} to the {endDate}": "Od {startDate} do {endDate}", + "From this instance only": "Pouze z této instance", + "From yourself": "Sám od sebe", + "Fully accessible with a wheelchair": "Plně přístupný s invalidním vozíkem", + "Gather ⋅ Organize ⋅ Mobilize": "Setkej se ⋅ Organizuj ⋅ Mobilizuj", + "General": "Obecné", + "General information": "Obecné informace", + "General settings": "Obecná nastavení", + "Geolocate me": "Určete mou zeměpisnou polohu", + "Geolocation was not determined in time.": "Geolokace nebyla včas určena.", + "Get informed of the upcoming public events": "Získejte informace o nadcházejících veřejných akcích", + "Getting location": "Získává se lokace", + "Getting there": "Jak se tam dostat", + "Glossary": "Slovník", + "Go": "Jít na", + "Go to booking": "Přejít na rezervaci", + "Go to the event page": "Přejít na stránku události", + "Go!": "Jděte!", + "Google Meet": "Google Meet", + "Group": "Skupina", + "Group Followers": "Sledovatelé skupiny", + "Group Members": "Členové skupiny", + "Group URL": "URL Skupiny", + "Group activity": "Aktivita skupiny", + "Group address": "Adresa skupiny", + "Group description body": "Tělo popisu skupiny", + "Group display name": "Zobrazovaný název skupiny", + "Group members": "Členové skupiny", + "Group name": "Název skupiny", + "Group profiles": "Profily skupiny", + "Group settings": "Nastavení skupiny", + "Group settings saved": "Uložení nastavení skupiny", + "Group short description": "Stručný popis skupiny", + "Group visibility": "Viditelnost skupiny", + "Group {displayName} created": "Skupina {displayName} vytvořena", + "Group {groupTitle} reported": "Skupina {groupTitle} nahlášena", + "Groups": "Skupiny", + "Groups are not enabled on this instance.": "Skupiny nejsou v této instanci povoleny.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Skupiny jsou prostorem pro koordinaci a přípravu, abyste mohli lépe organizovat akce a řídit svou komunitu.", + "Heading Level 1": "Úroveň záhlaví 1", + "Heading Level 2": "Úroveň záhlaví 2", + "Heading Level 3": "Úroveň záhlaví 3", + "Headline picture": "Titulní obrázek", + "Hide filters": "Skrýt filtry", + "Hide replies": "Skrýt odpovědi", + "Home": "Úvodní strana", + "Home to {number} users": "Domov pro {number} uživatelů", + "Homepage": "Úvodní stránka", + "Hourly email summary": "Hodinový přehled e-mailů", + "I agree to the {instanceRules} and {termsOfService}": "Souhlasím s {instanceRules} a {termsOfService}", + "I create an identity": "Vytvářím identitu", + "I don't have a Mobilizon account": "Nemám Mobilizon účet", + "I have a Mobilizon account": "Mám Mobilizon účet", + "I have an account on another Mobilizon instance.": "Mám účet na jiné instanci Mobilizonu.", + "I have an account on {instance}.": "Mám účet na {instance}.", + "I participate": "Účastním se", + "I want to allow people to participate without an account.": "Chci umožnit lidem se účastnit bez účtu.", + "I want to approve every participation request": "Chci odsouhlasit každou žádost o účast", + "I want to manage the registration with an external provider": "Chci spravovat registraci u externího poskytovatele", + "I've been mentionned in a comment under an event": "Byl jsem zmíněn v komentáři pod událostí", + "I've been mentionned in a conversation": "Byl jsem zmíněn v konverzaci", + "I've been mentionned in a group discussion": "Byl jsem zmíněn v komentáři pod událostí", + "I've clicked on X, then on Y": "Kliknul jsem na X, pak na Y", + "ICS feed for events": "Kanál ICS pro události", + "ICS/WebCal Feed": "Kanál ICS/WebCal", + "IP Address": "IP adresa", + "Identities": "Identity", + "Identity {displayName} created": "Identita {displayName} vytvořena", + "Identity {displayName} deleted": "Identita {displayName} smazána", + "Identity {displayName} updated": "Identita {displayName} aktualizována", + "If allowed by organizer": "Pokud to organizátor povolí", + "If an account with this email exists, we just sent another confirmation email to {email}": "Pokud účet s tímto e-mailem již existuje, odeslali jsme na {email} další potvrzovací e-mail", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Pokud je tato identita jediným správcem některých skupin, musíte je před odstraněním této identity odstranit.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Pokud jste dotázáni na svou federativní indentitu, skládá se z vašeho uživatelského jména a vaší instance. Například federovaná identita pro váš první profil je:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Pokud jste si zvolili ruční ověřování účastníků, Mobilizon vám zašle e-mail s informacemi o nových účastech, které je třeba zpracovat. Frekvenci těchto oznámení si můžete zvolit níže.", + "If you want, you may send a message to the event organizer here.": "Pokud chcete, můžete organizátorovi akce poslat zprávu zde.", + "Ignore": "Ignorovat", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Ilustrační obrázek pro \"{category}\" od {author} na {source} ({license})", + "In person": "Osobně", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "V následujícím kontextu je aplikace software poskytovaný týmem Mobilizon nebo třetí stranou, který slouží k interakci s vaší instancí.", + "In the past": "V minulosti", + "In this instance's network": "V síti této instance", + "Increase": "Zvýšení", + "Instance": "Instance", + "Instance Long Description": "Dlouhý popis Instance", + "Instance Name": "Název instance", + "Instance Privacy Policy": "Zásady ochrany osobních údajů instance", + "Instance Privacy Policy Source": "Instance Zásady ochrany osobních údajů Zdroj", + "Instance Privacy Policy URL": "Adresa URL zásad ochrany osobních údajů instance", + "Instance Rules": "Pravidla instance", + "Instance Short Description": "Stručný popis instance", + "Instance Slogan": "Slogan Instance", + "Instance Terms": "Podmínky instance", + "Instance Terms Source": "Zdroj podmínek instance", + "Instance Terms URL": "URL podmínek instance", + "Instance administrator": "Instance administrátor", + "Instance configuration": "Konfigurace instance", + "Instance feeds": "Kanály Instance", + "Instance languages": "Jazyky instance", + "Instance rules": "Pravidla instance", + "Instance settings": "Nastavení instance", + "Instances": "Instance", + "Instances following you": "Instance, které vás sledují", + "Instances you follow": "Instance, které sledujete", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Integrujte tuto událost s nástroji třetích stran a zobrazte metadata události.", + "Interact": "Interakce", + "Interact with a remote content": "Interakce se vzdáleným obsahem", + "Invite a new member": "Pozvat nového člena", + "Invite member": "Pozvat člena", + "Invited": "Pozvaný", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Je možné, že obsah není v této instanci přístupný, protože tato instance zablokovala profily nebo skupiny, které za tímto obsahem stojí.", + "Italic": "Kurzíva", + "Jitsi Meet": "Jitsi Meet", + "Join": "Připojit", + "Join {instance}, a Mobilizon instance": "Přidej se k instanci Mobilizonu {instance}", + "Join group": "Připojit se ke skupině", + "Join group {group}": "Připojit se ke skupině {group}", + "Join {instance}, a Mobilizon instance": "Připojte se k {instance}, instanci Mobilizon", + "Keep the entire conversation about a specific topic together on a single page.": "Udržujte celou konverzaci o určitém tématu pohromadě na jedné stránce.", + "Key words": "Klíčová slova", + "Keyword, event title, group name, etc.": "Klíčové slovo, název události, název skupiny atd.", + "Language": "Jazyk", + "Languages": "Jazyky", + "Last IP adress": "Poslední IP adresa", + "Last group created": "Naposledy vytvořená skupina", + "Last published event": "Poslední publikovaná událost", + "Last published events": "Naposledy zveřejněné události", + "Last seen on": "Naposledy zobrazeno na", + "Last sign-in": "Poslední přihlášení", + "Last used on {last_used_date}": "Naposledy použito dne {last_used_date}", + "Last week": "Minulý týden", + "Latest posts": "Nejnovější příspěvky", + "Learn more": "Zjistit více", + "Learn more about Mobilizon": "Více informací o Mobilizonu", + "Learn more about {instance}": "Další informace o {instance}", + "Least recently published": "Nejnověji publikované", + "Leave": "Odejít", + "Leave event": "Opustit událost", + "Leave group": "Opustit skupinu", + "Leaving event \"{title}\"": "Opouštíte událost \"{title}\"", + "Legal": "Právní", + "Let's define a few settings": "Definujme několik nastavení", + "License": "Licence", + "Light": "Světlý", + "Limited number of places": "Omezený počet míst", + "List": "Seznam", + "List of conversations": "Seznam konverzací", + "List title": "Seznam názvů", + "Live": "Živě", + "Load more": "Načíst více", + "Load more activities": "Načíst další aktivity", + "Loading comments…": "Načítání komentářů…", + "Loading map": "Načítání mapy", + "Local": "Místní", + "Local time ({timezone})": "Místní čas ({timezone})", + "Local times ({timezone})": "Místní čas ({timezone})", + "Locality": "Lokalita", + "Location": "Lokalita", + "Log in": "Přihlásit se", + "Log out": "Odhlásit se", + "Login": "Přihlášení", + "Login on Mobilizon!": "Přihlášení na Mobilizonu!", + "Login on {instance}": "Přihlášení na {instance}", + "Login status": "Stav přihlášení", + "Logo": "Logo", + "Logo of the instance. Defaults to the upstream Mobilizon logo.": "Logo instance. Ve výchozím nastavení je použito logo Mobilizon.", + "Main languages you/your moderators speak": "Hlavní jazyky, kterými mluvíte vy/vaši moderátoři", + "Make sure that all words are spelled correctly.": "Ujistěte se, že jsou všechna slova napsána správně.", + "Manage activity settings": "Správa nastavení aktivit", + "Manage event participations": "Spravování účastí na událostech", + "Manage group members": "Správa členů skupiny", + "Manage group memberships": "Správa členství ve skupině", + "Manage participations": "Spravovat účasti", + "Manage push notification settings": "Správa nastavení oznámení push", + "Manually approve new followers": "Ruční schvalování nových následovníků", + "Manually enter address": "Ruční zadání adresy", + "Manually invite new members": "Ručně pozvat nové členy", + "Map": "Mapa", + "Mark as resolved": "Označit jako vyřešené", + "Maybe the content was removed by the author or a moderator": "Možná byl obsah odstraněn autorem nebo moderátorem", + "Member": "Člen", + "Members": "Členové", + "Members will also access private sections like discussions, resources and restricted posts.": "Členové mají také přístup do soukromých sekcí, jako jsou diskuse, zdroje a příspěvky s omezeným přístupem.", + "Members-only post": "Příspěvek pouze pro členy", + "Membership requests will be approved by a group moderator": "Žádosti o členství schvaluje moderátor skupiny", + "Memberships": "Členství", + "Mentions": "Zmínky", + "Message": "Zpráva", + "Message body": "Tělo zprávy", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon je federovaná síť. S touto událostí můžete interagovat z jiného serveru.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon je federativní software, což znamená, že v závislosti na nastavení federace správce můžete komunikovat s obsahem z jiných instancí, například se připojovat ke skupinám nebo událostem, které byly vytvořeny jinde.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon je nástroj, který vám pomůže vyhledávat, vytvářet a organizovat události.", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon je nástroj, který vám pomůže {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon není obří platforma, ale mnoho vzájemně propojených webových stránek Mobilizon.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon není obří platforma, ale {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "Mobilizon software", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon používá systém profilů ke srovnání vašich aktivit. Budete si moci vytvořit libovolný počet profilů.", + "Mobilizon version": "Verze Mobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon vám zašle e-mail, pokud dojde u událostí, kterých se účastníte, k důležitým změnám: datum a čas, adresa, potvrzení nebo zrušení atd.", + "Moderate new members": "Moderování nových členů", + "Moderated comments (shown after approval)": "Moderované komentáře (zobrazeny po odsouhlasení)", + "Moderation": "Moderace", + "Moderation log": "Moderátorský protokol", + "Moderation logs": "Protokoly o moderování", + "Moderator": "Moderátor", + "Modify all of your account's data": "Úprava všech údajů vašeho účtu", + "More options": "Další možnosti", + "Most recently published": "Nejnověji publikované", + "Move": "Přesunout", + "Move \"{resourceName}\"": "Přesunout \"{resourceName}\"", + "Move resource to the root folder": "Přesunutí prostředku do kořenové složky", + "Move resource to {folder}": "Přesunout zdroj do {folder}", + "My account": "Můj účet", + "My events": "Moje události", + "My federated identity ends in {domain}": "Moje federovaná identita končí na {domain}", + "My groups": "Moje skupiny", + "My identities": "Moje identity", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "POZNÁMKA! Výchozí podmínky nebyly prověřeny právníkem, a proto je nepravděpodobné, že by poskytovaly plnou právní ochranu ve všech situacích pro správce instance, který je používá. Nejsou také specifické pro všechny země a jurisdikce. Pokud si nejste jisti, poraďte se s právníkem.", + "Name": "Jméno", + "Navigated to {pageTitle}": "Přejít na {pageTitle}", + "Never used": "Nikdy nepoužité", + "New announcement": "Nové oznámení", + "New discussion": "Nová diskuse", + "New email": "Nový e-mail", + "New folder": "Nová složka", + "New link": "Nový odkaz", + "New members": "Noví členové", + "New note": "Nová poznámka", + "New password": "Nové heslo", + "New post": "Nový příspěvek", + "New private message": "Nová soukromá zpráva", + "New profile": "Nový profil", + "Next": "Další", + "Next month": "Příští měsíc", + "Next page": "Další stránka", + "Next week": "Příští týden", + "No activities found": "Nenalezeny žádné aktivity", + "No address defined": "Není definována adresa", + "No apps authorized yet": "Zatím nejsou autorizovány žádné aplikace", + "No categories with public upcoming events on this instance were found.": "Nebyly nalezeny žádné kategorie s veřejnými nadcházejícími událostmi v této instanci.", + "No closed reports yet": "Zatím žádná uzavřená hlášení", + "No comment": "Žádný komentář", + "No comments yet": "Zatím žádné komentáře", + "No content found": "Nenalezen žádný obsah", + "No discussions yet": "Zatím žádná diskuse", + "No end date": "Žádné datum ukončení", + "No event found at this address": "Na této adrese nebyla nalezena žádná událost", + "No events found": "Žádné události nenalezeny", + "No events found for {search}": "Pro {search} nebyly nalezeny žádné události", + "No follower matches the filters": "Filtrům neodpovídá žádný následovník", + "No group found": "Žádná skupina nenalezena", + "No group matches the filters": "Filtrům neodpovídá žádná skupina", + "No group member found": "Nenalezen žádný člen skupiny", + "No groups found": "Žádné skupiny nenalezeny", + "No groups found for {search}": "Pro {search} nebyly nalezeny žádné skupiny", + "No information": "Žádné informace", + "No instance follows your instance yet.": "Žádná instance zatím nenásleduje vaši instanci.", + "No instance found.": "Nebyla nalezena žádná instance.", + "No instance to approve|Approve instance|Approve {number} instances": "Žádná instance ke schválení|Schválit instanci|Schválit {number} instancí", + "No instance to reject|Reject instance|Reject {number} instances": "Žádná instance k odmítnutí|Odmítnout instanci|Odmítnout {number} instancí", + "No instance to remove|Remove instance|Remove {number} instances": "Žádné instance k odstranění|Odstranit instanci|Odstranit {number} instancí", + "No instances match this filter. Try resetting filter fields?": "Tomuto filtru neodpovídají žádné instance. Zkusíte resetovat pole filtru?", + "No languages found": "Nebyly nalezeny žádné jazyky", + "No member matches the filters": "Filtrům neodpovídá žádný člen", + "No members found": "Nenalezeni žádní členové", + "No memberships found": "Členství nenalezeno", + "No message": "Žádná zpráva", + "No moderation logs yet": "Zatím žádné protokoly o moderování", + "No more activity to display.": "Žádná další aktivita k zobrazení.", + "No one is participating|One person participating|{going} people participating": "Nikdo se neúčastní|Jedna osoba se účastní|{going} lidí se účastní", + "No open reports yet": "Zatím žádná otevřená hlášení", + "No organized events found": "Nenalezeny žádné organizované akce", + "No organized events listed": "Žádné organizované akce nejsou uvedeny", + "No participant matches the filters": "Filtrům neodpovídá žádný účastník", + "No participant to approve|Approve participant|Approve {number} participants": "Žádný účastník ke schválení|Schválit účastníka|Schválit {number} účastníků", + "No participant to reject|Reject participant|Reject {number} participants": "Žádný participant k odmítnutí|Odmítnout participanta|Odmítnout {number} participantů", + "No participations listed": "Žádné uvedené účasti", + "No posts found": "Nenalezeny žádné příspěvky", + "No posts yet": "Zatím žádné příspěvky", + "No profile matches the filters": "Filtrům neodpovídá žádný profil", + "No public upcoming events": "Žádné nadcházející veřejné akce", + "No resolved reports yet": "Zatím žádná vyřešená hlášení", + "No resources in this folder": "Žádné zdroje v této složce", + "No resources selected": "Žádné vybrané zdroje|Jeden vybraný zdroj|{count} vybraných zdrojů", + "No resources yet": "Zatím žádné zdroje", + "No results for \"{queryText}\"": "Žádné výsledky pro \"{queryText}\"", + "No results for {search}": "Žádné výsledky pro {search}", + "No results found": "Žádné výsledky nenalezeny", + "No results found for {search}": "Pro {search} nebyly nalezeny žádné výsledky", + "No rules defined yet.": "Zatím nejsou definována žádná pravidla.", + "No user matches the filter": "Filtru neodpovídá žádný uživatel", + "No user matches the filters": "Filtrům neodpovídá žádný uživatel", + "None": "Žádný", + "Not accessible with a wheelchair": "Není přístupný s invalidním vozíkem", + "Not approved": "Neschváleno", + "Not confirmed": "Nepotvrzeno", + "Notes": "Poznámky", + "Notification before the event": "Oznámení před akcí", + "Notification on the day of the event": "Oznámení v den události", + "Notification settings": "Nastavení oznámení", + "Notifications": "Oznámení", + "Notifications for manually approved participations to an event": "Oznámení o ručně schválených účastech na události", + "Notify participants": "Upozornit účastníky", + "Notify the user of the change": "Upozornit uživatele na změnu", + "Now, create your first profile:": "Nyní si vytvořte svůj první profil:", + "Number of members": "Počet účastníků", + "Number of places": "Počet míst", + "OK": "OK", + "Old password": "Staré heslo", + "On foot": "Pěšky", + "On the Fediverse": "Na Fediverse", + "On {date}": "V {date}", + "On {date} ending at {endTime}": "V {date} končící v {endTime}", + "On {date} from {startTime} to {endTime}": "V {date} od {startTime} do {endTime}", + "On {date} starting at {startTime}": "V {date} od {startTime}", + "On {instance} and other federated instances": "Na {instance} a dalších federovaných instancích", + "Online": "Online", + "Online events": "Online události", + "Online ticketing": "Prodej vstupenek online", + "Online upcoming events": "Nadcházející události online", + "Only Mobilizon instances can be followed": " ", + "Only accessible through link": "Dostupné pouze přes odkaz", + "Only accessible through link (private)": "Přístupné pouze přes odkaz (soukromý)", + "Only accessible to members of the group": "Přístupné pouze členům skupiny", + "Only alphanumeric lowercased characters and underscores are supported.": "Podporovány jsou pouze alfanumerické znaky psané malými písmeny a podtržítka.", + "Only group members can access discussions": "Přístup k diskusím mají pouze členové skupiny", + "Only group moderators can create, edit and delete events.": "Události mohou vytvářet, upravovat a mazat pouze moderátoři skupiny.", + "Only group moderators can create, edit and delete posts.": "Příspěvky mohou vytvářet, upravovat a mazat pouze moderátoři skupiny.", + "Only instances with an application actor can be followed": "Sledovány mohou být pouze instance s žádajícím aktérem", + "Only registered users may fetch remote events from their URL.": "Vzdálené události mohou z URL načítat pouze registrovaní uživatelé.", + "Open": "Otevřeno", + "Open a topic on our forum": "Otevřete téma na našem fóru", + "Open an issue on our bug tracker (advanced users)": "Otevření problému v našem nástroji pro sledování chyb (pro pokročilé uživatele)", + "Open conversations": "Otevřené konverzace", + "Open main menu": "Otevřít hlavní nabídku", + "Open user menu": "Otevřít uživatelské menu", + "Opened reports": "Otevřené hlášení", + "Or": "Nebo", + "Ordered list": "Číslovaný seznam", + "Organized": "Organizuje", + "Organized by": "Pořádá", + "Organized by {name}": "Organizuje {name}", + "Organized events": "Organizované události", + "Organizer": "Pořadatel", + "Organizer notifications": "Oznámení organizátora", + "Organizers": "Pořadatelé", + "Other": "Ostatní", + "Other actions": "Jiné akce", + "Other notification options:": "Další možnosti oznámení:", + "Other software may also support this.": "Tuto funkci může podporovat i jiný software.", + "Other users with the same IP address": "Ostatní uživatelé se stejnou IP adresou", + "Other users with the same email domain": "Ostatní uživatelé se stejnou e-mailovou doménou", + "Otherwise this identity will just be removed from the group administrators.": "V opačném případě bude tato identita pouze odstraněna ze správců skupiny.", + "Owncast": "Vlastní vysílání", + "Page": "Strana", + "Page limited to my group (asks for auth)": "Stránka omezená na mou skupinu (žádá o autorizaci)", + "Page not found": "Stránka nenalezena", + "Parent folder": "Nadřazená složka", + "Partially accessible with a wheelchair": "Částečně přístupný s invalidním vozíkem", + "Participant": "Účastník", + "Participants": "Účastníci", + "Participants to {eventTitle}": "Účastníci na {eventTitle}", + "Participate": "Účastněte se", + "Participate using your email address": "Zúčastněte se pomocí své e-mailové adresy", + "Participation approval": "Schválení účasti", + "Participation confirmation": "Potvrzení účasti", + "Participation notifications": "Oznámení o účasti", + "Participation requested!": "Účast vyžadována!", + "Participation with account": "Účast s účtem", + "Participation without account": "Účast bez účtu", + "Participations": "Participace", + "Password": "Heslo", + "Password (confirmation)": "Heslo (potvrzení)", + "Password reset": "Obnovení hesla", + "Past events": "Proběhlé události", + "PeerTube live": "PeerTube live", + "PeerTube replay": "Přehrávání na PeerTube", + "Pending": "Čekající na", + "Personal feeds": "Osobní kanály", + "Photo by {author} on {source}": "Foto: {autor} na {source}", + "Pick": "Vybrat", + "Pick a profile or a group": "Výběr profilu nebo skupiny", + "Pick an identity": "Zvolte identitu", + "Pick an instance": "Vyberte instanci", + "Please add as many details as possible to help identify the problem.": "Přidejte co nejvíce podrobností, které pomohou identifikovat problém.", + "Please check your spam folder if you didn't receive the email.": "Pokud jste e-mail neobdrželi, zkontrolujte prosím složku nevyžádané pošty.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Pokud si myslíte, že se jedná o chybu, kontaktujte prosím správce této instance Mobilizonu.", + "Please do not use it in any real way.": "Prosím, nepoužívejte jej pro reálný provoz.", + "Please enter your password to confirm this action.": "Pro potvrzení této akce zadejte své heslo.", + "Please make sure the address is correct and that the page hasn't been moved.": "Ujistěte se, že je adresa správná a že stránka nebyla přesunuta.", + "Please read the {fullRules} published by {instance}'s administrators.": "Přečtěte si prosím {fullRules} zveřejněné správci {instance}.", + "Popular groups close to you": "Populární skupiny ve vašem okolí", + "Popular groups nearby {position}": "Oblíbené skupiny v okolí {position}", + "Post": "Příspěvek", + "Post URL": "URL příspěvku", + "Post a comment": "Přidat komentář", + "Post a reply": "Přidat odpověď", + "Post body": "Tělo příspěvku", + "Post comments": "Vkládat komentáře", + "Post {eventTitle} reported": "Příspěvek {eventTitle} nahlášen", + "Postal Code": "PSČ", + "Posts": "Příspěvky", + "Powered by Mobilizon": "Běží na Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Běží na {mobilizon}. © 2018 - {date} Přispěvatelé Mobilizon - Vyrobeno s finanční podporou {contributors}.", + "Preferences": "Předvolby", + "Previous": "Předchozí", + "Previous email": "Předchozí e-mail", + "Previous month": "Předchozí měsíc", + "Previous page": "Předchozí strana", + "Price sheet": "Ceník", + "Primary Color": "Základní barva", + "Privacy": "Soukromí", + "Privacy Policy": "Zásady ochrany soukromí", + "Privacy policy": "Zásady ochrany osobních údajů", + "Private event": "Soukromá událost", + "Private feeds": "Soukromé kanály", + "Profile": "Profil", + "Profile feeds": "Profilové kanály", + "Profile suspended and report resolved": "Profil pozastaven a hlášení vyřešeno", + "Profiles": "Profily", + "Profiles and federation": "Profily a federace", + "Promote": "Propagovat", + "Public": "Veřejnost", + "Public RSS/Atom Feed": "Veřejný RSS/Atom kanál", + "Public comment moderation": "Moderování veřejných komentářů", + "Public event": "Veřejná událost", + "Public feeds": "Veřejné kanály", + "Public iCal Feed": "Veřejný iCal kanál", + "Public preview": "Veřejný náhled", + "Publication date": "Datum zveřejnění", + "Publish": "Zveřejnit", + "Publish events": "Zveřejňování událostí", + "Publish group posts": "Zveřejňování příspěvků ve skupině", + "Published by {name}": "Zveřejnil {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Publikované události s {comments} komentáři a {participations} potvrzenou účastí", + "Published events with {comments} comments and {participations} confirmed participations": "Zveřejněné události s {comments} komentářemi a {participations} potvrzenými účastmi", + "Push": "Push", + "Quote": "Citace", + "RSS/Atom Feed": "RSS/Atom kanál", + "Radius": "Poloměr", + "Read all of your account's data": "Čtení všech dat vašeho účtu", + "Read user activity settings": "Čtení nastavení aktivity uživatele", + "Read user media": "Číst uživatelská média", + "Read user memberships": "Čtení uživatelských členství", + "Read user participations": "Čtení uživatelských příspěvků", + "Read user settings": "Čtení uživatelských nastavení", + "Recap every week": "Shrnutí každý týden", + "Receive one email for each activity": "Obdržet jeden e-mail pro každou aktivitu", + "Receive one email per request": "Obdržet jeden e-mail na žádost", + "Redirecting in progress…": "Probíhá přesměrování…", + "Redirecting to Mobilizon": "Přesměrování na Mobilizon", + "Redirecting to content…": "Přesměrování na obsah…", + "Redo": "Znovu", + "Refresh profile": "Obnovit profil", + "Regenerate new links": "Regenerovat nové odkazy", + "Region": "Region", + "Register": "Registrovat", + "Register an account on {instanceName}!": "Zaregistrujte si účet na {instanceName}!", + "Register on this instance": "Registrace v této instanci", + "Registration is allowed, anyone can register.": "Registrace je povolena, registrovat se může kdokoli.", + "Registration is closed.": "Registrace je uzavřena.", + "Registration is currently closed.": "Registrace je v současné době uzavřena.", + "Registrations": "Registrace", + "Registrations are restricted by allowlisting.": "Registrace jsou omezeny seznamem povolení.", + "Reject": "Odmítnout", + "Reject follow": "Odmítnout sledování", + "Reject member": "Odmítnout člena", + "Rejected": "Odmítnuto", + "Remember my participation in this browser": "Vzpomeňte si na mou účast v tomto prohlížeči", + "Remove": "Odstranit", + "Remove link": "Odstranit odkaz", + "Remove uploaded media": "Odstranění nahraných médií", + "Rename": "Přejmenovat", + "Rename resource": "Přejmenovat zdroj", + "Reopen": "Znovu otevřít", + "Replay": "Přehrát", + "Reply": "Odpovědět", + "Report": "Nahlášení", + "Report #{reportNumber}": "Hlášení číslo {reportNumber}", + "Report as ham": "Nahlásit jako spam", + "Report as spam": "Nahlásit jako spam", + "Report as undetected spam": "Nahlásit jako nerozeznaný spam", + "Report reason": "Důvod pro nahlášení", + "Report status": "Zpráva o stavu", + "Report this comment": "Nahlásit tento komentář", + "Report this event": "Nahlásit tuto událost", + "Report this group": "Nahlásit tuto skupinu", + "Report this post": "Nahlásit tento příspěvek", + "Reported": "Nahlášeno", + "Reported at": "Nahlášeno v", + "Reported by": "Nahlášeno od", + "Reported by an unknown actor": "Nahlášen neznámým aktérem", + "Reported by someone anonymously": "Nahlásil někdo anonymně", + "Reported by someone on {domain}": "Nahlášeno někým na {domain}", + "Reported by {reporter}": "Nahlášeno od {reporter}", + "Reported content": "Nahlášený obsah", + "Reported group": "Nahlášená skupina", + "Reported identity": "Nahlášená identita", + "Reports": "Hlášení", + "Reports list": "Seznam zpráv", + "Request for participation confirmation sent": "Zaslání žádosti o potvrzení účasti", + "Resend confirmation email": "Opětovné odeslání potvrzovacího e-mailu", + "Resent confirmation email": "Znovu odeslaný potvrzovací e-mail", + "Reset": "Reset", + "Reset filters": "Obnovit filtry", + "Reset my password": "Obnovení mého hesla", + "Reset password": "Obnovení hesla", + "Resolved": "Vyřešeno", + "Resource provided is not an URL": "Poskytnutý zdroj není adresa URL", + "Resources": "Zdroje", + "Restricted": "Omezeno", + "Return to the event page": "Vraťte se na stránku události", + "Return to the group page": "Návrat na stránku skupiny", + "Revoke": "Odvolat", + "Right now": "Právě teď", + "Role": "Role", + "Rules": "Pravidla", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "Protokol SSL a jeho nástupce TLS jsou šifrovací technologie pro zabezpečení datové komunikace při používání služby. Šifrované spojení poznáte v adresním řádku prohlížeče, pokud adresa URL začíná {https} a v adresním řádku prohlížeče se zobrazí ikona zámku.", + "SSL/TLS": "SSL/TLS", + "Save": "Uložit", + "Save draft": "Uložit koncept", + "Schedule": "Rozvrh", + "Search": "Hledat", + "Search events, groups, etc.": "Hledání událostí, skupin atd.", + "Search target": "Cíl hledání", + "Searching…": "Hledání…", + "Secondary Color": "Druhá barva", + "Select a category": "Vybrat kategorii", + "Select a language": "Výběr jazyka", + "Select a radius": "Vybrat poloměr", + "Select a timezone": "Výběr časového pásma", + "Select all resources": "Vyberte všechny zdroje", + "Select distance": "Vyberte vzdálenost", + "Select languages": "Vybrat jazyky", + "Select the activities for which you wish to receive an email or a push notification.": "Vyberte aktivity, pro které chcete dostávat e-mailové nebo push oznámení.", + "Select this resource": "Vyberte tento zdroj", + "Send": "Odeslat", + "Send email": "Odeslat e-mail", + "Send feedback": "Odeslat zpětnou vazbu", + "Send notification e-mails": "Odesílání oznamovacích e-mailů", + "Send password reset": "Odeslat obnovení hesla", + "Send the confirmation email again": "Opětovné odeslání potvrzovacího e-mailu", + "Send the report": "Odeslání hlášení", + "Sent to {count} participants": "Neodesláno žádnému účastníkovi|Odesláno jednomu účastníkovi|Odesláno {count} účastníkům", + "Set an URL to a page with your own privacy policy.": "Nastavte adresu URL na stránku s vlastními zásadami ochrany osobních údajů.", + "Set an URL to a page with your own terms.": "Nastavte adresu URL na stránku s vlastními podmínkami.", + "Settings": "Nastavení", + "Share": "Sdílet", + "Share this event": "Sdílet tuto událost", + "Share this group": "Sdílet tuto skupinu", + "Share this post": "Sdílet tento příspěvek", + "Short bio": "Stručný životopis", + "Show filters": "Zobrazit filtry", + "Show map": "Zobrazit mapu", + "Show me where I am": "Ukázat mi kde jsem", + "Show remaining number of places": "Zobrazit zbývající počet míst", + "Show the time when the event begins": "Zobrazení času začátku události", + "Show the time when the event ends": "Zobrazení času ukončení události", + "Showing events before": "Zobrazení událostí před", + "Showing events starting on": "Zobrazení událostí začínajících na", + "Sign Language": "Znaková řeč", + "Sign in with": "Přihlásit se pomocí", + "Sign up": "Registrace", + "Since you are a new member, private content can take a few minutes to appear.": "Protože jste nový člen, může trvat několik minut, než se soukromý obsah objeví.", + "Skip to main content": "Přejít na hlavní obsah", + "Smoke free": "Nekuřácké", + "Smoking allowed": "Kouření povoleno", + "Social": "Sociální", + "Software details: {software_details}": "Podrobnosti o softwaru: {software_details}", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Některé odborné či jiné termíny použité v následujícím textu se mohou týkat obtížně pochopitelných pojmů. Pro jejich lepší pochopení jsme zde uvedli slovníček pojmů:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Omlouváme se, ale vaši zpětnou vazbu se nám nepodařilo uložit. Nebojte se, pokusíme se tento problém opravit.", + "Sort by": "Řadit podle", + "Starts on…": "Začíná na…", + "Status": "Stav", + "Statuses": "Stavy", + "Stop following instance": "Přestat sledovat instanci", + "Street": "Ulice", + "Submit": "Odeslat", + "Submit to Akismet": "Odeslat do Akismet", + "Subtitles": "Titulky", + "Suggestions:": "Návrhy:", + "Suspend": "Pozastavit", + "Suspend group": "Pozastavit skupinu", + "Suspend the account": "Pozastavit účet", + "Suspend the account?": "Pozastavit účet?", + "Suspend the profile": "Pozastavit profil", + "Suspend the profile?": "Pozastavit profil?", + "Suspended": "Pozastaveno", + "Tag search": "Hledání štítků", + "Task lists": "Seznamy úkolů", + "Technical details": "Technické detaily", + "Tentative": "Předběžné", + "Tentative: Will be confirmed later": "Předběžný termín: Bude potvrzeno později", + "Terms": "Podmínky", + "Terms of service": "Podmínky služby", + "Text": "Text", + "Thanks a lot, your feedback was submitted!": "Moc děkujeme, vaše zpětná vazba byla odeslána!", + "That you follow or of which you are a member": "které sledujete nebo jejichž jste členem", + "The Big Blue Button video teleconference URL": "URL videokonference Big Blue Button", + "The Google Meet video teleconference URL": "Adresa URL videokonference Google Meet", + "The Jitsi Meet video teleconference URL": "URL adresa videokonference Jitsi Meet", + "The Microsoft Teams video teleconference URL": "Adresa URL videokonference Microsoft Teams", + "The URL of a pad where notes are being taken collaboratively": "Adresa URL padu, kde se poznámky pořizují ve spolupráci", + "The URL of a poll where the choice for the event date is happening": "Adresa URL ankety, ve které probíhá volba data události", + "The URL where the event can be watched live": "Adresa URL, na které lze událost sledovat živě", + "The URL where the event live can be watched again after it has ended": "Adresa URL, na které lze událost po jejím skončení znovu sledovat v přímém přenosu", + "The Zoom video teleconference URL": "Adresa URL videokonference Zoom", + "The account's email address was changed. Check your emails to verify it.": "E-mailová adresa účtu byla změněna. Ověřte si ji v e-mailech.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Skutečný počet účastníků se může lišit, protože tato akce se koná v jiné instanci.", + "The calc will be created on {service}": "Calc bude vytvořen na {service}", + "The content came from another server. Transfer an anonymous copy of the report?": "Obsah pochází z jiného serveru. Chcete přenést anonymní kopii zprávy?", + "The device code is incorrect or no longer valid.": "Kód zařízení je nesprávný nebo již neplatný.", + "The draft event has been updated": "Návrh události byl aktualizován", + "The event has a sign language interpreter": "Na události je k dispozici tlumočník do znakového jazyka", + "The event has been created as a draft": "Událost byla vytvořena jako návrh", + "The event has been published": "Událost byla zveřejněna", + "The event has been updated": "Událost byla aktualizována", + "The event has been updated and published": "Událost byla aktualizována a zveřejněna", + "The event hasn't got a sign language interpreter": "Událost nemá tlumočníka do znakového jazyka", + "The event is fully online": "Událost je plně online", + "The event live video contains subtitles": "Přímý přenos události obsahuje titulky", + "The event live video does not contain subtitles": "Přímý přenos události neobsahuje titulky", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Organizátor akce se rozhodl ověřit účast ručně. Chcete přidat malou poznámku, ve které vysvětlíte, proč se chcete této akce zúčastnit?", + "The event organizer didn't add any description.": "Organizátor akce nepřidal žádný popis.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Organizátor akce schvaluje účast ručně. Vzhledem k tomu, že jste se rozhodli zúčastnit bez účtu, vysvětlete, proč se chcete této akce zúčastnit.", + "The event title will be ellipsed.": "Název události se zvýrazní.", + "The event will show as attributed to this group.": "Událost se zobrazí jako přiřazená této skupině.", + "The event will show as attributed to this profile.": "Událost se zobrazí jako přiřazená k tomuto profilu.", + "The event will show as attributed to your personal profile.": "Událost se zobrazí jako přiřazená k vašemu osobnímu profilu.", + "The event {event} was created by {profile}.": "Událost {event} byla vytvořena pomocí {profile}.", + "The event {event} was deleted by {profile}.": "Událost {event} byla odstraněna pomocí {profile}.", + "The event {event} was updated by {profile}.": "Událost {event} byla aktualizována pomocí {profile}.", + "The events you created are not shown here.": "Vámi vytvořené události se zde nezobrazují.", + "The following participants are groups, which means group members are able to reply to this conversation:": "Následující účastníci jsou skupiny, což znamená, že členové skupiny mohou na tuto konverzaci odpovídat:", + "The following user's profiles will be deleted, with all their data:": "Profily následujících uživatelů budou smazány i se všemi jejich údaji:", + "The geolocation prompt was denied.": "Výzva ke geolokaci byla zamítnuta.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "Do skupiny se nyní může připojit kdokoli, ale nové členy musí schválit správce.", + "The group can now be joined by anyone.": "Do skupiny se nyní může připojit kdokoli.", + "The group can now only be joined with an invite.": "Do skupiny lze nyní vstoupit pouze na základě pozvánky.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Skupina bude veřejně uvedena ve výsledcích vyhledávání a může být navržena v sekci prozkoumat. Na její stránce se budou zobrazovat pouze veřejné informace.", + "The group's avatar was changed.": "Avatar skupiny byl změněn.", + "The group's banner was changed.": "Nápis skupiny byl změněn.", + "The group's physical address was changed.": "Fyzická adresa skupiny byla změněna.", + "The group's short description was changed.": "Krátký popis skupiny byl změněn.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "Správce instance je osoba nebo subjekt, který tuto instanci služby Mobilizon provozuje.", + "The member was approved": "Člen byl schválen", + "The member was removed from the group {group}": "Člen byl odstraněn ze skupiny {group}", + "The membership request from {profile} was rejected": "Žádost o členství od {profile} byla zamítnuta", + "The only way for your group to get new members is if an admininistrator invites them.": "Jediný způsob, jak může vaše skupina získat nové členy, je pozvat je administrátorem.", + "The organiser has chosen to close comments.": "Pořadatel se rozhodl komentáře uzavřít.", + "The pad will be created on {service}": "Pad bude vytvořen na {service}", + "The page you're looking for doesn't exist.": "Hledaná stránka neexistuje.", + "The password was successfully changed": "Heslo bylo úspěšně změněno", + "The post {post} was created by {profile}.": "Příspěvek {post} byl vytvořen uživatelem {profile}.", + "The post {post} was deleted by {profile}.": "Příspěvek {post} byl smazán uživatelem {profil}.", + "The post {post} was updated by {profile}.": "Příspěvek {post} byl aktualizován {profil}.", + "The provided application was not found.": "Poskytnutá aplikace nebyla nalezena.", + "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.": "Obsah zprávy (případné komentáře a událost) a údaje o nahlášeném profilu budou předány společnosti Akismet.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Zpráva bude odeslána moderátorům vaší instance. Níže můžete vysvětlit, proč tento obsah hlásíte.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "Vybraný obrázek je příliš velký. Je třeba vybrat soubor menší než {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Technické detaily chyby mohou vývojářům pomoci problém snadněji vyřešit. Přidejte je prosím do zpětné vazby.", + "The user has been disabled": "Uživatel byl zakázán", + "The videoconference will be created on {service}": "Videokonference bude vytvořena na {service}", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Bude použita {default_privacy_policy}. Budou přeloženy do jazyka uživatele.", + "The {default_terms} will be used. They will be translated in the user's language.": "Použijí se {default_terms}. Budou přeloženy do jazyka uživatele.", + "Theme": "Motiv", + "There are {participants} participants.": "Jsou zde {participants} účastníci.", + "There is no activity yet. Start doing some things to see activity appear here.": "Zatím zde není žádná aktivita. Začněte dělat nějaké věci, aby se zde objevila aktivita.", + "There will be no way to recover your data.": "Data nebude možné obnovit.", + "There will be no way to restore the profile's data!": "Data profilu nebude možné obnovit!", + "There will be no way to restore the user's data!": "Uživatelská data nebude možné obnovit!", + "There's no announcements yet": "Zatím nejsou žádná oznámení", + "There's no conversations yet": "Zatím neproběhly žádné konverzace", + "There's no discussions yet": "Zatím neproběhla žádná diskuse", + "These apps can access your account through the API. If you see here apps that you don't recognize, that don't work as expected or that you don't use anymore, you can revoke their access.": "Tyto aplikace mají přístup k vašemu účtu prostřednictvím rozhraní API. Pokud zde vidíte aplikace, které nepoznáváte, které nefungují podle očekávání nebo které již nepoužíváte, můžete jim zrušit přístup.", + "These events may interest you": "Tyto události by vás mohly zajímat", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Tyto kanály obsahují údaje o událostech, jejichž účastníkem nebo tvůrcem je některý z vašich profilů. Měli byste je udržovat v soukromí. Kanály pro konkrétní profily najdete na stránce s jednotlivými úpravami profilů.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Tyto kanály obsahují údaje o událostech, jejichž účastníkem nebo tvůrcem je tento konkrétní profil. Měli byste si je ponechat jako soukromé. Informační kanály pro všechny své profily najdete v nastavení oznámení.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Tato instance Mobilizon a tento organizátor události umožňuje anonymní účast, ale vyžaduje potvrzení e-mailem.", + "This URL doesn't seem to be valid": "Tato adresa URL se nezdá být platná", + "This URL is not supported": "Tato URL není podporována", + "This announcement will be send to all participants with the statuses selected below. They will not be allowed to reply to your announcement, but they can create a new conversation with you.": "Toto oznámení bude zasláno všem účastníkům s níže uvedenými statusy. Nebudou moci na vaše oznámení odpovědět, ale mohou s vámi vytvořit novou konverzaci.", + "This application asks for the following permissions:": "Tato aplikace požaduje následující oprávnění:", + "This application didn't ask for known permissions. It's likely the request is incorrect.": "Tato aplikace nepožadovala známá oprávnění. Je pravděpodobné, že požadavek je nesprávný.", + "This application will be able to access all of your informations and post content. Make sure you only approve applications you trust.": "Tato aplikace bude mít přístup ke všem vašim informacím a obsahu příspěvků. Ujistěte se, že schvalujete pouze aplikace, kterým důvěřujete.", + "This application will be allowed to access all of the groups you're a member of": "Tato aplikace bude mít přístup ke všem skupinám, jejichž jste členem", + "This application will be allowed to access group activities in all of the groups you're a member of": "Tato aplikace bude mít přístup ke skupinovým aktivitám ve všech skupinách, jejichž jste členem", + "This application will be allowed to access your user activity settings": "Tato aplikace bude mít přístup k nastavení uživatelské aktivity", + "This application will be allowed to access your user settings": "Tato aplikace bude mít přístup k vašim uživatelským nastavením", + "This application will be allowed to create feed tokens": "Tato aplikace bude moci vytvářet tokeny feedu", + "This application will be allowed to create group discussions": "Tato aplikace umožní vytvářet skupinové diskuse", + "This application will be allowed to create new profiles for your account": "Tato aplikace umožní vytvářet nové profily pro váš účet", + "This application will be allowed to create resources in all of the groups you're a member of": "Tato aplikace bude moci vytvářet prostředky ve všech skupinách, jejichž jste členem", + "This application will be allowed to delete comments": "Tato aplikace bude moci mazat komentáře", + "This application will be allowed to delete events": "Tato aplikace bude moci mazat události", + "This application will be allowed to delete feed tokens": "Tato aplikace bude moci odstraňovat tokeny feedu", + "This application will be allowed to delete group discussions": "Tato aplikace umožní mazat skupinové diskuse", + "This application will be allowed to delete group posts": "Tato aplikace bude moci mazat skupinové příspěvky", + "This application will be allowed to delete resources in all of the groups you're a member of": "Tato aplikace bude moci mazat prostředky ve všech skupinách, jejichž jste členem", + "This application will be allowed to delete your profiles": "Tato aplikace bude moci mazat vaše profily", + "This application will be allowed to join and leave groups": "Tato aplikace se bude moci připojovat ke skupinám a opouštět je", + "This application will be allowed to list and access group discussions in all of the groups you're a member of": "Tato aplikace bude mít přístup k seznamu a skupinovým diskusím ve všech skupinách, jejichž jste členem", + "This application will be allowed to list and access group events in all of the groups you're a member of": "Tato aplikace bude moci vypisovat a přistupovat ke skupinovým událostem ve všech skupinách, jejichž jste členem", + "This application will be allowed to list and access group todo-lists in all of the groups you're a member of": "Tato aplikace bude mít přístup k seznamům a seznamům úkolů ve všech skupinách, jejichž jste členem", + "This application will be allowed to list and view the events you're participating to": "Tato aplikace vám umožní zobrazit seznam událostí, kterých se účastníte", + "This application will be allowed to list and view the groups you're a member of": "Tato aplikace bude moci zobrazit seznam skupin, jejichž jste členem", + "This application will be allowed to list and view the groups you're following": "Tato aplikace bude moci zobrazit seznam skupin, které sledujete", + "This application will be allowed to list and view your draft events": "Tato aplikace bude moci zobrazovat seznam a návrhy událostí", + "This application will be allowed to list and view your organized events": "V této aplikaci bude možné vypisovat a zobrazovat vaše organizované události", + "This application will be allowed to list group followers in all of the groups you're a member of": "Tato aplikace bude moci zobrazit seznam příznivců skupiny ve všech skupinách, jejichž jste členem", + "This application will be allowed to list group members in all of the groups you're a member of": "Tato aplikace bude moci zobrazit seznam členů skupiny ve všech skupinách, jejichž jste členem", + "This application will be allowed to list the media you've uploaded": "Tato aplikace bude moci zobrazit seznam médií, která jste nahráli", + "This application will be allowed to list your suggested group events": "V této aplikaci bude možné vypsat vámi navrhované skupinové akce", + "This application will be allowed to manage events participations": "Tato aplikace bude umožňovat správu účastí na akcích", + "This application will be allowed to manage group members in all of the groups you're a member of": "Tato aplikace bude moci spravovat členy skupin ve všech skupinách, jejichž jste členem", + "This application will be allowed to manage your account activity settings": "Tato aplikace bude moci spravovat nastavení aktivity vašeho účtu", + "This application will be allowed to manage your account push notification settings": "Tato aplikace bude moci spravovat nastavení push oznámení vašeho účtu", + "This application will be allowed to post comments": "Tato aplikace bude moci zveřejňovat komentáře", + "This application will be allowed to publish and manage events, post and manage comments, participate to events, manage all of your groups, including group events, resources, posts and discussions. It will also be allowed to manage your account and profile settings.": "Tato aplikace vám umožní publikovat a spravovat události, přidávat a spravovat komentáře, účastnit se událostí, spravovat všechny vaše skupiny, včetně skupinových událostí, zdrojů, příspěvků a diskusí. Bude také umožňovat správu vašeho účtu a nastavení profilu.", + "This application will be allowed to publish events": "Tato aplikace bude moci zveřejňovat události", + "This application will be allowed to publish events, participate to events": " ", + "This application will be allowed to publish group posts": "Tato aplikace bude moci publikovat příspěvky skupiny", + "This application will be allowed to remove uploaded media": "Tato aplikace bude moci odstranit nahraná média", + "This application will be allowed to see all of your events organized, the events you participate to, as well as every data from your groups.": "Tato aplikace vám umožní vidět všechny vaše organizované události, i události kterých se účastníte, a také všechny údaje z vašich skupin.", + "This application will be allowed to see all of your events organized, the events you participate to, …": " ", + "This application will be allowed to update comments": "Tato aplikace bude moci aktualizovat komentáře", + "This application will be allowed to update events": "Tato aplikace bude moci aktualizovat události", + "This application will be allowed to update group discussions": "Tato aplikace umožní aktualizovat skupinové diskuse", + "This application will be allowed to update group posts": "Tato aplikace bude moci aktualizovat příspěvky skupiny", + "This application will be allowed to update resources in all of the groups you're a member of": "Tato aplikace bude moci aktualizovat prostředky ve všech skupinách, jejichž jste členem", + "This application will be allowed to update your profiles": "Tato aplikace bude moci aktualizovat vaše profily", + "This application will be allowed to upload media": "Tato aplikace bude umožňovat nahrávání médií", + "This event has been cancelled.": "Tato akce byla zrušena.", + "This event is accessible only through it's link. Be careful where you post this link.": "Tato událost je přístupná pouze prostřednictvím odkazu. Dávejte si pozor, kam tento odkaz zveřejníte.", + "This group doesn't have a description yet.": "Tato skupina zatím nemá popis.", + "This group is a remote group, it's possible the original instance has more informations.": "Tato skupina je vzdálená skupina, je možné, že původní instance má více informací.", + "This group is accessible only through it's link. Be careful where you post this link.": "Tato skupina je přístupná pouze prostřednictvím svého odkazu. Dávejte si pozor, kam tento odkaz zveřejňujete.", + "This group is invite-only": "Tato skupina je určena pouze pro zvané", + "This group was not found": "Tato skupina nebyla nalezena", + "This identifier is unique to your profile. It allows others to find you.": "Tento identifikátor je pro váš profil jedinečný. Umožňuje ostatním, aby vás našli.", + "This information is saved only on your computer. Click for details": "Tyto informace jsou uloženy pouze v počítači. Kliknutím získáte podrobnosti", + "This instance doesn't follow yours.": "Tato instance na tu vaši nenavazuje.", + "This instance hasn't got push notifications enabled.": "Tato instance nemá povolena oznámení push.", + "This instance isn't opened to registrations, but you can register on other instances.": "Tato instance není otevřena pro registrace, ale můžete se registrovat v jiných instancích.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Tato instance, {instanceName} ({domain}), je hostitelem vašeho profilu, proto si její název zapamatujte.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Tato instance, {instanceName}, je hostitelem vašeho profilu, proto si její název zapamatujte.", + "This is a announcement from the organizers of event {event}. You can't reply to it, but you can send a private message to event organizers.": "Toto je oznámení organizátorů akce {event}. Nemůžete na něj odpovědět, ale můžete organizátorům události poslat soukromou zprávu.", + "This is a demonstration site to test Mobilizon.": "Jde o demonstrační web pro testování Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Je to jako vaše federativní uživatelské jméno ({username}) pro skupiny. Umožní vyhledání skupiny ve federaci a zaručuje její jedinečnost.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Je to jako vaše federativní uživatelské jméno ({username}) pro skupiny. Umožní vyhledání skupiny ve federaci a zaručuje jeho jedinečnost.", + "This month": "Tento měsíc", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Tento příspěvek je přístupný pouze pro členy. Máte k němu přístup pouze pro účely moderování, protože jste moderátor instance.", + "This post is accessible only through it's link. Be careful where you post this link.": "Tento příspěvek je přístupný pouze přes jeho odkaz. Dávejte si pozor, kam tento odkaz umístíte.", + "This profile is from another instance, the informations shown here may be incomplete.": "Tento profil pochází z jiné instance, informace zde uvedené mohou být neúplné.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Tento profil je umístěn v této instanci, takže pro jeho pozastavení je třeba {access_the_corresponding_account}.", + "This profile was not found": "Tento profil nebyl nalezen", + "This setting will be used to display the website and send you emails in the correct language.": "Toto nastavení se použije k zobrazení webových stránek a zasílání e-mailů ve správném jazyce.", + "This user doesn't have any profiles": "Tento uživatel nemá žádné profily", + "This user was not found": "Tento uživatel nebyl nalezen", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Tato webová stránka není moderována a vámi zadané údaje budou automaticky zničeny každý den v 00:01 (pařížské časové pásmo).", + "This week": "Tento týden", + "This weekend": "Tento víkend", + "This will also resolve the report.": "Tím se hlášení rovněž vyřeší.", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Tím se odstraní / anonymizuje veškerý obsah (události, komentáře, zprávy, účasti...) vytvořený z této identity.", + "Time in your timezone ({timezone})": "Čas ve vašem časovém pásmu ({timezone})", + "Times in your timezone ({timezone})": "Časy ve vašem časovém pásmu ({timezone})", + "Timezone": "Časové pásmo", + "Timezone detected as {timezone}.": "Časová zóna detekována jako {timezone}.", + "Title": "Název", + "To activate more notifications, head over to the notification settings.": "Chcete-li aktivovat další oznámení, přejděte do nastavení oznámení.", + "To confirm, type your event title \"{eventTitle}\"": "Pro potvrzení zadejte název události \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "Pro potvrzení zadejte své uživatelské jméno identity \"{preferredUsername}\"", + "To create and manage multiples identities from a same account": "Vytvoření a správa více identit ze stejného účtu", + "To create and manage your events": "Vytváření a správa událostí", + "To create or join an group and start organizing with other people": "Vytvořit skupinu nebo se k ní připojit a začít se organizovat s ostatními lidmi", + "To follow groups and be informed of their latest events": "Sledování skupin a informování o jejich nejnovějších akcích", + "To register for an event by choosing one of your identities": "Registrace na událost výběrem jedné z vašich identit", + "Today": "Dnes", + "Tomorrow": "Zítra", + "Tools": "Nástroje", + "Total number of participations": "Celkový počet účastí", + "Transfer to {outsideDomain}": "Přenos na {outsideDomain}", + "Triggered profile refreshment": "Spuštěné obnovení profilu", + "Try different keywords.": "Zkuste jiná klíčová slova.", + "Try fewer keywords.": "Zkuste méně klíčových slov.", + "Try more general keywords.": "Zkuste obecnější klíčová slova.", + "Twitch live": "Twitch live", + "Twitch replay": "Twitch přehrávání", + "Twitter account": "účet Twitter", + "Type": "Typ", + "Type or select a date…": "Zadejte nebo vyberte datum…", + "URL": "URL", + "URL copied to clipboard": "URL zkopírovaná do schránky", + "Unable to copy to clipboard": "Nelze zkopírovat do schránky", + "Unable to create the group. One of the pictures may be too heavy.": "Skupinu se nepodařilo vytvořit. Jeden z obrázků může být příliš velký.", + "Unable to create the profile. The avatar picture may be too heavy.": "Nelze vytvořit profil. Obrázek avatara může být příliš velký.", + "Unable to detect timezone.": "Nelze zjistit časové pásmo.", + "Unable to load event for participation. The error details are provided below:": "Nelze načíst událost pro účast. Podrobnosti o chybě jsou uvedeny níže:", + "Unable to save your participation in this browser.": "V tomto prohlížeči nelze uložit vaši účast.", + "Unable to update the profile. The avatar picture may be too heavy.": "Nelze aktualizovat profil. Obrázek avatara může být příliš velký.", + "Underline": "Podtržení", + "Undo": "Zpět", + "Unfollow": "Nesledovat", + "Unfortunately, your participation request was rejected by the organizers.": "Organizátoři bohužel vaši žádost o účast zamítli.", + "Unknown": "Neznámé", + "Unknown actor": "Neznámý aktér", + "Unknown error.": "Neznámá chyba.", + "Unknown value for the openness setting.": "Neznámá hodnota pro nastavení otevřenosti.", + "Unlogged participation": "Odhlášená účast", + "Unsaved changes": "Neuložené změny", + "Unsubscribe to browser push notifications": "Odhlášení odběru push oznámení prohlížeče", + "Unsuspend": "Uvolnit pozastavení", + "Upcoming": "Nadcházející", + "Upcoming events": "Nadcházející události", + "Upcoming events from your groups": "Nadcházející události vašich skupin", + "Update": "Aktualizace", + "Update app": "Aktualizovat aplikaci", + "Update comments": "Aktualizovat komentáře", + "Update discussion title": "Aktualizace názvu diskuse", + "Update event {name}": "Aktualizace události {name}", + "Update events": "Aktualizace událostí", + "Update group": "Aktualizace skupiny", + "Update group discussions": "Aktualizace skupinových diskusí", + "Update group posts": "Aktualizace příspěvků ve skupině", + "Update group resources": "Aktualizace zdrojů skupiny", + "Update my event": "Aktualizace mé události", + "Update post": "Aktualizace příspěvku", + "Update profiles": "Aktualizace profilů", + "Updated": "Aktualizováno", + "Updated at": "Aktualizováno v", + "Upload media": "Nahrávání médií", + "Uploaded media size": "Velikost nahraných médií", + "Uploaded media total size": "Celková velikost nahraných médií", + "Use my location": "Použijte mou polohu", + "User": "Uživatel", + "User settings": "Nastavení uživatele", + "User suspended and report resolved": "Uživatel pozastaven a hlášení vyřešeno", + "Username": "Uživatelské jméno", + "Users": "Uživatelé", + "Validating account": "Ověření účtu", + "Validating email": "Ověřování e-mailu", + "Video Conference": "Videokonference", + "View a reply": "Nezobrazit žádné odpovědi|Zobrazit jednu odpověď|Zobrazit {totalReplies} odpovědí", + "View account on {hostname} (in a new window)": "Zobrazit účet na {hostname} (v novém okně)", + "View all": "Zobrazit vše", + "View all categories": "Zobrazit všechny kategorie", + "View all events": "Zobrazit všechny události", + "View all posts": "Zobrazit všechny příspěvky", + "View event page": "Zobrazit stránku události", + "View everything": "Zobrazit vše", + "View full profile": "Zobrazit plný profil", + "View less": "Zobrazit méně", + "View more": "Zobrazit více", + "View more events": "Zobrazit další události", + "View more events around {position}": "Zobrazit další události v okolí {position}", + "View more groups around {position}": "Zobrazit další skupiny v okolí {position}", + "View more online events": "Zobrazit další online události", + "View page on {hostname} (in a new window)": "Zobrazit stránku na {hostname} (v novém okně)", + "View past events": "Zobrazit minulé události", + "View the group profile on the original instance": "Zobrazení profilu skupiny v původní instanci", + "Visibility was set to an unknown value.": "Viditelnost byla nastavena na neznámou hodnotu.", + "Visibility was set to private.": "Viditelnost byla nastavena na soukromou.", + "Visibility was set to public.": "Viditelnost byla nastavena na veřejnou.", + "Visible everywhere on the web": "Viditelné všude na webu", + "Visible everywhere on the web (public)": "Viditelný všude na webu (veřejný)", + "Visit {instance_domain}": "Navštivte {instance_domain}", + "Waiting for organization team approval.": "Čeká se na schválení organizačního týmu.", + "Warning": "Upozornění", + "We collect your feedback and the error information in order to improve this service.": "Sbíráme vaši zpětnou vazbu a informace o chybách, abychom mohli tuto službu zlepšovat.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "V tomto prohlížeči se nám nepodařilo uložit vaši účast. Nemusíte se obávat, svou účast jste úspěšně potvrdili, jen jsme nemohli uložit její stav v tomto prohlížeči z důvodu technického problému.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Díky vaší zpětné vazbě tento software vylepšujeme. Chcete-li nás o tomto problému informovat, máte dvě možnosti (obě bohužel vyžadují vytvoření uživatelského účtu):", + "We just sent an email to {email}": "Právě jsme odeslali e-mail na adresu {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Používáme vaše časové pásmo, abychom zajistili, že budete dostávat oznámení o události ve správný čas.", + "We will redirect you to your instance in order to interact with this event": "Přesměrujeme vás na vaši instanci, abyste mohli s touto událostí komunikovat", + "We will redirect you to your instance in order to interact with this group": "Přesměrujeme vás na vaši instanci, abyste mohli s touto skupinou komunikovat", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Hodinu před začátkem akce vám zašleme e-mail, abyste na ni nezapomněli.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Pro zaslání rekapitulace ranní události použijeme nastavení vašeho časového pásma.", + "Website": "Webová stránka", + "Website / URL": "Webové stránky / URL", + "Weekly email summary": "Týdenní e-mailový přehled", + "Welcome back {username}!": "Vítejte zpět {username}!", + "Welcome back!": "Vítejte zpět!", + "Welcome to Mobilizon, {username}!": "Vítejte v Mobilizonu, {username}!", + "What can I do to help?": "Jak mohu pomoci?", + "What happened?": "Co se stalo?", + "Wheelchair accessibility": "Bezbariérový přístup", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Když moderátor skupiny vytvoří událost a přiřadí ji skupině, zobrazí se zde.", + "When the event is private, you'll need to share the link around.": "Pokud je událost soukromá, je třeba odkaz sdílet.", + "When the post is private, you'll need to share the link around.": "Pokud je příspěvek soukromý, musíte odkaz sdílet.", + "Whether smoking is prohibited during the event": "zda je během akce zakázáno kouřit", + "Whether the event is accessible with a wheelchair": "Zda je událost přístupná pro vozíčkáře", + "Whether the event is interpreted in sign language": "zda je událost tlumočena do znakového jazyka", + "Whether the event live video is subtitled": "Zda je živé video události opatřeno titulky", + "Who can post a comment?": "Kdo může přidat komentář?", + "Who can view this event and participate": "Kdo se může na tuto událost podívat a zúčastnit se jí", + "Who can view this post": "Kdo může zobrazit tento příspěvek", + "Who published {number} events": "Kteří zveřejnili {number} událostí", + "Why create an account?": "Proč si vytvořit účet?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Umožní zobrazit a spravovat stav účasti na stránce události při použití tohoto zařízení. Zrušte zaškrtnutí, pokud používáte veřejné zařízení.", + "With the most participants": "S největším počtem účastníků", + "With unknown participants": "S neznámými účastníky", + "With {participants}": "S {participants}", + "Within {number} kilometers of {place}": "|V okruhu jednoho kilometru od {place}|V okruhu {number} kilometrů od {place}", + "Write a new comment": "Napište nový komentář", + "Write a new message": "Napište novou zprávu", + "Write a new reply": "Napište novou odpověď", + "Write something": "Napište něco", + "Write your post": "Napište svůj příspěvek", + "Yesterday": "Včera", + "You accepted the invitation to join the group.": "Přijali jste pozvání do skupiny.", + "You added the member {member}.": "Přidali jste člena {member}.", + "You approved {member}'s membership.": "Schválili jste členství {member}.", + "You archived the discussion {discussion}.": "Archivovali jste diskusi {discussion}.", + "You are not an administrator for this group.": "Nejste správcem této skupiny.", + "You are not part of any group.": "Nejste součástí žádné skupiny.", + "You are offline": "Jste offline", + "You are participating in this event anonymously": "Této akce se účastníte anonymně", + "You are participating in this event anonymously but didn't confirm participation": "Této akce se účastníte anonymně, ale nepotvrdili jste účast", + "You can add resources by using the button above.": "Zdroje můžete přidat pomocí tlačítka výše.", + "You can add tags by hitting the Enter key or by adding a comma": "Značky můžete přidávat stisknutím klávesy Enter nebo přidáním čárky", + "You can drag and drop the marker below to the desired location": "Níže uvedenou značku můžete přetáhnout na požadované místo", + "You can pick your timezone into your preferences.": "V předvolbách můžete zvolit své časové pásmo.", + "You can put any arbitrary content in this element. URLs will be clickable.": "Do tohoto prvku můžete vložit libovolný obsah. Na adresy URL bude možné kliknout.", + "You can try another search term or add the address details manually below.": "Můžete zkusit jiný vyhledávací výraz nebo přidat údaje o adrese ručně níže.", + "You can try another search term or drag and drop the marker on the map": "Můžete zkusit jiný vyhledávací výraz nebo přetáhnout značku na mapu", + "You can't change your password because you are registered through {provider}.": "Heslo si nemůžete změnit, protože jste zaregistrováni prostřednictvím {provider}.", + "You can't use push notifications in this browser.": "V tomto prohlížeči nelze používat oznámení push.", + "You changed your email or password": "Změnili jste e-mail nebo heslo", + "You created the discussion {discussion}.": "Vytvořili jste diskusi {discussion}.", + "You created the event {event}.": "Vytvořili jste událost {event}.", + "You created the folder {resource}.": "Vytvořili jste složku {resource}.", + "You created the group {group}.": "Vytvořili jste skupinu {group}.", + "You created the post {post}.": "Vytvořili jste příspěvek {post}.", + "You created the resource {resource}.": "Vytvořil jste prostředek {resource}.", + "You deleted the discussion {discussion}.": "Smazali jste diskusi {discussion}.", + "You deleted the event {event}.": "Odstranili jste událost {event}.", + "You deleted the folder {resource}.": "Odstranili jste složku {resource}.", + "You deleted the post {post}.": "Smazal jsi příspěvek {post}.", + "You deleted the resource {resource}.": "Odstranili jste prostředek {resource}.", + "You demoted the member {member} to an unknown role.": "Povýšili jste člena {member} do neznámé role.", + "You demoted {member} to moderator.": "Povýšili jste {member} na moderátora.", + "You demoted {member} to simple member.": "Povýšili jste {member} na prostého člena.", + "You didn't create or join any event yet.": "Zatím jste nevytvořili žádnou událost ani se k ní nepřipojili.", + "You don't follow any instances yet.": "Zatím nesledujete žádné instance.", + "You don't have any upcoming events. Maybe try another filter?": "Nemáte žádné nadcházející události. Možná zkuste jiný filtr?", + "You excluded member {member}.": "Vyloučili jste člena {member}.", + "You have access to this conversation as a member of the {group} group": "K této konverzaci máte přístup jako člen skupiny {group}", + "You have attended {count} events in the past.": "V minulosti jste se nezúčastnili žádné akce.|V minulosti jste se zúčastnili jedné akce.|V minulosti jste se zúčastnili {count} akcí.", + "You have been invited by {invitedBy} to the following group:": "Byli jste pozváni společností {invitedBy} do následující skupiny:", + "You have been logged-out": "Byli jste odhlášeni", + "You have been removed from this group's members.": "Byli jste odstraněni z členů této skupiny.", + "You have cancelled your participation": "Zrušili jste svou účast", + "You have one event in {days} days.": "Za {days} dní nemáte žádnou událost | Za {days} dní máte jednu událost. | Máte {count} událostí za {days} dní", + "You have one event today.": "Dnes nemáte žádnou událost | Dnes máte jednu událost. | Dnes máte {count} událostí", + "You have one event tomorrow.": "Zítra nemáte žádnou událost | Zítra máte jednu událost. | Zítra máte {count} událostí", + "You haven't interacted with other instances yet.": "S ostatními instancemi jste zatím neinteragovali.", + "You invited {member}.": "Pozvali jste {member}.", + "You joined the event {event}.": "Připojil jste se k události {event}.", + "You may also:": "Můžete také:", + "You may clear all participation information for this device with the buttons below.": "Pomocí níže uvedených tlačítek můžete vymazat všechny informace o účasti tohoto zařízení.", + "You may now close this page or {return_to_the_homepage}.": "Nyní můžete tuto stránku zavřít nebo se vrátit {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "Nyní můžete toto okno zavřít nebo {return_to_event}.", + "You may show some members as contacts.": "Některé členy můžete zobrazit jako kontakty.", + "You moved the folder {resource} into {new_path}.": "Přesunuli jste složku {resource} do složky {new_path}.", + "You moved the folder {resource} to the root folder.": "Přesunuli jste složku {resource} do kořenové složky.", + "You moved the resource {resource} into {new_path}.": "Přesunuli jste prostředek {resource} do {new_path}.", + "You moved the resource {resource} to the root folder.": "Přesunuli jste prostředek {resource} do kořenové složky.", + "You need to enter a text": "Musíte zadat text", + "You need to login.": "Musíte se přihlásit.", + "You need to provide the following code to your application. It will only be valid for a few minutes.": "Do aplikace je třeba zadat následující kód. Bude platný pouze několik minut.", + "You posted a comment on the event {event}.": "Napsali jste komentář k události {event}.", + "You promoted the member {member} to an unknown role.": "Povýšili jste člena {member} do neznámé role.", + "You promoted {member} to administrator.": "Povýšili jste {member} na správce.", + "You promoted {member} to moderator.": "Povýšili jste {member} na moderátora.", + "You rejected {member}'s membership request.": "Žádost {member} o členství jste zamítli.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Přejmenovali jste diskusi z {old_discussion} na {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Přejmenovali jste složku z {old_resource_title} na {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Přejmenovali jste prostředek z {old_resource_title} na {resource}.", + "You replied to a comment on the event {event}.": "Odpověděli jste na komentář k události {event}.", + "You replied to the discussion {discussion}.": "Odpověděli jste na diskusi {discussion}.", + "You requested to join the group.": "Požádali jste o vstup do skupiny.", + "You updated the event {event}.": "Aktualizovali jste událost {event}.", + "You updated the group {group}.": "Aktualizovali jste skupinu {group}.", + "You updated the member {member}.": "Aktualizovali jste člena {member}.", + "You updated the post {post}.": "Aktualizovali jste příspěvek {post}.", + "You were demoted to an unknown role by {profile}.": "Byl jste degradován na neznámou roli od {profile}.", + "You were demoted to moderator by {profile}.": "Byl jste degradován na moderátora od {profile}.", + "You were demoted to simple member by {profile}.": "Byl jste degradován na prostého člena od {profile}.", + "You were promoted to administrator by {profile}.": "Byl jste povýšen na administrátora od {profile}.", + "You were promoted to an unknown role by {profile}.": "Byl/a jste povýšen/a do neznámé role od {profile}.", + "You were promoted to moderator by {profile}.": "{profile} vás povýšil na moderátora.", + "You will be able to add an avatar and set other options in your account settings.": "V nastavení účtu si budete moci přidat avatar a nastavit další možnosti.", + "You will be redirected to the original instance": "Budete přesměrováni na původní instanci", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Najdete zde všechny události, které jste vytvořili nebo kterých se účastníte, a také události organizované skupinami, které sledujete nebo jejichž jste členem.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "V závislosti na %{notification_settings} budete dostávat oznámení o veřejných aktivitách této skupiny.", + "You wish to participate to the following event": "Chcete se zúčastnit následující akce", + "You'll be able to revoke access for this application in your account settings.": "Přístup k této aplikaci budete moci zrušit v nastavení účtu.", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Každé pondělí budete dostávat týdenní shrnutí nadcházejících událostí, pokud nějaké máte.", + "You'll need to change the URLs where there were previously entered.": "Budete muset změnit adresy URL, které byly dříve zadány.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Je třeba přenést adresu URL skupiny, aby se lidé mohli dostat k jejímu profilu. Skupina nebude k nalezení ve vyhledávání Mobilizonu ani v běžných vyhledávačích.", + "You'll receive a confirmation email.": "Obdržíte potvrzovací e-mail.", + "YouTube live": "YouTube live", + "YouTube replay": "Přehrání na YouTube", + "Your account has been successfully deleted": "Váš účet byl úspěšně smazán", + "Your account has been validated": "Váš účet byl ověřen", + "Your account is being validated": "Váš účet je ověřován", + "Your account is nearly ready, {username}": "Váš účet je téměř připraven, {username}", + "Your application code": "Kód vaší aplikace", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Vaše město nebo oblast a okruh budou použity pouze k tomu, aby vám byly nabídnuty události v okolí. Poloměr události bude brát v úvahu administrativní centrum oblasti.", + "Your current email is {email}. You use it to log in.": "Váš aktuální e-mail je {email}. Používáte ho k přihlášení.", + "Your email": "Váš e-mail", + "Your email address was automatically set based on your {provider} account.": "Vaše e-mailová adresa byla automaticky nastavena na základě vašeho účtu {provider}.", + "Your email has been changed": "Váš e-mail byl změněn", + "Your email is being changed": "Váš e-mail se mění", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Váš e-mail bude použit pouze k potvrzení, že jste skutečná osoba, a k zasílání případných aktualizací této události. NEBUDE předán jiným instancím ani organizátorovi akce.", + "Your federated identity": "Vaše federativní identita", + "Your membership is pending approval": "Vaše členství čeká na schválení", + "Your membership was approved by {profile}.": "Vaše členství schválil {profile}.", + "Your participation has been cancelled": "Vaše účast byla zrušena", + "Your participation has been confirmed": "Vaše účast byla potvrzena", + "Your participation has been rejected": "Vaše účast byla zamítnuta", + "Your participation has been requested": "Vaše účast byla požadována", + "Your participation is being cancelled": "Vaše účast je zrušena", + "Your participation request has been validated": "Vaše účast byla potvrzena", + "Your participation request is being validated": "Vaše účast je ověřována", + "Your participation status has been changed": "Váš status účasti byl změněn", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Stav vaší účasti je uložen pouze v tomto zařízení a bude smazán měsíc po skončení akce.", + "Your participation still has to be approved by the organisers.": "Vaši účast musí ještě schválit organizátoři.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Vaše účast bude potvrzena po kliknutí na potvrzovací odkaz v e-mailu a poté, co organizátor ručně potvrdí vaši účast.", + "Your participation will be validated once you click the confirmation link into the email.": "Vaše účast bude potvrzena po kliknutí na potvrzovací odkaz v e-mailu.", + "Your position was not available.": "Vaše pozice nebyla k dispozici.", + "Your profile will be shown as contact.": "Váš profil se zobrazí jako kontakt.", + "Your timezone is currently set to {timezone}.": "Vaše časové pásmo je aktuálně nastaveno na {timezone}.", + "Your timezone was detected as {timezone}.": "Vaše časové pásmo bylo zjištěno jako {timezone}.", + "Your timezone {timezone} isn't supported.": "Vaše časové pásmo {timezone} není podporováno.", + "Your upcoming events": "Vaše nadcházející události", + "Zoom": "Zoom", + "Zoom in": "Přiblížení", + "Zoom out": "Oddálení", + "[This comment has been deleted by it's author]": "[Tento komentář byl smazán jeho autorem]", + "[This comment has been deleted]": "[Tento komentář byl smazán]", + "[deleted]": "[smazáno]", + "a non-existent report": "neexistující hlášení", + "access the corresponding account": "přístup k příslušnému účtu", + "access to the group's private content as well": "přístup k soukromému obsahu skupiny", + "and {number} groups": "a {number} skupin", + "any distance": "libovolná vzdálenost", + "as {identity}": "jako {identity}", + "contact uninformed": "kontaktovat neinformované", + "create a group": "vytvořit skupinu", + "create an event": "vytvořit událost", + "default Mobilizon privacy policy": "výchozí zásady ochrany osobních údajů Mobilizon", + "default Mobilizon terms": "výchozí podmínky Mobilizon", + "detail": " ", + "e.g. 10 Rue Jangot": "např. 10 Rue Jangot", + "e.g. Accessibility, Twitch, PeerTube": "např. Accessibility, Twitch, PeerTube", + "e.g. Nantes, Berlin, Cork, …": "např. Nantes, Berlín, Cork, …", + "enable the feature": "povolit funkci", + "explore the events": "prozkoumat události", + "explore the groups": "prozkoumat skupiny", + "find, create and organise events": "najít, vytvořit a zorganizovat události", + "full rules": "úplná pravidla", + "group's upcoming public events": "nadcházející veřejné akce skupiny", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/nejaky-tajny-token", + "iCal Feed": "iCal Feed", + "instance rules": "pravidla instance", + "mobilizon-instance.tld": "mobilizon-instance.tld", + "more than 1360 contributors": "více než 1360 přispěvatelů", + "multitude of interconnected Mobilizon websites": "množství propojených webových stránek Mobilizon", + "new{'@'}email.com": "nový{'@'}email.com", + "profile@instance": "profil@instance", + "profile{'@'}instance": "profil{'@'}instance", + "report #{report_number}": "hlášení #{report_number}", + "return to the event's page": "návrat na stránku události", + "return to the homepage": "zpět na domovskou stránku", + "terms of service": "podmínky služby", + "tool designed to serve you": "nástroj určený k tomu, aby vám sloužil", + "translation": " ", + "with another identity…": "s jinou identitou…", + "your notification settings": "nastavení oznámení", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved} / {total} míst", + "{available}/{capacity} available places": "Žádná volná místa|{available}/{capacity} volných míst", + "{count} events": "{count} událostí", + "{count} km": "{count} km", + "{count} members": "Žádný člen|Jeden člen|{count} členů", + "{count} members or followers": "Žádní členové nebo sledující|Jeden člen nebo sledující|{count} členů nebo sledujících", + "{count} participants": "Zatím žádný účastník | Jeden účastník | {count} účastníků", + "{count} requests waiting": "{count} čekajících požadavků", + "{eventsCount} activities found": "Nenalezeny žádné aktivity|Nalezena jedna aktivita|Nalezeny {eventsCount} aktivity", + "{eventsCount} events found": "Nenalezeny žádné události|Nalezena jedna událost|nalezeny {eventsCount} události", + "{folder} - Resources": "{folder} - Prostředky", + "{groupsCount} groups found": "Nenalezeny žádné skupiny|Nalezena jedna skupina|Nalezeny {groupsCount} skupiny", + "{group} activity timeline": "{group} časová osa činnosti", + "{group} events": "události {group}", + "{group} posts": "příspěvky {group}", + "{group}'s events": "Události {group}", + "{group}'s todolists": "todolisty {group}", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} je instance softwaru {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} je instance {mobilizon_link}, svobodného softwaru vytvořeného s komunitou.", + "{member} accepted the invitation to join the group.": "{member} přijal pozvání do skupiny.", + "{member} joined the group.": "{member} se připojil ke skupině.", + "{member} rejected the invitation to join the group.": "{member} pozvání do skupiny odmítl.", + "{member} requested to join the group.": "{member} požádal o připojení ke skupině.", + "{member} was invited by {profile}.": "{member} byl pozván od {profile}.", + "{moderator} added a note on {report}": "{moderator} přidal poznámku k {report}", + "{moderator} closed {report}": "{moderator} uzavřel {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} smazal událost s názvem \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} smazal komentář od {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} smazal komentář od {autor} pod událostí {event}", + "{moderator} has deleted user {user}": "{moderator} smazal uživatele {user}", + "{moderator} has done an unknown action": "{moderator} provedl neznámou akci", + "{moderator} has unsuspended group {profile}": "{moderator} zrušil pozastavení skupiny {profile}", + "{moderator} has unsuspended profile {profile}": "{moderator} zrušil pozastavení profilu {profile}", + "{moderator} marked {report} as resolved": "{moderator} označil {report} jako vyřešenou", + "{moderator} reopened {report}": "{moderator} znovu otevřel {report}", + "{moderator} suspended group {profile}": "{moderator} pozastavil skupinu {profile}", + "{moderator} suspended profile {profile}": "{moderator} pozastavil profil {profile}", + "{nb} km": "{nb} km", + "{numberOfCategories} selected": "{numberOfCategories} vybráno", + "{numberOfLanguages} selected": "{numberOfLanguages} vybráno", + "{number} kilometers": "{number} kilometrů", + "{number} members": "{number} členů", + "{number} memberships": "{number} členství", + "{number} organized events": "Žádné organizované události|Jedna organizovaná událost|{number} organizovaných událostí", + "{number} participations": "Žádná účast|Jedna účast|{number} účastí", + "{number} posts": "Žádné příspěvky|Jeden příspěvek|{number} příspěvků", + "{number} seats left": "Zbývá {number} míst", + "{old_group_name} was renamed to {group}.": "{old_group_name} byl přejmenován na {group}.", + "{profileName} (suspended)": "{profileName} (pozastaven)", + "{profile} (by default)": "{profile} (ve výchozím stavu)", + "{profile} added the member {member}.": "{profile} přidal člena {member}.", + "{profile} approved {member}'s membership.": "{profile} schválil členství {member}.", + "{profile} archived the discussion {discussion}.": "{profile} archivoval diskusi {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} založil diskusi {discussion}.", + "{profile} created the folder {resource}.": "{profile} vytvořil složku {resource}.", + "{profile} created the group {group}.": "{profile} vytvořil skupinu {group}.", + "{profile} created the resource {resource}.": "{profile} vytvořil prostředek {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} smazal diskusi {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} odstranil složku {resource}.", + "{profile} deleted the resource {resource}.": "{profile} smazal prostředek {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} degradoval {member} na neznámou roli.", + "{profile} demoted {member} to moderator.": "{profile} degradoval {member} na moderátora.", + "{profile} demoted {member} to simple member.": "{profile} degradoval {member} na prostého člena.", + "{profile} excluded member {member}.": "{profile} vyloučil člena {member}.", + "{profile} joined the the event {event}.": "{profile} se připojil k události {event}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} přesunul složku {resource} do složky {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} přesunul složku {resource} do kořenové složky.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} přesunul prostředek {resource} do {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} přesunul prostředek {resource} do kořenové složky.", + "{profile} posted a comment on the event {event}.": "{profile} přidal komentář k události {event}.", + "{profile} promoted {member} to administrator.": "{profile} povýšil {member} na správce.", + "{profile} promoted {member} to an unknown role.": "{profile} povýšil {member} do neznámé role.", + "{profile} promoted {member} to moderator.": "{profile} povýšil {member} na moderátora.", + "{profile} quit the group.": "{profile} opustil skupinu.", + "{profile} rejected {member}'s membership request.": "{profile} zamítl žádost {member} o členství.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} přejmenoval diskusi z {old_discussion} na {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} přejmenoval složku z {old_resource_title} na {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} přejmenoval prostředek z {old_resource_title} na {resource}.", + "{profile} replied to a comment on the event {event}.": "{profil} odpověděl na komentář k události {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} odpověděl na příspěvek v diskusi {discussion}.", + "{profile} updated the group {group}.": "{profile} aktualizoval skupinu {group}.", + "{profile} updated the member {member}.": "{profile} aktualizoval člena {member}.", + "{resultsCount} results found": "Nenalezeny žádné výsledky|Nalezen jeden výsledek|Nalezeny {resultsCount} výsledky", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} todos)", + "{username} was invited to {group}": "{username} byl pozván do {group}", + "{user}'s follow request was accepted": "Žádost o sledování uživatele {user} byla přijata", + "{user}'s follow request was rejected": "Žádost o sledování uživatele {user} byla zamítnuta", + "© The OpenStreetMap Contributors": "© Přispěvatelé OpenStreetMap" +}); diff --git a/res/locale/cy.js b/res/locale/cy.js new file mode 100644 index 0000000..ead7ef5 --- /dev/null +++ b/res/locale/cy.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "", + "+ Create a post": "", + "+ Create an event": "", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Offeryn hawdd ei ddefnyddio, emancipatory a moesegol ar gyfer casglu, trefnu a symud.", + "A validation email was sent to {email}": "Anfonwyd e-bost dilysu at {email}", + "API": "", + "Abandon editing": "Golygu gadael", + "About": "Am", + "About Mobilizon": "Am Mobilizon", + "About anonymous participation": "", + "About instance": "", + "About this event": "Ynglŷn â'r digwyddiad hwn", + "About this instance": "Ynglŷn â'r achos hwn", + "About {instance}": "", + "Accept": "", + "Accepted": "Derbyniwyd", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "Cyfrif", + "Account settings": "", + "Actions": "", + "Activate browser push notifications": "", + "Activated": "", + "Active": "", + "Activity": "", + "Actor": "", + "Add": "Ychwanegu", + "Add / Remove…": "", + "Add a contact": "", + "Add a new post": "", + "Add a note": "Ychwanegwch nodyn", + "Add a todo": "", + "Add an address": "Ychwanegwch gyfeiriad", + "Add an instance": "Ychwanegwch achos", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "Ychwanegwch rai tagiau", + "Add to my calendar": "Ychwanegwch at fy nghalendr", + "Additional comments": "Sylwadau ychwanegol", + "Admin": "Gweinyddiaeth", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "Cadwyd gosodiadau gweinyddol yn llwyddiannus.", + "Administration": "Gweinyddiaeth", + "Administrator": "", + "All activities": "", + "All good, let's continue!": "", + "All the places have already been taken": "Mae'r holl leoedd eisoes wedi'u cymryd", + "Allow all comments from users with accounts": "", + "Allow registrations": "Caniatáu cofrestriadau", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "Cyfranogwr anhysbys", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Gofynnir i gyfranogwyr dienw gadarnhau eu cyfranogiad trwy e-bost.", + "Anonymous participations": "Cyfranogiadau dienw", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Ydych chi wir yn siŵr eich bod chi am ddileu eich cyfrif cyfan? Byddwch chi'n colli popeth. Bydd hunaniaethau, lleoliadau, digwyddiadau a grëwyd, negeseuon a chyfranogiadau wedi diflannu am byth.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "Ydych chi'n siŵr eich bod chi am dileu y sylw hwn? Ni ellir dadwneud y weithred hon.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Ydych chi'n siŵr eich bod chi am dileu y digwyddiad hwn? Ni ellir dadwneud y weithred hon. Efallai yr hoffech chi ymgysylltu â'r drafodaeth â chrëwr y digwyddiad neu olygu ei ddigwyddiad yn lle.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Ydych chi'n siŵr eich bod chi am ganslo creu'r digwyddiad? Byddwch chi'n colli pob addasiad.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Ydych chi'n siŵr eich bod chi am ganslo rhifyn y digwyddiad? Byddwch chi'n colli pob addasiad.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Ydych chi'n siŵr eich bod chi am ganslo'ch cyfranogiad yn y digwyddiad \"{title}\"?", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "Ydych chi'n siŵr eich bod chi am ddileu'r digwyddiad hwn? Ni ellir dychwelyd y weithred hon.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "Afatar", + "Back to group list": "", + "Back to previous page": "Yn ôl i'r dudalen flaenorol", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "", + "Before you can login, you need to click on the link inside it to validate your account.": "Cyn y gallwch fewngofnodi, mae angen i chi glicio ar y ddolen y tu mewn iddo i ddilysu'ch cyfrif.", + "Begins on": "", + "Big Blue Button": "", + "Bold": "", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "", + "By {group}": "", + "By {username}": "Gan {username}", + "Can be an email or a link, or just plain text.": "", + "Cancel": "Canslo", + "Cancel anonymous participation": "Canslo cyfranogiad dienw", + "Cancel creation": "Canslo creu", + "Cancel discussion title edition": "", + "Cancel edition": "Canslo rhifyn", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "Canslo fy nghais cyfranogi …", + "Cancel my participation…": "Canslo fy nghyfranogiad …", + "Cancelled": "", + "Cancelled: Won't happen": "Wedi'i ganslo: Ddim yn digwydd", + "Change": "Newid", + "Change my email": "Newid fy e-bost", + "Change my identity…": "Newid fy hunaniaeth …", + "Change my password": "Newid fy nghyfrinair", + "Change timezone": "", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "", + "Clear": "Clir", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "", + "Click to upload": "Cliciwch i uwchlwytho", + "Close": "Cau", + "Close comments for all (except for admins)": "Sylwadau agos i bawb (heblaw am edmygwyr)", + "Closed": "Ar gau", + "Comment body": "", + "Comment deleted": "Dileu'r sylw", + "Comment text can't be empty": "", + "Comments": "Sylwadau", + "Comments are closed for everybody else.": "", + "Confirm my participation": "Cadarnhewch fy nghyfranogiad", + "Confirm my particpation": "Cadarnhewch fy nghyfranogiad", + "Confirm participation": "", + "Confirmed": "", + "Confirmed at": "", + "Confirmed: Will happen": "Cadarnhawyd: Bydd yn digwydd", + "Congratulations, your account is now created!": "", + "Contact": "", + "Continue editing": "Parhewch i olygu", + "Cookies and Local storage": "", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "Gwlad", + "Create": "Creu", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "", + "Create a new event": "Creu digwyddiad newydd", + "Create a new group": "Creu grŵp newydd", + "Create a new identity": "Creu hunaniaeth newydd", + "Create a new list": "", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "", + "Create discussion": "", + "Create event": "", + "Create group": "Creu grŵp", + "Create identity": "", + "Create my event": "Creu fy nigwyddiad", + "Create my group": "Creu fy ngrŵp", + "Create my profile": "Creu fy mhroffil", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "Creu tocyn", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "Mae'r hunaniaeth gyfredol wedi'i newid i {identityName} er mwyn rheoli'r digwyddiad hwn.", + "Current page": "Tudalen gyfredol", + "Custom": "Personol", + "Custom URL": "URL Personol", + "Custom text": "Testun personol", + "Daily email summary": "", + "Dashboard": "Dangosfwrdd", + "Date": "Dyddiad", + "Date and time": "", + "Date and time settings": "Gosodiadau dyddiad ac amser", + "Date parameters": "Paramedrau dyddiad", + "Decline": "", + "Decrease": "", + "Default": "Rhagosodiad", + "Default Mobilizon privacy policy": "", + "Default Mobilizon terms": "", + "Delete": "Dileu", + "Delete account": "Dileu cyfrif", + "Delete conversation": "", + "Delete discussion": "", + "Delete event": "Dileu digwyddiad", + "Delete everything": "Dileu popeth", + "Delete group": "", + "Delete my account": "Dileu fy nghyfrif", + "Delete post": "", + "Delete this discussion": "", + "Delete this identity": "Dileu'r hunaniaeth hon", + "Delete your identity": "Dileu eich hunaniaeth", + "Delete {eventTitle}": "Dileu {eventTitle}", + "Delete {preferredUsername}": "Dileu {preferredUsername}", + "Deleting comment": "Dileu sylw", + "Deleting event": "Dileu digwyddiad", + "Deleting my account will delete all of my identities.": "Bydd dileu fy nghyfrif yn dileu fy holl hunaniaethau.", + "Deleting your Mobilizon account": "Dileu eich cyfrif Mobilizon", + "Demote": "", + "Description": "Disgrifiad", + "Details": "", + "Didn't receive the instructions?": "", + "Disabled": "", + "Discussions": "", + "Discussions list": "", + "Display name": "Enw arddangos", + "Display participation price": "Arddangos pris cyfranogi", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "Parth", + "Draft": "Drafft", + "Drafts": "Drafftiau", + "Due on": "", + "Duplicate": "", + "Edit": "Golygu", + "Edit post": "", + "Edit profile {profile}": "", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "Ee: Stockholm, Dawns, Gwyddbwyll…", + "Either on the {instance} instance or on another instance.": "Naill ai yn yr achos {instance} neu mewn enghraifft arall.", + "Either the account is already validated, either the validation token is incorrect.": "Naill ai mae'r cyfrif eisoes wedi'i ddilysu, naill ai mae'r tocyn dilysu yn anghywir.", + "Either the email has already been changed, either the validation token is incorrect.": "Naill ai mae'r e-bost eisoes wedi'i newid, naill ai mae'r tocyn dilysu yn anghywir.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Naill ai mae'r cais cyfranogi eisoes wedi'i ddilysu, naill ai mae'r tocyn dilysu yn anghywir.", + "Element title": "", + "Element value": "", + "Email": "E-bost", + "Email address": "", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "", + "Ends on…": "Yn dod i ben ar…", + "Enter the link URL": "Rhowch URL y ddolen", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "", + "Error details copied!": "", + "Error message": "", + "Error stacktrace": "", + "Error while changing email": "Gwall wrth newid e-bost", + "Error while loading the preview": "", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "Gwall wrth ddilysu cyfrif", + "Error while validating participation request": "Gwall wrth ddilysu cais cyfranogi", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "Digwyddiad", + "Event URL": "", + "Event already passed": "Digwyddiad eisoes wedi'i dod i ben", + "Event cancelled": "Diddymwyd y digwyddiad", + "Event creation": "Creu digwyddiadau", + "Event description body": "", + "Event edition": "Rhifyn y digwyddiad", + "Event list": "Rhestr digwyddiadau", + "Event metadata": "", + "Event page settings": "Gosodiadau tudalen digwyddiad", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "Digwyddiad i'w gadarnhau", + "Event {eventTitle} deleted": "Dileu digwyddiad {eventTitle}", + "Event {eventTitle} reported": "Adroddwyd am ddigwyddiad {eventTitle}", + "Events": "Digwyddiadau", + "Events nearby": "", + "Events tagged with {tag}": "", + "Everything": "", + "Ex: mobilizon.fr": "Ee: mobilizon.fr", + "Ex: someone@mobilizon.org": "", + "Explore": "Archwiliwch", + "Explore events": "", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "Wedi methu arbed gosodiadau gweinyddol", + "Featured events": "Digwyddiadau dan sylw", + "Federated Group Name": "", + "Federation": "Ffederasiwn", + "Fediverse account": "", + "Fetch more": "", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "Dewch o hyd i gyfeiriad", + "Find an instance": "Dewch o hyd i achos", + "Find another instance": "", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "", + "Followers": "Dilynwyr", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "Dilyniadau", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "Er enghraifft: Llundain, Taekwondo, Pensaernïaeth…", + "Forgot your password ?": "Wedi anghofio eich cyfrinair ?", + "Forgot your password?": "", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "O'r{startDate} yn {startTime} i'r {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "O'r{startDate} yn {startTime} i'r {endDate} yn {endTime}", + "From the {startDate} to the {endDate}": "O'r{startDate} i'r {endDate}", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "Casglu ⋅ Trefnu ⋅ Symud", + "General": "Cyffredinol", + "General information": "Gwybodaeth gyffredinol", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "Cael lleoliad", + "Getting there": "", + "Glossary": "", + "Go": "Ewch", + "Go to the event page": "", + "Google Meet": "", + "Group": "", + "Group Followers": "", + "Group Members": "", + "Group URL": "", + "Group activity": "", + "Group address": "", + "Group description body": "", + "Group display name": "", + "Group name": "Enw'r grŵp", + "Group profiles": "", + "Group settings": "", + "Group settings saved": "", + "Group short description": "", + "Group visibility": "", + "Group {displayName} created": "Grŵp {displayName} wedi'i greu", + "Group {groupTitle} reported": "", + "Groups": "Grwpiau", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "", + "Hide replies": "Prif lun", + "Home": "", + "Home to {number} users": "", + "Homepage": "", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "", + "I create an identity": "Rwy'n creu hunaniaeth", + "I don't have a Mobilizon account": "Nid oes gen i gyfrif Mobilizon", + "I have a Mobilizon account": "Mae gen i gyfrif Mobilizon", + "I have an account on another Mobilizon instance.": "Mae gen i gyfrif ar achos arall o Mobilizon.", + "I participate": "Rwy'n cymryd rhan", + "I want to allow people to participate without an account.": "Rwyf am ganiatáu i bobl gymryd rhan heb gyfrif.", + "I want to approve every participation request": "Rwyf am gymeradwyo pob cais cyfranogi", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "", + "Identity {displayName} created": "Hunaniaeth {displayName} wedi'i chreu", + "Identity {displayName} deleted": "Hunaniaeth {displayName} wedi'i dileu", + "Identity {displayName} updated": "Diweddarwyd hunaniaeth {displayName}", + "If allowed by organizer": "", + "If an account with this email exists, we just sent another confirmation email to {email}": "Os oes cyfrif gyda'r e-bost hwn yn bodoli, rydym newydd anfon e-bost cadarnhau arall at {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Os mai'r hunaniaeth hon yw unig weinyddwr rhai grwpiau, mae angen i chi eu dileu cyn gallu dileu'r hunaniaeth hon.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "Os ydych chi eisiau, efallai y byddwch chi'n anfon neges at drefnydd y digwyddiad yma.", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "", + "Instance Long Description": "", + "Instance Name": "Enw'r achos", + "Instance Privacy Policy": "", + "Instance Privacy Policy Source": "", + "Instance Privacy Policy URL": "", + "Instance Rules": "", + "Instance Short Description": "", + "Instance Slogan": "", + "Instance Terms": "Telerau Achos", + "Instance Terms Source": "Ffynhonnell Telerau Achos", + "Instance Terms URL": "URL Telerau Achos", + "Instance administrator": "", + "Instance configuration": "", + "Instance feeds": "", + "Instance languages": "", + "Instance rules": "", + "Instance settings": "Gosodiadau achos", + "Instances": "Achosion", + "Instances following you": "", + "Instances you follow": "", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "", + "Invite member": "", + "Invited": "", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "Ymunwch â {instance} , achos Mobilizon", + "Join group": "", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "", + "Language": "", + "Last IP adress": "", + "Last group created": "", + "Last published event": "Digwyddiad cyhoeddedig diwethaf", + "Last published events": "", + "Last sign-in": "", + "Last week": "Wythnos diwethaf", + "Latest posts": "", + "Learn more": "Dysgu mwy", + "Learn more about Mobilizon": "Dysgu mwy am Mobilizon", + "Learn more about {instance}": "", + "Leave": "", + "Leave event": "Gadael digwyddiad", + "Leave group": "", + "Leaving event \"{title}\"": "Yn gadael digwyddiad \"{title}\"", + "Legal": "", + "Let's define a few settings": "", + "License": "Trwydded", + "Limited number of places": "Nifer cyfyngedig o leoedd", + "List title": "", + "Live": "", + "Load more": "Llwythwch fwy", + "Load more activities": "", + "Loading comments…": "", + "Local": "", + "Local time ({timezone})": "", + "Locality": "Lleoliad", + "Location": "", + "Log in": "Mewngofnodi", + "Log out": "Allgofnodi", + "Login": "Mewngofnodi", + "Login on Mobilizon!": "Mewngofnodi ar Mobilizon!", + "Login on {instance}": "Mewngofnodi ar {instance}", + "Login status": "", + "Main languages you/your moderators speak": "", + "Manage participations": "Rheoli cyfranogiadau", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "Marciwch fel y'i datryswyd", + "Member": "", + "Members": "Aelodau", + "Members-only post": "", + "Mentions": "", + "Message": "Neges", + "Microsoft Teams": "", + "Mobilizon": "", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Rhwydwaith ffederal yw Mobilizon. Gallwch ryngweithio â'r digwyddiad hwn gan weinydd gwahanol.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "", + "Moderated comments (shown after approval)": "Sylwadau wedi'u cymedroli (dangosir ar ôl cael eu cymeradwyo)", + "Moderation": "Cymedroli", + "Moderation log": "Log cymedroli", + "Moderation logs": "", + "Moderator": "", + "Move": "", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "Fy nghyfrif", + "My events": "Fy nigwyddiadau", + "My groups": "", + "My identities": "Fy hunaniaethau", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "Enw", + "Navigated to {pageTitle}": "", + "New discussion": "", + "New email": "E-bost newydd", + "New folder": "", + "New link": "", + "New members": "", + "New note": "Nodyn newydd", + "New password": "Cyfrinair newydd", + "New post": "", + "New profile": "Proffil newydd", + "Next": "", + "Next month": "", + "Next page": "Tudalen nesaf", + "Next week": "", + "No address defined": "Dim cyfeiriad wedi'i ddiffinio", + "No closed reports yet": "Dim adroddiadau caeedig eto", + "No comment": "Dim sylw", + "No comments yet": "Dim sylwadau eto", + "No discussions yet": "", + "No end date": "Dim dyddiad gorffen", + "No events found": "Ni chafwyd unrhyw ddigwyddiadau", + "No follower matches the filters": "", + "No group found": "Ni ddaethpwyd o hyd i grŵp", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "Ni ddaethpwyd o hyd i grwpiau", + "No information": "", + "No instance follows your instance yet.": "", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "", + "No member matches the filters": "", + "No members found": "", + "No memberships found": "", + "No message": "", + "No moderation logs yet": "", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "", + "No open reports yet": "", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "", + "No posts yet": "", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "", + "No results for {search}": "", + "No rules defined yet.": "", + "None": "", + "Not accessible with a wheelchair": "", + "Not approved": "", + "Not confirmed": "", + "Notes": "", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "", + "Notifications": "", + "Notifications for manually approved participations to an event": "", + "Notify participants": "", + "Now, create your first profile:": "", + "Number of places": "", + "OK": "", + "Old password": "", + "On {date}": "", + "On {date} ending at {endTime}": "", + "On {date} from {startTime} to {endTime}": "", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "", + "Open": "", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Opened reports": "", + "Or": "", + "Ordered list": "", + "Organized": "", + "Organized by": "", + "Organized by {name}": "", + "Organizer": "", + "Organizer notifications": "", + "Organizers": "", + "Other": "", + "Other actions": "", + "Other notification options:": "", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "", + "Page limited to my group (asks for auth)": "", + "Page not found": "", + "Parent folder": "", + "Partially accessible with a wheelchair": "", + "Participant": "", + "Participants": "", + "Participate": "", + "Participate using your email address": "", + "Participation approval": "", + "Participation confirmation": "", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "", + "Password (confirmation)": "", + "Password reset": "", + "Past events": "", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "", + "Pick an instance": "", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "", + "Please do not use it in any real way.": "Peidiwch â'i ddefnyddio mewn unrhyw ffordd go iawn.", + "Please enter your password to confirm this action.": "", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "", + "Post": "", + "Post URL": "", + "Post a comment": "", + "Post a reply": "", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "", + "Posts": "", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "", + "Preferences": "", + "Previous": "", + "Previous month": "", + "Previous page": "", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "", + "Privacy policy": "", + "Private event": "", + "Private feeds": "", + "Profile": "", + "Profile feeds": "", + "Profiles": "", + "Profiles and federation": "", + "Promote": "", + "Public": "", + "Public RSS/Atom Feed": "", + "Public comment moderation": "", + "Public event": "", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "", + "Publish": "", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "", + "Radius": "", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "", + "Register": "", + "Register an account on {instanceName}!": "", + "Register on this instance": "", + "Registration is allowed, anyone can register.": "", + "Registration is closed.": "", + "Registration is currently closed.": "", + "Registrations": "", + "Registrations are restricted by allowlisting.": "", + "Reject": "", + "Reject member": "", + "Rejected": "", + "Remember my participation in this browser": "", + "Remove": "", + "Remove link": "", + "Rename": "", + "Rename resource": "", + "Reopen": "", + "Replay": "", + "Reply": "", + "Report": "", + "Report #{reportNumber}": "", + "Report this comment": "", + "Report this event": "", + "Report this group": "", + "Report this post": "", + "Reported": "", + "Reported by": "", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "", + "Reported group": "", + "Reported identity": "", + "Reports": "", + "Reports list": "", + "Request for participation confirmation sent": "", + "Resend confirmation email": "", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "", + "Reset password": "", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "", + "Restricted": "", + "Return to the group page": "", + "Right now": "", + "Role": "", + "Rules": "", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "", + "Save": "", + "Save draft": "", + "Schedule": "", + "Search": "", + "Search events, groups, etc.": "", + "Searching…": "", + "Select a language": "", + "Select a radius": "", + "Select a timezone": "", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "", + "Send the report": "", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "", + "Share": "", + "Share this event": "", + "Share this group": "", + "Share this post": "", + "Short bio": "", + "Show map": "", + "Show me where I am": "", + "Show remaining number of places": "", + "Show the time when the event begins": "", + "Show the time when the event ends": "", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "", + "Sign up": "", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "", + "Status": "", + "Street": "", + "Submit": "", + "Subtitles": "", + "Suspend": "", + "Suspend group": "", + "Suspended": "", + "Tag search": "", + "Task lists": "", + "Technical details": "", + "Tentative": "", + "Tentative: Will be confirmed later": "", + "Terms": "", + "Terms of service": "", + "Text": "", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "", + "The event has been published": "", + "The event has been updated": "", + "The event has been updated and published": "", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "", + "The page you're looking for doesn't exist.": "", + "The password was successfully changed": "", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no discussions yet": "", + "These events may interest you": "", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "", + "This event has been cancelled.": "", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "", + "This weekend": "", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "", + "Timezone detected as {timezone}.": "", + "Title": "", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "", + "To create and manage your events": "", + "To create or join an group and start organizing with other people": "", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "", + "Today": "", + "Tomorrow": "", + "Tools": "", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "", + "Type or select a date…": "", + "URL": "", + "URL copied to clipboard": "", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "", + "Unknown actor": "", + "Unknown error.": "", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "", + "Upcoming events": "", + "Upcoming events from your groups": "", + "Update": "", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "", + "Update group": "", + "Update my event": "", + "Update post": "", + "Updated": "", + "Uploaded media size": "", + "Use my location": "", + "User": "", + "User settings": "", + "Username": "", + "Users": "", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "", + "View account on {hostname} (in a new window)": "", + "View all": "", + "View all events": "", + "View all posts": "", + "View event page": "", + "View everything": "", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "", + "Visible everywhere on the web (public)": "", + "Waiting for organization team approval.": "", + "Warning": "", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "", + "Website / URL": "", + "Weekly email summary": "", + "Welcome back {username}!": "", + "Welcome back!": "", + "Welcome to Mobilizon, {username}!": "", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Yesterday": "", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "", + "Your account has been validated": "", + "Your account is being validated": "", + "Your account is nearly ready, {username}": "", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "", + "Your email": "", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "", + "Your upcoming events": "", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "", + "[This comment has been deleted]": "", + "[deleted]": "", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "", + "contact uninformed": "", + "create a group": "", + "create an event": "", + "default Mobilizon privacy policy": "", + "default Mobilizon terms": "", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "", + "instance rules": "", + "more than 1360 contributors": "", + "profile@instance": "", + "report #{report_number}": "", + "return to the event's page": "", + "terms of service": "", + "with another identity…": "", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "", + "{number} members": "", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "", + "© The OpenStreetMap Contributors": "" +}); diff --git a/res/locale/da.js b/res/locale/da.js new file mode 100644 index 0000000..94c1058 --- /dev/null +++ b/res/locale/da.js @@ -0,0 +1,219 @@ +CTX.setMessages({ + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Et brugervenligt, befriende og etisk værktøj for at samles, organisere og mobilisere.", + "A validation email was sent to {email}": "En godkendelsesemail er blevet sendt til {email}", + "Abandon editing": "Afbryd redigering", + "About": "Om", + "About Mobilizon": "Om Mobilizon", + "About this event": "Om denne begivenhed", + "About this instance": "Om denne udbyder", + "Accepted": "Accepteret", + "Account": "Konto", + "Add": "Tilføj", + "Add a note": "Tilføj et notat", + "Add an address": "Tilføj en addresse", + "Add an instance": "Tilføj en udbyder", + "Add some tags": "Tilføj nogle nøgleord", + "Add to my calendar": "Tilføj til min kalender", + "Additional comments": "Yderligere kommentarer", + "Admin": "Administrator", + "Admin settings successfully saved.": "Administrator indstillinger er blevet gemt.", + "Administration": "Administrering", + "All the places have already been taken": "Alle pladserne er allerede optaget", + "Allow registrations": "Tillad registrering", + "Anonymous participant": "Anonym deltager", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Anonyme deltagere vil blive bedt om at bekræfte deres deltagelse via e-mail.", + "Anonymous participations": "Anonyme deltagelser", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Er du helt sikker på at du vil slette hele din konto? Alt vil forsvinde. Identiteter, indstillinger, skabte begivenheder, beskeder og deltagelser vil være borte for evigt.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Er du sikker på at du vil slette kommentaren? Denne handling kan ikke fortrydes.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Er du sikker på at du vil slette begivenheden? Denne handling kan ikke fortrydes. Du kan overveje at snakke med begivenhedens skaber eller at redigere begivenheden i stedet.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Er du sikker på at du vil annullere at skabe begivenheden? Alle ændringer vil gå tabt.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Er du sikker på at du vil annullere at redigere begivenheden? Alle ændringer vil gå tabt.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Er du sikker på at du vil annullere din deltagelse i begivenheden \"{title}\"?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Er du sikker på du vil slette begivenheden? Denne handling kan ikke fortrydes.", + "Avatar": "Avatar", + "Back to previous page": "Tilbage til forrige side", + "Before you can login, you need to click on the link inside it to validate your account.": "Før du kan logge ind skal du klikke på linket i den for at bekræfte din konto.", + "By {username}": "Af {username}", + "Cancel": "Annuller", + "Cancel anonymous participation": "Annuller anonym deltagelse", + "Cancel creation": "Annuller skabelse", + "Cancel edition": "Annuller redigering", + "Cancel my participation request…": "Annuller min anmodning om deltagelse…", + "Cancel my participation…": "Annuller min deltagelse…", + "Cancelled: Won't happen": "Afbrudt: Sker ikke", + "Change": "Ændre", + "Change my email": "Skift email", + "Change my identity…": "Ændre min identitet…", + "Change my password": "Skift kodeord", + "Clear": "Ryd", + "Click to upload": "Klik for at uploade", + "Close": "Luk", + "Close comments for all (except for admins)": "Luk kommentarer for alle (undtagen administratorer)", + "Closed": "Lukket", + "Comment deleted": "Kommentar slettet", + "Comments": "Kommentarer", + "Confirm my participation": "Bekræft min deltagelse", + "Confirmed: Will happen": "Bekræftet: Kommer til at ske", + "Continue editing": "Fortsæt med at redigere", + "Country": "Land", + "Create": "Skab", + "Create a new event": "Lav en ny begivenhed", + "Create a new group": "Lav en ny gruppe", + "Create a new identity": "Lav en ny identitet", + "Create group": "Skab en gruppe", + "Create my event": "Skab min begivenhed", + "Create my group": "Skab min gruppe", + "Create my profile": "Skab min profil", + "Create token": "Skab token", + "Current identity has been changed to {identityName} in order to manage this event.": "Den aktive identitet er blevet ændret til {identityName} for at håndtere denne begivenhed.", + "Current page": "Nuværende side", + "Custom": "Tilpasset", + "Custom URL": "Tilpasset addresse", + "Custom text": "Tilpasset tekst", + "Dashboard": "Dashboard", + "Date": "Dato", + "Date and time settings": "Dato og tidsinstillinger", + "Date parameters": "Datoparametre", + "Default": "Standard", + "Delete": "Slet", + "Delete account": "Slet konto", + "Delete event": "Slet begivenhed", + "Delete everything": "Slet alt", + "Delete my account": "Slet min konto", + "Delete this identity": "Slet denne identitet", + "Delete your identity": "Slet din identitet", + "Delete {eventTitle}": "Slet {eventTitle}", + "Delete {preferredUsername}": "Slet {preferredUsername}", + "Deleting comment": "Sletter kommentar", + "Deleting event": "Sletter begivenhed", + "Deleting my account will delete all of my identities.": "Hvis jeg sletter min konto, bliver alle mine identiteter slettet.", + "Deleting your Mobilizon account": "Sletter din Mobilizon konto", + "Description": "Beskrivelse", + "Display name": "Viste navn", + "Display participation price": "Vis pris for deltagelse", + "Domain": "Domæne", + "Draft": "Kladde", + "Drafts": "Kladder", + "Edit": "Rediger", + "Eg: Stockholm, Dance, Chess…": "F.eks.: Stockholm, Dans, Skak…", + "Either on the {instance} instance or on another instance.": "Enten på {instance} udbyderen eller på en anden udbyder.", + "Either the account is already validated, either the validation token is incorrect.": "Enten er kontoen allerede godkendt, eller valideringskoden forkert.", + "Either the email has already been changed, either the validation token is incorrect.": "Enten er emailadressen allerede blevet ændret, eller valideringskoden er forkert.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Enten er deltagelsesanmodningen allerede blevet godkendt, eller valideringskoden er forkert.", + "Email": "Email", + "Ends on…": "Slutter…", + "Enter the link URL": "Indtast linket", + "Error while changing email": "Fejl under ændring af emailadresse", + "Error while validating account": "Fejl under godkendelse af konto", + "Error while validating participation request": "Fejl under godkendelse af deltagelsesanmodning", + "Event": "Begivenhed", + "Event already passed": "Begivenheden er ovre", + "Event cancelled": "Begivenheden er aflyst", + "Event creation": "Skabelse af begivenhed", + "Event edition": "Redigering af begivenhed", + "Event list": "Liste af begivenheder", + "Event page settings": "Indstillinger for begivenhedens side", + "Event to be confirmed": "Begivenheden skal bekræftes", + "Event {eventTitle} deleted": "Begivenheden {eventTitle} blev slettet", + "Event {eventTitle} reported": "Begivenheden {eventTitle} blev indmeldt", + "Events": "Begivenheder", + "Ex: mobilizon.fr": "F.eks: mobilizon.fr", + "Explore": "Udforsk", + "Failed to save admin settings": "Kunne ikke gemme admin indstillinger", + "Featured events": "Udvalgte begivenheder", + "Federation": "Federation", + "Find an address": "Find en adresse", + "Find an instance": "Find en udbyder", + "Followers": "Følgere", + "Followings": "Følger", + "For instance: London, Taekwondo, Architecture…": "For eksempel: London, Taekwondo, Arkitektur…", + "Forgot your password ?": "Glemt dit kodeord?", + "From the {startDate} at {startTime} to the {endDate}": "Fra d. {startDate} kl. {startTime} til d. {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Fra d. {startDate} kl. {startTime} til d. {endDate} kl. {endTime}", + "From the {startDate} to the {endDate}": "Fra d. {startDate} til d. {endDate}", + "Gather ⋅ Organize ⋅ Mobilize": "Samles ⋅ Organiser ⋅ Mobiliser", + "General": "Generelt", + "General information": "Generel information", + "Getting location": "Henter placering", + "Go": "Gå", + "Group name": "Gruppenavn", + "Group {displayName} created": "Gruppen {displayName} er oprettet", + "Groups": "Grupper", + "Headline picture": "Hovedbillede", + "Hide replies": "Skjul svar", + "I create an identity": "Jeg skaber en identitet", + "I don't have a Mobilizon account": "Jeg har ikke en Mobilizon konto", + "I have a Mobilizon account": "Jeg har en Mobilizon konto", + "I have an account on another Mobilizon instance.": "Jeg har en konto på en anden Mobilizon udbyder.", + "I participate": "Jeg deltager", + "I want to allow people to participate without an account.": "Jeg vil lade personer uden en konto deltage.", + "I want to approve every participation request": "Jeg vil godkende for alle deltagelsesanmodninger", + "Identity {displayName} created": "Identiteten {displayName} er skabt", + "Identity {displayName} deleted": "Identiteten {displayName} er slettet", + "Identity {displayName} updated": "Identiteten {displayName} er opdateret", + "If an account with this email exists, we just sent another confirmation email to {email}": "Hvis en konto med denne emailadresse findes, har vi lige sendt en bekræftelsesmail til {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Hvis denne identitet er den eneste administrator af nogle grupper, skal du slette grupperne før du kan slette identiteten.", + "If you want, you may send a message to the event organizer here.": "Hvis du vil kan du sende en besked til begivenhedens arrangør her.", + "Instance Name": "Udbyderens navn", + "Instance Terms": "Udbyderens brugsvilkår", + "Instance Terms Source": "Kilde til udbyderens vilkår", + "Instance Terms URL": "Adresse til udbyderens vilkår", + "Instance settings": "Indstillinger for udbyderen", + "Instances": "Udbydere", + "Join {instance}, a Mobilizon instance": "Bliv medlem af {instance}, en Mobilizon udbyder", + "Last published event": "Nyeste begivenhed", + "Last week": "Sidste uge", + "Learn more": "Lær mere", + "Learn more about Mobilizon": "Lær mere om Mobilizon", + "Leave event": "Forlad begivenhed", + "Leaving event \"{title}\"": "Forlader begivenheden \"{title}\"", + "License": "Licens", + "Limited number of places": "Begrænset antal pladser", + "Load more": "Indlæs flere", + "Locality": "Sted", + "Log in": "Log ind", + "Log out": "Log ud", + "Login": "Log ind", + "Login on Mobilizon!": "Log ind på Mobilizon!", + "Login on {instance}": "Log ind på {instance}", + "Manage participations": "Håndter deltagelser", + "Mark as resolved": "Marker som løst", + "Members": "Medlemmer", + "Message": "Besked", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon er et føderalt netværk. Du kan interagere med denne begivenhed fra andre udbydere.", + "Moderated comments (shown after approval)": "Modererede kommentarer (vist efter godkendelse)", + "Moderation": "Moderering", + "Moderation log": "Moderationslog", + "My account": "Min konto", + "My events": "Mine begivenheder", + "My identities": "Mine identiteter", + "Name": "Navn", + "New email": "Ny email", + "New note": "Nyt notat", + "New password": "Nyt kodeord", + "New profile": "Ny profil", + "Next page": "Næste side", + "No address defined": "Ingen adresse givet", + "No closed reports yet": "Ingen behandlede indmeldinger endnu", + "No comment": "Ingen kommentar", + "No comments yet": "Ingen kommentarer endnu", + "No end date": "Ingen slutdato", + "No events found": "Ingen begivenheder fundet", + "No group found": "Ingen gruppe fundet", + "No groups found": "Ingen grupper fundet", + "No instance follows your instance yet.": "Ingen udbydere følger din udbyder endnu.", + "No instance to approve|Approve instance|Approve {number} instances": "Ingen udbydere at godkende|Godkend udbyder|Godkend {number} udbydere", + "No instance to reject|Reject instance|Reject {number} instances": "Ingen udbydere at afvise|Afvis udbyder|Afvis {number} udbydere", + "No instance to remove|Remove instance|Remove {number} instances": "Ingen udbydere at fjerne|Fjern udbyder|Fjern {number} udbydere", + "No message": "Ingen besked", + "No open reports yet": "Ingen åbne indmeldinger endnu", + "No participant to approve|Approve participant|Approve {number} participants": "Ingen deltagere at godkende|Godkend deltager|Godkend {number} deltagere", + "No participant to reject|Reject participant|Reject {number} participants": "Ingen deltagere at afvise|Afvis deltagere|Afvis {number} deltagere", + "No resolved reports yet": "Ingen løste indmeldinger endnu", + "No results for \"{queryText}\"": "Ingen resultater for \"{queryText}\"", + "Notes": "Notater", + "Number of places": "Antal steder", + "OK": "OK", + "Old password": "Gammelt kodeord", + "Please do not use it in any real way.": "Brug det venligst ikke som andet end en prøve." +}); diff --git a/res/locale/de.js b/res/locale/de.js new file mode 100644 index 0000000..a1d8b23 --- /dev/null +++ b/res/locale/de.js @@ -0,0 +1,1501 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Versteckt)", + "(this folder)": "(dieser Ordner)", + "(this link)": "(dieser Link)", + "+ Add a resource": "+ Füge eine Ressource hinzu", + "+ Create a post": "+ Beitrag erstellen", + "+ Create an event": "+ Eine Veranstaltung erstellen", + "+ Start a discussion": "+ Starte eine Diskussion", + "0 Bytes": "0 Bytes", + "{contact} will be displayed as contact.": "{contact} wird als Kontakt angezeigt.|{contact} werden als Kontakte angezeigt.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "Die Folgeanfrage von @{username} wurde angenommen", + "@{username}'s follow request was rejected": "@{username}'s Folgeanfrage wurde zurückgewiesen", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Ein Cookie ist eine kleine Datei mit Informationen, die an Ihren Computer gesendet wird, wenn Sie eine Website besuchen. Wenn Sie die Website erneut besuchen, ermöglicht das Cookie dieser Website, Ihren Browser zu erkennen. Cookies können Benutzereinstellungen und andere Informationen speichern. Sie können Ihren Browser so konfigurieren, dass er alle Cookies ablehnt. Dies kann jedoch dazu führen, dass einige Funktionen oder Dienste der Website nur eingeschränkt funktionieren. Die lokale Speicherung funktioniert auf die gleiche Weise, ermöglicht es Ihnen jedoch, mehr Daten zu speichern.", + "A discussion has been created or updated": "Eine Diskussion wurde erstellt oder aktualisiert", + "A federated software": "Eine föderierte Software", + "A fediverse account URL to follow for event updates": "Ein Link zu einem Fediverse-Konto, um Veranstaltungsankündigungen folgen zu können", + "A few lines about your group": "Ein paar Zeilen über Ihre Gruppe", + "A link to a page presenting the event schedule": "Ein Link zu einer Webseite mit Informationen zum Veranstaltungablauf", + "A link to a page presenting the price options": "Ein Link zu einer Website mit den Preisvarianten", + "A member has been updated": "Ein Mitglied wurde aktualisiert", + "A member requested to join one of my groups": "Ein Mitglied möchte einer meiner Gruppen beitreten", + "A new version is available.": "Eine neue Version ist verfügbar.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Hier ist Platz für Ihren Code of Conduct, Regeln und Vorgaben. Sie können HTML-Tags verwenden.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Hier können Sie beschreiben, wer Sie sind und was Ihre Instanz besonders macht. Sie können HTML-Tags verwenden.", + "A place to publish something to the whole world, your community or just your group members.": "Ein Ort, an dem Sie etwas für die ganze Welt, Ihre Gemeinschaft oder nur für Ihre Gruppenmitglieder veröffentlichen können.", + "A place to store links to documents or resources of any type.": "Ein Ort um Links zu Dokumenten oder Materialien jeden Typs zu speichern.", + "A post has been published": "Ein Beitrag wurde veröffentlicht", + "A post has been updated": "Ein Beitrag wurde aktualisiert", + "A practical tool": "Ein praktisches Werkzeug", + "A resource has been created or updated": "Eine Ressource wurde erstellt oder aktualisiert", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Ein kurzer Slogan für Ihre Instanz-Homepage. Standardmäßig steht dort „Treffen ⋅ Organisieren ⋅ Mobilisieren“", + "A twitter account handle to follow for event updates": "Ein Twitter-Konto, dem Sie für Aktualisierungen der Veranstaltung folgen können", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Ein benutzerfreundliches, emanzipatorisches und ethisches Instrument zum Sammeln, Organisieren und Mobilisieren.", + "A validation email was sent to {email}": "Es wurde eine Bestätigung-E-Mail an {email} gesendet", + "API": "API", + "Abandon editing": "Bearbeitung abbrechen", + "About": "Über", + "About Mobilizon": "Über Mobilizon", + "About anonymous participation": "Über anonyme Teilnahme", + "About instance": "Über diese Instanz", + "About this event": "Über diese Veranstaltung", + "About this instance": "Über diese Instanz", + "About {instance}": "Über {instance}", + "Accept": "Akzeptieren", + "Accept follow": "Das Folgen akzeptieren", + "Accepted": "Akzeptiert", + "Access group activities": "Gruppenaktivitäten ansehen", + "Access group discussions": "Gruppendiskussionen ansehen", + "Access group events": "Gruppenveranstaltungen ansehen", + "Access group followers": "Gruppenfolgende ansehen", + "Access group members": "Gruppenmitglieder ansehen", + "Access group todo-lists": "Gruppen-To-do-Liste ansehen", + "Access organized events": "Organisierte Veranstaltungen ansehen", + "Access participations": "Teilnehmer ansehen", + "Accessibility": "Barrierefreiheit", + "Accessible only by link": "Erreichbar nur über einen Link", + "Accessible only to members": "Nur für Mitglieder zugänglich", + "Accessible through link": "Erreichbar über Link", + "Account": "Konto", + "Account settings": "Kontoeinstellungen", + "Actions": "Aktionen", + "Activate browser push notifications": "Browser-Push-Benachrichtigungen aktivieren", + "Activate notifications": "Benachrichtigungen aktivieren", + "Activated": "Aktiviert", + "Active": "Aktiv", + "Activity": "Ereignisse", + "Actor": "Akteur*in", + "Adapt to system theme": "An das Thema des Systems anpassen", + "Add": "Hinzufügen", + "Add / Remove…": "Hinzufügen/Entfernen …", + "Add a contact": "Füge einen Kontakt hinzu", + "Add a new post": "Einen neuen Beitrag hinzufügen", + "Add a note": "Notiz hinzufügen", + "Add a todo": "To-do hinzufügen", + "Add an address": "Adresse hinzufügen", + "Add an instance": "Instanz hinzufügen", + "Add link": "Link hinzufügen", + "Add new…": "Neu hinzufügen …", + "Add picture": "Bild hinzufügen", + "Add some tags": "Schlagworte ergänzen", + "Add to my calendar": "Zu meinem Kalender hinzufügen", + "Additional comments": "Weitere Kommentare", + "Admin": "Administrator", + "Admin dashboard": "Übersichtsseite der Administration", + "Admin settings": "Admineinstellungen", + "Admin settings successfully saved.": "Admineinstellungen erfolgreich gespeichert.", + "Administration": "Administration", + "Administrator": "Administrator", + "All": "Alle", + "All activities": "Alle Ereignisse", + "All good, let's continue!": "Das passt, weiter geht’s!", + "All the places have already been taken": "Alle Plätze sind schon vergeben", + "Allow all comments from users with accounts": "Erlaube alle Kommentare von angemeldeten Benutzern", + "Allow registrations": "Erlaube Registrierungen", + "An URL to an external ticketing platform": "Eine Webadresse zu einer externen Ticketplattform", + "An error has occured while refreshing the page.": "Es trat ein Fehler auf, während die Seite neu geladen wurde.", + "An error has occured. Sorry about that. You may try to reload the page.": "Ein Fehler ist aufgetreten. Bitte entschuldigen Sie. SIe können versuchen die Seite neu zu laden.", + "An ethical alternative": "Eine ethische Alternative", + "An event I'm going to has been updated": "Eine Veranstaltung, an der ich teilnehme, wurde aktualisiert", + "An event I'm going to has posted an announcement": "In einer Veranstaltung, an der ich teilnehme, wurde eine Ankündigung geteilt", + "An event I'm organizing has a new comment": "Eine Veranstaltung, die ich organisiere, hat einen neuen Kommentar", + "An event I'm organizing has a new participation": "Eine Veranstaltung die ich organisiere, hat eine neue Teilnehmer:in", + "An event I'm organizing has a new pending participation": "Eine Veranstaltung die ich organisiere, hat eine ausstehende Teilnahmeanfrage", + "An event from one of my groups has been published": "Eine Veranstaltung einer meiner Gruppen wurde veröffentlicht", + "An event from one of my groups has been updated or deleted": "Eine Veranstaltung einer meiner Gruppen wurde aktualisiert oder gelöscht", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Als Instanz bezeichnen wir eine Installation der Mobilizon-Software auf einem Server. Eine Instanz kann von jedem mithilfe der {mobilizon_software} oder anderer kompatibler Software betrieben werden. Der Name dieser Instanz lautet „{instance_name}“. Diese Instanz ist Teil des „Fediverse“, einem Netzwerk aus vielen verbundenen Instanzen, die alle miteinander kommunizieren können. Nutzer von verschiedenen Instanzen können so – genau wie beim E-Mail-System – miteinander kommunizieren. Auch wenn Sie Ihr Konto bei einer anderen Instanzen registriert haben.", + "And {number} comments": "Und {number} Kommentare", + "Announcements and mentions notifications are always sent straight away.": "Benachrichtigungen zu Ankündigungen und Erwähnungen werden immer sofort verschickt.", + "Anonymous participant": "Anonymer Teilnehmer", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Anonyme Teilnehmer werden gebeten, ihre Teilnahme per E-Mail zu bestätigen.", + "Anonymous participations": "Anonyme Teilnahme", + "Any category": "Jede Kategorie", + "Any day": "Egal wann", + "Any distance": "Beliebige Entfernung", + "Any type": "Jeder Typ", + "Anyone can join freely": "Jeder kann frei beitreten", + "Anyone can request being a member, but an administrator needs to approve the membership.": "Jeder kann einen Antrag auf Mitgliedschaft stellen, aber ein Administrator muss die Mitgliedschaft genehmigen.", + "Anyone wanting to be a member from your group will be able to from your group page.": "Jeder, der ein Mitglied Ihrer Gruppe werden möchte, kann dies von Ihrer Gruppenseite aus tun.", + "Application": "Anwendung", + "Apply filters": "Filter anwenden", + "Approve member": "Mitglied zulassen", + "Apps": "Apps", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Sind Sie sicher, dass Sie Ihr Benutzerkonto komplett löschen möchten? Sie verlieren dadurch alles: Identitäten, Einstellungen, erstellte Veranstaltungen, Nachrichten und Veranstaltungsteilnahmen. Alles wird nach Bestätigung gelöscht.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Möchten Sie diese Gruppe wirklich löschen? Alle Mitglieder – einschließlich externe – werden benachrichtigt und aus der Gruppe entfernt. Es werden alle Gruppendaten (Veranstaltungen, Beiträge, Diskussionen, Aufgaben, …) irreversibel gelöscht.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Sind Sie sicher, dass Sie diesen Kommentar löschen wollen? Diese Aktion kann nicht rückgängig gemacht werden.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Sind Sie sicher, diese Veranstaltung löschen zu wollen? Dies kann nicht rückgängig gemacht werden. Sie könnten sich stattdessen mit dem Veranstalter austauschen oder die Veranstaltung bearbeiten.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Möchten Sie diese Gruppe wirklich auflösen? Alle Mitglieder – einschließlich externe – werden benachrichtigt und aus der Gruppe entfernt. Es werden alle Gruppendaten (Veranstaltungen, Beiträge, Diskussionen, Aufgaben, …) irreversibel gelöscht.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Möchten Sie diese Gruppe wirklich auflösen? Da diese Gruppe von einer anderen Instanz ({instance}) stammt, werden nur lokale Mitglieder und Daten entfernt und zukünftige Daten abgelehnt.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Sind Sie sich sicher, dass Sie das Erstellen der Veranstaltung abbrechen möchten? Alle Änderungen werden verloren gehen.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Sind Sie sich sicher, dass Sie die Änderung der Veranstaltung abbrechen möchten? Sie verlieren dann alle Änderungen.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Sind Sie sicher, dass Sie Ihre Teilnahme an der Veranstaltung „{titel}“ stornieren möchten?", + "Are you sure you want to delete this entire discussion?": "Sind Sie sicher, dass sie die gesamte Diskussion löschen wollen?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Sind Sie sicher, dass Sie diese Veranstaltung löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.", + "Are you sure you want to delete this post? This action cannot be reverted.": "Bist du sicher, dass du diesen Beitrag löschen willst? Das kann nicht rückgängig gemacht werden.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Sind Sie sicher, dass Sie die Gruppe {groupName} verlassen möchten? Sie verlieren den Zugang zu den privaten Inhalten dieser Gruppe. Diese Aktion kann nicht rückgängig gemacht werden.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Da der Veranstalter sich entschieden hat, die Teilnahmeanfragen manuell zu validieren, wird Ihre Teilnahme erst dann wirklich bestätigt, wenn Sie eine E-Mail erhalten, in der die Annahme bestätigt wird.", + "Ask your instance admin to {enable_feature}.": "Bitten Sie Ihren Instanzadministrator um {enable_feature}.", + "Assigned to": "Zugewiesen an", + "Atom feed for events and posts": "Atom-Feed mit Veranstaltungen und Beiträgen", + "Attending": "Teilnahme", + "Authorize": "Erlauben", + "Authorize application": "Anwendung erlauben", + "Autorize this application to access your account?": "Dieser Anwendung Zugriff auf Ihr Konto gewähren?", + "Avatar": "Profilbild", + "Back to group list": "Zurück zur Gruppenliste", + "Back to homepage": "Zurück zur Startseite", + "Back to previous page": "Zurück zur vorherigen Seite", + "Back to profile list": "Zurück zur Profilliste", + "Back to top": "Zurück nach oben", + "Back to user list": "Zurück zur Benutzerliste", + "Banner": "Banner", + "Become part of the community and start organizing events": "Werde Teil der Gemeinschaft und fange an, Veranstaltungen zu organisieren", + "Before you can login, you need to click on the link inside it to validate your account.": "Bevor Sie sich anmelden können, müssen Sie auf den darin enthaltenen Link klicken, um Ihr Konto zu validieren.", + "Begins on": "Beginnt am", + "Best match": "Beste Übereinstimmung", + "Big Blue Button": "Big Blue Button", + "Bold": "Fett", + "Booking": "Buchung", + "Breadcrumbs": "Navigationspfad", + "Browser notifications": "Browser-Benachrichtigungen", + "Bullet list": "Aufzählung", + "By bike": "Mit Fahrrad", + "By car": "Mit Auto", + "By others": "Von Anderen", + "By transit": "Mit öffentlichen Verkehrsmitteln", + "By {group}": "Von {group}", + "By {username}": "Von {username}", + "Calendar": "Kalender", + "Can be an email or a link, or just plain text.": "Dies kann eine E-Mail-Adresse oder ein Link sein. Oder einfach ein Freitext.", + "Cancel": "Abbrechen", + "Cancel anonymous participation": "Anonyme Teilnahme stornieren", + "Cancel creation": "Erstellung abbrechen", + "Cancel discussion title edition": "Änderung des Diskussionstitels abbrechen", + "Cancel edition": "Bearbeiten abbrechen", + "Cancel follow request": "Folgeanfrage abbrechen", + "Cancel membership request": "Antrag auf Mitgliedschaft stornieren", + "Cancel my participation request…": "Meine Teilnahmeanfrage stornieren …", + "Cancel my participation…": "Meine Teilnahme stornieren …", + "Cancelled": "Abgesagt", + "Cancelled: Won't happen": "Abgesagt: Wird nicht stattfinden", + "Categories": "Kategorien", + "Category": "Kategorie", + "Category illustrations credits": "Kategorie Illustrations Credits", + "Category list": "Kategorieliste", + "Change": "Ändern", + "Change email": "E-Mail-Adresse ändern", + "Change my email": "Meine E-Mail-Adresse ändern", + "Change my identity…": "Meine Identität wechseln …", + "Change my password": "Mein Passwort ändern", + "Change role": "Rolle ändern", + "Change the filters.": "Filter ändern.", + "Change timezone": "Zeitzone ändern", + "Change user email": "Benutzer-E-Mail-Adresse ändern", + "Change user role": "Benutzerrolle ändern", + "Check your inbox (and your junk mail folder).": "Prüfen Sie Ihren Posteingang (und den Spamordner).", + "Choose the source of the instance's Privacy Policy": "Wählen Sie die Quelle der Instanz-Datenschutzrichtlinie", + "Choose the source of the instance's Terms": "Wählen Sie die Quelle der Instanz-Bedingungen", + "City or region": "Ort, Landkreis oder Bundesland", + "Clear": "Leeren", + "Clear address field": "Adressfeld leeren", + "Clear date filter field": "Datumsfilterfeld löschen", + "Clear participation data for all events": "Übersichtliche Teilnehmerdaten für alle Veranstaltungen", + "Clear participation data for this event": "Übersichtliche Teilnehmerdaten für diese Veranstaltung", + "Clear timezone field": "Zeitzonenfeld leeren", + "Click for more information": "Klicken Sie hier für mehr Informationen", + "Click to upload": "Zum Hochladen hier klicken", + "Close": "Schließen", + "Close comments for all (except for admins)": "Kommentare für alle außer Admins sperren", + "Close map": "Schließe Karte", + "Closed": "Geschlossen", + "Comment body": "Text des Kommentars", + "Comment deleted": "Kommentar gelöscht", + "Comment from {'@'}{username} reported": "Kommentar von {'@'}{username} wurde gemeldet", + "Comment text can't be empty": "Der Kommentar darf nicht leer sein", + "Comments": "Kommentare", + "Comments are closed for everybody else.": "Kommentare sind für alle anderen geschlossen.", + "Confirm": "Bestätigen", + "Confirm my participation": "Meine Teilnahme bestätigen", + "Confirm my particpation": "Bestätige meine Teilnahme", + "Confirm participation": "Teilnahme bestätigen", + "Confirm user": "Benutzer bestätigen", + "Confirmed": "Bestätigt", + "Confirmed at": "Bestätigt um", + "Confirmed: Will happen": "Bestätigt: Wird stattfinden", + "Congratulations, your account is now created!": "Glückwunsch, Ihr Benutzerkonto wurde jetzt erstellt!", + "Contact": "Kontakt", + "Continue": "Weiter", + "Continue editing": "Bearbeitung fortsetzen", + "Cookies and Local storage": "Cookies und lokale Website-Daten", + "Copy URL to clipboard": "Kopiere URL in die Zwischenablage", + "Copy details to clipboard": "Details in die Zwischenablage kopieren", + "Country": "Land", + "Create": "Erstellen", + "Create a calc": "Tabelle erstellen", + "Create a discussion": "Beginne eine Diskussion", + "Create a folder": "Einen Ordner erstellen", + "Create a new event": "Neue Veranstaltung erstellen", + "Create a new group": "Neue Gruppe erstellen", + "Create a new identity": "Neue Identität erstellen", + "Create a new list": "neue Liste erstellen", + "Create a new profile": "Neues Profil erstellen", + "Create a pad": "Pad erstellen", + "Create a videoconference": "Videokonferenz erstellen", + "Create an account": "Konto erstellen", + "Create discussion": "Diskussion erstellen", + "Create event": "Veranstaltung erstellen", + "Create group": "Gruppe erstellen", + "Create group discussions": "Gruppendiskussionen erstellen", + "Create group resources": "Gruppenmaterialien erstellen", + "Create identity": "Identität erstellen", + "Create my event": "Meine Veranstaltung erstellen", + "Create my group": "Meine Gruppe erstellen", + "Create my profile": "Mein Profil erstellen", + "Create new links": "Erstelle neue Links", + "Create new profiles": "Neue Profile erstellen", + "Create resource": "Ressource erstellen", + "Create the discussion": "Beginne die Diskussion", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Erstellen Sie To-do-Listen für alle Aufgaben, die Sie erledigen müssen, weisen Sie diese zu und legen Sie Fälligkeitsdaten fest.", + "Create token": "Token erstellen", + "Created by {name}": "Erstellt von {name}", + "Created by {username}": "Erstellt von {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "Aktuelle Identität wurde zu {identityName} geändert, um das Event bearbeiten zu können.", + "Current page": "Aktuelle Seite", + "Custom": "Benutzerdefiniert", + "Custom URL": "Benutzerdefinierte URL", + "Custom text": "Benutzerdefinierter Text", + "Daily email summary": "Tägliche E-Mail-Zusammenfassungen", + "Dark": "Dunkel", + "Dashboard": "Dashboard", + "Date": "Datum", + "Date and time": "Datum und Uhrzeit", + "Date and time settings": "Datums- und Uhrzeiteinstellungen", + "Date parameters": "Datumsoptionen", + "Deactivate notifications": "Benachrichtigungen deaktivieren", + "Decline": "Ablehnen", + "Decrease": "Verrringern", + "Default": "Standard", + "Default Mobilizon privacy policy": "Standard-Datenschutzerklärung von Mobilizon", + "Default Mobilizon terms": "Standardbedingungen von Mobilizon", + "Delete": "Löschen", + "Delete account": "Konto löschen", + "Delete comments": "Kommentare löschen", + "Delete conversation": "Lösche Konversation", + "Delete discussion": "Diskussion löschen", + "Delete event": "Veranstaltung löschen", + "Delete events": "Veranstaltungen löschen", + "Delete everything": "Alles löschen", + "Delete group": "Gruppe löschen", + "Delete group posts": "Gruppenbeiträge löschen", + "Delete group resources": "Gruppenmaterialien löschen", + "Delete my account": "Mein Konto löschen", + "Delete post": "Beitrag löschen", + "Delete profiles": "Profile löschen", + "Delete this discussion": "Diese Diskussion löschen", + "Delete this identity": "Diese Identität löschen", + "Delete your identity": "Ihre Identität löschen", + "Delete {eventTitle}": "Lösche {eventTitle}", + "Delete {preferredUsername}": "Lösche {preferredUsername}", + "Deleting comment": "Kommentar löschen", + "Deleting event": "Veranstaltung löschen", + "Deleting my account will delete all of my identities.": "Das Löschen meines Kontos wird alle meine Identitäten löschen.", + "Deleting your Mobilizon account": "Ihr Mobilizon Konto wird gelöscht", + "Demote": "zurückstufen", + "Describe your event": "Beschreiben Sie Ihre Veranstaltung", + "Description": "Beschreibung", + "Details": "Details", + "Device activation": "Geräteaktivierung", + "Didn't receive the instructions?": "Sie haben die Anleitung nicht erhalten?", + "Disabled": "Deaktiviert", + "Discussions": "Diskussionen", + "Discussions list": "Liste der Diskussionen", + "Display name": "Anzeigename", + "Display participation price": "Teilnahmegebühr anzeigen", + "Displayed nickname": "Angezeigter Nutzername", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Wird auf der Startseite und in den Meta-Tags angezeigt. Beschreiben Sie in einem Absatz was Mobilizon ist und was diese Instanz besonders macht.", + "Distance": "Entfernung", + "Do not receive any mail": "Keine E-Mails erhalten", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Wollen Sie dieses Konto wirklich sperren? Alle Profile des Benutzers werden gelöscht.", + "Do you wish to {create_event} or {explore_events}?": "Möchten Sie ein {create_event} oder {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Möchten Sie eine {create_group} oder {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "Muss die Veranstaltung später noch bestätigt werden oder wurde sie abgesagt?", + "Domain": "Internetadresse", + "Draft": "Entwurf", + "Drafts": "Entwürfe", + "Due on": "Fällig am", + "Duplicate": "Duplizieren", + "Edit": "Bearbeiten", + "Edit post": "Beitrag bearbeiten", + "Edit profile {profile}": "Profil {profile} bearbeiten", + "Edit user email": "Benutzer-E-Mail-Adresse bearbeiten", + "Edited {ago}": "Editiert {ago}", + "Edited {relative_time} ago": "Vor {relative_time} bearbeitet", + "Eg: Stockholm, Dance, Chess…": "z. B.: Berlin, Tanzen, Schach …", + "Either on the {instance} instance or on another instance.": "Entweder auf der Instanz {instance} oder auf einer anderen Instanz.", + "Either the account is already validated, either the validation token is incorrect.": "Das Konto ist bereits bestätigt oder der Bestätigungstoken ist falsch.", + "Either the email has already been changed, either the validation token is incorrect.": "Die E-Mail-Adresse wurde bereits geändert oder der Bestätigungstoken ist falsch.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Die Teilnahmeanfrage wurde schon bestätigt, oder der Bestätigungstoken ist falsch.", + "Element title": "Elementüberschrift", + "Element value": "Elementwert", + "Email": "E-Mail", + "Email address": "E-Mail-Adresse", + "Email validate": "E-Mail-Adresse validieren", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "E-Mails enthalten in der Regel keine Großbuchstaben, vergewissern Sie sich, dass Sie sich nicht vertippt haben.", + "Enabled": "Aktiviert", + "Ends on…": "Endet am …", + "Enter the link URL": "Geben Sie die Link-URL ein", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Geben Sie unten Ihre E-Mail-Adresse ein und wir senden Ihnen per E-Mail eine Anleitung, wie Sie Ihr Passwort zurücksetzen können.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Geben Sie Ihre eigene Datenschutzerklärung ein. HTML tags sind erlaubt. Die {mobilizon_privacy_policy} ist als Vorlage bereitgestellt.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Geben Sie Ihre eigenen Bedingungen an. HTML-Tags sind erlaubt. Die {mobilizon_terms} sind als Vorlage gegeben.", + "Error": "Fehler", + "Error details copied!": "Fehlerdetails kopiert!", + "Error message": "Fehlermeldung", + "Error stacktrace": "Fehler Stacktrace", + "Error while changing email": "Fehler beim Ändern der E-Mail-Adresse", + "Error while loading the preview": "Fehler beim Laden der Vorschau", + "Error while login with {provider}. Retry or login another way.": "Fehler bei der Anmeldung mit {provider}. Versuchen Sie es erneut oder nutzen Sie eine andere Login-Möglichkeit.", + "Error while login with {provider}. This login provider doesn't exist.": "Fehler bei der Anmeldung über {provider}. Dieser Anbieter existiert nicht.", + "Error while reporting group {groupTitle}": "Fehler beim melden der Gruppe {groupTitle}", + "Error while subscribing to push notifications": "Fehler beim Abonnieren von Push-Benachrichtigungen", + "Error while suspending group": "Fehler beim Sperren der Gruppe", + "Error while updating participation status inside this browser": "Fehler beim Aktualisieren des Teilnahmestatus in diesem Browser", + "Error while validating account": "Fehler beim Bestätigen des Kontos", + "Error while validating participation request": "Fehler beim Bestätigen der Teilnahmeanfrage", + "Etherpad notes": "Etherpad-Notizen", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Ethische Alternative zu Facebook-Events, -Gruppen und -Seiten. Mobilizon ist ein Werkzeug, welches Ihnen dienen soll. Punkt.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Ethische Alternative zu Facebook-Veranstaltungen, -Gruppen und -Seiten, Mobilizon ist ein {tool_designed_to_serve_you}. Punkt.", + "Event": "Veranstaltung", + "Event URL": "Veranstaltungslink", + "Event already passed": "Veranstaltung hat bereits stattgefunden", + "Event cancelled": "Veranstaltung abgesagt", + "Event creation": "Veranstaltung anlegen", + "Event date": "Veranstaltungsdatum", + "Event description body": "Text der Veranstaltungsbeschreibung", + "Event edition": "Bearbeiten einer Veranstaltung", + "Event list": "Veranstaltungsliste", + "Event metadata": "Metadaten der Veranstaltung", + "Event page settings": "Einstellungen der Veranstaltungsseite", + "Event status": "Status der Veranstaltung", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Die Zeitzone der Veranstaltung wird standardmäßig auf die Zeitzone der Adresse der Veranstaltung, falls vorhanden, oder auf Ihre eigene Zeitzone eingestellt.", + "Event to be confirmed": "Veranstaltungsbestätigung ausstehend", + "Event {eventTitle} deleted": "Veranstaltung {eventTitle} gelöscht", + "Event {eventTitle} reported": "Veranstaltung {eventTitle} gemeldet", + "Events": "Veranstaltungen", + "Events close to you": "Veranstaltungen in Ihrer Nähe", + "Events nearby": "Veranstaltungen in Ihrer Nähe", + "Events nearby {position}": "Veranstaltungen in der Nähe von {position}", + "Events tagged with {tag}": "Veranstaltung getaggt mit {tag}", + "Everything": "Alles", + "Ex: mobilizon.fr": "z. B.: mobilizon.fr", + "Ex: someone@mobilizon.org": "Bsp.: irgendjemand@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "z. B.: irgendwer{'@'}mobilizon.org", + "Explore": "Entdecken", + "Explore events": "Entdecke Veranstaltungen", + "Explore!": "Erkunde!", + "Export": "Export", + "Failed to get location.": "Ort nicht ermittelbar.", + "Failed to save admin settings": "Admin-Einstellungen konnten nicht gespeichert werden", + "Featured events": "Vorgestellte Veranstaltungen", + "Federated Group Name": "Föderierter Gruppenname", + "Federation": "Föderation", + "Fediverse account": "Fediverse-Konto", + "Fetch more": "Mehr abrufen", + "Filter": "Filter", + "Filter by name": "Nach dem Namen filtern", + "Filter by profile or group name": "Nach Profil oder Gruppenname filtern", + "Find an address": "Adresse finden", + "Find an instance": "Eine Instanz finden", + "Find another instance": "Weitere Instanz finden", + "Find or add an element": "Ein Element suchen oder hinzufügen", + "First steps": "Erste Schritte", + "Follow": "Folgen", + "Follow a new instance": "Neuen Instanz folgen", + "Follow instance": "Der Instanz folgen", + "Follow request pending approval": "Ihre Folgeanfrage wartet auf Bestätigung", + "Follow requests will be approved by a group moderator": "Folgeanfragen werden von einem Gruppenmoderator genehmigt", + "Follow status": "Status verfolgen", + "Followed": "Gefolgt von", + "Followed, pending response": "Gefolgt, Antwort steht noch aus", + "Follower": "Folgende", + "Followers": "Folgende", + "Followers will receive new public events and posts.": "Follower werden über neue öffentliche Ereignisse und Beiträge informiert.", + "Following": "Du folgst", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Wenn Sie der Gruppe folgen, werden Sie über die {group_upcoming_public_events} informiert, während der Beitritt zur Gruppe bedeutet, dass Sie {access_to_group_private_content_as_well}, einschließlich Gruppendiskussionen, Gruppenressourcen und Beiträgen, die nur für Mitglieder bestimmt sind, erhalten.", + "Followings": "Folgend", + "Follows us": "Folgt uns", + "Follows us, pending approval": "Folgt uns, vorbehaltlich der Genehmigung", + "For instance: London": "Zum Beispiel: Berlin", + "For instance: London, Taekwondo, Architecture…": "Beispielsweise: London, Taekwondo, Architektur …", + "Forgot your password ?": "Passwort vergessen?", + "Forgot your password?": "Passwort vergessen?", + "Framadate poll": "Framadate-Umfrage", + "From my groups": "Aus meinen Gruppen", + "From the {startDate} at {startTime} to the {endDate}": "Vom {startDate} um {startTime} bis zum {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Vom {startDate} um {startTime} Uhr bis zum {endDate} um {endTime} Uhr", + "From the {startDate} to the {endDate}": "Vom {startDate} bis zum {endDate}", + "From yourself": "Von Ihnen selbst", + "Fully accessible with a wheelchair": "Komplett barrierefrei für Rollstühle", + "Gather ⋅ Organize ⋅ Mobilize": "Treffen ⋅ Organisieren ⋅ Mobilisieren", + "General": "Allgemein", + "General information": "Allgemeine Informationen", + "General settings": "Allgemeine Einstellungen", + "Geolocate me": "Lokalisiere mich", + "Geolocation was not determined in time.": "Geolokalisierung konnte nicht rechtzeitig ermittelt werden.", + "Get informed of the upcoming public events": "Schau Dir kommende Veranstaltungen an", + "Getting location": "Standort ermitteln", + "Getting there": "Hin kommen", + "Glossary": "Glossar", + "Go": "Los", + "Go to the event page": "Zur Veranstaltungsseite", + "Go!": "Los!", + "Google Meet": "Google Meet", + "Group": "Gruppe", + "Group Followers": "Follower dieser Gruppe", + "Group Members": "Gruppenmitglieder", + "Group URL": "Gruppenlink", + "Group activity": "Gruppenereignisse", + "Group address": "Gruppenadresse", + "Group description body": "Text der Gruppenbeschreibung", + "Group display name": "Angezeigter Gruppenname", + "Group members": "Gruppenmitglieder", + "Group name": "Gruppenname", + "Group profiles": "Gruppenprofile", + "Group settings": "Gruppeneinstellungen", + "Group settings saved": "Gruppeneinstellungen wurden gespeichert", + "Group short description": "Kurzbeschreibung der Gruppe", + "Group visibility": "Sichtbarkeit der Gruppe", + "Group {displayName} created": "Gruppe {displayName} erstellt", + "Group {groupTitle} reported": "Gruppe {groupTitle} wurde gemeldet", + "Groups": "Gruppen", + "Groups are not enabled on this instance.": "Gruppen sind auf dieser Instanz nicht aktiviert.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Gruppen sind Räume zur Koordination und Vorbereitung, um Veranstaltungen besser zu organisieren und Ihre Gemeinschaft zu verwalten.", + "Heading Level 1": "Überschrift erster Ordnung", + "Heading Level 2": "Überschrift zweiter Ordnung", + "Heading Level 3": "Überschrift dritter Ordnung", + "Headline picture": "Titelbild", + "Hide filters": "Filter verstecken", + "Hide replies": "Antworten ausblenden", + "Home": "Home", + "Home to {number} users": "Zuhause von {number} Nutzern", + "Homepage": "Website", + "Hourly email summary": "Stündliche E-Mail-Zusammenfassungen", + "I agree to the {instanceRules} and {termsOfService}": "Ich stimme den {instanceRules} und den {termsOfService} zu", + "I create an identity": "Neue Identität erstellen", + "I don't have a Mobilizon account": "Ich habe kein Mobilizon Konto", + "I have a Mobilizon account": "Ich habe ein Mobilizon Konto", + "I have an account on another Mobilizon instance.": "Ich habe ein Konto auf einer anderen Mobilizon-Instanz.", + "I have an account on {instance}.": "Ich habe einen Account auf {instance}.", + "I participate": "Ich nehme teil", + "I want to allow people to participate without an account.": "Ich möchte Menschen erlauben ohne Konto teilzunehmen.", + "I want to approve every participation request": "Ich möchte jede Teilnahmeanfrage manuell bestätigen", + "I've been mentionned in a comment under an event": "Ich wurde in einem Kommentar unter einer Veranstaltung erwähnt", + "I've been mentionned in a group discussion": "Ich wurde in einer Gruppendiskussion erwähnt", + "I've clicked on X, then on Y": "Ich habe X angeklickt, dann Y", + "ICS feed for events": "ICS-Feed mit Veranstaltungen", + "ICS/WebCal Feed": "ICS/Webcal-Feed", + "IP Address": "IP Adresse", + "Identities": "Identitäten", + "Identity {displayName} created": "Identität {displayName} erstellt", + "Identity {displayName} deleted": "Identität {displayName} gelöscht", + "Identity {displayName} updated": "Identität {displayName} aktualisiert", + "If allowed by organizer": "Wenn vom Organisator erlaubt", + "If an account with this email exists, we just sent another confirmation email to {email}": "Falls ein Konto mit dieser E-Mail-Adresse existiert, senden wir eine neue Bestätigungs-E-Mail an {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Falls diese Identität der einzige Administrator einer oder mehrerer Gruppen sein sollte, ist zunächst die Gruppe zu löschen, bevor diese Identität gelöscht werden kann.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Wenn Sie nach Ihrer föderierten Identität gefragt werden, setzt sich dieser aus Ihrem Benutzernamen und Ihrer Instanz zusammen. Die föderierte Identität für Ihr erstes Profil lautet zum Beispiel:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Wenn Sie sich für die manuelle Validierung von Teilnehmern entschieden haben, sendet Ihnen Mobilizon eine E-Mail, um Sie über neue zu bearbeitende Teilnahmen zu informieren. Sie können die Häufigkeit dieser Benachrichtigungen unten auswählen.", + "If you want, you may send a message to the event organizer here.": "Wenn Sie möchten, können Sie dem Organisator eine Nachricht senden.", + "Ignore": "Ignorieren", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Illustration für „{category}“ von {author} auf {source} ({license})", + "In person": "Persönlich", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "Im Folgenden meinen wir mit Anwendung eine Software, über die Sie mit Ihrer Instanz interagieren. Diese Software kann vom Mobilizon-Team oder von Dritten bereitgestellt werden.", + "In the past": "In der Vergangenheit", + "In this instance's network": "Im Netzwerk dieser Instanz", + "Increase": "Erhöhen", + "Instance": "Instanz", + "Instance Long Description": "Vollständige Beschreibung der Instanz", + "Instance Name": "Name der Instanz", + "Instance Privacy Policy": "Datenschutzerklärung der Instanz", + "Instance Privacy Policy Source": "Herkunft der Datenschutzerklärung der Instanz", + "Instance Privacy Policy URL": "URL der Datenschutzerklärung der Instanz", + "Instance Rules": "Instanz-Regeln", + "Instance Short Description": "Kurzbeschreibung der Instanz", + "Instance Slogan": "Slogan der Instanz", + "Instance Terms": "Instanz-Regeln", + "Instance Terms Source": "Herkunft der Instanz-Regeln", + "Instance Terms URL": "URL der Instanz-Regeln", + "Instance administrator": "Administrator der Instanz", + "Instance configuration": "Einstellungen der Instanz", + "Instance feeds": "Instanz-Feeds", + "Instance languages": "Sprache der Instanz", + "Instance rules": "Instanz-Regeln", + "Instance settings": "Einstellungen der Instanz", + "Instances": "Instanzen", + "Instances following you": "Instanzen, die Ihnen folgen", + "Instances you follow": "Instanzen, denen Sie folgen", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Diese Veranstaltung mit externen Diensten verbinden und Metadaten anzeigen.", + "Interact": "Interagieren", + "Interact with a remote content": "Mit entferntem Inhalt interagieren", + "Invite a new member": "Neues Mitglied einladen", + "Invite member": "Mitglied einladen", + "Invited": "Eingeladen", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Es ist möglich, dass der Inhalt auf dieser Instanz nicht zugänglich ist, weil diese Instanz die Profile oder Gruppen hinter diesem Inhalt gesperrt hat.", + "Italic": "Kursiv", + "Jitsi Meet": "Jitsi Meet", + "Join": "Beitreten", + "Join {instance}, a Mobilizon instance": "Trete {instance} bei, eine Mobilizon Instanz", + "Join group": "Gruppe beitreten", + "Join group {group}": "Trete der Gruppe {group} bei", + "Join {instance}, a Mobilizon instance": "Trete {instance} bei, eine Mobilizon Instanz", + "Keep the entire conversation about a specific topic together on a single page.": "Fassen Sie die gesamte Konversation über ein bestimmtes Thema auf einer einzigen Seite zusammen.", + "Key words": "Schlagworte", + "Keyword, event title, group name, etc.": "Schlagwort, Veranstaltungstitel, Gruppennamen, etc.", + "Language": "Sprache", + "Languages": "Sprachen", + "Last IP adress": "Letzte IP Adresse", + "Last group created": "Zuletzt erstellte Gruppe", + "Last published event": "Zuletzt veröffentlichte Veranstaltung", + "Last published events": "Zuletzt veröffentlichte Veranstaltungen", + "Last seen on": "Zuletzt gesehen am", + "Last sign-in": "Letzter Login", + "Last week": "Letzte Woche", + "Latest posts": "Neuste Beiträge", + "Learn more": "Mehr erfahren", + "Learn more about Mobilizon": "Erfahre mehr über Mobilizon", + "Learn more about {instance}": "Mehr über {instance} erfahren", + "Least recently published": "Zuletzt veröffentlicht", + "Leave": "Verlassen", + "Leave event": "Veranstaltung verlassen", + "Leave group": "Gruppe verlassen", + "Leaving event \"{title}\"": "Veranstaltung \"{title}\" wird verlassen", + "Legal": "Rechtliches", + "Let's define a few settings": "Einstellungen vornehmen", + "License": "Lizenz", + "Light": "Hell", + "Limited number of places": "Limitierte Anzahl an Plätzen", + "List": "Liste", + "List title": "Titel der Liste", + "Live": "Live", + "Load more": "Mehr anzeigen", + "Load more activities": "Mehr Ereignisse laden", + "Loading comments…": "Lade Kommentare …", + "Loading map": "Karte wird geladen", + "Local": "Lokal", + "Local time ({timezone})": "Ortszeit ({timezone})", + "Local times ({timezone})": "Ortszeit ({timezone})", + "Locality": "Ort", + "Location": "Ort", + "Log in": "Anmelden", + "Log out": "Abmelden", + "Login": "Login", + "Login on Mobilizon!": "Bei Mobilizon anmelden!", + "Login on {instance}": "Anmelden auf {instance}", + "Login status": "Anmeldestatus", + "Main languages you/your moderators speak": "Hauptsprache Ihres Moderators", + "Make sure that all words are spelled correctly.": "Achte darauf, dass alle Wörter richtig geschrieben sind.", + "Manage group members": "Gruppenmitglieder verwalten", + "Manage group memberships": "Gruppenmitgliedschaften verwalten", + "Manage participations": "Teilnehmer verwalten", + "Manually approve new followers": "Neue Follower manuell genehmigen", + "Manually invite new members": "Manuelles Einladen neuer Mitglieder", + "Map": "Karte", + "Mark as resolved": "Als erledigt markieren", + "Member": "Mitglied", + "Members": "Mitglieder", + "Members-only post": "Beitrag nur für Mitglieder", + "Membership requests will be approved by a group moderator": "Mitgliedschaftsanfragen werden von einem Gruppenmoderator bestätigt", + "Memberships": "Mitgliedschaften", + "Mentions": "Erwähnungen", + "Message": "Nachricht", + "Message body": "Nachrichtentext", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon ist ein föderiertes Netzwerk. Sie können mit dieser Veranstaltung von verschiedenen Servern aus interagieren.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon ist eine föderierte Software, d. h. Sie können – abhängig von Ihren Admin-Föderationseinstellungen – mit Inhalten aus anderen Instanzen interagieren, z. B. Gruppen oder Veranstaltungen beitreten, die anderswo erstellt wurden.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon ist ein Werkzeug, das Ihnen beim Finden, Erstellen und Organisieren von Veranstaltungen hilft.", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon ist eine Anwendung die Ihnen hilft, {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon ist keine riesige Plattform, sondern eine Vielzahl von miteinander verbundenen Mobilizon-Websites.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon ist keine gigantische Plattform, sondern eine {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "Mobilizon-Software", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon verwendet ein System von Profilen, um Ihre Aktivitäten zu unterteilen. Sie können so viele Profile erstellen, wie Sie möchten.", + "Mobilizon version": "Mobilizon-Version", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon wird Ihnen eine E-Mail senden, wenn sich bei Veranstaltungen, an denen Sie teilnehmen, wichtige Änderungen ergeben: Datum und Uhrzeit, Ort, Bestätigung oder Absage der Veranstaltung.", + "Moderate new members": "Neue Mitglieder moderieren", + "Moderated comments (shown after approval)": "Moderierte Kommentare (werden nach manueller Freigabe angezeigt)", + "Moderation": "Moderation", + "Moderation log": "Moderationsprotokoll", + "Moderation logs": "Moderationsprotokoll", + "Moderator": "Moderator", + "Modify all of your account's data": "Alle Daten Ihres Kontos bearbeiten", + "More options": "Mehr Optionen", + "Most recently published": "Zuletzt veröffentlicht", + "Move": "Verschieben", + "Move \"{resourceName}\"": "„{resourceName}“ verschieben", + "Move resource to the root folder": "Verschiebe Ressource in das root Verzeichnis", + "Move resource to {folder}": "Verschiebe Ressource nach {folder}", + "My account": "Mein Konto", + "My events": "Meine Veranstaltungen", + "My federated identity ends in {domain}": "Meine föderierte Identität ended in {domain}", + "My groups": "Meine Gruppen", + "My identities": "Meine Identitäten", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "VORSICHT! Die Standardbedingungen wurden nicht von einem Anwalt geprüft und stellen daher wahrscheinlich keinen vollständigen Schutz für Administratoren in allen erdenklichen Fällen dar. Sie sind zudem nicht auf die lokalen Gesetzgebungen der Länder angepasst. Falls Sie sich unsicher sind, konsultieren Sie einen Rechtsanwalt.", + "Name": "Name", + "Navigated to {pageTitle}": "Zu {pageTitle} navigiert", + "Never used": "Nie verwendet", + "New discussion": "Neue Diskussion", + "New email": "Neue E-Mail", + "New folder": "Neuer Ordner", + "New link": "Neuer Link", + "New members": "Neue Mitglieder", + "New note": "Neue Notiz", + "New password": "Neues Passwort", + "New post": "Neuer Beitrag", + "New profile": "Neues Profil", + "Next": "Nächste", + "Next month": "Nächsten Monat", + "Next page": "Nächste Seite", + "Next week": "Nächste Woche", + "No address defined": "Keine Adresse festgelegt", + "No categories with public upcoming events on this instance were found.": "Es wurden keine Kategorien mit anstehenden öffentlichen Veranstaltungen auf dieser Instanz gefunden.", + "No closed reports yet": "Bisher keine geschlossenen Berichte", + "No comment": "Kein Kommentar", + "No comments yet": "Noch keine Kommentare", + "No discussions yet": "Noch keine Diskussionen gestartet", + "No end date": "Kein Enddatum", + "No event found at this address": "Keine Veranstaltungen gefunden für diese Adresse", + "No events found": "Keine Veranstaltungen gefunden", + "No events found for {search}": "Keine Veranstaltungen gefunden für {search}", + "No follower matches the filters": "Kein Follower passt zu diesen Filtern", + "No group found": "Keine Gruppe gefunden", + "No group matches the filters": "Keine Gruppe entspricht dem Filter", + "No group member found": "Kein Gruppenmitglied gefunden", + "No groups found": "Keine Gruppen gefunden", + "No groups found for {search}": "Keine Gruppen gefunden für {search}", + "No information": "Keine Informationen", + "No instance follows your instance yet.": "Noch folgt keine andere Instanz Ihrer Instanz.", + "No instance found.": "Keine Instanz gefunden.", + "No instance to approve|Approve instance|Approve {number} instances": "Keine Instanz zu prüfen|Genehmige Instanz|Genehmige {number} Instanzen", + "No instance to reject|Reject instance|Reject {number} instances": "Keine Instanz abzulehnen|Lehne Instanz ab|Lehne {number} Instanzen ab", + "No instance to remove|Remove instance|Remove {number} instances": "Keine Instanz zu entfernen|Entferne Instanz|Entferne {number} Instanzen", + "No instances match this filter. Try resetting filter fields?": "Keine Instanzen entsprechen diesem Filter. Versuchen Sie, die Filterfelder zurückzusetzen?", + "No languages found": "Keine Sprachen gefunden", + "No member matches the filters": "Kein Mitglied entspricht den Filterkriterien", + "No members found": "Keine Mitglieder gefunden", + "No memberships found": "Keine Mitgliedschaften gefunden", + "No message": "Keine Nachricht", + "No moderation logs yet": "Bisher keine Moderationsprotokolle", + "No more activity to display.": "Es gibt keine weiteren anzuzeigenden Ereignisse.", + "No one is participating|One person participating|{going} people participating": "Niemand nimmt teil|Eine Person nimmt teilt|{going} nehmen teil", + "No open reports yet": "Bisher keine ausstehenden Berichte", + "No organized events found": "Keine erstellte Veranstaltung gefunden", + "No organized events listed": "Keine erstellten Veranstaltungen gelistet", + "No participant matches the filters": "Kein Teilnehmer entspricht den Filterkriterien", + "No participant to approve|Approve participant|Approve {number} participants": "Keine Teilnahme zu bestätigen|Bestätige Teilnehmer|Bestätige {number} Teilnehmer", + "No participant to reject|Reject participant|Reject {number} participants": "Keine Teilnahme abzulehnen|Lehne Teilnahme ab|Lehne {number} Teilnahmen ab", + "No participations listed": "Keine Teilnahmen gelistet", + "No posts found": "Keine Beiträge gefunden", + "No posts yet": "Noch keine Beträge vorhanden", + "No profile matches the filters": "Kein Profil entspricht den Filterkriterien", + "No public upcoming events": "Keine bevorstehenden öffentlichen Veranstaltungen", + "No resolved reports yet": "Bisher keine abgeschlossenen Berichte", + "No resources in this folder": "Keine Ressourcen in diesem Ordner", + "No resources selected": "Keine Ressourcen ausgewählt|Eine Ressource ausgewählt|{count} Ressourcen ausgewählt", + "No resources yet": "Noch keine Ressourcen vorhanden", + "No results for \"{queryText}\"": "Keine Ergebnisse für „{queryText}“", + "No results for {search}": "Keine Ergebnisse für {search}", + "No results found": "Keine Ergebnisse gefunden", + "No results found for {search}": "Keine Ergebnisse gefunden für {search}", + "No rules defined yet.": "Noch keine Regeln definiert.", + "No user matches the filter": "Kein Benutzer entspricht dem Filterkriterium", + "No user matches the filters": "Kein Benutzer entspricht den Filterkriterien", + "None": "Keine", + "Not accessible with a wheelchair": "Für Rollstühle nicht barrierefrei", + "Not approved": "Nicht freigegeben", + "Not confirmed": "Nicht bestätigt", + "Notes": "Notizen", + "Notification before the event": "Benachrichtigung vor der Veranstaltung", + "Notification on the day of the event": "Benachrichtigung am Tag der Veranstaltung", + "Notification settings": "Benachrichtigungseinstellungen", + "Notifications": "Benachrichtigungen", + "Notifications for manually approved participations to an event": "Benachrichtigungen bei manuell bestätigten Teilnahmen an einer Veranstlatung", + "Notify participants": "Teilnehmer benachrichtigen", + "Notify the user of the change": "Benachrichtige den Benutzer über die Änderung", + "Now, create your first profile:": "Erstellen Sie jetzt Ihr erstes Profil:", + "Number of members": "Anzahl der Mitglieder", + "Number of places": "Anzahl der Plätze", + "OK": "OK", + "Old password": "Altes Passwort", + "On foot": "Zu Fuß", + "On the Fediverse": "Im Fediverse", + "On {date}": "Am {date}", + "On {date} ending at {endTime}": "Am {date}, endet um {endTime}", + "On {date} from {startTime} to {endTime}": "Am {date} von {startTime} bis {endTime}", + "On {date} starting at {startTime}": "Am {date}, beginnt um {startTime}", + "On {instance} and other federated instances": "Auf {instance} und anderen föderierten Instanzen", + "Online": "Online", + "Online events": "Online-Veranstaltungen", + "Online ticketing": "Online-Ticketverkauf", + "Online upcoming events": "Anstehende Online-Veranstaltungen", + "Only Mobilizon instances can be followed": "Kann nur Mobilizon Instanzen folgen", + "Only accessible through link": "Nur über den Link einsehbar", + "Only accessible through link (private)": "Nur über Link einsehbar (privat)", + "Only accessible to members of the group": "Nur für Gruppenmitglieder sichtbar", + "Only alphanumeric lowercased characters and underscores are supported.": "Es werden nur alphanumerische Kleinbuchstaben und Unterstriche unterstützt.", + "Only group members can access discussions": "Nur Gruppenmitglieder können die Diskussion anzeigen", + "Only group moderators can create, edit and delete events.": "Nur Gruppen-Moderatoren können Veranstaltungen erstellen, bearbeiten und löschen.", + "Only group moderators can create, edit and delete posts.": "Nur Gruppenmoderatoren können Beiträge erstellen, editieren oder löschen.", + "Only registered users may fetch remote events from their URL.": "Nur registrierte Benutzer können Remote-Veranstaltungen über ihre URL abrufen.", + "Open": "Offen", + "Open a topic on our forum": "Thema in unserem Forum eröffnen", + "Open an issue on our bug tracker (advanced users)": "Meldung in unserem Fehlermeldesystem (Bug-Tracker für erfahrene Benutzer) eröffnen", + "Open main menu": "Öffne Hauptmenü", + "Open user menu": "Öffne Benutzermenü", + "Opened reports": "Geöffnete Meldungen", + "Or": "Oder", + "Ordered list": "Nummerierte Liste", + "Organized": "Organisiert", + "Organized by": "Organisiert von", + "Organized by {name}": "Organisiert von {name}", + "Organized events": "Organisierte Veranstaltungen", + "Organizer": "Organisator", + "Organizer notifications": "Benachrichtigungen für Organisatoren", + "Organizers": "Organisator", + "Other": "Andere", + "Other actions": "Weitere Aktionen", + "Other notification options:": "Andere Benachrichtigungs-Optionen:", + "Other software may also support this.": "Andere Software unterstützt dies möglicherweise auch.", + "Other users with the same IP address": "Andere Benutzer mit der gleichen IP-Adresse", + "Other users with the same email domain": "Andere Benutzer mit der gleichen E-Mail-Domain", + "Otherwise this identity will just be removed from the group administrators.": "Andernfalls wird diese Identität aus der Liste der Gruppenadministratoren entfernt.", + "Owncast": "Owncast", + "Page": "Seite", + "Page limited to my group (asks for auth)": "Seite ist auf meine Gruppe beschränkt (nach Authentifizierung fragen)", + "Page not found": "Seite nicht gefunden", + "Parent folder": "Übergeordneter Ordner", + "Partially accessible with a wheelchair": "Teilweise barrierefrei für Rollstühle", + "Participant": "Teilnehmer", + "Participants": "Teilnehmer", + "Participate": "Teilnehmen", + "Participate using your email address": "Nehmen Sie mit Ihrer E-Mail-Adresse teil", + "Participation approval": "Genehmigung der Teilnahme", + "Participation confirmation": "Teilnahmebestätigung", + "Participation notifications": "Benachrichtigungen für Teilnehmer", + "Participation requested!": "Teilnahme angefragt!", + "Participation with account": "Teilnahme mit Konto", + "Participation without account": "Teilnahme ohne Konto", + "Participations": "Teilnehmer", + "Password": "Passwort", + "Password (confirmation)": "Passwort (Bestätigung)", + "Password reset": "Zurücksetzen des Passworts", + "Past events": "Vergangene Veranstaltungen", + "PeerTube live": "PeerTube Live", + "PeerTube replay": "PeerTube-Wiedergabe", + "Pending": "Ausstehend", + "Personal feeds": "Persönliche Feeds", + "Photo by {author} on {source}": "Foto von {author} von {source}", + "Pick": "Auswählen", + "Pick a profile or a group": "Wähle ein Profil oder eine Gruppe", + "Pick an identity": "Wählen Sie eine Identität", + "Pick an instance": "Instanz wählen", + "Please add as many details as possible to help identify the problem.": "Bitte geben Sie uns so viele Details wie möglich, die uns helfen könnten, das Problem zu analysieren.", + "Please check your spam folder if you didn't receive the email.": "Bitte sehen Sie auch in Ihrem Spam-Ordner nach, wenn Sie keine E-Mail erhalten haben.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Bitte kontaktieren Sie den Administrator dieser Mobilizon-Instanz, wenn Sie denken, dass dies ein Fehler ist.", + "Please do not use it in any real way.": "Bitte nicht in der Praxis anwenden.", + "Please enter your password to confirm this action.": "Bitte geben Sie zur Bestätigung des Vorgangs Ihr Passwort ein.", + "Please make sure the address is correct and that the page hasn't been moved.": "Bitte stellen Sie sicher, dass die Adresse korrekt ist und die Seite nicht verschoben wurde.", + "Please read the {fullRules} published by {instance}'s administrators.": "Bitte lesen Sie die {fullRules}, veröffentlicht von den Administratoren von {instance}.", + "Popular groups close to you": "Beliebte Gruppen in Ihrer Nähe", + "Popular groups nearby {position}": "Beliebte Gruppen in der Nähe von {position}", + "Post": "Beitrag", + "Post URL": "Webadresse des Beitrags", + "Post a comment": "Kommentar schreiben", + "Post a reply": "Antwort schreiben", + "Post body": "Text des Beitrags", + "Post comments": "Kommentare veröffentlichen", + "Post {eventTitle} reported": "Veranstaltung {eventTitle} gemeldet", + "Postal Code": "Postleitzahl", + "Posts": "Beiträge", + "Powered by Mobilizon": "Angetrieben durch Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Betrieben mit {mobilizon}. © 2018 – {date} Mobilizon-Mitwirkende – Mit finanzieller Unterstützung von {contributors}.", + "Preferences": "Einstellungen", + "Previous": "Vorher", + "Previous email": "Vorherige E-Mail-Adresse", + "Previous month": "Voriger Monat", + "Previous page": "Vorherige Seite", + "Price sheet": "Preisliste", + "Privacy": "Privatsphäre", + "Privacy Policy": "Datenschutzerklärung", + "Privacy policy": "Datenschutzerklärung", + "Private event": "Private Veranstaltung", + "Private feeds": "Private Feeds", + "Profile": "Profil", + "Profile feeds": "Profil-Feeds", + "Profiles": "Profile", + "Profiles and federation": "Profile und Föderation", + "Promote": "Promoten", + "Public": "Öffentlich", + "Public RSS/Atom Feed": "Öffentlicher RSS/Atom-Feed", + "Public comment moderation": "Moderation öffentlicher Kommentare", + "Public event": "Öffentliche Veranstaltung", + "Public feeds": "Öffentliche Feeds", + "Public iCal Feed": "Öffentlicher iCal-Feed", + "Public preview": "Öffentliche Vorschau", + "Publication date": "Erstellungsdatum", + "Publish": "Veröffentlichen", + "Publish events": "Veranstaltungen veröffentlichen", + "Publish group posts": "Gruppenbeiträge veröffentlichen", + "Published by {name}": "Veröffentlicht von {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Veröffentlichte Veranstaltungen mit {comments} Kommentaren und {participations} bestätigten Teilnahmen", + "Published events with {comments} comments and {participations} confirmed participations": "Veröffentlichte Veranstaltung mit {comments} Kommentaren und {participations} bestätigten Teilnehmenden", + "Push": "Push", + "Quote": "Zitat", + "RSS/Atom Feed": "RSS/Atom-Feed", + "Radius": "Radius", + "Read all of your account's data": "Alle Daten Ihres Kontos einsehen", + "Recap every week": "Jede Woche benachrichtigen", + "Receive one email for each activity": "Für jedes Ereignis eine E-Mail erhalten", + "Receive one email per request": "Für jede Anfrage eine E-Mail erhalten", + "Redirecting in progress…": "Umleitung läuft …", + "Redirecting to Mobilizon": "Weiterleitung zu Mobilizon", + "Redirecting to content…": "Leite zum Inhalt weiter …", + "Redo": "Wiederholen", + "Refresh profile": "Profil aktualisieren", + "Regenerate new links": "Erstelle die Links neu", + "Region": "Region", + "Register": "Registrieren", + "Register an account on {instanceName}!": "Erstelle einen Konto auf {instanceName}!", + "Register on this instance": "Auf dieser Instanz registrieren", + "Registration is allowed, anyone can register.": "Registrierung erlaubt, jeder kann teilnehmen.", + "Registration is closed.": "Registrierung geschlossen.", + "Registration is currently closed.": "Registrierungen sind aktuell geschlossen.", + "Registrations": "Registrierungen", + "Registrations are restricted by allowlisting.": "Registrierungen werden durch die Erlaubnisliste eingeschränkt.", + "Reject": "Ablehnen", + "Reject follow": "Das Folgen ablehnen", + "Reject member": "Mitglied ablehnen", + "Rejected": "Abgelehnt", + "Remember my participation in this browser": "Erinner dich an meine Teilnahme in diesem Browser", + "Remove": "Entfernen", + "Remove link": "Link entfernen", + "Remove uploaded media": "Hochgeladene Medien entfernen", + "Rename": "Umbenennen", + "Rename resource": "Name der Ressource", + "Reopen": "Wieder öffnen", + "Replay": "Wiederholung", + "Reply": "Antworten", + "Report": "Melden", + "Report #{reportNumber}": "Meldung #{reportNumber}", + "Report as ham": "Als Ham melden", + "Report as spam": "Als Spam melden", + "Report as undetected spam": "Als unerkannter Spam melden", + "Report reason": "Meldegrund", + "Report status": "Meldung des Status", + "Report this comment": "Diesen Kommentar melden", + "Report this event": "Diese Veranstaltung melden", + "Report this group": "Diese Gruppe melden", + "Report this post": "Diesen Beitrag melden", + "Reported": "Gemeldet", + "Reported by": "Gemeldet von", + "Reported by someone anonymously": "Anonym gemeldet von irgendwem", + "Reported by someone on {domain}": "Gemeldet von jemandem auf {domain}", + "Reported by {reporter}": "Gemeldet von {reporter}", + "Reported content": "Gemeldeter Inhalt", + "Reported group": "gemeldete Gruppe", + "Reported identity": "Gemeldete Identität", + "Reports": "Meldungen", + "Reports list": "Liste der Berichte", + "Request for participation confirmation sent": "Anfrage zur Teilnahmebestätigung gesendet", + "Resend confirmation email": "Bestätigungs-E-Mail erneut senden", + "Resent confirmation email": "Bestätigungs-E-Mail erneut gesendet", + "Reset": "Zurücksetzen", + "Reset filters": "Filter zurücksetzen", + "Reset my password": "Mein Passwort zurücksetzen", + "Reset password": "Passwort zurücksetzen", + "Resolved": "Gelöst", + "Resource provided is not an URL": "Die angegebene Ressource ist keine URL", + "Resources": "Materialien", + "Restricted": "Eingeschränkt", + "Return to the group page": "Zur Gruppenseite zurückkehren", + "Revoke": "Widerrufen", + "Right now": "Gerade eben", + "Role": "Rolle", + "Rules": "Regeln", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL und sein Nachfolger TLS sind Verschlüsselungsprotokolle zur Absicherung (Verschlüsselung) von Datenverkehr bei der Nutzung dieses Dienstes. Eine verschlüsselte Verbindung können Sie daran erkennen, dass die Adresse (URL) in der Adresszeile Ihres Browsers mit {https} beginnt und dort ein kleines Schloss eingeblendet wird.", + "SSL/TLS": "SSL/TLS", + "Save": "Speichern", + "Save draft": "Entwurf speichern", + "Schedule": "Ablaufplan", + "Search": "Suche", + "Search events, groups, etc.": "Durchsuche Veranstaltungen, Gruppen, etc.", + "Search target": "Suchziel", + "Searching…": "Suche …", + "Select a category": "Wähle eine Kategorie", + "Select a language": "Wähle Sie eine Sprache aus", + "Select a radius": "Radius wählen", + "Select a timezone": "Zeitzone wählen", + "Select all resources": "Wähle alle Quellen", + "Select languages": "Sprache wählen", + "Select the activities for which you wish to receive an email or a push notification.": "Wählen Sie die Ereignisse aus, für die Sie E-Mail- oder Push-Benachrichtigungen erhalten möchten.", + "Select this resource": "Wähle diese Quelle", + "Send": "Senden", + "Send email": "E-Mail senden", + "Send feedback": "Feedback senden", + "Send notification e-mails": "Benachrichtigungs-E-Mails senden", + "Send password reset": "Passwort zurücksetzen", + "Send the confirmation email again": "Bestätigungs-E-Mail erneut senden", + "Send the report": "Meldung senden", + "Set an URL to a page with your own privacy policy.": "Legen Sie eine URL zu einer Seite mit Ihrer eigenen Datenschutzerklärung fest.", + "Set an URL to a page with your own terms.": "Geben Sie einen Link zu einer Seite mit Ihren eigenen Nutzungsbedingungen an.", + "Settings": "Einstellungen", + "Share": "Teilen", + "Share this event": "Diese Veranstaltung teilen", + "Share this group": "Diese Gruppe teilen", + "Share this post": "Diesen Beitrag teilen", + "Short bio": "Kurze Biografie", + "Show filters": "Filter zeigen", + "Show map": "Karte anzeigen", + "Show me where I am": "Zeig mir, wo ich bin", + "Show remaining number of places": "Freie Plätze anzeigen", + "Show the time when the event begins": "Zeige mir die Zeit, zu der die Veranstaltung beginnt", + "Show the time when the event ends": "Zeige mir die Zeit, zu der die Veranstaltung endet", + "Showing events before": "Anzeigen von Ereignissen vor", + "Showing events starting on": "Anzeigen von Veranstaltungen ab", + "Sign Language": "Gebärdensprache", + "Sign in with": "Anmelden mit", + "Sign up": "Registrieren", + "Since you are a new member, private content can take a few minutes to appear.": "Da Sie ein neues Mitglied sind, kann es ein paar Minuten dauern bis private Inhalte sichtbar sind.", + "Skip to main content": "Zum Hauptinhalt springen", + "Smoke free": "Rauchfrei", + "Smoking allowed": "Rauchen gestattet", + "Social": "Sozial", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Einige der im Text genannten Begriffe beschreiben Konzepte, die nicht ganz einfach zu erklären sind. Wir haben eine Liste mit Begriffsdefinitionen zusammengestellt, damit Sie jederzeit nachsehen können, was wir damit meinen:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Wir konnten Ihre Rückmeldung leider nicht speichern. Aber keine Sorge, wir werden dennoch versuchen, dieses Problem zu beheben.", + "Sort by": "Sortieren nach", + "Starts on…": "Startet am …", + "Status": "Status", + "Statuses": "Status", + "Stop following instance": "Der Instanz nicht mehr folgen", + "Street": "Straße", + "Submit": "Absenden", + "Submit to Akismet": "An Akismet übermitteln", + "Subtitles": "Untertitel", + "Suggestions:": "Vorschläge:", + "Suspend": "Sperren", + "Suspend group": "Gruppe sperren", + "Suspend the account": "Konto sperren", + "Suspend the account?": "Das Konto sperren?", + "Suspended": "Gesperrt", + "Tag search": "Schlagwortsuche", + "Task lists": "Aufgabenliste", + "Technical details": "Technische Details", + "Tentative": "Vorläufig", + "Tentative: Will be confirmed later": "Vorläufig: Wird später bestätigt", + "Terms": "Bedingungen", + "Terms of service": "Nutzungsbedingungen", + "Text": "Text", + "Thanks a lot, your feedback was submitted!": "Vielen Dank, Ihre Rückmeldung wurde übermittelt!", + "That you follow or of which you are a member": "denen du folgst oder deren Mitglied du bist", + "The Big Blue Button video teleconference URL": "Der Big Blue Button Videokonferenz Link", + "The Google Meet video teleconference URL": "Der Google Meet Videokonferenz Link", + "The Jitsi Meet video teleconference URL": "Der Jitsi Meet Videokonferenz Link", + "The Microsoft Teams video teleconference URL": "Der Microsoft Teams Videokonferenz Link", + "The URL of a pad where notes are being taken collaboratively": "Die URL eines Notizblocks, auf dem gemeinschaftlich Notizen gemacht werden", + "The URL of a poll where the choice for the event date is happening": "Die URL einer Umfrage, in der die Auswahl für das Veranstaltungsdatum stattfindet", + "The URL where the event can be watched live": "Die URL, unter der das Veranstaltung live verfolgt werden kann", + "The URL where the event live can be watched again after it has ended": "Die URL, unter der die Veranstaltung nach ihrem Ende noch einmal angesehen werden kann", + "The Zoom video teleconference URL": "Der Zoom Videokonferenz Link", + "The account's email address was changed. Check your emails to verify it.": "Die E-Mail-Adresse des Kontos wurde geändert. Bitte prüfen Sie Ihre E-Mails für eine Bestätigung.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Die tatsächliche Zahl der Teilnehmer kann variieren, da diese Veranstaltung auf einer anderen Instanz ausgerichtet wird.", + "The calc will be created on {service}": "Das Tabellendokument wird auf {service} angelegt", + "The content came from another server. Transfer an anonymous copy of the report?": "Der Inhalt kam von einem anderen Server. Möchten Sie eine anonyme Kopie der Meldung übertragen?", + "The draft event has been updated": "Der Entwurf wurde aktualisiert", + "The event has a sign language interpreter": "Für die Veranstaltung gibt es Dolmetschen in Gebärdensprache", + "The event has been created as a draft": "Diese Veranstaltung wurde als Entwurf erstellt", + "The event has been published": "Die Veranstaltung wurde veröffentlicht", + "The event has been updated": "Die Veranstaltung wurde aktualisiert", + "The event has been updated and published": "Die Veranstaltung wurde aktualisiert und veröffentlicht", + "The event hasn't got a sign language interpreter": "Die Veranstaltung wird nicht in Gebärdensprache wiedergeben", + "The event is fully online": "Die Veranstaltung findet online statt", + "The event live video contains subtitles": "Der Livestream der Veranstaltung enthält Untertitel", + "The event live video does not contain subtitles": "Der Livestream der Veranstaltung enthält keine Untertitel", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Der Veranstalter hat sich dafür entschieden, Teilnahmeanfragen manuell zu überprüfen. Möchten Sie eine kurze Nachricht hinterlassen, in der Sie erklären, warum Sie an der Veranstaltung teilnehmen möchten?", + "The event organizer didn't add any description.": "Der Organisator hat keine Beschreibung hinzugefügt.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Der Organisator möchte Teilnahmen manuell bestätigen. Wenn Sie ohne Konto teilnehmen möchten, erklären Sie bitte, warum Sie an der Veranstaltung interessiert sind.", + "The event title will be ellipsed.": "Der Titel der Veranstaltung wird verkürzt dargestellt.", + "The event will show as attributed to this group.": "Die Veranstaltung wird als dieser Gruppe zugehörig angezeigt.", + "The event will show as attributed to this profile.": "Die Veranstaltung wird als Ihrem Profil zugewiesen angezeigt.", + "The event will show as attributed to your personal profile.": "Die Veranstaltung wird als Ihrem persönlichen Profil zugewiesen angezeigt.", + "The event {event} was created by {profile}.": "Die Veranstaltung {event} wurde erstellt von {profile}.", + "The event {event} was deleted by {profile}.": "Die Veranstaltung {event} wurde von {profile} gelöscht.", + "The event {event} was updated by {profile}.": "Die Veranstaltung {event} wurde von {profile} aktualisiert.", + "The events you created are not shown here.": "Die Veranstaltung, die Sie erstellt haben ist hier nicht gelistet.", + "The geolocation prompt was denied.": "Die Abfrage der Geolokalisierung wurde verweigert.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "Der Gruppe kann nun jeder beitreten, aber neue Mitglieder müssen von einem Administrator genehmigt werden.", + "The group can now be joined by anyone.": "Der Gruppe können nun alle beitreten.", + "The group can now only be joined with an invite.": "Der Gruppe kann nun ausschließlich durch Einladung beigetreten werden.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Diese Gruppe wird öffentlich in Suchergebnissen sichtbar sein und könnte im Bereich „Entdecken“ auftauchen. Nur öffentliche Informationen werden auf der Gruppenseite angezeigt.", + "The group's avatar was changed.": "Der Profilbild der Gruppe wurde geändert.", + "The group's banner was changed.": "Das Gruppenbanner wurde geändert.", + "The group's physical address was changed.": "Die physische Adresse der Gruppe wurde geändert.", + "The group's short description was changed.": "Die Kurzbeschreibung der Gruppe wurde geändert.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "Der Administrator der Instanz ist die Person oder Organisation, die diese Mobilizon-Instanz betreibt.", + "The member was approved": "Das Mitglied wurde zugelassen", + "The member was removed from the group {group}": "Das Mitglied wurde aus der Gruppe {group} entfernt", + "The membership request from {profile} was rejected": "Der Mitgliedsantrag von {profile} wurde abgelehnt", + "The only way for your group to get new members is if an admininistrator invites them.": "Die einzige Möglichkeit für Ihre Gruppe, neue Mitglieder zu bekommen, ist, wenn ein Administrator Sie einlädt.", + "The organiser has chosen to close comments.": "Der Veranstalter hat beschlossen, die Kommentare zu schließen.", + "The pad will be created on {service}": "Das Textdokument wird auf {service} angelegt", + "The page you're looking for doesn't exist.": "Die Seite, nach der Sie suchen existiert nicht.", + "The password was successfully changed": "Das Passwort wurde erfolgreich geändert", + "The post {post} was created by {profile}.": "Der Beitrag {post} wurde von {profile} erstellt.", + "The post {post} was deleted by {profile}.": "Der Beitrag {post} wurde von {profile} gelöscht.", + "The post {post} was updated by {profile}.": "Der Beitrag {post} wurde von {profile} aktualisiert.", + "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.": "Die Inhalte der Meldung (Kommentare und Veranstaltungen) und Details des gemeldeten Profils werden an Akismet übermittelt.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Die Meldung wird an die Moderatoren Ihrer Instanz gesendet. Sie können unten erläutern, warum Sie diesen Inhalt melden.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "Die ausgewählte Bilddatei ist zu groß. Die Datei darf höchstens {size} groß sein.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Die technischen Details des Fehlers können den Entwicklern helfen, das Problem einfacher zu lösen. Bitte fügen Sie diese der Rückmeldung hinzu.", + "The user has been disabled": "Der Benutzer wurde deaktiviert", + "The videoconference will be created on {service}": "Die Videokonferenz wird auf {service} angelegt", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Die {default_privacy_policy} wird verwendet. Sie wird in die Sprache des Nutzers übersetzt.", + "The {default_terms} will be used. They will be translated in the user's language.": "Die {default_terms} werden verwendet. Sie werden in die Sprache der Nutzer übersetzt.", + "Theme": "Thema", + "There are {participants} participants.": "Es gibt {participants} Teilnehmer.", + "There is no activity yet. Start doing some things to see activity appear here.": "Es gibt noch keine Ereignisse. Mache Dinge damit hier Ereignisse auftauchen.", + "There will be no way to recover your data.": "Es gibt keinen Weg Ihre Daten wiederherszustellen.", + "There's no discussions yet": "Es gibt noch keine Diskussion", + "These events may interest you": "Diese Veranstaltungen könnten Sie interessieren", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Diese Feeds enthalten Daten aller Veranstaltungen, die mit einem ihrer Profile erstellt wurden, oder an denen eins ihrer Profile teilnimmt. Sie sollten diese nicht weitergeben. Feeds einzelner Profile finden Sie auf der jeweiligen Profil-Einstellungsseite.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Diese Feeds enthalten Daten aller Veranstaltungen, die mit diesem Profil erstellt wurden, oder an denen es teilnimmt. Sie sollten diese nicht weitergeben. Feeds aller ihrer Profile finden Sie in ihren Benachrichtigungseinstellungen.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Diese Mobilizon-Instanz und der Organisator akzeptieren anonyme Teilnahmen, aber eine Bestätigung per E-Mail ist erforderlich.", + "This URL doesn't seem to be valid": "Diese Webadresse scheint ungültig", + "This URL is not supported": "Diese URL wird nicht unterstützt", + "This application will be able to access all of your informations and post content. Make sure you only approve applications you trust.": "Diese Anwendung wird Zugriff auf all Ihre Daten und Beitragsinhalte erhalten. Genehmigen Sie nur Anwendungen, denen Sie wirklich vertrauen.", + "This application will be allowed to delete events": "Diese Anwendung wird Veranstaltungen löschen können", + "This application will be allowed to delete group posts": "Diese Anwendung wird Gruppenbeiträge löschen können", + "This application will be allowed to publish events": "Diese Anwendung wird Veranstaltungen veröffentlichen können", + "This application will be allowed to publish group posts": "Diese Anwendung wird Gruppenbeiträge veröffentlichen können", + "This application will be allowed to remove uploaded media": "Diese Anwendung wird hochgeladene Medien löschen können", + "This application will be allowed to update events": "Diese Anwendung wird Veranstaltungen verändern können", + "This application will be allowed to update group posts": "Diese Anwendung wird Gruppenbeiträge verändern können", + "This application will be allowed to upload media": "Diese Anwendung wird Medien hochladen können", + "This event has been cancelled.": "Diese Veranstaltung wurde abgesagt.", + "This event is accessible only through it's link. Be careful where you post this link.": "Diese Veranstaltung ist nur über den Link einsehbar. Seien Sie vorsichtig, wo Sie diesen Link veröffentlichen.", + "This group doesn't have a description yet.": "Diese Gruppe hat noch keine Beschreibung.", + "This group is a remote group, it's possible the original instance has more informations.": "Diese Gruppe ist eine föderierte Gruppe. Es ist möglich, dass die Ursprungsinstanz mehr Informationen hat.", + "This group is accessible only through it's link. Be careful where you post this link.": "Diese Gruppe ist nur über ihren Link aufrufbar. Überlege genau, wo der Link gepostet wird.", + "This group is invite-only": "Diese Gruppe ist nur für Eingeladene", + "This group was not found": "Diese Gruppe wurde nicht gefunden", + "This identifier is unique to your profile. It allows others to find you.": "Diese Kennung ist eindeutig für Ihr Profil. Sie ermöglicht es anderen, Sie zu finden.", + "This information is saved only on your computer. Click for details": "Diese Information ist nur auf Ihrem Computer gespeichert. Klicken Sie für mehr Details", + "This instance doesn't follow yours.": "Diese Instanz folgt nicht der Ihrer.", + "This instance hasn't got push notifications enabled.": "Diese Instanz hat keine Push-Benachrichtigungen aktiviert.", + "This instance isn't opened to registrations, but you can register on other instances.": "Diese Instanz lässt keine Registrierungen zu, aber Sie können sich auf anderen Instanzen registrieren.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Diese Instanz, {instanceName} ({domain}), hostet Ihr Profil, merken Sie sich also ihren Namen.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Diese Instanz, {instanceName}, beherbergt Ihr Profil, also merken Sie sich ihren Namen.", + "This is a demonstration site to test Mobilizon.": "Dies ist eine Demonstrationsseite, um Mobilizon zu testen.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Dies ist wie Ihr föderierter Benutzername ({username}), aber für Gruppen. Damit kann die Gruppe auch auf anderen Instanzen gefunden werden und ist garantiert eindeutig.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Dies ist wie Ihr föderierter Benutzername, aber für ({username}) Gruppen. Er erlaubt das finden Ihrer Gruppe in der Förderation und ist garantiert einzigartig.", + "This month": "Diesen Monat", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Dieser Beitrag ist nur für Mitglieder verfügbar. Du hast Zugriff nur für Moderationszwecke, denn du bist Moderator:in dieser Instanz.", + "This post is accessible only through it's link. Be careful where you post this link.": "Dieser Beitrag ist nur über dessen Link zugänglich. Seien Sie vorsichtig, wo Sie diesen Link posten.", + "This profile is from another instance, the informations shown here may be incomplete.": "Dieses Profil ist von einer anderen Instanz, die Informationen hierzu können unvollständig sein.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Dieses Profil befindet sich auf dieser Instanz, daher müssen Sie {access_the_corresponding_account} zugreifen, um es zu sperren.", + "This profile was not found": "Dieses Profil wurde nicht gefunden", + "This setting will be used to display the website and send you emails in the correct language.": "Diese Einstellung wird verwendet, um die Website anzuzeigen und Ihnen E-Mails in der richtigen Sprache zu senden.", + "This user doesn't have any profiles": "Dieser Benutzer hat keine Profile", + "This user was not found": "Dieser Benutzer wurde nicht gefunden", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Diese Website wird nicht moderiert und die Daten, die Sie eingeben, werden jeden Tag um 00:01 Uhr (Pariser Zeitzone) automatisch gelöscht.", + "This week": "Diese Woche", + "This weekend": "Dieses Wochenende", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Dies wird alle Inhalte (Veranstaltungen, Kommentare, Nachrichten, Teilnahmen …) löschen/anonymisieren, die von dieser Identität erstellt wurden.", + "Time in your timezone ({timezone})": "Die Zeit in Ihrer Zeitzone ({timezone})", + "Times in your timezone ({timezone})": "Zeiten in Ihrer Zeitszone ({timezone})", + "Timezone": "Zeitzone", + "Timezone detected as {timezone}.": "Zeitzone erkannt als {timezone}.", + "Title": "Titel", + "To activate more notifications, head over to the notification settings.": "Um mehr Benachrichtigungen zu aktivieren, sehen Sie in den Benachrichtigungs-Einstellungen vorbei.", + "To confirm, type your event title \"{eventTitle}\"": "Geben Sie zur Bestätigung Ihren Veranstaltungstitel „{eventTitle}“ ein", + "To confirm, type your identity username \"{preferredUsername}\"": "Geben Sie zur Bestätigung den Nutzernamen Ihrer Identität „{preferredUsername}“ ein", + "To create and manage multiples identities from a same account": "So erstellen und verwalten Sie mehrere Identitäten über ein und dasselbe Konto", + "To create and manage your events": "So erstellen und verwalten Sie Ihre Veranstaltungen", + "To create or join an group and start organizing with other people": "So erstellen Sie eine Gruppe oder treten ihr bei und beginnen, sich mit anderen Personen zu organisieren", + "To follow groups and be informed of their latest events": "Um Gruppen zu folgen und über ihre neuesten Veranstaltungen informiert zu werden", + "To register for an event by choosing one of your identities": "So registrieren Sie sich für eine Veranstaltung, indem Sie eine Ihrer Identitäten auswählen", + "Today": "Heute", + "Tomorrow": "Morgen", + "Tools": "Werkzeuge", + "Total number of participations": "Gesamtzahl der Beteiligungen", + "Transfer to {outsideDomain}": "Zu {outsideDomain} übertragen", + "Triggered profile refreshment": "Neuladen des Profils ausgelöst", + "Try different keywords.": "Versuche andere Suchwörter.", + "Try fewer keywords.": "Versuche weniger Suchwörter.", + "Try more general keywords.": "Versuche allgemeinere Suchwörter.", + "Twitch live": "Twitch live", + "Twitch replay": "Twitch-Wiedergabe", + "Twitter account": "Twitter-Konto", + "Type": "Typ", + "Type or select a date…": "Datum wählen …", + "URL": "URL", + "URL copied to clipboard": "URL in die Zwischenablage kopiert", + "Unable to copy to clipboard": "Kopieren in die Zwischenablage nicht möglich", + "Unable to create the group. One of the pictures may be too heavy.": "Das Erstellen der Gruppe ist fehlgeschlagen. Eines der Bilder ist eventuell zu groß.", + "Unable to create the profile. The avatar picture may be too heavy.": "Das Erstellen des Profils ist fehlgeschlagen. Das Profilbild ist eventuell zu groß.", + "Unable to detect timezone.": "Zeitzone kann nicht erkannt werden.", + "Unable to load event for participation. The error details are provided below:": "Event für die Teilnahme kann nicht geladen werden. Die Fehlerdetails finden Sie unten:", + "Unable to save your participation in this browser.": "Ihre Teilnahme kann in diesem Browser nicht gespeichert werden.", + "Unable to update the profile. The avatar picture may be too heavy.": "Die Aktualisierung des Profils ist fehlgeschlagen. Das Profilbild ist eventuell zu groß.", + "Underline": "Unterstreichen", + "Undo": "Rückgängig macheb", + "Unfollow": "Nicht mehr folgen", + "Unfortunately, your participation request was rejected by the organizers.": "Leider wurde Ihre Teilnahmeanfrage vom Organisator abgelehnt.", + "Unknown": "Unbekannt", + "Unknown actor": "Unbekannter Akteur", + "Unknown error.": "Unbekannter Fehler.", + "Unknown value for the openness setting.": "Unbekannter Wert für die Zugangsbeschränkungen.", + "Unlogged participation": "Nicht angemeldete Teilnahme", + "Unsaved changes": "Nicht gespeicherte Änderungen", + "Unsubscribe to browser push notifications": "Browser-Push-Benachrichtigungen abbestellen", + "Unsuspend": "Freigeben", + "Upcoming": "Demnächst", + "Upcoming events": "Bevorstehende Veranstaltungen", + "Upcoming events from your groups": "Bevorstehende Veranstaltungen Ihrer Gruppen", + "Update": "Update", + "Update app": "App aktualisieren", + "Update comments": "Kommentare aktualisieren", + "Update discussion title": "Überschrift der Diskussion aktualisieren", + "Update event {name}": "Veranstaltung {name} aktualisieren", + "Update events": "Veranstaltungen aktualisieren", + "Update group": "Gruppe aktualisieren", + "Update group posts": "Gruppenbeiträge aktualisieren", + "Update group resources": "Gruppenmaterialien aktualisieren", + "Update my event": "Veranstaltung aktualisieren", + "Update post": "Beitrag aktualisieren", + "Update profiles": "Profile aktualisieren", + "Updated": "Aktualisiert", + "Upload media": "Medien hochladen", + "Uploaded media size": "Größe der hochgeladenen Medien", + "Uploaded media total size": "Gesamtgröße der hochgeladenen Medien", + "Use my location": "Nutzte meinen Standort", + "User": "Nutzer", + "User settings": "Nutzereinstellungen", + "Username": "Nutzername", + "Users": "Nutzer", + "Validating account": "Konto bestätigen", + "Validating email": "E-Mail-Adresse bestätigen", + "Video Conference": "Videokonferenz", + "View a reply": "Zeige keine Antworten|Zeige eine Antwort|Zeige {totalReplies} Antworten", + "View account on {hostname} (in a new window)": "Konto unter {hostname} aufrufen (neues Fenster)", + "View all": "Alles anzeigen", + "View all categories": "Zeige alle Kategorien", + "View all events": "Zeige alle Veranstaltungen", + "View all posts": "Zeige alle Beiträge", + "View event page": "Veranstaltungsseite anzeigen", + "View everything": "Alles anzeigen", + "View full profile": "Das gesamte Profil ansehen", + "View less": "Weniger anzeigen", + "View more": "Mehr anzeigen", + "View more events": "Zeige mehr Veranstaltungen", + "View more events around {position}": "Zeige mehr Veranstaltungen um {position}", + "View more groups around {position}": "Zeige mehr Gruppen um {position}", + "View more online events": "Zeige mehr Online-Veranstaltungen", + "View page on {hostname} (in a new window)": "Seite auf {hostname} anzeigen (in einem neuen Fenster)", + "View past events": "Vergangene Veranstaltungen anschauen", + "View the group profile on the original instance": "Schau Dir das Gruppenprofil auf der Ursprungsinstanz an", + "Visibility was set to an unknown value.": "Die Sichtbarkeit wurde in unbekannt geändert.", + "Visibility was set to private.": "Die Sichtbarkeit wurde in privat geändert.", + "Visibility was set to public.": "Die Sichtbarkeit wurde in öffentlich geändert.", + "Visible everywhere on the web": "Öffentlich sichtbar im gesamten Internet", + "Visible everywhere on the web (public)": "Sichtbar im ganzen Internet (öffentlich)", + "Waiting for organization team approval.": "Warte auf die Bestätigung des Organisationsteams.", + "Warning": "Warnung", + "We collect your feedback and the error information in order to improve this service.": "Wir holen Ihre Rückmeldung und Informationen zu Fehlern ein, um diesen Dienst zu verbessern.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Wir konnten die Teilnahme in diesem Browser nicht speichern. Doch keine Sorge, du hast die Teilnahme bestätigt. Wir könnten nur den Status in diesem Browser nicht setzen aufgrund eines technischen Problems.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Vielen Dank für Ihre Rückmeldung. Wir werden die Software verbessern. Es gibt zwei Möglichkeiten, um uns dieses Problem mitzuteilen (beider erfordern leider das Anlegen eines eigenen Benutzerkontos):", + "We just sent an email to {email}": "Wir haben gerade eine E-Mail an {email} gesendet", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Wir nutzen Ihre Zeitzone, um sicherzustellen, dass Sie Benachrichtigungen für eine Veranstaltung zur richtigen Zeit erhalten.", + "We will redirect you to your instance in order to interact with this event": "Wir werden Sie auf Ihre Instanz weiterleiten, damit Sie die Veranstaltung bearbeiten können", + "We will redirect you to your instance in order to interact with this group": "Wir leiten Sie zu Ihrer Instanz weiter, um mit dieser Gruppe zu interagieren", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Wir senden Ihnen eine Stunde vor Beginn der Veranstaltung eine E-Mail, um sicherzugehen, dass Sie diese nicht vergessen.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Wir nutzen Ihre Zeitzonen-Einstellung, um Ihnen am Morgen der Veranstaltung eine Erinnerung zu senden.", + "Website": "Webseite", + "Website / URL": "Website / URL", + "Weekly email summary": "Wöchentliche E-Mail-Zusammenfassungen", + "Welcome back {username}!": "Willkommen zurück {username}!", + "Welcome back!": "Willkommen zurück!", + "Welcome to Mobilizon, {username}!": "Willkommen zu Mobilizon, {username}!", + "What can I do to help?": "Was kann ich tun, wenn ich helfen möchte?", + "What happened?": "Was ist passiert?", + "Wheelchair accessibility": "Barrierefreiheit für Rollstühle", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Wenn ein Moderator der Gruppe ein Ereignis erstellt und es der Gruppe zuordnet, wird es hier angezeigt.", + "When the event is private, you'll need to share the link around.": "Wenn die Veranstaltung privat ist, müssen Sie den Link weitergeben.", + "When the post is private, you'll need to share the link around.": "Wenn der Beitrag privat ist, müssen Sie den Link weitergeben.", + "Whether smoking is prohibited during the event": "Während der Veranstaltung wird nicht geraucht", + "Whether the event is accessible with a wheelchair": "Ob eine Veranstaltung für Rollstühle barrierefrei ist", + "Whether the event is interpreted in sign language": "Ob die Veranstaltung in Gebärdensprache wiedergegeben wird", + "Whether the event live video is subtitled": "Ob der Livestream der Veranstaltung untertitelt ist", + "Who can post a comment?": "Wer darf kommentieren?", + "Who can view this event and participate": "Wer kann diese Veranstaltung sehen und daran teilnehmen kann", + "Who can view this post": "Wer kann diesen Beitrag sehen", + "Who published {number} events": "Die {number} Veranstaltungen angelegt haben", + "Why create an account?": "Warum ein Konto erstellen?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Ermöglicht die Anzeige und Verwaltung Ihres Teilnahmestatus auf der Veranstaltungsseite, wenn Sie dieses Gerät verwenden. Deaktivieren Sie diese Option, wenn Sie ein öffentliches Gerät verwenden.", + "With the most participants": "Mit den meisten Teilnehmenden", + "Within {number} kilometers of {place}": "|Innerhalb eines Kilometers von {place}|Innerhalb von {number} Kilometer von {place}", + "Write a new comment": "Schreibe einen neuen Kommentar", + "Write a new message": "Schreibe eine neue Nachricht", + "Write a new reply": "Schreibe eine neue Antwort", + "Write something": "Schreibe irgendwas", + "Write your post": "Verfassen Sie Ihren Beitrag", + "Yesterday": "Gestern", + "You accepted the invitation to join the group.": "Sie haben die Einladung zur Gruppe angenommen.", + "You added the member {member}.": "Sie haben das Mitglied {member} hinzugefügt.", + "You approved {member}'s membership.": "Sie haben die Mitgliedschaft von {member} genehmigt.", + "You archived the discussion {discussion}.": "Sie haben die Diskussion {discussion} archiviert.", + "You are not an administrator for this group.": "Sie sind kein Administrator dieser Gruppe.", + "You are not part of any group.": "Sie sind kein Teil einer Gruppe.", + "You are offline": "Sie sind offline", + "You are participating in this event anonymously": "Sie nehmen anonym an dieser Veranstaltung teil", + "You are participating in this event anonymously but didn't confirm participation": "Sie nehmen an dieser Veranstaltung anonym teil, haben aber Ihre Teilnahme noch nicht bestätigt", + "You can add resources by using the button above.": "Sie können Materialien mit dem obenliegenden Button hinzufügen.", + "You can add tags by hitting the Enter key or by adding a comma": "Sie können Schlagworte hinzufügen, indem Sie Komma oder Enter drücken", + "You can pick your timezone into your preferences.": "Sie können Ihre Zeitzone in den Einstellungen festlegen.", + "You can try another search term or drag and drop the marker on the map": "Sie können einen anderen Suchbegriff verwenden oder die Markierung auf der Karte verschieben", + "You can't change your password because you are registered through {provider}.": "Sie können Ihr Passwort nicht ändern, weil Sie über {provider} angemeldet sind.", + "You can't use push notifications in this browser.": "Du kannst keine Push-Benachrichtigungen in diesem Browser nutzen.", + "You changed your email or password": "Sie haben Ihre E-Mail-Adresse oder Ihr Passwort geändert", + "You created the discussion {discussion}.": "Sie haben die Diskussion {discussion} erstellt.", + "You created the event {event}.": "Sie haben die Veranstaltung {event} erstellt.", + "You created the folder {resource}.": "Sie haben den Ordner {resource} erstellt.", + "You created the group {group}.": "Sie haben die Gruppe {group} erstellt.", + "You created the post {post}.": "Sie haben den Beitrag {post} erstellt.", + "You created the resource {resource}.": "Sie haben die Ressource {resource} erstellt.", + "You deleted the discussion {discussion}.": "Sie haben die Diskussion {discussion} gelöscht.", + "You deleted the event {event}.": "Sie haben die Veranstaltung {event} gelöscht.", + "You deleted the folder {resource}.": "Sie haben den Ordner {resource} gelöscht.", + "You deleted the post {post}.": "Sie haben den Beitrag {post} gelöscht.", + "You deleted the resource {resource}.": "Sie haben die Ressource {resource} gelöscht.", + "You demoted the member {member} to an unknown role.": "Sie haben {member} zu einer unbekannten Rolle zurückgestuft.", + "You demoted {member} to moderator.": "Sie haben {member} zum Moderator zurückgestuft.", + "You demoted {member} to simple member.": "Sie haben {member} zu einem einfachen Mitglied zurückgestuft.", + "You didn't create or join any event yet.": "Sie haben keine Veranstaltung erstellt oder nehmen an einer teil.", + "You don't follow any instances yet.": "Sie folgen noch keinen Instanzen.", + "You don't have any upcoming events. Maybe try another filter?": "Sie haben keine anstehenden Veranstaltungen. Möglicherweise eine andere Filtereinstellung versuchen?", + "You excluded member {member}.": "Sie haben {member} ausgeschlossen.", + "You have attended {count} events in the past.": "Sie haben in der Vergangenheit keine Veranstaltungen besucht.|Sie haben in der Vergangenheit eine Veranstaltung besucht.|Sie haben in der Vergangenheit {count} Veranstaltungen besucht.", + "You have been invited by {invitedBy} to the following group:": "Sie wurden von {invitedBy} zu dieser Gruppe eingeladen:", + "You have been removed from this group's members.": "Sie wurden von diesen Gruppenmitgliedern entfernt.", + "You have cancelled your participation": "Sie haben Ihre Teilnahme abgesagt", + "You have one event in {days} days.": "Sie haben keine Veranstaltung in {days} Tagen | Sie haben eine Veranstaltung in {days} Tagen | Sie haben {count} Veranstaltungen in {days} Tagen", + "You have one event today.": "Sie haben heute keine Veranstaltungen | Sie haben heute eine Veranstaltung. | Sie haben heute {count} Veranstaltungen", + "You have one event tomorrow.": "Sie haben morgen keine Veranstaltungen | Sie haben morgen eine Veranstaltung. | Sie haben morgen {count} Veranstaltungen", + "You haven't interacted with other instances yet.": "Sie haben noch nicht mit anderen Instanzen interagiert.", + "You invited {member}.": "Sie haben {member} eingeladen.", + "You may also:": "Du könntest auch:", + "You may clear all participation information for this device with the buttons below.": "Sie können alle Teilnahmeinformationen für dieses Gerät mit den Schaltflächen unten löschen.", + "You may now close this page or {return_to_the_homepage}.": "Du kannst diese Seite jetzt schließen oder zu der Startseite zurückkehren.", + "You may now close this window, or {return_to_event}.": "Sie können das Fenster jetzt schließen oder {return_to_event}.", + "You may show some members as contacts.": "Sie können einzelne Mitglieder als Kontakte anzeigen lassen.", + "You moved the folder {resource} into {new_path}.": "Sie haben den Ordner {resource} nach {new_path} verschoben.", + "You moved the folder {resource} to the root folder.": "Sie haben das Verzeichnis {resource} in das Wurzelverzeichnis verschoben.", + "You moved the resource {resource} into {new_path}.": "Sie haben die Ressource {resource} nach {new_path} verschoben.", + "You moved the resource {resource} to the root folder.": "Sie haben die Ressource {resource} in das Wurzelverzeichnis verschoben.", + "You need to login.": "Sie müssen sich einloggen.", + "You posted a comment on the event {event}.": "Sie haben die Veranstaltung {event} kommentiert.", + "You promoted the member {member} to an unknown role.": "Sie haben {member} einer unbekannten Rolle zugewiesen.", + "You promoted {member} to administrator.": "Sie haben {member} zum Administrator befördert.", + "You promoted {member} to moderator.": "Sie haben {member} zum Moderator befördert.", + "You rejected {member}'s membership request.": "Sie haben den Mitgliedsantrag von {member} abgelehnt.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Sie haben die Diskussion {old_discussion} in {discussion} umbenannt.", + "You renamed the folder from {old_resource_title} to {resource}.": "Sie haben den Ordner {old_resource_title} in {resource} umbenannt.", + "You renamed the resource from {old_resource_title} to {resource}.": "Sie haben die Ressource {old_resource_title} in {resource} umbenannt.", + "You replied to a comment on the event {event}.": "Sie haben auf ein Kommentar in der Veranstaltung {event} geantwortet.", + "You replied to the discussion {discussion}.": "Sie haben auf die Diskussion {discussion} geantwortet.", + "You requested to join the group.": "Sie haben die angefragt der Gruppe beizutreten.", + "You updated the event {event}.": "Sie haben die Veranstaltung {event} aktualisiert.", + "You updated the group {group}.": "Sie haben die Gruppe {group} aktualisiert.", + "You updated the member {member}.": "Sie haben {member} aktualisiert.", + "You updated the post {post}.": "Sie haben den Beitrag {post} aktualisiert.", + "You were demoted to an unknown role by {profile}.": "Sie wurden von {profile} in eine unbekannte Rolle zurückgestuft.", + "You were demoted to moderator by {profile}.": "Sie wurden von {profile} zum Moderator zurückgestuft.", + "You were demoted to simple member by {profile}.": "Sie wurden von {profile} zum einfachen Mitglied zurückgestuft.", + "You were promoted to administrator by {profile}.": "Sie wurden von {profile} zum Administrator befördert.", + "You were promoted to an unknown role by {profile}.": "Sie wurden von {profile} zu einer unbekannten Rolle befördert.", + "You were promoted to moderator by {profile}.": "Sie wurden von {profile} zum Moderator befördert.", + "You will be able to add an avatar and set other options in your account settings.": "In Ihren Kontoeinstellungen können Sie einen Avatar hinzufügen und weitere Optionen festlegen.", + "You will be redirected to the original instance": "Sie werden auf die ursprüngliche Instanz weitergeleitet", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Hier finden Sie alle Veranstaltungen, die Sie erstellt haben, an denen Sie teilnehmen, und von Gruppen, denen Sie folgen oder bei denen Sie Mitglied sind.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Sie erhalten Benachrichtigungen über die öffentlichen Aktivitäten dieser Gruppe je nach %{notification_settings}.", + "You wish to participate to the following event": "Sie möchten an der folgenden Veranstaltung teilnehmen", + "You'll be able to revoke access for this application in your account settings.": "Sie werden den Zugriff dieser Anwendung in Ihren Kontoeinstellungen widerrufen können.", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Sie erhalten jeden Montag eine Benachrichtigung über Ihre anstehenden Veranstaltungen.", + "You'll need to change the URLs where there were previously entered.": "Sie müssen die URLs überall dort ändern, wo sie zuvor eingetragen wurden.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Sie müssen die Gruppen-URL übertragen, damit andere Personen auf das Profil der Gruppe zugreifen können. Die Gruppe wird nicht in der Mobilizon-Suche oder anderen Suchmaschinen gefunden.", + "You'll receive a confirmation email.": "Sie werden eine Bestätigungs-E-Mail erhalten.", + "YouTube live": "YouTube live", + "YouTube replay": "YouTube-Wiedergabe", + "Your account has been successfully deleted": "Ihr Konto wurde erfolgreich gelöscht", + "Your account has been validated": "Ihr Konto wurde validiert", + "Your account is being validated": "Ihr Konto wird geprüft", + "Your account is nearly ready, {username}": "Ihr Konto ist fast bereit, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Ihr Ort, Landkreis oder Bundesland wird nur für die Anzeige von Veranstaltungen in der Nähe verwendet. Der Veranstaltungsradius bezieht sich auf den Verwaltungssitz des Gebietes.", + "Your current email is {email}. You use it to log in.": "Ihre aktuelle E-Mail-Adresse ist {email}. Sie verwenden sie zum Anmelden.", + "Your email": "Ihre E-Mail-Adresse", + "Your email address was automatically set based on your {provider} account.": "Ihre E-Mail-Adresse wurde automatisch basierend auf Ihrem {provider}-Konto gesetzt.", + "Your email has been changed": "Ihre E-Mail-Adresse wurde geändert", + "Your email is being changed": "Ihre E-Mail-Adresse wird geändert", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Ihre E-Mail-Adresse wird nur verwendet, um zu bestätigen, dass Sie eine reale Person sind und um Ihnen Neuigkeiten zu dieser Veranstaltung zuzusenden. Sie wird nicht an andere Instanzen oder an die Organisatoren weitergegeben.", + "Your federated identity": "Ihre föderierte Identität", + "Your membership is pending approval": "Ihr Mitgliedschaftsanfrage wartet auf Bestätigung", + "Your membership was approved by {profile}.": "Ihre Mitgliedschaft wurde von {profile} genehmigt.", + "Your participation has been confirmed": "Ihre Teilnahme wurde bestätigt", + "Your participation has been rejected": "Ihre Teilnahme wurde abgelehnt", + "Your participation has been requested": "Ihre Teilnahme wurde angefragt", + "Your participation request has been validated": "Ihre Teilnahme wurde bestätigt", + "Your participation request is being validated": "Ihre Teilnahme wird überprüft", + "Your participation status has been changed": "Ihr Teilnahmestatus hat sich geändert", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Ihr Teilnahmestatus wird nur auf diesem Gerät gespeichert und wird einen Monat nach Ablauf der Veranstaltung wieder gelöscht.", + "Your participation still has to be approved by the organisers.": "Ihre Teilnahme muss noch von den Organisatoren genehmigt werden.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Ihre Teilnahme wird bestätigt, sobald Sie auf den Bestätigungslink in der E-Mail klicken und nachdem der Veranstalter Ihre Teilnahme manuell bestätigt hat.", + "Your participation will be validated once you click the confirmation link into the email.": "Ihre Teilnahme wird bestätigt, sobald Sie den Bestätigungslink in der E-Mail anklicken.", + "Your position was not available.": "Ihre Position konnte nicht abgerufen werden.", + "Your profile will be shown as contact.": "Ihr Profil wird als Kontakt angezeigt.", + "Your timezone is currently set to {timezone}.": "Ihre Zeitzone ist aktuell {timezone}.", + "Your timezone was detected as {timezone}.": "Ihre Zeitzone wurde erkannt als {timezone}.", + "Your timezone {timezone} isn't supported.": "Ihre Zeitzone {timezone} wird nicht unterstützt.", + "Your upcoming events": "Ihre bevorstehenden Veranstaltungen", + "Zoom": "Zoom", + "Zoom in": "Vergrößern", + "Zoom out": "Verkleinern", + "[This comment has been deleted by it's author]": "[Dieser Kommentar wurde vom Autor entfernt]", + "[This comment has been deleted]": "[Ihr Kommentar wurde gelöscht]", + "[deleted]": "[gelöscht]", + "a non-existent report": "Eine nicht-existierende Meldung", + "access the corresponding account": "Zugriff auf das entsprechende Konto", + "access to the group's private content as well": "Zugang auch zu den privaten Inhalten der Gruppe", + "and {number} groups": "und {number} Gruppen", + "any distance": "Egal welche Entfernung", + "as {identity}": "als {identity}", + "contact uninformed": "Kein Kontakt angegeben", + "create a group": "Gruppe erstellen", + "create an event": "Veranstaltung erstellen", + "default Mobilizon privacy policy": "Standard-Datenschutzerklärung von Mobilizon", + "default Mobilizon terms": "Standardbedingungen von Mobilizon", + "detail": " ", + "e.g. 10 Rue Jangot": "z. B. Musterstraße 21", + "e.g. Accessibility, Twitch, PeerTube": "z. B. Barrierefreiheit, Twitch, PeerTube", + "e.g. Nantes, Berlin, Cork, …": "z. B. Nantes, Berlin, Cork, …", + "enable the feature": "Funktion aktivieren", + "explore the events": "Veranstaltungen entdecken", + "explore the groups": "Gruppen entdecken", + "find, create and organise events": "Veranstaltungen zu finden, zu erstellen und zu organisieren", + "full rules": "vollständigen Regeln", + "group's upcoming public events": "Die bevorstehenden, öffentlichen Veranstaltungen der Gruppe", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/some-secret-token", + "iCal Feed": "iCal-Feed", + "instance rules": "Instanz-Regeln", + "mobilizon-instance.tld": "mobilizon-instanz.tld", + "more than 1360 contributors": "mehr als 1360 Unterstützern", + "multitude of interconnected Mobilizon websites": "Vielzahl miteinander verbundener Mobilizon-Websites", + "new{'@'}email.com": "neu{'@'}email.com", + "profile@instance": "profil@instanz", + "profile{'@'}instance": "Profil{'@'}Instanz", + "report #{report_number}": "Meldung #{report_number}", + "return to the event's page": "zurück zur Seite der Veranstaltung", + "return to the homepage": "Zurück zur Startseite", + "terms of service": "Nutzungsbedingungen", + "tool designed to serve you": "ein Werkzeug um dir zu dienen", + "translation": " ", + "with another identity…": "mit einer anderen Identität. …", + "your notification settings": "Ihre Benachrichtigungseinstellungen", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved} / {total} Plätze", + "{available}/{capacity} available places": "Keine freien Plätze|{available}/{capacity} freie Plätze", + "{count} events": "{count} Veranstaltungen", + "{count} km": "{count} km", + "{count} members": "Keine Mitglieder|Ein Mitglied|{count} Mitglieder", + "{count} members or followers": "Keine Mitglieder oder Follower|Ein Mitglied oder Follower|{count} Mitglieder oder Follower", + "{count} participants": "Noch keine Teilnehmer | Ein Teilnehmer | {count} Teilnehmer", + "{count} requests waiting": "{count} Anfragen ausstehend", + "{eventsCount} events found": "Keine Veranstaltungen gefunden|Eine Veranstaltung gefunden|{eventsCount} Veranstaltungen gefunden", + "{folder} - Resources": "{folder} - Ressourcen", + "{groupsCount} groups found": "Keine Gruppen gefunden|Eine Gruppe gefunden|{groupsCount} Gruppen gefunden", + "{group} activity timeline": "Auflistungen der Ereignisse in {group}", + "{group} events": "{group} Veranstaltungen", + "{group} posts": "{group}-Beiträge", + "{group}'s events": "{group} Events", + "{group}'s todolists": "{group}s Aufgabenliste", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} ist eine Instanz der {mobilizon}-Software.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} ist eine Instanz von {mobilizon_link}. Eine freie Software, aus gemeinschaftlichen Entwicklung.", + "{member} accepted the invitation to join the group.": "{member} hat die Einladung zum Gruppenbeitritt angenommen.", + "{member} joined the group.": "{member} ist der Gruppe beigetreten.", + "{member} rejected the invitation to join the group.": "{member} hat die Einladung zum Gruppenbeitritt abgelehnt.", + "{member} requested to join the group.": "{member} hat angefragt der Gruppe beizutreten.", + "{member} was invited by {profile}.": "{profile} hat {member} eingeladen.", + "{moderator} added a note on {report}": "{moderator} hat eine Notiz zu {report} hinzugefügt", + "{moderator} closed {report}": "{moderator} hat die Meldung {report} geschlossen", + "{moderator} deleted an event named \"{title}\"": "{moderator} hat eine Veranstaltung namens „{title}“ gelöscht", + "{moderator} has deleted a comment from {author}": "{moderator} hat einen Kommentar von {author} gelöscht", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} hat einen Kommentar von {author} unter der Veranstaltung {event} gelöscht", + "{moderator} has deleted user {user}": "{moderator} hat den Nutzer {user} gelöscht", + "{moderator} has done an unknown action": "{moderator} hat eine unbekannte Handlung vorgenommen", + "{moderator} has unsuspended group {profile}": "{moderator} hat die Sperrung der Gruppe {profile} aufgehoben", + "{moderator} has unsuspended profile {profile}": "{moderator} hat das Profil {profil} gesperrt", + "{moderator} marked {report} as resolved": "{moderator} hat {report} als erledigt markiert", + "{moderator} reopened {report}": "{moderator} hat {report} wieder geöffnet", + "{moderator} suspended group {profile}": "{moderator} hat die Gruppe {profile} gesperrt", + "{moderator} suspended profile {profile}": "{moderator} hat das Profil {profile} gesperrt", + "{nb} km": "{nb} km", + "{numberOfCategories} selected": "{numberOfCategories} ausgewählt", + "{numberOfLanguages} selected": "{numberOfLanguages} ausgewählt", + "{number} kilometers": "{number} Kilometer", + "{number} members": "{number} Mitglieder", + "{number} memberships": "{number} Mitgliedschaften", + "{number} organized events": "Keine organisierten Veranstaltungen|Eine organisierte Veranstaltung|{number} organisierte Veranstaltungen", + "{number} participations": "Keine Teilnehmer|Ein Teilnehmer|{number} Teilnehmer", + "{number} posts": "Keine Beiträge |Ein Beitrag|{number} Beiträge", + "{number} seats left": "{number} Plätze übrig", + "{old_group_name} was renamed to {group}.": "{old_group_name} wurde in {group} umbenannt.", + "{profile} (by default)": "{profile} (Standard)", + "{profile} added the member {member}.": "{profile} hat das Mitglied {member} hinzugefügt.", + "{profile} approved {member}'s membership.": "{profile} hat der Mitgliedschaft von {member} zugestimmt.", + "{profile} archived the discussion {discussion}.": "{profile} hat die Diskussion {discussion} archiviert.", + "{profile} created the discussion {discussion}.": "{profile} hat die Diskussion {discussion} erstellt.", + "{profile} created the folder {resource}.": "{profile} hat den Ordner {resource} erstellt.", + "{profile} created the group {group}.": "{profile} hat die Gruppe {group} erstellt.", + "{profile} created the resource {resource}.": "{profile} hat die Ressource {resource} erstellt.", + "{profile} deleted the discussion {discussion}.": "{profile} hat die Diskussion {discussion} gelöscht.", + "{profile} deleted the folder {resource}.": "{profile} hat den Ordner {resource} gelöscht.", + "{profile} deleted the resource {resource}.": "{profile} hat die Ressource {resource} gelöscht.", + "{profile} demoted {member} to an unknown role.": "{profile} hat {member} zu einer unbekannten Rolle zurückgestuft.", + "{profile} demoted {member} to moderator.": "{profile} hat {member} zum Moderator zurückgestuft.", + "{profile} demoted {member} to simple member.": "{profile} hat {member} zu einem einfachen Mitglied zurückgestuft.", + "{profile} excluded member {member}.": "{profile} hat {member} ausgeschlossen.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} hat den Ordner {resource} nach {new_path} verschoben.", + "{profile} moved the folder {resource} to the root folder.": "{profile} hat das Verzeichnis {resource} in das Wurzelverzeichnis verschoben.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} hat die Ressource {resource} nach {new_path} verschoben.", + "{profile} moved the resource {resource} to the root folder.": "{profile} hat die Ressource {resource} in das Wurzelverzeichnis verschoben.", + "{profile} posted a comment on the event {event}.": "{profile} hat die Veranstaltung {event} kommentiert.", + "{profile} promoted {member} to administrator.": "{profile} hat {member} zum Administrator befördert.", + "{profile} promoted {member} to an unknown role.": "{profile} hat {member} zu einer unbekannten Rolle befördert.", + "{profile} promoted {member} to moderator.": "{profile} hat {member} zum Moderator befördert.", + "{profile} quit the group.": "{profile} hat die Gruppe verlassen.", + "{profile} rejected {member}'s membership request.": "{profile} hat den Mitgliedsantrag von {member} abgelehnt.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} hat die Diskussion {old_discussion} in {discussion} umbenannt.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} hat den Ordner {old_resource_title} in {resource} umbenannt.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} hat die Ressource {old_resource_title} in {resource} umbenannt.", + "{profile} replied to a comment on the event {event}.": "{profile} hat auf ein Kommentar in der Veranstaltung {event} geantwortet.", + "{profile} replied to the discussion {discussion}.": "{profile} hat auf die Diskussion {discussion} geantwortet.", + "{profile} updated the group {group}.": "{profile} hat die Gruppe {group} aktualisiert.", + "{profile} updated the member {member}.": "{profile} hat {member} aktualisiert.", + "{resultsCount} results found": "Keine Ergebnisse gefunden|Ein Ergebnis gefunden|{resultsCount} Ergebnisse gefunden", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} To-dos)", + "{username} was invited to {group}": "{username} wurde zu {group} eingeladen", + "{user}'s follow request was accepted": "Die Folgeanfrage von {user} wurde akzeptiert", + "{user}'s follow request was rejected": "Die Folgeanfrage von {user} wurde abgelehnt", + "© The OpenStreetMap Contributors": "© OpenStreetMap-Mitwirkende" +}); diff --git a/res/locale/dsb.js b/res/locale/dsb.js new file mode 100644 index 0000000..8336322 --- /dev/null +++ b/res/locale/dsb.js @@ -0,0 +1,4 @@ +CTX.setMessages({ + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Jaden pśezźojny, emancipaciski a etiski narzadow za zběrać, organizować a mobilizować.", + "Please do not use it in any real way.": "Prošu južo w žadnym realnym spěchowanju nježiwajće." +}); diff --git a/res/locale/en_US.js b/res/locale/en_US.js new file mode 100644 index 0000000..666e6a0 --- /dev/null +++ b/res/locale/en_US.js @@ -0,0 +1,1661 @@ +CTX.setMessages({ + "Please do not use it in any real way.": "Please do not use it in any real way.", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.", + "A validation email was sent to {email}": "A validation email was sent to {email}", + "Abandon editing": "Abandon editing", + "About Mobilizon": "About Mobilizon", + "About this event": "About this event", + "About this instance": "About this instance", + "About": "About", + "Accepted": "Accepted", + "Account": "Account", + "Add a note": "Add a note", + "Add an address": "Add an address", + "Add an instance": "Add an instance", + "Add some tags": "Add some tags", + "Add to my calendar": "Add to my calendar", + "Add": "Add", + "Additional comments": "Additional comments", + "Admin settings successfully saved.": "Admin settings successfully saved.", + "Admin": "Admin", + "Administration": "Administration", + "All the places have already been taken": "All the places have already been taken", + "Allow registrations": "Allow registrations", + "Anonymous participant": "Anonymous participant", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Anonymous participants will be asked to confirm their participation through e-mail.", + "Anonymous participations": "Anonymous participations", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Are you sure you want to delete this comment? This action cannot be undone.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Are you sure you want to cancel the event creation? You'll lose all modifications.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Are you sure you want to cancel the event edition? You'll lose all modifications.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Are you sure you want to cancel your participation at event \"{title}\"?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Are you sure you want to delete this event? This action cannot be reverted.", + "Avatar": "Avatar", + "Back to previous page": "Back to previous page", + "Before you can login, you need to click on the link inside it to validate your account.": "Before you can login, you need to click on the link inside it to validate your account.", + "By {username}": "By {username}", + "Calendar": "Calendar", + "Cancel anonymous participation": "Cancel anonymous participation", + "Cancel creation": "Cancel creation", + "Cancel edition": "Cancel edition", + "Cancel my participation request…": "Cancel my participation request…", + "Cancel my participation…": "Cancel my participation…", + "Cancel": "Cancel", + "Cancelled: Won't happen": "Cancelled: Won't happen", + "Change my email": "Change my email", + "Change my identity…": "Change my identity…", + "Change my password": "Change my password", + "Change": "Change", + "Clear": "Clear", + "Click to upload": "Click to upload", + "Close comments for all (except for admins)": "Close comments for all (except for admins)", + "Close": "Close", + "Closed": "Closed", + "Comment deleted": "Comment deleted", + "Comment from {'@'}{username} reported": "Comment from {'@'}{username} reported", + "Comments": "Comments", + "Confirm my participation": "Confirm my participation", + "Confirm my particpation": "Confirm my particpation", + "Confirmed: Will happen": "Confirmed: Will happen", + "Continue editing": "Continue editing", + "Country": "Country", + "Create a new event": "Create a new event", + "Create a new group": "Create a new group", + "Create a new identity": "Create a new identity", + "Create group": "Create group", + "Create my event": "Create my event", + "Create my group": "Create my group", + "Create my profile": "Create my profile", + "Create token": "Create token", + "Create": "Create", + "Current identity has been changed to {identityName} in order to manage this event.": "Current identity has been changed to {identityName} in order to manage this event.", + "Current page": "Current page", + "Custom URL": "Custom URL", + "Custom text": "Custom text", + "Custom": "Custom", + "Dashboard": "Dashboard", + "Date and time settings": "Date and time settings", + "Date parameters": "Date parameters", + "Date": "Date", + "Default": "Default", + "Delete account": "Delete account", + "Delete event": "Delete event", + "Delete everything": "Delete everything", + "Delete my account": "Delete my account", + "Delete this identity": "Delete this identity", + "Delete your identity": "Delete your identity", + "Delete {eventTitle}": "Delete {eventTitle}", + "Delete {preferredUsername}": "Delete {preferredUsername}", + "Delete": "Delete", + "Deleting comment": "Deleting comment", + "Deleting event": "Deleting event", + "Deleting my account will delete all of my identities.": "Deleting my account will delete all of my identities.", + "Deleting your Mobilizon account": "Deleting your Mobilizon account", + "Description": "Description", + "Display name": "Display name", + "Display participation price": "Display participation price", + "Domain": "Domain", + "Draft": "Draft", + "Drafts": "Drafts", + "Edit": "Edit", + "Eg: Stockholm, Dance, Chess…": "Eg: Stockholm, Dance, Chess…", + "Either on the {instance} instance or on another instance.": "Either on the {instance} instance or on another instance.", + "Either the account is already validated, either the validation token is incorrect.": "Either the account is already validated, either the validation token is incorrect.", + "Either the email has already been changed, either the validation token is incorrect.": "Either the email has already been changed, either the validation token is incorrect.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Either the participation request has already been validated, either the validation token is incorrect.", + "Email": "Email", + "Ends on…": "Ends on…", + "Enter the link URL": "Enter the link URL", + "Error while changing email": "Error while changing email", + "Error while validating account": "Error while validating account", + "Error while validating participation request": "Error while validating participation request", + "Event already passed": "Event already passed", + "Event cancelled": "Event cancelled", + "Event creation": "Event creation", + "Event edition": "Event edition", + "Event list": "Event list", + "Event page settings": "Event page settings", + "Event to be confirmed": "Event to be confirmed", + "Event {eventTitle} deleted": "Event {eventTitle} deleted", + "Event {eventTitle} reported": "Event {eventTitle} reported", + "Event": "Event", + "Events": "Events", + "Ex: mobilizon.fr": "Ex: mobilizon.fr", + "Explore": "Explore", + "Failed to save admin settings": "Failed to save admin settings", + "Featured events": "Featured events", + "Federation": "Federation", + "Find an address": "Find an address", + "Find an instance": "Find an instance", + "Followers": "Followers", + "Followings": "Followings", + "For instance: London, Taekwondo, Architecture…": "For instance: London, Taekwondo, Architecture…", + "Forgot your password ?": "Forgot your password ?", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "From the {startDate} at {startTime} to the {endDate} at {endTime}", + "From the {startDate} at {startTime} to the {endDate}": "From the {startDate} at {startTime} to the {endDate}", + "From the {startDate} to the {endDate}": "From the {startDate} to the {endDate}", + "Gather ⋅ Organize ⋅ Mobilize": "Gather ⋅ Organize ⋅ Mobilize", + "General information": "General information", + "General": "General", + "Getting location": "Getting location", + "Go": "Go", + "Group name": "Group name", + "Group {displayName} created": "Group {displayName} created", + "Groups": "Groups", + "Headline picture": "Headline picture", + "Hide replies": "Hide replies", + "I create an identity": "I create an identity", + "I don't have a Mobilizon account": "I don't have a Mobilizon account", + "I have a Mobilizon account": "I have a Mobilizon account", + "I have an account on another Mobilizon instance.": "I have an account on another Mobilizon instance.", + "I participate": "I participate", + "I want to allow people to participate without an account.": "I want to allow people to participate without an account.", + "I want to approve every participation request": "I want to approve every participation request", + "Identity {displayName} created": "Identity {displayName} created", + "Identity {displayName} deleted": "Identity {displayName} deleted", + "Identity {displayName} updated": "Identity {displayName} updated", + "If an account with this email exists, we just sent another confirmation email to {email}": "If an account with this email exists, we just sent another confirmation email to {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.", + "If you want, you may send a message to the event organizer here.": "If you want, you may send a message to the event organizer here.", + "Instance Name": "Instance Name", + "Instance Terms Source": "Instance Terms Source", + "Instance Terms URL": "Instance Terms URL", + "Instance Terms": "Instance Terms", + "Instance settings": "Instance settings", + "Instances": "Instances", + "Join {instance}, a Mobilizon instance": "Join {instance}, a Mobilizon instance", + "Last published event": "Last published event", + "Last week": "Last week", + "Learn more about Mobilizon": "Learn more about Mobilizon", + "Learn more": "Learn more", + "Leave event": "Leave event", + "Leaving event \"{title}\"": "Leaving event \"{title}\"", + "License": "License", + "Limited number of places": "Limited number of places", + "Load more": "Load more", + "Locality": "Locality", + "Log in": "Log in", + "Log out": "Log out", + "Login on Mobilizon!": "Login on Mobilizon!", + "Login on {instance}": "Login on {instance}", + "Login": "Login", + "Manage participations": "Manage participations", + "Mark as resolved": "Mark as resolved", + "Members": "Members", + "Message": "Message", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon is a federated network. You can interact with this event from a different server.", + "Moderated comments (shown after approval)": "Moderated comments (shown after approval)", + "Moderation log": "Moderation log", + "Moderation": "Moderation", + "My account": "My account", + "My events": "My events", + "My identities": "My identities", + "Name": "Name", + "New email": "New email", + "New note": "New note", + "New password": "New password", + "New profile": "New profile", + "Next page": "Next page", + "No address defined": "No address defined", + "No closed reports yet": "No closed reports yet", + "No comment": "No comment", + "No comments yet": "No comments yet", + "No end date": "No end date", + "No events found": "No events found", + "No group found": "No group found", + "No groups found": "No groups found", + "No activities found": "No activities found", + "No instance follows your instance yet.": "No instance follows your instance yet.", + "No instance to approve|Approve instance|Approve {number} instances": "No instance to approve|Approve instance|Approve {number} instances", + "No instance to reject|Reject instance|Reject {number} instances": "No instance to reject|Reject instance|Reject {number} instances", + "No instance to remove|Remove instance|Remove {number} instances": "No instances to remove|Remove instance|Remove {number} instances", + "No message": "No message", + "No open reports yet": "No open reports yet", + "No participant to approve|Approve participant|Approve {number} participants": "No participant to approve|Approve participant|Approve {number} participants", + "No participant to reject|Reject participant|Reject {number} participants": "No participant to reject|Reject participant|Reject {number} participants", + "No resolved reports yet": "No resolved reports yet", + "No results for \"{queryText}\"": "No results for \"{queryText}\"", + "Notes": "Notes", + "Number of places": "Number of places", + "OK": "OK", + "Old password": "Old password", + "On {date} ending at {endTime}": "On {date} ending at {endTime}", + "On {date} from {startTime} to {endTime}": "On {date} from {startTime} to {endTime}", + "On {date} starting at {startTime}": "On {date} starting at {startTime}", + "On {date}": "On {date}", + "Only accessible through link (private)": "Only accessible through link (private)", + "Only alphanumeric lowercased characters and underscores are supported.": "Only alphanumeric lowercased characters and underscores are supported.", + "Open": "Open", + "Opened reports": "Opened reports", + "Or": "Or", + "Organized by {name}": "Organized by {name}", + "Organized": "Organized", + "Organizer": "Organizer", + "Other software may also support this.": "Other software may also support this.", + "Otherwise this identity will just be removed from the group administrators.": "Otherwise this identity will just be removed from the group administrators.", + "Page limited to my group (asks for auth)": "Page limited to my group (asks for auth)", + "Page": "Page", + "Participant": "Participant", + "Participants": "Participants", + "Participate using your email address": "Participate using your email address", + "Participate": "Participate", + "Participation approval": "Participation approval", + "Participation confirmation": "Participation confirmation", + "Participation requested!": "Participation requested!", + "Password (confirmation)": "Password (confirmation)", + "Password reset": "Password reset", + "Password": "Password", + "Past events": "Passed events", + "Pending": "Pending", + "Pick an identity": "Pick an identity", + "Please check your spam folder if you didn't receive the email.": "Please check your spam folder if you didn't receive the email.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Please contact this instance's Mobilizon admin if you think this is a mistake.", + "Please enter your password to confirm this action.": "Please enter your password to confirm this action.", + "Please make sure the address is correct and that the page hasn't been moved.": "Please make sure the address is correct and that the page hasn't been moved.", + "Post a comment": "Post a comment", + "Post a reply": "Post a reply", + "Postal Code": "Postal Code", + "Preferences": "Preferences", + "Previous page": "Previous page", + "Privacy Policy": "Privacy Policy", + "Private event": "Private event", + "Private feeds": "Private feeds", + "Profiles": "Profiles", + "Public RSS/Atom Feed": "Public RSS/Atom Feed", + "Public comment moderation": "Public comment moderation", + "Public event": "Public event", + "Public feeds": "Public feeds", + "Public iCal Feed": "Public iCal Feed", + "Publish": "Publish", + "Published events with {comments} comments and {participations} confirmed participations": "Published events with {comments} comments and {participations} confirmed participations", + "RSS/Atom Feed": "RSS/Atom Feed", + "Region": "Region", + "Registration is allowed, anyone can register.": "Registration is allowed, anyone can register.", + "Registration is closed.": "Registration is closed.", + "Registration is currently closed.": "Registration is currently closed.", + "Rejected": "Rejected", + "Reopen": "Reopen", + "Reply": "Reply", + "Report this comment": "Report this comment", + "Report this event": "Report this event", + "Report": "Report", + "Reported by someone on {domain}": "Reported by someone on {domain}", + "Reported by {reporter}": "Reported by {reporter}", + "Reported by": "Reported by", + "Reported identity": "Reported identity", + "Reported": "Reported", + "Reports": "Reports", + "Reset my password": "Reset my password", + "Resolved": "Resolved", + "Resource provided is not an URL": "Resource provided is not an URL", + "Role": "Role", + "Save draft": "Save draft", + "Save": "Save", + "Search events, groups, etc.": "Search events, groups, etc.", + "Search": "Search", + "Searching…": "Searching…", + "Send email": "Send email", + "Send the report": "Send the report", + "Set an URL to a page with your own terms.": "Set an URL to a page with your own terms.", + "Settings": "Settings", + "Share this event": "Share this event", + "Show map": "Show map", + "Show remaining number of places": "Show remaining number of places", + "Show the time when the event begins": "Show the time when the event begins", + "Show the time when the event ends": "Show the time when the event ends", + "Sign up": "Sign up", + "Starts on…": "Starts on…", + "Status": "Status", + "Street": "Street", + "Tentative: Will be confirmed later": "Tentative: Will be confirmed later", + "Terms": "Terms", + "The account's email address was changed. Check your emails to verify it.": "The account's email address was changed. Check your emails to verify it.", + "The actual number of participants may differ, as this event is hosted on another instance.": "The actual number of participants may differ, as this event is hosted on another instance.", + "The content came from another server. Transfer an anonymous copy of the report?": "The content came from another server. Transfer an anonymous copy of the report?", + "The draft event has been updated": "The draft event has been updated", + "The event has been created as a draft": "The event has been created as a draft", + "The event has been published": "The event has been published", + "The event has been updated and published": "The event has been updated and published", + "The event has been updated": "The event has been updated", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?", + "The event organizer didn't add any description.": "The event organizer didn't add any description.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.", + "The event title will be ellipsed.": "The event title will be ellipsed.", + "The page you're looking for doesn't exist.": "The page you're looking for doesn't exist.", + "The password was successfully changed": "The password was successfully changed", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "The report will be sent to the moderators of your instance. You can explain why you report this content below.", + "The {default_terms} will be used. They will be translated in the user's language.": "The {default_terms} will be used. They will be translated in the user's language.", + "There are {participants} participants.": "There are {participants} participants.", + "There will be no way to recover your data.": "There will be no way to recover your data.", + "These events may interest you": "These events may interest you", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.", + "This information is saved only on your computer. Click for details": "This information is saved only on your computer. Click for details", + "This instance isn't opened to registrations, but you can register on other instances.": "This instance isn't opened to registrations, but you can register on other instances.", + "This is a demonstration site to test Mobilizon.": "This is a demonstration site to test Mobilizon.", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.", + "Title": "Title", + "To confirm, type your event title \"{eventTitle}\"": "To confirm, type your event title \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "To confirm, type your identity username \"{preferredUsername}\"", + "Transfer to {outsideDomain}": "Transfer to {outsideDomain}", + "Type": "Type", + "URL": "URL", + "Unfortunately, your participation request was rejected by the organizers.": "Unfortunately, your participation request was rejected by the organizers.", + "Unknown actor": "Unknown actor", + "Unknown error.": "Unknown error.", + "Unknown": "Unknown", + "Unsaved changes": "Unsaved changes", + "Upcoming": "Upcoming", + "Update event {name}": "Update event {name}", + "Update my event": "Update my event", + "Updated": "Updated", + "Use my location": "Use my location", + "Username": "Username", + "Users": "Users", + "View a reply": "View no replies|View one reply|View {totalReplies} replies", + "View event page": "View event page", + "View everything": "View everything", + "View page on {hostname} (in a new window)": "View page on {hostname} (in a new window)", + "Visible everywhere on the web (public)": "Visible everywhere on the web (public)", + "Waiting for organization team approval.": "Waiting for organization team approval.", + "Warning": "Warning", + "We just sent an email to {email}": "We just sent an email to {email}", + "We will redirect you to your instance in order to interact with this event": "We will redirect you to your instance in order to interact with this event", + "Website / URL": "Website / URL", + "Welcome back {username}!": "Welcome back {username}!", + "Welcome back!": "Welcome back!", + "Welcome to Mobilizon, {username}!": "Welcome to Mobilizon, {username}!", + "Who can view this event and participate": "Who can view this event and participate", + "You are participating in this event anonymously but didn't confirm participation": "You are participating in this event anonymously but didn't confirm participation", + "You are participating in this event anonymously": "You are participating in this event anonymously", + "You can add tags by hitting the Enter key or by adding a comma": "You can add tags by hitting the Enter key or by adding a comma", + "You can try another search term or drag and drop the marker on the map": "You can try another search term or drag and drop the marker on the map", + "You don't follow any instances yet.": "You don't follow any instances yet.", + "You have cancelled your participation": "You have cancelled your participation", + "You have one event in {days} days.": "You have no events in {days} days | You have one event in {days} days. | You have {count} events in {days} days", + "You have one event today.": "You have no events today | You have one event today. | You have {count} events today", + "You have one event tomorrow.": "You have no events tomorrow | You have one event tomorrow. | You have {count} events tomorrow", + "You need to login.": "You need to login.", + "You will be redirected to the original instance": "You will be redirected to the original instance", + "You wish to participate to the following event": "You wish to participate to the following event", + "You'll receive a confirmation email.": "You'll receive a confirmation email.", + "Your account has been successfully deleted": "Your account has been successfully deleted", + "Your account has been validated": "Your account has been validated", + "Your account is being validated": "Your account is being validated", + "Your account is nearly ready, {username}": "Your account is nearly ready, {username}", + "Your current email is {email}. You use it to log in.": "Your current email is {email}. You use it to log in.", + "Your email has been changed": "Your email has been changed", + "Your email is being changed": "Your email is being changed", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.", + "Your federated identity": "Your federated identity", + "Your participation has been confirmed": "Your participation has been confirmed", + "Your participation has been rejected": "Your participation has been rejected", + "Your participation has been requested": "Your participation has been requested", + "Your participation request has been validated": "Your participation has been validated", + "Your participation request is being validated": "Your participation is being validated", + "Your participation status has been changed": "Your participation status has been changed", + "[This comment has been deleted]": "[This comment has been deleted]", + "[deleted]": "[deleted]", + "as {identity}": "as {identity}", + "default Mobilizon terms": "default Mobilizon terms", + "e.g. 10 Rue Jangot": "e.g. 10 Rue Jangot", + "iCal Feed": "iCal Feed", + "profile@instance": "profile@instance", + "with another identity…": "with another identity…", + "{approved} / {total} seats": "{approved} / {total} seats", + "{count} participants": "No participants yet | One participant | {count} participants", + "{count} requests waiting": "{count} requests waiting", + "© The OpenStreetMap Contributors": "© The OpenStreetMap Contributors", + "@{username} ({role})": "@{username} ({role})", + "@{group}": "@{group}", + "{title} ({count} todos)": "{title} ({count} todos)", + "My groups": "My groups", + "Assigned to": "Assigned to", + "Due on": "Due on", + "Organizers": "Organizers", + "(Masked)": "(Masked)", + "{available}/{capacity} available places": "No places left|{available}/{capacity} available place left|{available}/{capacity} available places", + "No one is participating|One person participating|{going} people participating": "No one is participating|One person participating|{going} people participating", + "Date and time": "Date and time", + "Location": "Location", + "Logo": "Logo", + "Logo of the instance. Defaults to the upstream Mobilizon logo.": "Logo of the instance. Defaults to the upstream Mobilizon logo.", + "Favicon": "Favicon", + "Browser tab icon and PWA icon of the instance. Defaults to the upstream Mobilizon icon.": "Browser tab icon and PWA icon of the instance. Defaults to the upstream Mobilizon icon.", + "Default Picture": "Default Picture", + "Default picture when an event or group doesn't have one.": "Default picture when an event or group doesn't have one.", + "Primary Color": "Primary Color", + "Secondary Color": "Secondary Color", + "No resources selected": "No resources selected|One resources selected|{count} resources selected", + "You have been invited by {invitedBy} to the following group:": "You have been invited by {invitedBy} to the following group:", + "Accept": "Accept", + "Decline": "Decline", + "Rename": "Rename", + "Move": "Move", + "Contact": "Contact", + "Website": "Website", + "Actor": "Actor", + "Text": "Text", + "Upcoming events": "Upcoming events", + "Resources": "Resources", + "Discussions": "Discussions", + "No public upcoming events": "No public upcoming events", + "Latest posts": "Latest posts", + "Invite a new member": "Invite a new member", + "Ex: someone@mobilizon.org": "Ex: someone@mobilizon.org", + "Invite member": "Invite member", + "Group Members": "Group Members", + "Public": "Public", + "New folder": "New folder", + "New link": "New link", + "Rename resource": "Rename resource", + "Create resource": "Create resource", + "Create a pad": "Create a pad", + "Create a calc": "Create a calc", + "Create a videoconference": "Create a videoconference", + "Task lists": "Task lists", + "Add a todo": "Add a todo", + "List title": "List title", + "Create a new list": "Create a new list", + "Your timezone is currently set to {timezone}.": "Your timezone is currently set to {timezone}.", + "Timezone detected as {timezone}.": "Timezone detected as {timezone}.", + "Bold": "Bold", + "Italic": "Italic", + "Duplicate": "Duplicate", + "Home": "Home", + "Notification on the day of the event": "Notification on the day of the event", + "We'll use your timezone settings to send a recap of the morning of the event.": "We'll use your timezone settings to send a recap of the morning of the event.", + "You can pick your timezone into your preferences.": "You can pick your timezone into your preferences.", + "Recap every week": "Recap every week", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "You'll get a weekly recap every Monday for upcoming events, if you have any.", + "Notification before the event": "Notification before the event", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "We'll send you an email one hour before the event begins, to be sure you won't forget about it.", + "Timezone": "Timezone", + "Select a timezone": "Select a timezone", + "Other": "Other", + "No moderation logs yet": "No moderation logs yet", + "Participation notifications": "Participation notifications", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.", + "Other notification options:": "Other notification options:", + "Organizer notifications": "Organizer notifications", + "Notifications for manually approved participations to an event": "Notifications for manually approved participations to an event", + "Do not receive any mail": "Do not receive any mail", + "Receive one email per request": "Receive one email per request", + "Hourly email summary": "Hourly email summary", + "Daily email summary": "Daily email summary", + "report #{report_number}": "report #{report_number}", + "{moderator} closed {report}": "{moderator} closed {report}", + "a non-existent report": "a non-existent report", + "{moderator} reopened {report}": "{moderator} reopened {report}", + "{moderator} marked {report} as resolved": "{moderator} marked {report} as resolved", + "{moderator} added a note on {report}": "{moderator} added a note on {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} deleted an event named \"{title}\"", + "Register on this instance": "Register on this instance", + "To activate more notifications, head over to the notification settings.": "To activate more notifications, head over to the notification settings.", + "We use your timezone to make sure you get notifications for an event at the correct time.": "We use your timezone to make sure you get notifications for an event at the correct time.", + "Your timezone was detected as {timezone}.": "Your timezone was detected as {timezone}.", + "Let's define a few settings": "Let's define a few settings", + "All good, let's continue!": "All good, let's continue!", + "Login status": "Login status", + "Suspended": "Suspended", + "Active": "Active", + "Local": "Local", + "User": "User", + "Confirmed": "Confirmed", + "Confirmed at": "Confirmed at", + "Language": "Language", + "Administrator": "Administrator", + "Moderator": "Moderator", + "{number} organized events": "No organized events|One organized event|{number} organized events", + "Begins on": "Begins on", + "{number} participations": "No participations|One participation|{number} participations", + "{profile} (by default)": "{profile} (by default)", + "Participations": "Participations", + "Not confirmed": "Not confirmed", + "{moderator} suspended profile {profile}": "{moderator} suspended profile {profile}", + "Suspend": "Suspend", + "Unsuspend": "Unsuspend", + "None": "None", + "Disabled": "Disabled", + "Activated": "Activated", + "No profile matches the filters": "No profile matches the filters", + "Mobilizon": "Mobilizon", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} is an instance of the {mobilizon} software.", + "Instance Rules": "Instance Rules", + "Rules": "Rules", + "No rules defined yet.": "No rules defined yet.", + "full rules": "full rules", + "instance rules": "instance rules", + "terms of service": "terms of service", + "I agree to the {instanceRules} and {termsOfService}": "I agree to the {instanceRules} and {termsOfService}", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.", + "more than 1360 contributors": "more than 1360 contributors", + "{moderator} has unsuspended profile {profile}": "{moderator} has unsuspended profile {profile}", + "{moderator} has deleted user {user}": "{moderator} has deleted user {user}", + "Change timezone": "Change timezone", + "Select a language": "Select a language", + "This event is accessible only through it's link. Be careful where you post this link.": "This event is accessible only through it's link. Be careful where you post this link.", + "This event has been cancelled.": "This event has been cancelled.", + "Actions": "Actions", + "Everything": "Everything", + "Not approved": "Not approved", + "No participant matches the filters": "No participant matches the filters", + "Send the confirmation email again": "Send the confirmation email again", + "Forgot your password?": "Forgot your password?", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Enter your email address below, and we'll email you instructions on how to change your password.", + "Submit": "Submit", + "Email address": "Email address", + "Legal": "Legal", + "Terms of service": "Terms of service", + "Privacy policy": "Privacy policy", + "Instance rules": "Instance rules", + "Glossary": "Glossary", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:", + "Instance": "Instance", + "Mobilizon software": "Mobilizon software", + "Instance administrator": "Instance administrator", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "The instance administrator is the person or entity that runs this Mobilizon instance.", + "Application": "Application", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.", + "API": "API", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events, automatically and remotely.": "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events, automatically and remotely.", + "SSL/TLS": "SSL/TLS", + "Cookies and Local storage": "Cookies and Local storage", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.", + "Home to {number} users": "Home to {number} users", + "Who published {number} events": "Who published {number} events", + "And {number} comments": "And {number} comments", + "Instance configuration": "Instance configuration", + "Mobilizon version": "Mobilizon version", + "Registrations": "Registrations", + "Restricted": "Restricted", + "Enabled": "Enabled", + "If allowed by organizer": "If allowed by organizer", + "Instance Privacy Policy Source": "Instance Privacy Policy Source", + "default Mobilizon privacy policy": "default Mobilizon privacy policy", + "Set an URL to a page with your own privacy policy.": "Set an URL to a page with your own privacy policy.", + "Instance Privacy Policy URL": "Instance Privacy Policy URL", + "Instance Privacy Policy": "Instance Privacy Policy", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "The {default_privacy_policy} will be used. They will be translated in the user's language.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.", + "Default Mobilizon terms": "Default Mobilizon terms", + "Default Mobilizon privacy policy": "Default Mobilizon privacy policy", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.", + "Instance Short Description": "Instance Short Description", + "Instance Long Description": "Instance Long Description", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "A place to explain who you are and the things that set your instance apart. You can use HTML tags.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "A place for your code of conduct, rules or guidelines. You can use HTML tags.", + "contact uninformed": "contact uninformed", + "Can be an email or a link, or just plain text.": "Can be an email or a link, or just plain text.", + "URL copied to clipboard": "URL copied to clipboard", + "Report #{reportNumber}": "Report #{reportNumber}", + "Move \"{resourceName}\"": "Move \"{resourceName}\"", + "Parent folder": "Parent folder", + "(this folder)": "(this folder)", + "(this link)": "(this link)", + "Move resource to {folder}": "Move resource to {folder}", + "Create a folder": "Create a folder", + "No resources in this folder": "No resources in this folder", + "New discussion": "New discussion", + "Create a discussion": "Create a discussion", + "Create the discussion": "Create the discussion", + "Sign in with": "Sign in with", + "Your email address was automatically set based on your {provider} account.": "Your email address was automatically set based on your {provider} account.", + "You can't change your password because you are registered through {provider}.": "You can't change your password because you are registered through {provider}.", + "Error while login with {provider}. Retry or login another way.": "Error while login with {provider}. Retry or login another way.", + "Error while login with {provider}. This login provider doesn't exist.": "Error while login with {provider}. This login provider doesn't exist.", + "Post": "Post", + "Right now": "Right now", + "Delete conversation": "Delete conversation", + "Fetch more": "Fetch more", + "Group settings": "Group settings", + "Member": "Member", + "Invited": "Invited", + "No member matches the filters": "No member matches the filters", + "Group short description": "Group short description", + "Update group": "Update group", + "Edit post": "Edit post", + "Add a new post": "Add a new post", + "Who can view this post": "Who can view this post", + "Visible everywhere on the web": "Visible everywhere on the web", + "Only accessible through link": "Only accessible through link", + "Only accessible to members of the group": "Only accessible to members of the group", + "Delete post": "Delete post", + "Update post": "Update post", + "Posts": "Posts", + "Register an account on {instanceName}!": "Register an account on {instanceName}!", + "Key words": "Key words", + "For instance: London": "For instance: London", + "Radius": "Radius", + "Today": "Today", + "Tomorrow": "Tomorrow", + "This weekend": "This weekend", + "This week": "This week", + "Next week": "Next week", + "This month": "This month", + "Next month": "Next month", + "Any day": "Any day", + "{nb} km": "{nb} km", + "any distance": "any distance", + "Group visibility": "Group visibility", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.", + "Group address": "Group address", + "Events tagged with {tag}": "Events tagged with {tag}", + "Explore events": "Explore events", + "#{tag}": "#{tag}", + "No resources yet": "No resources yet", + "No posts yet": "No posts yet", + "No discussions yet": "No discussions yet", + "Add / Remove…": "Add / Remove…", + "You have been removed from this group's members.": "You have been removed from this group's members.", + "Since you are a new member, private content can take a few minutes to appear.": "Since you are a new member, private content can take a few minutes to appear.", + "Remove": "Remove", + "Update": "Update", + "Edited {ago}": "Edited {ago}", + "[This comment has been deleted by it's author]": "[This comment has been deleted by it's author]", + "Promote": "Promote", + "Demote": "Demote", + "{number} members": "{number} members", + "{number} posts": "No posts|One post|{number} posts", + "Publication date": "Publication date", + "Refresh profile": "Refresh profile", + "Suspend group": "Suspend group", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.", + "Delete group": "Delete group", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.", + "Group display name": "Group display name", + "Federated Group Name": "Federated Group Name", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.", + "Banner": "Banner", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Groups are spaces for coordination and preparation to better organize events and manage your community.", + "Keep the entire conversation about a specific topic together on a single page.": "Keep the entire conversation about a specific topic together on a single page.", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Create to-do lists for all the tasks you need to do, assign them and set due dates.", + "A place to store links to documents or resources of any type.": "A place to store links to documents or resources of any type.", + "{group}'s events": "{group}'s events", + "View all": "View all", + "+ Start a discussion": "+ Start a discussion", + "+ Add a resource": "+ Add a resource", + "+ Create an event": "+ Create an event", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.", + "A place to publish something to the whole world, your community or just your group members.": "A place to publish something to the whole world, your community or just your group members.", + "No posts found": "No posts found", + "Last sign-in": "Last sign-in", + "Last IP adress": "Last IP adress", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.", + "Leave": "Leave", + "Group settings saved": "Group settings saved", + "Error": "Error", + "Registrations are restricted by allowlisting.": "Registrations are restricted by allowlisting.", + "Resend confirmation email": "Resend confirmation email", + "By {group}": "By {group}", + "Pick a profile or a group": "Pick a profile or a group", + "Add a contact": "Add a contact", + "Your profile will be shown as contact.": "Your profile will be shown as contact.", + "Pick": "Pick", + "The event will show as attributed to your personal profile.": "The event will show as attributed to your personal profile.", + "The event will show as attributed to this group.": "The event will show as attributed to this group.", + "{contact} will be displayed as contact.": "{contact} will be displayed as contact.|{contact} will be displayed as contacts.", + "and {number} groups": "and {number} groups", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.", + "Remember my participation in this browser": "Remember my participation in this browser", + "Organized by": "Organized by", + "Report this group": "Report this group", + "Group {groupTitle} reported": "Group {groupTitle} reported", + "Error while reporting group {groupTitle}": "Error while reporting group {groupTitle}", + "Reported group": "Reported group", + "Join group": "Join group", + "Created by {username}": "Created by {username}", + "Accessible through link": "Accessible through link", + "Accessible only to members": "Accessible only to members", + "Created by {name}": "Created by {name}", + "View all posts": "View all posts", + "Didn't receive the instructions?": "Didn't receive the instructions?", + "Allow all comments from users with accounts": "Allow all comments from logged-in users", + "This identifier is unique to your profile. It allows others to find you.": "This identifier is unique to your profile. It allows others to find you.", + "Displayed nickname": "Displayed nickname", + "Short bio": "Short bio", + "Congratulations, your account is now created!": "Congratulations, your account is now created!", + "Now, create your first profile:": "Now, create your first profile:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.", + "You will be able to add an avatar and set other options in your account settings.": "You will be able to add an avatar and set other options in your account settings.", + "Instance languages": "Instance languages", + "Main languages you/your moderators speak": "Main languages you/your moderators speak", + "Select languages": "Select languages", + "No languages found": "No languages found", + "Your participation still has to be approved by the organisers.": "Your participation still has to be approved by the organisers.", + "Your email": "Your email", + "Go to the event page": "Go to the event page", + "Request for participation confirmation sent": "Request for participation confirmation sent", + "Check your inbox (and your junk mail folder).": "Check your inbox (and your junk mail folder).", + "You may now close this window, or {return_to_event}.": "You may now close this window, or {return_to_event}.", + "Create an account": "Create an account", + "You are not an administrator for this group.": "You are not an administrator for this group.", + "Why create an account?": "Why create an account?", + "To create and manage your events": "To create and manage your events", + "To create and manage multiples identities from a same account": "To create and manage multiples identities from a same account", + "To register for an event by choosing one of your identities": "To register for an event by choosing one of your identities", + "To create or join an group and start organizing with other people": "To create or join an group and start organizing with other people", + "About {instance}": "About {instance}", + "Please read the {fullRules} published by {instance}'s administrators.": "Please read the {fullRules} published by {instance}'s administrators.", + "Instances following you": "Instances following you", + "Instances you follow": "Instances you follow", + "Last group created": "Last group created", + "{username} was invited to {group}": "{username} was invited to {group}", + "The member was removed from the group {group}": "The member was removed from the group {group}", + "The organiser has chosen to close comments.": "The organiser has chosen to close comments.", + "Comments are closed for everybody else.": "Comments are closed for everybody else.", + "Instance Slogan": "Instance Slogan", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"", + "Learn more about {instance}": "Learn more about {instance}", + "Unable to detect timezone.": "Unable to detect timezone.", + "A practical tool": "A practical tool", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon is a tool that helps you find, create and organise events.", + "An ethical alternative": "An ethical alternative", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.", + "A federated software": "A federated software", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "When a moderator from the group creates an event and attributes it to the group, it will show up here.", + "Only group moderators can create, edit and delete posts.": "Only group moderators can create, edit and delete posts.", + "This group doesn't have a description yet.": "This group doesn't have a description yet.", + "Find another instance": "Find another instance", + "Pick an instance": "Pick an instance", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).", + "We will redirect you to your instance in order to interact with this group": "We will redirect you to your instance in order to interact with this group", + "New members": "New members", + "Anyone can join freely": "Anyone can join freely", + "Anyone wanting to be a member from your group will be able to from your group page.": "Anyone wanting to be a member from your group will be able to from your group page.", + "Manually invite new members": "Manually invite new members", + "The only way for your group to get new members is if an admininistrator invites them.": "The only way for your group to get new members is if an admininistrator invites them.", + "Redirecting to content…": "Redirecting to content…", + "This URL is not supported": "This URL is not supported", + "This group is invite-only": "This group is invite-only", + "This setting will be used to display the website and send you emails in the correct language.": "This setting will be used to display the website and send you emails in the correct language.", + "Previous": "Previous", + "Next": "Next", + "Your timezone {timezone} isn't supported.": "Your timezone {timezone} isn't supported.", + "Profiles and federation": "Profiles and federation", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon is a federated software, meaning you can interact - depending on your admin federation settings - with content from other instances, such as joining groups or events that were created elsewhere.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:", + "Uploaded media size": "Uploaded media size", + "Loading comments…": "Loading comments…", + "Tentative": "Tentative", + "Cancelled": "Cancelled", + "Click for more information": "Click for more information", + "About anonymous participation": "About anonymous participation", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Your participation status is saved only on this device and will be deleted one month after the event's passed.", + "You may clear all participation information for this device with the buttons below.": "You may clear all participation information for this device with the buttons below.", + "Clear participation data for this event": "Clear participation data for this event", + "Clear participation data for all events": "Clear participation data for all events", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.", + "Your participation will be validated once you click the confirmation link into the email.": "Your participation will be validated once you click the confirmation link into the email.", + "Unable to load event for participation. The error details are provided below:": "Unable to load event for participation. The error details are provided below:", + "Unable to save your participation in this browser.": "Unable to save your participation in this browser.", + "return to the event's page": "return to the event's page", + "View all events": "View all events", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.", + "Create event": "Create event", + "You didn't create or join any event yet.": "You didn't create or join any event yet.", + "create an event": "create an event", + "explore the events": "explore the events", + "Do you wish to {create_event} or {explore_events}?": "Do you wish to {create_event} or {explore_events}?", + "You are not part of any group.": "You are not part of any group.", + "create a group": "create a group", + "explore the groups": "explore the groups", + "Do you wish to {create_group} or {explore_groups}?": "Do you wish to {create_group} or {explore_groups}?", + "Type or select a date…": "Type or select a date…", + "Getting there": "Getting there", + "Groups are not enabled on this instance.": "Groups are not enabled on this instance.", + "The events you created are not shown here.": "The events you created are not shown here.", + "There's no discussions yet": "There's no discussions yet", + "Only group members can access discussions": "Only group members can access discussions", + "Return to the group page": "Return to the group page", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.", + "Atom feed for events and posts": "Atom feed for events and posts", + "ICS feed for events": "ICS feed for events", + "ICS/WebCal Feed": "ICS/WebCal Feed", + "Group Followers": "Group Followers", + "Follower": "Follower", + "Reject": "Reject", + "No follower matches the filters": "No follower matches the filters", + "@{username}'s follow request was rejected": "@{username}'s follow request was rejected", + "Followers will receive new public events and posts.": "Followers will receive new public events and posts.", + "Manually approve new followers": "Manually approve new followers", + "An error has occured. Sorry about that. You may try to reload the page.": "An error has occured. Sorry about that. You may try to reload the page.", + "What can I do to help?": "What can I do to help?", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):", + "Please add as many details as possible to help identify the problem.": "Please add as many details as possible to help identify the problem.", + "Technical details": "Technical details", + "Error message": "Error message", + "Error stacktrace": "Error stacktrace", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.", + "Error details copied!": "Error details copied!", + "Copy details to clipboard": "Copy details to clipboard", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.", + "Open a topic on our forum": "Open a topic on our forum", + "Open an issue on our bug tracker (advanced users)": "Open an issue on our bug tracker (advanced users)", + "Unable to copy to clipboard": "Unable to copy to clipboard", + "{count} km": "{count} km", + "City or region": "City or region", + "Select a radius": "Select a radius", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.", + "Your upcoming events": "Your upcoming events", + "Last published events": "Last published events", + "Events nearby": "Events nearby", + "Within {number} kilometers of {place}": "|Within one kilometer of {place}|Within {number} kilometers of {place}", + "{'@'}{username}": "{'@'}{username}", + "Yesterday": "Yesterday", + "You created the event {event}.": "You created the event {event}.", + "The event {event} was created by {profile}.": "The event {event} was created by {profile}.", + "You updated the event {event}.": "You updated the event {event}.", + "The event {event} was updated by {profile}.": "The event {event} was updated by {profile}.", + "You deleted the event {event}.": "You deleted the event {event}.", + "The event {event} was deleted by {profile}.": "The event {event} was deleted by {profile}.", + "You created the post {post}.": "You created the post {post}.", + "The post {post} was created by {profile}.": "The post {post} was created by {profile}.", + "You updated the post {post}.": "You updated the post {post}.", + "The post {post} was updated by {profile}.": "The post {post} was updated by {profile}.", + "You deleted the post {post}.": "You deleted the post {post}.", + "The post {post} was deleted by {profile}.": "The post {post} was deleted by {profile}.", + "No more activity to display.": "No more activity to display.", + "There is no activity yet. Start doing some things to see activity appear here.": "There is no activity yet. Start doing some things to see activity appear here.", + "{group} activity timeline": "{group} activity timeline", + "You promoted {member} to moderator.": "You promoted {member} to moderator.", + "You promoted {member} to administrator.": "You promoted {member} to administrator.", + "You promoted the member {member} to an unknown role.": "You promoted the member {member} to an unknown role.", + "You demoted {member} to moderator.": "You demoted {member} to moderator.", + "You demoted {member} to simple member.": "You demoted {member} to simple member.", + "You demoted the member {member} to an unknown role.": "You demoted the member {member} to an unknown role.", + "You updated the member {member}.": "You updated the member {member}.", + "{profile} updated the member {member}.": "{profile} updated the member {member}.", + "{profile} promoted {member} to moderator.": "{profile} promoted {member} to moderator.", + "{profile} promoted {member} to administrator.": "{profile} promoted {member} to administrator.", + "{profile} promoted {member} to an unknown role.": "{profile} promoted {member} to an unknown role.", + "{profile} demoted {member} to moderator.": "{profile} demoted {member} to moderator.", + "{profile} demoted {member} to simple member.": "{profile} demoted {member} to simple member.", + "{profile} demoted {member} to an unknown role.": "{profile} demoted {member} to an unknown role.", + "You requested to join the group.": "You requested to join the group.", + "{member} requested to join the group.": "{member} requested to join the group.", + "You invited {member}.": "You invited {member}.", + "{member} was invited by {profile}.": "{member} was invited by {profile}.", + "You added the member {member}.": "You added the member {member}.", + "{profile} added the member {member}.": "{profile} added the member {member}.", + "{member} joined the group.": "{member} joined the group.", + "{member} rejected the invitation to join the group.": "{member} rejected the invitation to join the group.", + "{member} accepted the invitation to join the group.": "{member} accepted the invitation to join the group.", + "You excluded member {member}.": "You excluded member {member}.", + "{profile} excluded member {member}.": "{profile} excluded member {member}.", + "You accepted the invitation to join the group.": "You accepted the invitation to join the group.", + "You were promoted to moderator by {profile}.": "You were promoted to moderator by {profile}.", + "You were promoted to administrator by {profile}.": "You were promoted to administrator by {profile}.", + "You were promoted to an unknown role by {profile}.": "You were promoted to an unknown role by {profile}.", + "You were demoted to moderator by {profile}.": "You were demoted to moderator by {profile}.", + "You were demoted to simple member by {profile}.": "You were demoted to simple member by {profile}.", + "You were demoted to an unknown role by {profile}.": "You were demoted to an unknown role by {profile}.", + "{profile} quit the group.": "{profile} quit the group.", + "You created the folder {resource}.": "You created the folder {resource}.", + "{profile} created the folder {resource}.": "{profile} created the folder {resource}.", + "You created the resource {resource}.": "You created the resource {resource}.", + "{profile} created the resource {resource}.": "{profile} created the resource {resource}.", + "You moved the folder {resource} to the root folder.": "You moved the folder {resource} to the root folder.", + "{profile} moved the folder {resource} to the root folder.": "{profile} moved the folder {resource} to the root folder.", + "You moved the folder {resource} into {new_path}.": "You moved the folder {resource} into {new_path}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} moved the folder {resource} into {new_path}.", + "You moved the resource {resource} to the root folder.": "You moved the resource {resource} to the root folder.", + "{profile} moved the resource {resource} to the root folder.": "{profile} moved the resource {resource} to the root folder.", + "You moved the resource {resource} into {new_path}.": "You moved the resource {resource} into {new_path}.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} moved the resource {resource} into {new_path}.", + "You renamed the folder from {old_resource_title} to {resource}.": "You renamed the folder from {old_resource_title} to {resource}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} renamed the folder from {old_resource_title} to {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "You renamed the resource from {old_resource_title} to {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} renamed the resource from {old_resource_title} to {resource}.", + "You deleted the folder {resource}.": "You deleted the folder {resource}.", + "{profile} deleted the folder {resource}.": "{profile} deleted the folder {resource}.", + "You deleted the resource {resource}.": "You deleted the resource {resource}.", + "{profile} deleted the resource {resource}.": "{profile} deleted the resource {resource}.", + "Activity": "Activity", + "Load more activities": "Load more activities", + "You created the discussion {discussion}.": "You created the discussion {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} created the discussion {discussion}.", + "You replied to the discussion {discussion}.": "You replied to the discussion {discussion}.", + "{profile} replied to the discussion {discussion}.": "{profile} replied to the discussion {discussion}.", + "You renamed the discussion from {old_discussion} to {discussion}.": "You renamed the discussion from {old_discussion} to {discussion}.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} renamed the discussion from {old_discussion} to {discussion}.", + "You archived the discussion {discussion}.": "You archived the discussion {discussion}.", + "{profile} archived the discussion {discussion}.": "{profile} archived the discussion {discussion}.", + "You deleted the discussion {discussion}.": "You deleted the discussion {discussion}.", + "{profile} deleted the discussion {discussion}.": "{profile} deleted the discussion {discussion}.", + "You created the group {group}.": "You created the group {group}.", + "{profile} created the group {group}.": "{profile} created the group {group}.", + "You updated the group {group}.": "You updated the group {group}.", + "{profile} updated the group {group}.": "{profile} updated the group {group}.", + "{old_group_name} was renamed to {group}.": "{old_group_name} was renamed to {group}.", + "Visibility was set to private.": "Visibility was set to private.", + "Visibility was set to public.": "Visibility was set to public.", + "Visibility was set to an unknown value.": "Visibility was set to an unknown value.", + "The group can now only be joined with an invite.": "The group can now only be joined with an invite.", + "The group can now be joined by anyone.": "The group can now be joined by anyone.", + "Unknown value for the openness setting.": "Unknown value for the openness setting.", + "The group's physical address was changed.": "The group's physical address was changed.", + "The group's avatar was changed.": "The group's avatar was changed.", + "The group's banner was changed.": "The group's banner was changed.", + "The group's short description was changed.": "The group's short description was changed.", + "No information": "No information", + "@{username}'s follow request was accepted": "@{username}'s follow request was accepted", + "Delete this discussion": "Delete this discussion", + "Are you sure you want to delete this entire discussion?": "Are you sure you want to delete this entire discussion?", + "Delete discussion": "Delete discussion", + "All activities": "All activities", + "From yourself": "From yourself", + "By others": "By others", + "You posted a comment on the event {event}.": "You posted a comment on the event {event}.", + "{profile} posted a comment on the event {event}.": "{profile} posted a comment on the event {event}.", + "You replied to a comment on the event {event}.": "You replied to a comment on the event {event}.", + "{profile} replied to a comment on the event {event}.": "{profile} replied to a comment on the event {event}.", + "New post": "New post", + "Comment text can't be empty": "Comment text can't be empty", + "Notifications": "Notifications", + "Profile feeds": "Profile feeds", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.", + "Regenerate new links": "Regenerate new links", + "Create new links": "Create new links", + "You'll need to change the URLs where there were previously entered.": "You'll need to change the URLs where there were previously entered.", + "Personal feeds": "Personal feeds", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.", + "The event will show as attributed to this profile.": "The event will show as attributed to this profile.", + "You may show some members as contacts.": "You may show some members as contacts.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "The selected picture is too heavy. You need to select a file smaller than {size}.", + "Unable to create the group. One of the pictures may be too heavy.": "Unable to create the group. One of the pictures may be too heavy.", + "Unable to update the profile. The avatar picture may be too heavy.": "Unable to update the profile. The avatar picture may be too heavy.", + "Unable to create the profile. The avatar picture may be too heavy.": "Unable to create the profile. The avatar picture may be too heavy.", + "Error while loading the preview": "Error while loading the preview", + "Instance feeds": "Instance feeds", + "{moderator} suspended group {profile}": "{moderator} suspended group {profile}", + "{moderator} has unsuspended group {profile}": "{moderator} has unsuspended group {profile}", + "{moderator} has done an unknown action": "{moderator} has done an unknown action", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} has deleted a comment from {author} under the event {event}", + "{moderator} has deleted a comment from {author}": "{moderator} has deleted a comment from {author}", + "You are offline": "You are offline", + "Create a new profile": "Create a new profile", + "Edit profile {profile}": "Edit profile {profile}", + "Identities": "Identities", + "Profile": "Profile", + "Register": "Register", + "No members found": "No members found", + "No organized events found": "No organized events found", + "Error while suspending group": "Error while suspending group", + "Triggered profile refreshment": "Triggered profile refreshment", + "No organized events listed": "No organized events listed", + "No participations listed": "No participations listed", + "{number} memberships": "{number} memberships", + "Group": "Group", + "No memberships found": "No memberships found", + "No group matches the filters": "No group matches the filters", + "{group} events": "{group} events", + "Interact with a remote content": "Interact with a remote content", + "Page not found": "Page not found", + "{folder} - Resources": "{folder} - Resources", + "General settings": "General settings", + "Notify participants": "Notify participants", + "Browser notifications": "Browser notifications", + "Notification settings": "Notification settings", + "Select the activities for which you wish to receive an email or a push notification.": "Select the activities for which you wish to receive an email or a push notification.", + "Push": "Push", + "Mentions": "Mentions", + "I've been mentionned in a comment under an event": "I've been mentionned in a comment under an event", + "I've been mentionned in a group discussion": "I've been mentionned in a group discussion", + "An event I'm going to has been updated": "An event I'm going to has been updated", + "An event I'm going to has posted an announcement": "An event I'm going to has posted an announcement", + "An event I'm organizing has a new pending participation": "An event I'm organizing has a new pending participation", + "An event I'm organizing has a new participation": "An event I'm organizing has a new participation", + "An event I'm organizing has a new comment": "An event I'm organizing has a new comment", + "Group activity": "Group activity", + "An event from one of my groups has been published": "An event from one of my groups has been published", + "An event from one of my groups has been updated or deleted": "An event from one of my groups has been updated or deleted", + "A discussion has been created or updated": "A discussion has been created or updated", + "A post has been published": "A post has been published", + "A post has been updated": "A post has been updated", + "A resource has been created or updated": "A resource has been created or updated", + "A member requested to join one of my groups": "A member requested to join one of my groups", + "A member has been updated": "A member has been updated", + "User settings": "User settings", + "You changed your email or password": "You changed your email or password", + "Move resource to the root folder": "Move resource to the root folder", + "Share this group": "Share this group", + "This group is accessible only through it's link. Be careful where you post this link.": "This group is accessible only through it's link. Be careful where you post this link.", + "{count} members": "No members|One member|{count} members", + "Share": "Share", + "Update app": "Update app", + "Ignore": "Ignore", + "A new version is available.": "A new version is available.", + "An error has occured while refreshing the page.": "An error has occured while refreshing the page.", + "Join group {group}": "Join group {group}", + "Public preview": "Public preview", + "On {instance} and other federated instances": "On {instance} and other federated instances", + "Error while subscribing to push notifications": "Error while subscribing to push notifications", + "Unsubscribe to browser push notifications": "Unsubscribe to browser push notifications", + "Activate browser push notifications": "Activate browser push notifications", + "You can't use push notifications in this browser.": "You can't use push notifications in this browser.", + "Send notification e-mails": "Send notification e-mails", + "Announcements and mentions notifications are always sent straight away.": "Announcements and mentions notifications are always sent straight away.", + "Weekly email summary": "Weekly email summary", + "Receive one email for each activity": "Receive one email for each activity", + "Error while updating participation status inside this browser": "Error while updating participation status inside this browser", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.", + "This instance hasn't got push notifications enabled.": "This instance hasn't got push notifications enabled.", + "enable the feature": "enable the feature", + "Ask your instance admin to {enable_feature}.": "Ask your instance admin to {enable_feature}.", + "Event URL": "Event URL", + "Copy URL to clipboard": "Copy URL to clipboard", + "Group URL": "Group URL", + "View less": "View less", + "View more": "View more", + "Breadcrumbs": "Breadcrumbs", + "Other actions": "Other actions", + "Only group moderators can create, edit and delete events.": "Only group moderators can create, edit and delete events.", + "+ Create a post": "+ Create a post", + "Edited {relative_time} ago": "Edited {relative_time} ago", + "Members-only post": "Members-only post", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.", + "Find or add an element": "Find or add an element", + "e.g. Accessibility, Twitch, PeerTube": "e.g. Accessibility, Twitch, PeerTube", + "Add new…": "Add new…", + "No results for {search}": "No results for {search}", + "Wheelchair accessibility": "Wheelchair accessibility", + "Whether the event is accessible with a wheelchair": "Whether the event is accessible with a wheelchair", + "Not accessible with a wheelchair": "Not accessible with a wheelchair", + "Partially accessible with a wheelchair": "Partially accessible with a wheelchair", + "Fully accessible with a wheelchair": "Fully accessible with a wheelchair", + "Smoke free": "Smoke free", + "Whether smoking is prohibited during the event": "Whether smoking is prohibited during the event", + "Smoking allowed": "Smoking allowed", + "YouTube replay": "YouTube replay", + "The URL where the event live can be watched again after it has ended": "The URL where the event live can be watched again after it has ended", + "Twitch replay": "Twitch replay", + "PeerTube replay": "PeerTube replay", + "PeerTube live": "PeerTube live", + "The URL where the event can be watched live": "The URL where the event can be watched live", + "Twitch live": "Twitch live", + "YouTube live": "YouTube live", + "Event metadata": "Event metadata", + "Framadate poll": "Framadate poll", + "The URL of a poll where the choice for the event date is happening": "The URL of a poll where the choice for the event date is happening", + "View account on {hostname} (in a new window)": "View account on {hostname} (in a new window)", + "Twitter account": "Twitter account", + "A twitter account handle to follow for event updates": "A twitter account handle to follow for event updates", + "Fediverse account": "Fediverse account", + "A fediverse account URL to follow for event updates": "A fediverse account URL to follow for event updates", + "Element title": "Element title", + "Element value": "Element value", + "Subtitles": "Subtitles", + "Whether the event live video is subtitled": "Whether the event live video is subtitled", + "The event live video contains subtitles": "The event live video contains subtitles", + "The event live video does not contain subtitles": "The event live video does not contain subtitles", + "Sign Language": "Sign Language", + "Whether the event is interpreted in sign language": "Whether the event is interpreted in sign language", + "The event has a sign language interpreter": "The event has a sign language interpreter", + "The event hasn't got a sign language interpreter": "The event hasn't got a sign language interpreter", + "Online ticketing": "Online ticketing", + "An URL to an external ticketing platform": "An URL to an external ticketing platform", + "Price sheet": "Price sheet", + "A link to a page presenting the price options": "A link to a page presenting the price options", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Integrate this event with 3rd-party tools and show metadata for the event.", + "This URL doesn't seem to be valid": "This URL doesn't seem to be valid", + "Schedule": "Schedule", + "A link to a page presenting the event schedule": "A link to a page presenting the event schedule", + "Accessibility": "Accessibility", + "Live": "Live", + "Replay": "Replay", + "Tools": "Tools", + "Social": "Social", + "Details": "Details", + "Booking": "Booking", + "Filter by profile or group name": "Filter by profile or group name", + "Filter by name": "Filter by name", + "Redirecting in progress…": "Redirecting in progress…", + "Zoom in": "Zoom in", + "Zoom out": "Zoom out", + "Show me where I am": "Show me where I am", + "Video Conference": "Video Conference", + "Jitsi Meet": "Jitsi Meet", + "The Jitsi Meet video teleconference URL": "The Jitsi Meet video teleconference URL", + "Zoom": "Zoom", + "The Zoom video teleconference URL": "The Zoom video teleconference URL", + "Microsoft Teams": "Microsoft Teams", + "The Microsoft Teams video teleconference URL": "The Microsoft Teams video teleconference URL", + "Google Meet": "Google Meet", + "The Google Meet video teleconference URL": "The Google Meet video teleconference URL", + "Big Blue Button": "Big Blue Button", + "The Big Blue Button video teleconference URL": "The Big Blue Button video teleconference URL", + "Etherpad notes": "Etherpad notes", + "The URL of a pad where notes are being taken collaboratively": "The URL of a pad where notes are being taken collaboratively", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/some-secret-token", + "Failed to get location.": "Failed to get location.", + "The geolocation prompt was denied.": "The geolocation prompt was denied.", + "Your position was not available.": "Your position was not available.", + "Geolocation was not determined in time.": "Geolocation was not determined in time.", + "Underline": "Underline", + "Heading Level 1": "Heading Level 1", + "Heading Level 2": "Heading Level 2", + "Heading Level 3": "Heading Level 3", + "Add link": "Add link", + "Remove link": "Remove link", + "Add picture": "Add picture", + "Bullet list": "Bullet list", + "Ordered list": "Ordered list", + "Quote": "Quote", + "Undo": "Undo", + "Redo": "Redo", + "Clear address field": "Clear address field", + "Filter": "Filter", + "Choose the source of the instance's Terms": "Choose the source of the instance's Terms", + "Choose the source of the instance's Privacy Policy": "Choose the source of the instance's Privacy Policy", + "Update discussion title": "Update discussion title", + "Cancel discussion title edition": "Cancel discussion title edition", + "Previous month": "Previous month", + "When the event is private, you'll need to share the link around.": "When the event is private, you'll need to share the link around.", + "Decrease": "Decrease", + "Increase": "Increase", + "Who can post a comment?": "Who can post a comment?", + "Does the event needs to be confirmed later or is it cancelled?": "Does the event needs to be confirmed later or is it cancelled?", + "When the post is private, you'll need to share the link around.": "When the post is private, you'll need to share the link around.", + "Reset": "Reset", + "Local time ({timezone})": "Local time ({timezone})", + "Local times ({timezone})": "Local times ({timezone})", + "Time in your timezone ({timezone})": "Time in your timezone ({timezone})", + "Export": "Export", + "Times in your timezone ({timezone})": "Times in your timezone ({timezone})", + "Comment body": "Comment body", + "Event description body": "Event description body", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.", + "Clear timezone field": "Clear timezone field", + "Group description body": "Group description body", + "Moderation logs": "Moderation logs", + "Post body": "Post body", + "{group} posts": "{group} posts", + "{group}'s todolists": "{group}'s todolists", + "Validating email": "Validating email", + "Redirecting to Mobilizon": "Redirecting to Mobilizon", + "Reset password": "Reset password", + "First steps": "First steps", + "Validating account": "Validating account", + "Navigated to {pageTitle}": "Navigated to {pageTitle}", + "Confirm participation": "Confirm participation", + "Participation with account": "Participation with account", + "Participation without account": "Participation without account", + "Unlogged participation": "Unlogged participation", + "Discussions list": "Discussions list", + "Create discussion": "Create discussion", + "Tag search": "Tag search", + "Homepage": "Homepage", + "About instance": "About instance", + "Privacy": "Privacy", + "Interact": "Interact", + "Account settings": "Account settings", + "Admin dashboard": "Admin dashboard", + "Admin settings": "Admin settings", + "Group profiles": "Group profiles", + "Reports list": "Reports list", + "Create identity": "Create identity", + "Resent confirmation email": "Resent confirmation email", + "Send password reset": "Send password reset", + "Email validate": "Email validate", + "Skip to main content": "Skip to main content", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "Back to top": "Back to top", + "Powered by Mobilizon": "Powered by Mobilizon", + "The event is fully online": "The event is fully online", + "Follow": "Follow", + "Cancel follow request": "Cancel follow request", + "Unfollow": "Unfollow", + "your notification settings": "your notification settings", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "You will receive notifications about this group's public activity depending on %{notification_settings}.", + "Online": "Online", + "That you follow or of which you are a member": "That you follow or of which you are a member", + "{number} seats left": "No seat left|One seat left|{number} seats left", + "Published by {name}": "Published by {name}", + "Share this post": "Share this post", + "This post is accessible only through it's link. Be careful where you post this link.": "This post is accessible only through it's link. Be careful where you post this link.", + "Post URL": "Post URL", + "Are you sure you want to delete this post? This action cannot be reverted.": "Are you sure you want to delete this post? This action cannot be reverted.", + "Attending": "Attending", + "From my groups": "From my groups", + "You don't have any upcoming events. Maybe try another filter?": "You don't have any upcoming events. Maybe try another filter?", + "Leave group": "Leave group", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.", + "Upcoming events from your groups": "Upcoming events from your groups", + "Accessible only by link": "Accessible only by link", + "Report this post": "Report this post", + "Post {eventTitle} reported": "Post {eventTitle} reported", + "You have attended {count} events in the past.": "You have not attended any events in the past.|You have attended one event in the past.|You have attended {count} events in the past.", + "Showing events starting on": "Showing events starting on", + "Showing events before": "Showing events before", + "Clear date filter field": "Clear date filter field", + "{count} members or followers": "No members or followers|One member or follower|{count} members or followers", + "This profile is from another instance, the informations shown here may be incomplete.": "This profile is from another instance, the informations shown here may be incomplete.", + "View full profile": "View full profile", + "Any type": "Any type", + "In person": "In person", + "In the past": "In the past", + "Only registered users may fetch remote events from their URL.": "Only registered users may fetch remote events from their URL.", + "Moderate new members": "Moderate new members", + "Anyone can request being a member, but an administrator needs to approve the membership.": "Anyone can request being a member, but an administrator needs to approve the membership.", + "Cancel membership request": "Cancel membership request", + "group's upcoming public events": "group's upcoming public events", + "access to the group's private content as well": "access to the group's private content as well", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "The group can now be joined by anyone, but new members need to be approved by an administrator.", + "You approved {member}'s membership.": "You approved {member}'s membership.", + "Your membership was approved by {profile}.": "Your membership was approved by {profile}.", + "{profile} approved {member}'s membership.": "{profile} approved {member}'s membership.", + "You rejected {member}'s membership request.": "You rejected {member}'s membership request.", + "{profile} rejected {member}'s membership request.": "{profile} rejected {member}'s membership request.", + "Send": "Send", + "Approve member": "Approve member", + "Reject member": "Reject member", + "The membership request from {profile} was rejected": "The membership request from {profile} was rejected", + "The member was approved": "The member was approved", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "Emails usually don't contain capitals, make sure you haven't made a typo.", + "To follow groups and be informed of their latest events": "To follow groups and be informed of their latest events", + "No group member found": "No group member found", + "This group was not found": "This group was not found", + "Back to group list": "Back to group list", + "This profile was not found": "This profile was not found", + "Back to profile list": "Back to profile list", + "This user was not found": "This user was not found", + "Back to user list": "Back to user list", + "Stop following instance": "Stop following instance", + "Follow instance": "Follow instance", + "Accept follow": "Accept follow", + "Reject follow": "Reject follow", + "This instance doesn't follow yours.": "This instance doesn't follow yours.", + "Only Mobilizon instances can be followed": "", + "Follow a new instance": "Follow a new instance", + "Follow status": "Follow status", + "All": "All", + "Following": "Following", + "Followed": "Followed", + "Followed, pending response": "Followed, pending response", + "Follows us": "Follows us", + "Follows us, pending approval": "Follows us, pending approval", + "No instance found.": "No instance found.", + "No instances match this filter. Try resetting filter fields?": "No instances match this filter. Try resetting filter fields?", + "You haven't interacted with other instances yet.": "You haven't interacted with other instances yet.", + "mobilizon-instance.tld": "mobilizon-instance.tld", + "Report status": "Report status", + "access the corresponding account": "access the corresponding account", + "Organized events": "Organized events", + "Memberships": "Memberships", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.", + "Total number of participations": "Total number of participations", + "Uploaded media total size": "Uploaded media total size", + "0 Bytes": "0 Bytes", + "Change email": "Change email", + "Confirm user": "Confirm user", + "Change role": "Change role", + "The user has been disabled": "The user has been disabled", + "This user doesn't have any profiles": "This user doesn't have any profiles", + "Edit user email": "Edit user email", + "Change user email": "Change user email", + "Previous email": "Previous email", + "Notify the user of the change": "Notify the user of the change", + "Change user role": "Change user role", + "Suspend the account?": "Suspend the account?", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Do you really want to suspend this account? All of the user's profiles will be deleted.", + "Suspend the account": "Suspend the account", + "No user matches the filter": "No user matches the filter", + "new{'@'}email.com": "new{'@'}email.com", + "Other users with the same email domain": "Other users with the same email domain", + "Other users with the same IP address": "Other users with the same IP address", + "IP Address": "IP Address", + "Last seen on": "Last seen on", + "No user matches the filters": "No user matches the filters", + "Reset filters": "Reset filters", + "Category": "Category", + "Select a category": "Select a category", + "Any category": "Any category", + "We collect your feedback and the error information in order to improve this service.": "We collect your feedback and the error information in order to improve this service.", + "What happened?": "What happened?", + "I've clicked on X, then on Y": "I've clicked on X, then on Y", + "Send feedback": "Send feedback", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.", + "return to the homepage": "return to the homepage", + "Thanks a lot, your feedback was submitted!": "Thanks a lot, your feedback was submitted!", + "You may also:": "You may also:", + "You may now close this page or {return_to_the_homepage}.": "You may now close this page or {return_to_the_homepage}.", + "This group is a remote group, it's possible the original instance has more informations.": "This group is a remote group, it's possible the original instance has more informations.", + "View the group profile on the original instance": "View the group profile on the original instance", + "View past events": "View past events", + "Get informed of the upcoming public events": "Get informed of the upcoming public events", + "Join": "Join", + "Become part of the community and start organizing events": "Become part of the community and start organizing events", + "Follow requests will be approved by a group moderator": "Follow requests will be approved by a group moderator", + "Follow request pending approval": "Follow request pending approval", + "Your membership is pending approval": "Your membership is pending approval", + "Activate notifications": "Activate notifications", + "Deactivate notifications": "Deactivate notifications", + "Membership requests will be approved by a group moderator": "Membership requests will be approved by a group moderator", + "Geolocate me": "Geolocate me", + "Events nearby {position}": "Events nearby {position}", + "View more events around {position}": "View more events around {position}", + "Popular groups nearby {position}": "Popular groups nearby {position}", + "View more groups around {position}": "View more groups around {position}", + "Photo by {author} on {source}": "Photo by {author} on {source}", + "Online upcoming events": "Online upcoming events", + "View more online events": "View more online events", + "Owncast": "Owncast", + "{count} events": "{count} events", + "Categories": "Categories", + "Category illustrations credits": "Category illustrations credits", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Illustration picture for “{category}” by {author} on {source} ({license})", + "View all categories": "View all categories", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "This instance, {instanceName}, hosts your profile, so remember its name.": "This instance, {instanceName}, hosts your profile, so remember its name.", + "Keyword, event title, group name, etc.": "Keyword, event title, group name, etc.", + "Go!": "Go!", + "Explore!": "Explore!", + "Select distance": "Select distance", + "Join {instance}, a Mobilizon instance": "Join {instance}, a Mobilizon instance", + "Open user menu": "Open user menu", + "Open main menu": "Open main menu", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.", + "Confirm": "Confirm", + "Published events with {comments} comments and {participations} confirmed participations": "Published events with {comments} comments and {participations} confirmed participations", + "Ex: someone{'@'}mobilizon.org": "Ex: someone{'@'}mobilizon.org", + "Group members": "Group members", + "e.g. Nantes, Berlin, Cork, …": "e.g. Nantes, Berlin, Cork, …", + "find, create and organise events": "find, create and organise events", + "tool designed to serve you": "tool designed to serve you", + "multitude of interconnected Mobilizon websites": "multitude of interconnected Mobilizon websites", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon is a tool that helps you {find_create_organize_events}.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.", + "translation": "", + "detail": "", + "Events close to you": "Events close to you", + "Popular groups close to you": "Popular groups close to you", + "View more events": "View more events", + "Hide filters": "Hide filters", + "Show filters": "Show filters", + "Online events": "Online events", + "Event date": "Event date", + "Distance": "Distance", + "{numberOfCategories} selected": "{numberOfCategories} selected", + "Event status": "Event status", + "Statuses": "Statuses", + "Languages": "Languages", + "{numberOfLanguages} selected": "{numberOfLanguages} selected", + "Apply filters": "Apply filters", + "Any distance": "Any distance", + "{number} kilometers": "{number} kilometers", + "The pad will be created on {service}": "The pad will be created on {service}", + "The calc will be created on {service}": "The calc will be created on {service}", + "The videoconference will be created on {service}": "The videoconference will be created on {service}", + "Search target": "Search target", + "In this instance's network": "In this instance's network", + "On the Fediverse": "On the Fediverse", + "Report reason": "Report reason", + "Reported content": "Reported content", + "No results found": "No results found", + "{eventsCount} events found": "No events found|One event found|{eventsCount} events found", + "{eventsCount} activities found": "No activities found|One activity found|{eventsCount} activities found", + "{groupsCount} groups found": "No groups found|One group found|{groupsCount} groups found", + "{resultsCount} results found": "No results found|On result found|{resultsCount} results found", + "Loading map": "Loading map", + "Sort by": "Sort by", + "Map": "Map", + "List": "List", + "Best match": "Best match", + "Most recently published": "Most recently published", + "Least recently published": "Least recently published", + "With the most participants": "With the most participants", + "Number of members": "Number of members", + "More options": "More options", + "Reported by someone anonymously": "Reported by someone anonymously", + "Back to homepage": "Back to homepage", + "Category list": "Category list", + "No categories with public upcoming events on this instance were found.": "No categories with public upcoming events on this instance were found.", + "Theme": "Theme", + "Adapt to system theme": "Adapt to system theme", + "Light": "Light", + "Dark": "Dark", + "Write a new comment": "Write a new comment", + "Write a new reply": "Write a new reply", + "Write a new message": "Write a new message", + "Write something": "Write something", + "Message body": "Message body", + "Describe your event": "Describe your event", + "A few lines about your group": "A few lines about your group", + "Write your post": "Write your post", + "Suggestions:": "Suggestions:", + "Make sure that all words are spelled correctly.": "Make sure that all words are spelled correctly.", + "Try different keywords.": "Try different keywords.", + "Try more general keywords.": "Try more general keywords.", + "Try fewer keywords.": "Try fewer keywords.", + "Change the filters.": "Change the filters.", + "No results found for {search}": "No results found for {search}", + "No events found for {search}": "No events found for {search}", + "No groups found for {search}": "No groups found for {search}", + "No event found at this address": "No event found at this address", + "I have an account on {instance}.": "I have an account on {instance}.", + "profile{'@'}instance": "profile{'@'}instance", + "My federated identity ends in {domain}": "My federated identity ends in {domain}", + "Close map": "Close map", + "On foot": "On foot", + "By bike": "By bike", + "By transit": "By transit", + "By car": "By car", + "Select all resources": "Select all resources", + "Select this resource": "Select this resource", + "You can add resources by using the button above.": "You can add resources by using the button above.", + "{user}'s follow request was accepted": "{user}'s follow request was accepted", + "{user}'s follow request was rejected": "{user}'s follow request was rejected", + "Report as spam": "Report as spam", + "Report as ham": "Report as ham", + "Report as undetected spam": "Report as undetected spam", + "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.": "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.", + "Submit to Akismet": "Submit to Akismet", + "Autorize this application to access your account?": "Autorize this application to access your account?", + "This application will be able to access all of your informations and post content. Make sure you only approve applications you trust.": "This application will be able to access all of your informations and post content. Make sure you only approve applications you trust.", + "Authorize application": "Authorize application", + "Authorize": "Authorize", + "You'll be able to revoke access for this application in your account settings.": "You'll be able to revoke access for this application in your account settings.", + "Read all of your account's data": "Read all of your account's data", + "This application will be allowed to see all of your events organized, the events you participate to, …": "", + "Modify all of your account's data": "Modify all of your account's data", + "This application will be allowed to publish events, participate to events": "", + "Publish events": "Publish events", + "This application will be allowed to publish events": "This application will be allowed to publish events", + "Update events": "Update events", + "This application will be allowed to update events": "This application will be allowed to update events", + "Delete events": "Delete events", + "This application will be allowed to delete events": "This application will be allowed to delete events", + "Upload media": "Upload media", + "This application will be allowed to upload media": "This application will be allowed to upload media", + "Remove uploaded media": "Remove uploaded media", + "This application will be allowed to remove uploaded media": "This application will be allowed to remove uploaded media", + "Publish group posts": "Publish group posts", + "This application will be allowed to publish group posts": "This application will be allowed to publish group posts", + "Update group posts": "Update group posts", + "This application will be allowed to update group posts": "This application will be allowed to update group posts", + "Delete group posts": "Delete group posts", + "This application will be allowed to delete group posts": "This application will be allowed to delete group posts", + "Access your group's resources": "Access your group's resources", + "This application will be allowed to access all of the groups you're a member of": "This application will be allowed to access all of the groups you're a member of", + "Create group resources": "Create group resources", + "This application will be allowed to create resources in all of the groups you're a member of": "This application will be allowed to create resources in all of the groups you're a member of", + "Update group resources": "Update group resources", + "This application will be allowed to update resources in all of the groups you're a member of": "This application will be allowed to update resources in all of the groups you're a member of", + "Delete group resources": "Delete group resources", + "This application will be allowed to delete resources in all of the groups you're a member of": "This application will be allowed to delete resources in all of the groups you're a member of", + "Access group events": "Access group events", + "This application will be allowed to list and access group events in all of the groups you're a member of": "This application will be allowed to list and access group events in all of the groups you're a member of", + "Access group discussions": "Access group discussions", + "This application will be allowed to list and access group discussions in all of the groups you're a member of": "This application will be allowed to list and access group discussions in all of the groups you're a member of", + "Access group members": "Access group members", + "This application will be allowed to list group members in all of the groups you're a member of": "This application will be allowed to list group members in all of the groups you're a member of", + "Access group followers": "Access group followers", + "This application will be allowed to list group followers in all of the groups you're a member of": "This application will be allowed to list group followers in all of the groups you're a member of", + "Access group activities": "Access group activities", + "This application will be allowed to access group activities in all of the groups you're a member of": "This application will be allowed to access group activities in all of the groups you're a member of", + "Access group todo-lists": "Access group todo-lists", + "This application will be allowed to list and access group todo-lists in all of the groups you're a member of": "This application will be allowed to list and access group todo-lists in all of the groups you're a member of", + "Manage group memberships": "Manage group memberships", + "This application will be allowed to join and leave groups": "This application will be allowed to join and leave groups", + "Manage group members": "Manage group members", + "This application will be allowed to manage group members in all of the groups you're a member of": "This application will be allowed to manage group members in all of the groups you're a member of", + "Access organized events": "Access organized events", + "This application will be allowed to list and view your organized events": "This application will be allowed to list and view your organized events", + "Access participations": "Access participations", + "This application will be allowed to list and view the events you're participating to": "This application will be allowed to list and view the events you're participating to", + "Access group memberships": "Access group memberships", + "This application will be allowed to list and view the groups you're a member of": "This application will be allowed to list and view the groups you're a member of", + "Access followed groups": "Access followed groups", + "This application will be allowed to list and view the groups you're following": "This application will be allowed to list and view the groups you're following", + "Create new profiles": "Create new profiles", + "This application will be allowed to create new profiles for your account": "This application will be allowed to create new profiles for your account", + "Update profiles": "Update profiles", + "This application will be allowed to update your profiles": "This application will be allowed to update your profiles", + "Delete profiles": "Delete profiles", + "This application will be allowed to delete your profiles": "This application will be allowed to delete your profiles", + "Post comments": "Post comments", + "This application will be allowed to post comments": "This application will be allowed to post comments", + "Update comments": "Update comments", + "This application will be allowed to update comments": "This application will be allowed to update comments", + "Delete comments": "Delete comments", + "This application will be allowed to delete comments": "This application will be allowed to delete comments", + "Create group discussions": "Create group discussions", + "This application will be allowed to create group discussions": "This application will be allowed to create group discussions", + "Update group discussions": "Update group discussions", + "This application will be allowed to update group discussions": "This application will be allowed to update group discussions", + "Delete group discussions": "Delete group discussions", + "This application will be allowed to delete group discussions": "This application will be allowed to delete group discussions", + "Create feed tokens": "Create feed tokens", + "This application will be allowed to create feed tokens": "This application will be allowed to create feed tokens", + "Delete feed tokens": "Delete feed tokens", + "This application will be allowed to delete feed tokens": "This application will be allowed to delete feed tokens", + "Manage event participations": "Manage event participations", + "This application will be allowed to manage events participations": "This application will be allowed to manage events participations", + "Manage activity settings": "Manage activity settings", + "This application will be allowed to manage your account activity settings": "This application will be allowed to manage your account activity settings", + "Manage push notification settings": "Manage push notification settings", + "This application will be allowed to manage your account push notification settings": "This application will be allowed to manage your account push notification settings", + "Apps": "Apps", + "Device activation": "Device activation", + "Application not found": "Application not found", + "The provided application was not found.": "The provided application was not found.", + "Your application code": "Your application code", + "You need to provide the following code to your application. It will only be valid for a few minutes.": "You need to provide the following code to your application. It will only be valid for a few minutes.", + "Enter the code displayed on your device": "Enter the code displayed on your device", + "Continue": "Continue", + "The device code is incorrect or no longer valid.": "The device code is incorrect or no longer valid.", + "These apps can access your account through the API. If you see here apps that you don't recognize, that don't work as expected or that you don't use anymore, you can revoke their access.": "These apps can access your account through the API. If you see here apps that you don't recognize, that don't work as expected or that you don't use anymore, you can revoke their access.", + "Last used on {last_used_date}": "Last used on {last_used_date}", + "Never used": "Never used", + "Authorized on {authorization_date}": "Authorized on {authorization_date}", + "Revoke": "Revoke", + "Application was revoked": "Application was revoked", + "Create a new metadata element": "Create a new metadata element", + "You can put any arbitrary content in this element. URLs will be clickable.": "You can put any arbitrary content in this element. URLs will be clickable.", + "You can try another search term or add the address details manually below.": "You can try another search term or add the address details manually below.", + "Manually enter address": "Manually enter address", + "You can drag and drop the marker below to the desired location": "You can drag and drop the marker below to the desired location", + "This application didn't ask for known permissions. It's likely the request is incorrect.": "This application didn't ask for known permissions. It's likely the request is incorrect.", + "This application asks for the following permissions:": "This application asks for the following permissions:", + "This application will be allowed to see all of your events organized, the events you participate to, as well as every data from your groups.": "This application will be allowed to see all of your events organized, the events you participate to, as well as every data from your groups.", + "This application will be allowed to publish and manage events, post and manage comments, participate to events, manage all of your groups, including group events, resources, posts and discussions. It will also be allowed to manage your account and profile settings.": "This application will be allowed to publish and manage events, post and manage comments, participate to events, manage all of your groups, including group events, resources, posts and discussions. It will also be allowed to manage your account and profile settings.", + "No apps authorized yet": "No apps authorized yet", + "You have been logged-out": "You have been logged-out", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.", + "Announcements": "Announcements", + "Application authorized": "Application authorized", + "Check your device to continue. You may now close this window.": "Check your device to continue. You may now close this window.", + "Participants to {eventTitle}": "Participants to {eventTitle}", + "Read user media": "Read user media", + "This application will be allowed to list the media you've uploaded": "This application will be allowed to list the media you've uploaded", + "Read user settings": "Read user settings", + "This application will be allowed to access your user settings": "This application will be allowed to access your user settings", + "Read user activity settings": "Read user activity settings", + "This application will be allowed to access your user activity settings": "This application will be allowed to access your user activity settings", + "Read user participations": "Read user participations", + "Read user memberships": "Read user memberships", + "Access drafts events": "Access drafts events", + "This application will be allowed to list and view your draft events": "This application will be allowed to list and view your draft events", + "Access group suggested events": "Access group suggested events", + "This application will be allowed to list your suggested group events": "This application will be allowed to list your suggested group events", + "{profile} joined the the event {event}.": "{profile} joined the the event {event}.", + "You joined the event {event}.": "You joined the event {event}.", + "An anonymous profile joined the event {event}.": "An anonymous profile joined the event {event}.", + "Delete event and resolve report": "Delete event and resolve report", + "No content found": "No content found", + "Maybe the content was removed by the author or a moderator": "Maybe the content was removed by the author or a moderator", + "This will also resolve the report.": "This will also resolve the report.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator and ask them to edit their event instead.": "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator and ask them to edit their event instead.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Are you sure you want to delete this comment? This action cannot be undone.", + "Delete comment and resolve report": "Delete comment and resolve report", + "Delete comment": "Delete comment", + "Event deleted and report resolved": "Event deleted and report resolved", + "Event deleted": "Event deleted", + "Comment deleted and report resolved": "Comment deleted and report resolved", + "Comment under event {eventTitle}": "Comment under event {eventTitle}", + "Do you really want to suspend this profile? All of the profiles content will be deleted.": "Do you really want to suspend this profile? All of the profiles content will be deleted.", + "There will be no way to restore the profile's data!": "There will be no way to restore the profile's data!", + "Suspend the profile": "Suspend the profile", + "The following user's profiles will be deleted, with all their data:": "The following user's profiles will be deleted, with all their data:", + "Do you really want to suspend the account « {emailAccount} » ?": "Do you really want to suspend the account « {emailAccount} » ?", + "There will be no way to restore the user's data!": "There will be no way to restore the user's data!", + "User suspended and report resolved": "User suspended and report resolved", + "Profile suspended and report resolved": "Profile suspended and report resolved", + "{profileName} (suspended)": "{profileName} (suspended)", + "Reported by an unknown actor": "Reported by an unknown actor", + "Reported at": "Reported at", + "Updated at": "Updated at", + "Suspend the profile?": "Suspend the profile?", + "Go to booking": "Go to booking", + "External registration": "External registration", + "I want to manage the registration with an external provider": "I want to manage the registration with an external provider", + "External provider URL": "External provider URL", + "Members will also access private sections like discussions, resources and restricted posts.": "Members will also access private sections like discussions, resources and restricted posts.", + "With unknown participants": "With unknown participants", + "With {participants}": "With {participants}", + "Conversations": "Conversations", + "New private message": "New private message", + "There's no conversations yet": "There are no conversations yet", + "Open conversations": "Open conversations", + "List of conversations": "List of conversations", + "Conversation with {participants}": "Conversation with {participants}", + "Delete this conversation": "Delete this conversation", + "Are you sure you want to delete this entire conversation?": "Are you sure you want to delete this entire conversation?", + "This is a announcement from the organizers of event {event}. You can't reply to it, but you can send a private message to event organizers.": "This is a announcement from the organizers of event {event}. You can't reply to it, but you can send a private message to event organizers.", + "You have access to this conversation as a member of the {group} group": "You have access to this conversation as a member of the {group} group", + "Comment from an event announcement": "Comment from an event announcement", + "Comment from a private conversation": "Comment from a private conversation", + "I've been mentionned in a conversation": "I've been mentionned in a conversation", + "New announcement": "New announcement", + "This announcement will be send to all participants with the statuses selected below. They will not be allowed to reply to your announcement, but they can create a new conversation with you.": "This announcement will be send to all participants with the statuses selected below. They will not be allowed to reply to your announcement, but they can create a new conversation with you.", + "The following participants are groups, which means group members are able to reply to this conversation:": "The following participants are groups, which means group members are able to reply to this conversation:", + "Sent to {count} participants": "Sent to no participants|Sent to one participant|Sent to {count} participants", + "There's no announcements yet": "There's no announcements yet", + "Your participation is being cancelled": "Your participation is being cancelled", + "Error while cancelling your participation": "Error while cancelling your participation", + "Either your participation has already been cancelled, either the validation token is incorrect.": "Either your participation has already been cancelled, either the validation token is incorrect.", + "Your participation has been cancelled": "Your participation has been cancelled", + "Return to the event page": "Return to the event page", + "Cancel participation": "Cancel participation", + "Add a recipient": "Add a recipient", + "Announcements for {eventTitle}": "Announcements for {eventTitle}", + "Visit {instance_domain}": "Visit {instance_domain}", + "Software details: {software_details}": "Software details: {software_details}", + "Only instances with an application actor can be followed": "Only instances with an application actor can be followed", + "Domain or instance name": "Domain or instance name", + "You need to enter a text": "You need to enter a text", + "Error while adding tag: {error}": "Error while adding tag: {error}", + "From this instance only": "From this instance only" +}); diff --git a/res/locale/eo.js b/res/locale/eo.js new file mode 100644 index 0000000..6b454e6 --- /dev/null +++ b/res/locale/eo.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "", + "+ Create a post": "", + "+ Create an event": "", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Ergonomia, emancipa kaj etika ilo por kolekti, organizi kaj mobilizi.", + "A validation email was sent to {email}": "Konfirma retmesaĝo estis sendita al {retadreso}", + "API": "", + "Abandon editing": "Forlasu redaktadon", + "About": "Pri", + "About Mobilizon": "Pri Mobilizon", + "About anonymous participation": "", + "About instance": "", + "About this event": "Pri tiu evento", + "About this instance": "Pri tiu instanco", + "About {instance}": "", + "Accept": "", + "Accepted": "Akceptita", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "Konto", + "Account settings": "", + "Actions": "", + "Activate browser push notifications": "", + "Activated": "", + "Active": "", + "Activity": "", + "Actor": "", + "Add": "Aldoni", + "Add / Remove…": "", + "Add a contact": "", + "Add a new post": "", + "Add a note": "Aldoni noton", + "Add a todo": "", + "Add an address": "Aldoni adreson", + "Add an instance": "Aldonu instancon", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "Aldoni etikedojn", + "Add to my calendar": "Ligi al mia kalendaro", + "Additional comments": "Pliajn komentojn", + "Admin": "Administranto", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "Administraj agordoj sukcese konservitaj.", + "Administration": "Administrado", + "Administrator": "", + "All activities": "", + "All good, let's continue!": "", + "All the places have already been taken": "Ĉiu loko estas jam prenita", + "Allow all comments from users with accounts": "", + "Allow registrations": "Permesu registriĝon", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "Anonima partoprenanto", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Anonimaj partoprenantoj estos petataj konfirmi sian partoprenon per retpoŝto.", + "Anonymous participations": "Anonimaj partoprenantoj", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Ĉu Vi vere estas certa, ke Vi forigas Vian tutan konton? Vi perdas ĉion per tio. Identaĵoj, agordoj, kreitaj eventoj, mesaĝoj kaj partoprenaĵoj estas poste perdita.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "Ĉu Vi estas certa, ke Vi volas forigi tiun komenton? Tiu akcio ne estas malfarebla.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Ĉu Vi estas certa, ke Vi volas forigi tiun eventon? Tiu akcio ne estas malfarebla. Eble Vi volus diskuti kun la evento-kreanto aŭ ŝanĝi ĝian eventon anstataŭ.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "", + "Are you sure you want to cancel your participation at event \"{title}\"?": "", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "", + "Back to group list": "", + "Back to previous page": "", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "", + "Before you can login, you need to click on the link inside it to validate your account.": "", + "Begins on": "", + "Big Blue Button": "", + "Bold": "", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "", + "By {group}": "", + "By {username}": "", + "Can be an email or a link, or just plain text.": "", + "Cancel": "", + "Cancel anonymous participation": "", + "Cancel creation": "", + "Cancel discussion title edition": "", + "Cancel edition": "Nuligu eldonon", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "", + "Cancel my participation…": "", + "Cancelled": "", + "Cancelled: Won't happen": "", + "Change": "", + "Change my email": "", + "Change my identity…": "", + "Change my password": "", + "Change timezone": "", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "", + "Clear": "", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "", + "Click to upload": "Alklaku por alŝuti", + "Close": "Fermu", + "Close comments for all (except for admins)": "", + "Closed": "", + "Comment body": "", + "Comment deleted": "", + "Comment text can't be empty": "", + "Comments": "Komentoj", + "Comments are closed for everybody else.": "", + "Confirm my participation": "", + "Confirm my particpation": "", + "Confirm participation": "", + "Confirmed": "", + "Confirmed at": "", + "Confirmed: Will happen": "", + "Congratulations, your account is now created!": "", + "Contact": "", + "Continue editing": "", + "Cookies and Local storage": "", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "Lando", + "Create": "", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "", + "Create a new event": "", + "Create a new group": "", + "Create a new identity": "", + "Create a new list": "", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "", + "Create discussion": "", + "Create event": "", + "Create group": "kreu grupon", + "Create identity": "", + "Create my event": "", + "Create my group": "", + "Create my profile": "", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "", + "Current page": "", + "Custom": "", + "Custom URL": "", + "Custom text": "", + "Daily email summary": "", + "Dashboard": "", + "Date": "", + "Date and time": "", + "Date and time settings": "", + "Date parameters": "", + "Decline": "", + "Decrease": "", + "Default": "", + "Default Mobilizon privacy policy": "", + "Default Mobilizon terms": "", + "Delete": "", + "Delete account": "", + "Delete conversation": "", + "Delete discussion": "", + "Delete event": "", + "Delete everything": "", + "Delete group": "", + "Delete my account": "", + "Delete post": "", + "Delete this discussion": "", + "Delete this identity": "", + "Delete your identity": "", + "Delete {eventTitle}": "", + "Delete {preferredUsername}": "", + "Deleting comment": "", + "Deleting event": "", + "Deleting my account will delete all of my identities.": "", + "Deleting your Mobilizon account": "", + "Demote": "", + "Description": "", + "Details": "", + "Didn't receive the instructions?": "", + "Disabled": "", + "Discussions": "", + "Discussions list": "", + "Display name": "", + "Display participation price": "", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "", + "Draft": "", + "Drafts": "", + "Due on": "", + "Duplicate": "", + "Edit": "", + "Edit post": "", + "Edit profile {profile}": "", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "", + "Either on the {instance} instance or on another instance.": "", + "Either the account is already validated, either the validation token is incorrect.": "", + "Either the email has already been changed, either the validation token is incorrect.": "", + "Either the participation request has already been validated, either the validation token is incorrect.": "", + "Element title": "", + "Element value": "", + "Email": "", + "Email address": "", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "", + "Ends on…": "", + "Enter the link URL": "", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "", + "Error details copied!": "", + "Error message": "", + "Error stacktrace": "", + "Error while changing email": "", + "Error while loading the preview": "", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "", + "Error while validating participation request": "", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "", + "Event URL": "", + "Event already passed": "", + "Event cancelled": "", + "Event creation": "", + "Event description body": "", + "Event edition": "", + "Event list": "", + "Event metadata": "", + "Event page settings": "", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "", + "Event {eventTitle} deleted": "", + "Event {eventTitle} reported": "", + "Events": "", + "Events nearby": "", + "Events tagged with {tag}": "", + "Everything": "", + "Ex: mobilizon.fr": "", + "Ex: someone@mobilizon.org": "", + "Explore": "", + "Explore events": "", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "", + "Featured events": "", + "Federated Group Name": "", + "Federation": "", + "Fediverse account": "", + "Fetch more": "", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "", + "Find an instance": "", + "Find another instance": "", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "", + "Followers": "", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "", + "Forgot your password ?": "", + "Forgot your password?": "", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "", + "From the {startDate} to the {endDate}": "", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "", + "General": "", + "General information": "", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "", + "Getting there": "", + "Glossary": "", + "Go": "", + "Go to the event page": "", + "Google Meet": "", + "Group": "", + "Group Followers": "", + "Group Members": "", + "Group URL": "", + "Group activity": "", + "Group address": "", + "Group description body": "", + "Group display name": "", + "Group name": "", + "Group profiles": "", + "Group settings": "", + "Group settings saved": "", + "Group short description": "", + "Group visibility": "", + "Group {displayName} created": "", + "Group {groupTitle} reported": "", + "Groups": "", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "", + "Hide replies": "", + "Home": "", + "Home to {number} users": "", + "Homepage": "", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "", + "I create an identity": "", + "I don't have a Mobilizon account": "", + "I have a Mobilizon account": "", + "I have an account on another Mobilizon instance.": "", + "I participate": "", + "I want to allow people to participate without an account.": "", + "I want to approve every participation request": "", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "", + "Identity {displayName} created": "", + "Identity {displayName} deleted": "", + "Identity {displayName} updated": "", + "If allowed by organizer": "", + "If an account with this email exists, we just sent another confirmation email to {email}": "", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "", + "Instance Long Description": "", + "Instance Name": "", + "Instance Privacy Policy": "", + "Instance Privacy Policy Source": "", + "Instance Privacy Policy URL": "", + "Instance Rules": "", + "Instance Short Description": "", + "Instance Slogan": "", + "Instance Terms": "", + "Instance Terms Source": "", + "Instance Terms URL": "", + "Instance administrator": "", + "Instance configuration": "", + "Instance feeds": "", + "Instance languages": "", + "Instance rules": "", + "Instance settings": "", + "Instances": "", + "Instances following you": "", + "Instances you follow": "", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "", + "Invite member": "", + "Invited": "", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "", + "Join group": "", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "", + "Language": "", + "Last IP adress": "", + "Last group created": "", + "Last published event": "", + "Last published events": "", + "Last sign-in": "", + "Last week": "", + "Latest posts": "", + "Learn more": "", + "Learn more about Mobilizon": "", + "Learn more about {instance}": "", + "Leave": "", + "Leave event": "", + "Leave group": "", + "Leaving event \"{title}\"": "", + "Legal": "", + "Let's define a few settings": "", + "License": "", + "Limited number of places": "", + "List title": "", + "Live": "", + "Load more": "", + "Load more activities": "", + "Loading comments…": "", + "Local": "", + "Local time ({timezone})": "", + "Locality": "", + "Location": "", + "Log in": "", + "Log out": "", + "Login": "", + "Login on Mobilizon!": "", + "Login on {instance}": "", + "Login status": "", + "Main languages you/your moderators speak": "", + "Manage participations": "", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "", + "Member": "", + "Members": "", + "Members-only post": "", + "Mentions": "", + "Message": "", + "Microsoft Teams": "", + "Mobilizon": "", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "", + "Moderated comments (shown after approval)": "", + "Moderation": "", + "Moderation log": "", + "Moderation logs": "", + "Moderator": "", + "Move": "", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "", + "My events": "", + "My groups": "", + "My identities": "", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "", + "Navigated to {pageTitle}": "", + "New discussion": "", + "New email": "", + "New folder": "", + "New link": "", + "New members": "", + "New note": "", + "New password": "", + "New post": "", + "New profile": "", + "Next": "", + "Next month": "", + "Next page": "", + "Next week": "", + "No address defined": "", + "No closed reports yet": "", + "No comment": "", + "No comments yet": "", + "No discussions yet": "", + "No end date": "", + "No events found": "", + "No follower matches the filters": "", + "No group found": "", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "", + "No information": "", + "No instance follows your instance yet.": "", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "", + "No member matches the filters": "", + "No members found": "", + "No memberships found": "", + "No message": "", + "No moderation logs yet": "", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "", + "No open reports yet": "", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "", + "No posts yet": "", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "", + "No results for {search}": "", + "No rules defined yet.": "", + "None": "", + "Not accessible with a wheelchair": "", + "Not approved": "", + "Not confirmed": "", + "Notes": "", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "", + "Notifications": "", + "Notifications for manually approved participations to an event": "", + "Notify participants": "", + "Now, create your first profile:": "", + "Number of places": "", + "OK": "", + "Old password": "", + "On {date}": "", + "On {date} ending at {endTime}": "", + "On {date} from {startTime} to {endTime}": "", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "", + "Open": "", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Opened reports": "", + "Or": "", + "Ordered list": "", + "Organized": "", + "Organized by": "", + "Organized by {name}": "", + "Organizer": "", + "Organizer notifications": "", + "Organizers": "", + "Other": "", + "Other actions": "", + "Other notification options:": "", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "", + "Page limited to my group (asks for auth)": "", + "Page not found": "", + "Parent folder": "", + "Partially accessible with a wheelchair": "", + "Participant": "", + "Participants": "", + "Participate": "", + "Participate using your email address": "", + "Participation approval": "", + "Participation confirmation": "", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "", + "Password (confirmation)": "", + "Password reset": "", + "Past events": "", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "", + "Pick an instance": "", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "", + "Please do not use it in any real way.": "Bonvolu ne uzi ĝin por vere.", + "Please enter your password to confirm this action.": "", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "", + "Post": "", + "Post URL": "", + "Post a comment": "", + "Post a reply": "", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "", + "Posts": "", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "", + "Preferences": "", + "Previous": "", + "Previous month": "", + "Previous page": "", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "", + "Privacy policy": "", + "Private event": "", + "Private feeds": "", + "Profile": "", + "Profile feeds": "", + "Profiles": "", + "Profiles and federation": "", + "Promote": "", + "Public": "", + "Public RSS/Atom Feed": "", + "Public comment moderation": "", + "Public event": "", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "", + "Publish": "", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "", + "Radius": "", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "", + "Register": "", + "Register an account on {instanceName}!": "", + "Register on this instance": "", + "Registration is allowed, anyone can register.": "", + "Registration is closed.": "", + "Registration is currently closed.": "", + "Registrations": "", + "Registrations are restricted by allowlisting.": "", + "Reject": "", + "Reject member": "", + "Rejected": "", + "Remember my participation in this browser": "", + "Remove": "", + "Remove link": "", + "Rename": "", + "Rename resource": "", + "Reopen": "", + "Replay": "", + "Reply": "", + "Report": "", + "Report #{reportNumber}": "", + "Report this comment": "", + "Report this event": "", + "Report this group": "", + "Report this post": "", + "Reported": "", + "Reported by": "", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "", + "Reported group": "", + "Reported identity": "", + "Reports": "", + "Reports list": "", + "Request for participation confirmation sent": "", + "Resend confirmation email": "", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "", + "Reset password": "", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "", + "Restricted": "", + "Return to the group page": "", + "Right now": "", + "Role": "", + "Rules": "", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "", + "Save": "", + "Save draft": "", + "Schedule": "", + "Search": "", + "Search events, groups, etc.": "", + "Searching…": "", + "Select a language": "", + "Select a radius": "", + "Select a timezone": "", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "", + "Send the report": "", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "", + "Share": "", + "Share this event": "", + "Share this group": "", + "Share this post": "", + "Short bio": "", + "Show map": "", + "Show me where I am": "", + "Show remaining number of places": "", + "Show the time when the event begins": "", + "Show the time when the event ends": "", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "", + "Sign up": "", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "", + "Status": "", + "Street": "", + "Submit": "", + "Subtitles": "", + "Suspend": "", + "Suspend group": "", + "Suspended": "", + "Tag search": "", + "Task lists": "", + "Technical details": "", + "Tentative": "", + "Tentative: Will be confirmed later": "", + "Terms": "", + "Terms of service": "", + "Text": "", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "", + "The event has been published": "", + "The event has been updated": "", + "The event has been updated and published": "", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "", + "The page you're looking for doesn't exist.": "", + "The password was successfully changed": "", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no discussions yet": "", + "These events may interest you": "", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "", + "This event has been cancelled.": "", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "", + "This weekend": "", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "", + "Timezone detected as {timezone}.": "", + "Title": "", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "", + "To create and manage your events": "", + "To create or join an group and start organizing with other people": "", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "", + "Today": "", + "Tomorrow": "", + "Tools": "", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "", + "Type or select a date…": "", + "URL": "", + "URL copied to clipboard": "", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "", + "Unknown actor": "", + "Unknown error.": "", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "", + "Upcoming events": "", + "Upcoming events from your groups": "", + "Update": "", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "", + "Update group": "", + "Update my event": "", + "Update post": "", + "Updated": "", + "Uploaded media size": "", + "Use my location": "", + "User": "", + "User settings": "", + "Username": "", + "Users": "", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "", + "View account on {hostname} (in a new window)": "", + "View all": "", + "View all events": "", + "View all posts": "", + "View event page": "", + "View everything": "", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "", + "Visible everywhere on the web (public)": "", + "Waiting for organization team approval.": "", + "Warning": "", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "", + "Website / URL": "", + "Weekly email summary": "", + "Welcome back {username}!": "", + "Welcome back!": "", + "Welcome to Mobilizon, {username}!": "", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Yesterday": "", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "", + "Your account has been validated": "", + "Your account is being validated": "", + "Your account is nearly ready, {username}": "", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "", + "Your email": "", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "", + "Your upcoming events": "", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "", + "[This comment has been deleted]": "", + "[deleted]": "", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "", + "contact uninformed": "", + "create a group": "", + "create an event": "", + "default Mobilizon privacy policy": "", + "default Mobilizon terms": "", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "", + "instance rules": "", + "more than 1360 contributors": "", + "profile@instance": "", + "report #{report_number}": "", + "return to the event's page": "", + "terms of service": "", + "with another identity…": "", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "", + "{number} members": "", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "", + "© The OpenStreetMap Contributors": "" +}); diff --git a/res/locale/es.js b/res/locale/es.js new file mode 100644 index 0000000..12be41c --- /dev/null +++ b/res/locale/es.js @@ -0,0 +1,1440 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Oculto)", + "(this folder)": "(esta carpeta)", + "(this link)": "(este enlace)", + "+ Add a resource": "+ Agregar un recurso", + "+ Create a post": "+ Crear una publicación", + "+ Create an event": "+ Crear un evento", + "+ Start a discussion": "+ Iniciar una discusión", + "0 Bytes": "0 Bytes", + "{contact} will be displayed as contact.": " {contact} se mostrará como contacto. |{contact}se mostrará como contactos.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "Se aceptó la solicitud de seguimiento de @{username}", + "@{username}'s follow request was rejected": "Se rechazó la solicitud de seguimiento de @{username}", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Una cookie es un pequeño archivo que contiene información que se envía a su computadora cuando visita un sitio web. Cuando vuelve a visitar el sitio, la cookie permite que ese sitio reconozca su navegador. Las cookies pueden almacenar preferencias del usuario y otra información. Puede configurar su navegador para rechazar todas las cookies. Sin embargo, esto puede provocar que algunas funciones o servicios del sitio web funcionen parcialmente. El almacenamiento local funciona de la misma manera, pero le permite almacenar más datos.", + "A discussion has been created or updated": "Se ha creado o actualizado una discusión", + "A federated software": "Un software federado", + "A fediverse account URL to follow for event updates": "Una URL de cuenta de fediverse a seguir para actualizaciones de eventos", + "A few lines about your group": "Unas líneas sobre tu grupo", + "A link to a page presenting the event schedule": "Un enlace a una página que presenta el calendario del evento", + "A link to a page presenting the price options": "Un enlace a una página que presenta las opciones de precio", + "A member has been updated": "Un miembro ha sido actualizado", + "A member requested to join one of my groups": "Un miembro solicitó unirse a uno de mis grupos", + "A new version is available.": "Una nueva version esta disponible.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Un lugar para su código de conducta, reglas o pautas. Puedes usar etiquetas HTML.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Un lugar para explicar quién es usted y las cosas que diferencian su instancia. Puedes usar etiquetas HTML.", + "A place to publish something to the whole world, your community or just your group members.": "Un lugar para publicar algo para todo el mundo, su comunidad o solo los miembros de su grupo.", + "A place to store links to documents or resources of any type.": "Un lugar para almacenar enlaces a documentos o recursos de cualquier tipo.", + "A post has been published": "Se ha publicado una publicación", + "A post has been updated": "Se ha actualizado una publicación", + "A practical tool": "Una herramienta práctica", + "A resource has been created or updated": "Traducción", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Un breve eslogan para la página de inicio de su instancia. El valor predeterminado es \"Reunir ⋅ Organizar ⋅ Movilizar\"", + "A twitter account handle to follow for event updates": "Un identificador de cuenta de Twitter a seguir para actualizaciones de eventos", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Una herramienta fácil de usar, emancipadora y ética, para reunir, organizar y movilizar.", + "A validation email was sent to {email}": "Un correo electrónico de confirmación fue enviado a {email}", + "API": "API", + "Abandon editing": "Abandonar la edición", + "About": "Acerca de", + "About Mobilizon": "Acerca de Mobilizon", + "About anonymous participation": "Sobre la participación anónima", + "About instance": "Acerca de la instancia", + "About this event": "Acerca este evento", + "About this instance": "Acerca de esta instancia", + "About {instance}": "Acerca de {instance}", + "Accept": "Aceptar", + "Accept follow": "Aceptar seguir", + "Accepted": "Aceptado", + "Accessibility": "Accesibilidad", + "Accessible only by link": "Accesible solo por enlace", + "Accessible only to members": "Accesible solo para miembros", + "Accessible through link": "Accesible a través del enlace", + "Account": "Cuenta", + "Account settings": "Configuración de la cuenta", + "Actions": "Acciones", + "Activate browser push notifications": "Activar notificaciones push del navegador", + "Activate notifications": "Activar notificaciones", + "Activated": "Activado", + "Active": "Activo", + "Activity": "Actividad", + "Actor": "Participante", + "Adapt to system theme": "Adaptarse al tema del sistema", + "Add": "Añadir", + "Add / Remove…": "Añadir / eliminar…", + "Add a contact": "Añade un contacto", + "Add a new post": "Agregar una nueva publicación", + "Add a note": "Añade una nota", + "Add a todo": "Agrega una tarea pendiente", + "Add an address": "Añade una dirección", + "Add an instance": "Añade una instancia", + "Add link": "Añadir enlace", + "Add new…": "Agregar nuevo…", + "Add picture": "Añade una foto", + "Add some tags": "Añade algunas etiquetas", + "Add to my calendar": "Añadir a mi calendario", + "Additional comments": "Comentarios adicionales", + "Admin": "Administrador", + "Admin dashboard": "Panel de administración", + "Admin settings": "Ajustes de administración", + "Admin settings successfully saved.": "Ajustes de administración guardados correctamente.", + "Administration": "Administración", + "Administrator": "Administrador", + "All": "Todos", + "All activities": "Todas las actividades", + "All good, let's continue!": "Todo bien ¡continuemos!", + "All the places have already been taken": "Todos los lugares ya han sido ocupados", + "Allow all comments from users with accounts": "Permitir todos los comentarios de los usuarios registrados", + "Allow registrations": "Permitir registros", + "An URL to an external ticketing platform": "Una URL a una plataforma de venta de entradas externa", + "An error has occured while refreshing the page.": "Ha ocurrido un error al actualizar la página.", + "An error has occured. Sorry about that. You may try to reload the page.": "Ha ocurrido un error. Lo siento por eso. Puede intentar volver a cargar la página.", + "An ethical alternative": "Una alternativa ética", + "An event I'm going to has been updated": "Se ha actualizado un evento al que voy a asistir", + "An event I'm going to has posted an announcement": "Un evento al que voy a asistir ha publicado un anuncio", + "An event I'm organizing has a new comment": "Un evento que estoy organizando tiene un comentario nuevo", + "An event I'm organizing has a new participation": "Un evento que estoy organizando tiene una nueva participación", + "An event I'm organizing has a new pending participation": "Un evento que estoy organizando tiene una nueva participación pendiente", + "An event from one of my groups has been published": "Se ha publicado un evento de uno de mis grupos", + "An event from one of my groups has been updated or deleted": "Se actualizó o eliminó un evento de uno de mis grupos", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Una instancia es una versión instalada del software Mobilizon que se ejecuta en un servidor. Cualquier persona que utilice {mobilizon_software} u otras aplicaciones federadas, también conocido como \"fediverse\", puede ejecutar una instancia. El nombre de esta instancia es {nombre_instancia}. Mobilizon es una red federada de múltiples instancias (al igual que los servidores de correo electrónico), los usuarios registrados en diferentes instancias pueden comunicarse aunque no se hayan registrado en la misma instancia.", + "And {number} comments": "Y {number} comentarios", + "Announcements and mentions notifications are always sent straight away.": "Las notificaciones de anuncios y menciones siempre se envían de inmediato.", + "Anonymous participant": "Participante anónimo", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Los participantes anónimos deberán confirmar su participación por correo electrónico.", + "Anonymous participations": "Participaciones anónimas", + "Any category": "Cualquier categoría", + "Any day": "Cualquier día", + "Any distance": "Cualquier distancia", + "Any type": "Cualquier tipo", + "Anyone can join freely": "Cualquiera puede unirse libremente", + "Anyone can request being a member, but an administrator needs to approve the membership.": "Cualquiera puede solicitar ser miembro, pero un administrador debe aprobar la adesión.", + "Anyone wanting to be a member from your group will be able to from your group page.": "Cualquiera que desee ser miembro de su grupo podrá hacerlo desde la página de su grupo.", + "Application": "Applicación", + "Apply filters": "Aplicar filtros", + "Approve member": "Aprobar miembro", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "¿Estás realmente seguro de que deseas eliminar toda tu cuenta? Lo perderás todo. Las identidades, la configuración, los eventos creados, los mensajes y las participaciones desaparecerán para siempre.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "¿Está seguro de que desea eliminar completamente este grupo? Todos los miembros, incluidos los remotos, serán notificados y eliminados del grupo, y todos los datos del grupo (eventos, publicaciones, discusiones, todos…) serán irremediablemente destruidos.", + "Are you sure you want to delete this comment? This action cannot be undone.": "¿Estás seguro de que quieres eliminar este comentario? Esta acción no se puede deshacer.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "¿Estás seguro de que quieres eliminar este evento? Esta acción no se puede deshacer. Es posible que desee entablar una conversación con el creador del evento o editar el evento en su lugar.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "¿Está seguro de que desea suspender este grupo? Todos los miembros, incluidos los remotos, serán notificados y eliminados del grupo, y todos los datos del grupo (eventos, publicaciones, discusiones, todos…) serán irremediablemente destruidos.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "¿Está seguro de que desea suspender este grupo? Como este grupo se origina en la instancia {instance}, esto solo eliminará los miembros locales y eliminará los datos locales, además de rechazar todos los datos futuros.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "¿Seguro que quieres cancelar la creación del evento? Perderás todas las modificaciones.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "¿Seguro que quieres cancelar la edición del evento? Perderás todas las modificaciones.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "¿Está seguro de que desea cancelar su participación en el evento \"{title}\"?", + "Are you sure you want to delete this entire discussion?": "¿Está seguro de que desea eliminar toda esta discusión?", + "Are you sure you want to delete this event? This action cannot be reverted.": "¿Seguro que quieres eliminar este evento? Esta acción no se puede revertir.", + "Are you sure you want to delete this post? This action cannot be reverted.": "¿Estás seguro de que deseas eliminar esta publicación? Esta acción no se puede revertir.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "¿Está seguro de que desea abandonar el grupo {groupName}? Perderás el acceso al contenido privado de este grupo. Esta acción no se puede deshacer.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Como el organizador del evento ha optado por validar manualmente las solicitudes de participación, su participación se confirmará realmente solo una vez que reciba un correo electrónico que indique que está siendo aceptada.", + "Ask your instance admin to {enable_feature}.": "Pídale al administrador de su instancia que {enable_feature}.", + "Assigned to": "Asignado a", + "Atom feed for events and posts": "Flujo Atom para eventos y publicaciones", + "Attending": "Asistiendo", + "Avatar": "Avatar", + "Back to group list": "Volver a la lista de grupos", + "Back to homepage": "Volver a la página de inicio", + "Back to previous page": "Volver a la página anterior", + "Back to profile list": "Volver a la lista de perfiles", + "Back to top": "Volver arriba", + "Back to user list": "Volver a la lista de usuarios", + "Banner": "Pancarta", + "Become part of the community and start organizing events": "Forma parte de la comunidad y empieza a organizar eventos", + "Before you can login, you need to click on the link inside it to validate your account.": "Antes de iniciar sesión, debe hacer clic en el enlace que se encuentra dentro para validar su cuenta.", + "Begins on": "Comienza en", + "Best match": "Mejor coincidencia", + "Big Blue Button": "Big Blue Button", + "Bold": "Negrita", + "Booking": "Reservacion", + "Breadcrumbs": "Migajas", + "Browser notifications": "Notificaciones del navegador", + "Bullet list": "Lista de puntos", + "By others": "Por otros", + "By {group}": "Por {group}", + "By {username}": "Por {username}", + "Calendar": "Calendario", + "Can be an email or a link, or just plain text.": "Puede ser un correo electrónico o un enlace, o simplemente texto sin formato.", + "Cancel": "Cancelar", + "Cancel anonymous participation": "Cancelar participación anónima", + "Cancel creation": "Cancelar creación", + "Cancel discussion title edition": "Cancelar la edición del título de la discusión", + "Cancel edition": "Cancelar edición", + "Cancel follow request": "Cancelar la solicitud de seguimiento", + "Cancel membership request": "Cancelar solicitud de adesión", + "Cancel my participation request…": "Cancelar mi solicitud de participación …", + "Cancel my participation…": "Cancelar mi participación …", + "Cancelled": "Cancelado", + "Cancelled: Won't happen": "Cancelado: no sucederá", + "Categories": "Categorías", + "Category": "Categoría", + "Category illustrations credits": "Categoría ilustraciones créditos", + "Category list": "Lista de categoría", + "Change": "Cambiar", + "Change email": "Cambiar e-mail", + "Change my email": "Cambiar mi correo electrónico", + "Change my identity…": "Cambiar mi identidad …", + "Change my password": "Cambiar mi contraseña", + "Change role": "Cambiar rol", + "Change the filters.": "Cambia los filtros.", + "Change timezone": "Cambiar zona horaria", + "Change user email": "Cambiar correo de usuario", + "Change user role": "Cambiar rol de usuario", + "Check your inbox (and your junk mail folder).": "Revise su bandeja de entrada (y su carpeta de correo basura).", + "Choose the source of the instance's Privacy Policy": "Elija la fuente de la Política de privacidad de la instancia", + "Choose the source of the instance's Terms": "Elija la fuente de los Términos de la instancia", + "City or region": "Ciudad o región", + "Clear": "Limpiar", + "Clear address field": "Borrar campo de dirección", + "Clear date filter field": "Borrar el campo del filtro de fecha", + "Clear participation data for all events": "Datos de participación claros para todos los eventos", + "Clear participation data for this event": "Datos claros de participación para este evento", + "Clear timezone field": "Borrar campo de zona horaria", + "Click for more information": "Haga clic para obtener más información", + "Click to upload": "Haz clic para subir (upload)", + "Close": "Cerrar", + "Close comments for all (except for admins)": "Cerrar comentarios para todos (excepto para administradores)", + "Closed": "Cerrado", + "Comment body": "Cuerpo del comentario", + "Comment deleted": "Comentario borrado", + "Comment from {'@'}{username} reported": "Denunciado un comentario de {'@'}{username}", + "Comment text can't be empty": "El texto del comentario no puede estar vacío", + "Comments": "Comentarios", + "Comments are closed for everybody else.": "Los comentarios están cerrados para todos los demás.", + "Confirm": "Confirmar", + "Confirm my participation": "Confirma mi participación", + "Confirm my particpation": "Confirmar mi participación", + "Confirm participation": "Confirmar participación", + "Confirm user": "Confirmar usuario", + "Confirmed": "Confirmado", + "Confirmed at": "Confirmado en", + "Confirmed: Will happen": "Confirmado: sucederá", + "Congratulations, your account is now created!": "¡Felicitaciones, su cuenta ya está creada!", + "Contact": "Contacto", + "Continue editing": "Continua editando", + "Cookies and Local storage": "Cookies y almacenamiento local", + "Copy URL to clipboard": "Copiar URL al portapapeles", + "Copy details to clipboard": "Copiar detalles al portapapeles", + "Country": "País", + "Create": "Crear", + "Create a calc": "Crear un calco", + "Create a discussion": "Crear una discusión", + "Create a folder": "Crear una carpeta", + "Create a new event": "Crear un nuevo evento", + "Create a new group": "Crear un nuevo grupo", + "Create a new identity": "Crear una nueva identidad", + "Create a new list": "Crear una nueva lista", + "Create a new profile": "Crea un nuevo perfil", + "Create a pad": "Crear un pad", + "Create a videoconference": "Crea una videoconferencia", + "Create an account": "Crear una cuenta", + "Create discussion": "Crear discusión", + "Create event": "Crear evento", + "Create group": "Crear un grupo", + "Create identity": "Crear identidad", + "Create my event": "Crear mi evento", + "Create my group": "Crear mi grupo", + "Create my profile": "Crear mi perfil", + "Create new links": "Crea nuevos enlaces", + "Create resource": "Crear recurso", + "Create the discussion": "Crear la discusión", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Cree listas de tareas pendientes para todas las tareas que necesita hacer, asígnelas y establezca fechas de vencimiento.", + "Create token": "Crear token", + "Created by {name}": "Creado por {name}", + "Created by {username}": "Creado por {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "La identidad actual se ha cambiado a {identityName} para gestionar este evento.", + "Current page": "Página actual", + "Custom": "Personalizado", + "Custom URL": "URL personalizada", + "Custom text": "Texto personalizado", + "Daily email summary": "Resumen diario por correo electrónico", + "Dark": "Oscuro", + "Dashboard": "Panel de control", + "Date": "Fecha", + "Date and time": "Fecha y hora", + "Date and time settings": "Configuración de fecha y hora", + "Date parameters": "Parámetros de fecha", + "Deactivate notifications": "Activar notificaciones", + "Decline": "Rechazar", + "Decrease": "Disminución", + "Default": "Valor predeterminados", + "Default Mobilizon privacy policy": "Política de privacidad predeterminada de Mobilizon", + "Default Mobilizon terms": "Términos predeterminados de Mobilizon", + "Delete": "Eliminar", + "Delete account": "Eliminar cuenta", + "Delete conversation": "Borrar la conversación", + "Delete discussion": "Eliminar discusión", + "Delete event": "Eliminar evento", + "Delete everything": "Eliminar todo", + "Delete group": "Eliminar grupo", + "Delete my account": "Eliminar mi cuenta", + "Delete post": "Eliminar Publicación", + "Delete this discussion": "Eliminar esta discusión", + "Delete this identity": "Eliminar esta identidad", + "Delete your identity": "Eliminar tu identidad", + "Delete {eventTitle}": "Eliminar {eventTitle}", + "Delete {preferredUsername}": "Eliminar {preferredUsername}", + "Deleting comment": "Eliminando comentario", + "Deleting event": "Eliminando evento", + "Deleting my account will delete all of my identities.": "Eliminar mi cuenta eliminará todas mis identidades.", + "Deleting your Mobilizon account": "Eliminando tu cuenta de Mobilizon", + "Demote": "Degradar", + "Describe your event": "Describe tu evento", + "Description": "Descripción", + "Details": "Detalles", + "Didn't receive the instructions?": "¿No recibiste las instrucciones?", + "Disabled": "Deshabilitado", + "Discussions": "Discusiones", + "Discussions list": "Lista de discusiones", + "Display name": "Mostrar nombre", + "Display participation price": "Mostrar precio de participación", + "Displayed nickname": "Apodo mostrado", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Se muestra en la página de inicio y metaetiquetas. Describa qué es Mobilizon y qué hace que esta instancia sea especial en un solo párrafo.", + "Distance": "Distancia", + "Do not receive any mail": "No recibir ningún correo", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "¿Realmente quieres suspender esta cuenta? Se eliminarán todos los perfiles de usuario.", + "Do you wish to {create_event} or {explore_events}?": "¿Deseas {create_event} o {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "¿Deseas {create_group} o {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "¿El evento necesita ser confirmado más tarde o se cancela?", + "Domain": "Dominio", + "Draft": "Borrador", + "Drafts": "Borradores", + "Due on": "Debido a", + "Duplicate": "Duplicar", + "Edit": "Editar", + "Edit post": "Editar publicación", + "Edit profile {profile}": "Editar perfil {profile}", + "Edit user email": "Editar correo electrónico de usuario", + "Edited {ago}": "Editado {ago}", + "Edited {relative_time} ago": "Editado hace {relative_time}", + "Eg: Stockholm, Dance, Chess…": "Ej .: Estocolmo, Danza, Ajedrez …", + "Either on the {instance} instance or on another instance.": "Ya sea en la instancia {instancia} o en otra instancia.", + "Either the account is already validated, either the validation token is incorrect.": "O la cuenta ya está validada, o bien el testigo de validación es incorrecto.", + "Either the email has already been changed, either the validation token is incorrect.": "O el correo electrónico ya se ha cambiado, o bien el token de validación es incorrecto.", + "Either the participation request has already been validated, either the validation token is incorrect.": "O la solicitud de participación ya se ha validado o el token de validación es incorrecto.", + "Element title": "Título del elemento", + "Element value": "Valor del elemento", + "Email": "Correo electrónico", + "Email address": "Dirección de correo electrónico", + "Email validate": "Validar correo electrónico", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "Los correos electrónicos generalmente no contienen mayúsculas, asegúrese de no haber cometido un error tipográfico.", + "Enabled": "Habilitado", + "Ends on…": "Termina en …", + "Enter the link URL": "Introduzca la URL del enlace", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Introduce tu dirección de correo electrónico a continuación, y te enviaremos instrucciones sobre cómo cambiar tu contraseña.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Ingrese su propia política de privacidad. Etiquetas HTML permitidas. La {mobilizon_privacy_policy} se proporciona como plantilla.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Ingrese sus propios términos. Etiquetas HTML permitidas. Los {mobilizon_terms} se proporcionan como plantilla.", + "Error": "Error", + "Error details copied!": "¡Se copiaron los detalles del error!", + "Error message": "Mensaje de error", + "Error stacktrace": "Seguimiento de errores", + "Error while changing email": "Error al cambiar el correo electrónico", + "Error while loading the preview": "Error al cargar la vista previa", + "Error while login with {provider}. Retry or login another way.": "Error al iniciar sesión con {provider}. Vuelva a intentarlo o inicie sesión de otra manera.", + "Error while login with {provider}. This login provider doesn't exist.": "Error al iniciar sesión con {provider}. Este proveedor de inicio de sesión no existe.", + "Error while reporting group {groupTitle}": "Error al informar sobre el grupo {groupTitle}", + "Error while subscribing to push notifications": "Error al suscribirse a notificaciones push", + "Error while suspending group": "Error al suspender el grupo", + "Error while updating participation status inside this browser": "Error al actualizar el estado de participación dentro de este navegador", + "Error while validating account": "Error al validar la cuenta", + "Error while validating participation request": "Error al validar la solicitud de participación", + "Etherpad notes": "Notas de Etherpad", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Alternativa ética a los eventos, grupos y páginas de Facebook, Mobilizon es una herramienta diseñada para servirle . Período.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Alternativa ética a los eventos, grupos y páginas de Facebook, Mobilizon es una {tool_designed_to_serve_you}. Período.", + "Event": "Evento", + "Event URL": "URL del evento", + "Event already passed": "Evento ya pasado", + "Event cancelled": "Evento cancelado", + "Event creation": "Creación de evento", + "Event date": "Fecha del evento", + "Event description body": "Cuerpo de descripción del evento", + "Event edition": "Edición del evento", + "Event list": "Lista de eventos", + "Event metadata": "Metadatos de eventos", + "Event page settings": "Configuración de la página del evento", + "Event status": "Fecha del evento", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "La zona horaria del evento se establecerá de forma predeterminada en la zona horaria de la dirección del evento, si la hay, o en su propia configuración de zona horaria.", + "Event to be confirmed": "Evento por confirmar", + "Event {eventTitle} deleted": "Evento {eventTitle} eliminado", + "Event {eventTitle} reported": "Evento {eventTitle} declarado", + "Events": "Eventos", + "Events close to you": "Eventos cerca de ti", + "Events nearby": "Eventos cercanos", + "Events nearby {position}": "Eventos cercanos a {posición}", + "Events tagged with {tag}": "Eventos etiquetados con {tag}", + "Everything": "Todo", + "Ex: mobilizon.fr": "Ej: mobilizon.fr", + "Ex: someone@mobilizon.org": "Ejemplo: alguien@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "Ej: alguien{'@'}mobilizon.org", + "Explore": "Explorar", + "Explore events": "Explorar eventos", + "Explore!": "¡Explora!", + "Export": "Exportar", + "Failed to get location.": "No se pudo obtener la ubicación.", + "Failed to save admin settings": "Error al guardar la configuración de administrador", + "Favicon": "Favicon", + "Featured events": "Eventos particulares", + "Federated Group Name": "Nombre del grupo federado", + "Federation": "Federación", + "Fediverse account": "Cuenta Fediverse", + "Fetch more": "Buscar más", + "Filter": "Filtrar", + "Filter by name": "Filtrar por nombre", + "Filter by profile or group name": "Filtrar por perfil o nombre de grupo", + "Find an address": "Buscar una dirección", + "Find an instance": "Buscar una instancia", + "Find another instance": "Encuentra otra instancia", + "Find or add an element": "Encuentra o agrega un elemento", + "First steps": "Primeros pasos", + "Follow": "Seguir", + "Follow a new instance": "Seguir una nueva instancia", + "Follow instance": "Seguir instancia", + "Follow request pending approval": "Seguir solicitud pendiente de aprobación", + "Follow requests will be approved by a group moderator": "Las solicitudes de seguimiento serán aprobadas por un moderador del grupo", + "Follow status": "Seguir estado", + "Followed": "Seguidos", + "Followed, pending response": "Seguido, pendiente de respuesta", + "Follower": "Seguidor", + "Followers": "Seguidores", + "Followers will receive new public events and posts.": "Los seguidores recibirán nuevos eventos públicos y publicaciones.", + "Following": "Siguientes", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Seguir al grupo te permitirá estar informado de los {group_upcoming_public_events}, mientras que unirte al grupo significa que {access_to_group_private_content_as_well}, incluidas las discusiones grupales, los recursos del grupo y las publicaciones solo para miembros.", + "Followings": "Seguimientos", + "Follows us": "nos sigue", + "Follows us, pending approval": "Nos sigue, pendiente de aprobación", + "For instance: London": "Por ejemplo: Londres", + "For instance: London, Taekwondo, Architecture…": "Por ejemplo: Londres, Taekwondo, Arquitectura …", + "Forgot your password ?": "¿Olvidaste tu contraseña ?", + "Forgot your password?": "¿Olvidaste tu contraseña?", + "Framadate poll": "Encuesta Framadate", + "From my groups": "De mis grupos", + "From the {startDate} at {startTime} to the {endDate}": "Desde {startDate} en {startTime} hasta {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Desde el {startDate} en {startTime} hasta el {endDate} en {endTime}", + "From the {startDate} to the {endDate}": "Desde el {startDate} hasta el {endDate}", + "From yourself": "De ti mismo", + "Fully accessible with a wheelchair": "Totalmente accesible con silla de ruedas", + "Gather ⋅ Organize ⋅ Mobilize": "Reúna ⋅ Organice ⋅ Movilice", + "General": "General", + "General information": "Información general", + "General settings": "Configuración general", + "Geolocate me": "Geolocalízame", + "Geolocation was not determined in time.": "La geolocalización no se determinó a tiempo.", + "Get informed of the upcoming public events": "Infórmese de los próximos eventos públicos", + "Getting location": "Obtener ubicación", + "Getting there": "Llegar allí", + "Glossary": "Glosario", + "Go": "Ir", + "Go to the event page": "Ir a la página del evento", + "Go!": "¡Vamos!", + "Google Meet": "Google Meet", + "Group": "Grupo", + "Group Followers": "Seguidores del grupo", + "Group Members": "Miembros del grupo", + "Group URL": "URL de grupo", + "Group activity": "Actividad de grupo", + "Group address": "Dirección del grupo", + "Group description body": "Cuerpo de descripción de grupo", + "Group display name": "Nombre para mostrar del grupo", + "Group members": "Miembros del grupo", + "Group name": "Nombre del grupo", + "Group profiles": "Perfiles de grupo", + "Group settings": "Configuraciones de grupo", + "Group settings saved": "Configuración de grupo guardada", + "Group short description": "Descripción breve del grupo", + "Group visibility": "Visibilidad del grupo", + "Group {displayName} created": "Grupo {displayName} creado", + "Group {groupTitle} reported": "Se informó del grupo {groupTitle}", + "Groups": "Grupos", + "Groups are not enabled on this instance.": "Los grupos no están habilitados en esta instancia.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Los grupos son espacios de coordinación y preparación para organizar mejor los eventos y administrar su comunidad.", + "Heading Level 1": "Nivel de encabezado 1", + "Heading Level 2": "Nivel de encabezado 2", + "Heading Level 3": "Nivel de encabezado 3", + "Headline picture": "Imagen del titular", + "Hide filters": "Ocultar filtros", + "Hide replies": "Ocultar respuestas", + "Home": "Inicio", + "Home to {number} users": "Inicio de {number} usuarios", + "Homepage": "Página de inicio", + "Hourly email summary": "Resumen horarios por correo electrónico", + "I agree to the {instanceRules} and {termsOfService}": "Acepto las {instanceRules} y {termsOfService}", + "I create an identity": "Creo una identidad", + "I don't have a Mobilizon account": "No tengo una cuenta de Mobilizon", + "I have a Mobilizon account": "Tengo una cuenta de Mobilizon", + "I have an account on another Mobilizon instance.": "Tengo una cuenta en otra instancia de Mobilizon.", + "I have an account on {instance}.": "Tengo una cuenta en {instancia}.", + "I participate": "Yo participo", + "I want to allow people to participate without an account.": "Quiero permitir que las personas participen sin una cuenta.", + "I want to approve every participation request": "Quiero aprobar cada solicitud de participación", + "I've been mentionned in a comment under an event": "Me han mencionado en un comentario en un evento", + "I've been mentionned in a group discussion": "Me han mencionado en una discusión grupal", + "I've clicked on X, then on Y": "He hecho clic en X, luego en Y", + "ICS feed for events": "Flujo ICS para eventos", + "ICS/WebCal Feed": "Flujo ICS/WebCal", + "IP Address": "Dirección IP", + "Identities": "Identidades", + "Identity {displayName} created": "Identidad {displayName} creada", + "Identity {displayName} deleted": "Identidad {displayName} eliminada", + "Identity {displayName} updated": "Identidad {displayName} actualizada", + "If allowed by organizer": "Si lo permite el organizador", + "If an account with this email exists, we just sent another confirmation email to {email}": "Si existe una cuenta con este correo electrónico, acabamos de enviar otro correo electrónico de confirmación a {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Si esta identidad es el único administrador de algún grupo, debe eliminarlo antes de poder eliminar esta identidad.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Si se le solicita su identidad federada, se compone de su nombre de usuario y su instancia. Por ejemplo, la identidad federada para su primer perfil es:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Si ha optado por la validación manual de participantes, Mobilizon le enviará un correo electrónico para informarle de las nuevas participaciones que se procesarán. Puede elegir la frecuencia de estas notificaciones a continuación.", + "If you want, you may send a message to the event organizer here.": "Si lo desea, puede enviar un mensaje al organizador del evento aquí.", + "Ignore": "Ignorar", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Imagen de ilustración para “{category}\" tomada por {author} en {source} ({license})", + "In person": "En persona", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "En el siguiente contexto, una aplicación es un software, ya sea proporcionado por el equipo de Mobilizon o por un tercero, utilizado para interactuar con su instancia.", + "In the past": "En el pasado", + "In this instance's network": "En la red de esta instancia", + "Increase": "Incrementar", + "Instance": "Instancia", + "Instance Long Description": "Descripción larga de la instancia", + "Instance Name": "Nombre de instancia", + "Instance Privacy Policy": "Política de privacidad de instancias", + "Instance Privacy Policy Source": "Fuente de la política de privacidad de la instancia", + "Instance Privacy Policy URL": "URL de política de privacidad de instancia", + "Instance Rules": "Reglas de instancia", + "Instance Short Description": "Descripción breve de instancia", + "Instance Slogan": "Eslogan de instancia", + "Instance Terms": "Términos de Instancia", + "Instance Terms Source": "Fuente de Términos de Instancia", + "Instance Terms URL": "URL de Términos de Instancia", + "Instance administrator": "Administrador de instancia", + "Instance configuration": "Configuración de instancia", + "Instance feeds": "Flujos de instancias", + "Instance languages": "Idiomas de instancia", + "Instance rules": "Reglas de instancia", + "Instance settings": "Configuraciones de instancia", + "Instances": "Instancias", + "Instances following you": "Instancias siguiéndote", + "Instances you follow": "Instancias que sigues", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Integre este evento con herramientas de terceros y muestre metadatos para el evento.", + "Interact": "Interactuar", + "Interact with a remote content": "Interactuar con un contenido remoto", + "Invite a new member": "Invita a un nuevo miembro", + "Invite member": "Miembro invitado", + "Invited": "Invitado", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Es posible que el contenido no sea accesible en esta instancia, porque esta instancia ha bloqueado los perfiles o grupos detrás de este contenido.", + "Italic": "Cursiva", + "Jitsi Meet": "Jitsi Meet", + "Join": "Unirse", + "Join {instance}, a Mobilizon instance": "Únase a {instance} , una instancia de Mobilizon", + "Join group": "Unirse al grupo", + "Join group {group}": "Unirse al grupo {group}", + "Join {instance}, a Mobilizon instance": "Únase a {instance}, una instancia de Mobilizon", + "Keep the entire conversation about a specific topic together on a single page.": "Mantenga toda la conversación sobre un tema específico en una sola página.", + "Key words": "Palabras clave", + "Keyword, event title, group name, etc.": "Palabra clave, título del evento, nombre del grupo, etc.", + "Language": "Idioma", + "Languages": "Idiomas", + "Last IP adress": "Última dirección IP", + "Last group created": "Último grupo creado", + "Last published event": "Último evento publicado", + "Last published events": "Últimos eventos publicados", + "Last seen on": "Visto por última vez en", + "Last sign-in": "Último inicio de sesión", + "Last week": "La semana pasada", + "Latest posts": "Últimas publicaciones", + "Learn more": "Aprende más", + "Learn more about Mobilizon": "Conoce más sobre Mobilizon", + "Learn more about {instance}": "Más información sobre {instance}", + "Least recently published": "Más antiguamente publicado", + "Leave": "Salir", + "Leave event": "Dejar evento", + "Leave group": "Salir del grupo", + "Leaving event \"{title}\"": "Saliendo del evento \"{title}\"", + "Legal": "Legal", + "Let's define a few settings": "Definamos algunas configuraciones", + "License": "Licencia", + "Light": "Claro", + "Limited number of places": "Número limitado de plazas", + "List": "Lista", + "List title": "Título de la lista", + "Live": "En directo", + "Load more": "Carga más", + "Load more activities": "Cargar más actividades", + "Loading comments…": "Cargando comentarios…", + "Loading map": "Cargando mapa", + "Local": "Local", + "Local time ({timezone})": "Hora local ({timezone})", + "Local times ({timezone})": "Horas locales ({timezone})", + "Locality": "Localidad", + "Location": "Ubicación", + "Log in": "Iniciar sesión", + "Log out": "Cerrar sesión", + "Login": "Iniciar sesión", + "Login on Mobilizon!": "¡Inicia sesión en Mobilizon!", + "Login on {instance}": "Inicia sesión en {instancia}", + "Login status": "Estado de inicio de sesión", + "Logo": "Logo", + "Main languages you/your moderators speak": "Idiomas principales que usted o sus moderadores hablan", + "Make sure that all words are spelled correctly.": "Asegúrese de que todas las palabras estén escritas correctamente.", + "Manage participations": "Administrar participaciones", + "Manually approve new followers": "Aprobar manualmente nuevos seguidores", + "Manually invite new members": "Invitar nuevos miembros manualmente", + "Map": "Mapa", + "Mark as resolved": "Marca como resuelto", + "Member": "Miembro", + "Members": "Miembros", + "Members-only post": "Publicación solo para miembros", + "Membership requests will be approved by a group moderator": "Las solicitudes de membresía serán aprobadas por un moderador del grupo", + "Memberships": "Miembros", + "Mentions": "Menciones", + "Message": "Mensaje", + "Message body": "Cuerpo del mensaje", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon es una red federada. Puede interactuar con este evento desde un servidor diferente.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon es un software federado, lo que significa que puede interactuar, según la configuración de su federación de administrador, con contenido de otras instancias, como unirse a grupos o eventos que se crearon en otro lugar.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon es una herramienta que le ayuda a buscar, crear y organizar eventos .", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon es una herramienta que te ayuda {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon no es una plataforma gigante, sino una multitud de sitios web de Mobilizon interconectados .", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon no es una plataforma gigante, sino una {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "Software Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon utiliza un sistema de perfiles para compartimentar sus actividades. Podrás crear tantos perfiles como quieras.", + "Mobilizon version": "Versión Mobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon te enviará un correo electrónico cuando los eventos a los que asistas tengan cambios importantes: fecha y hora, dirección, confirmación o cancelación, etc.", + "Moderate new members": "Miembros nuevos moderados", + "Moderated comments (shown after approval)": "Comentarios moderados (mostrados después de la aprobación)", + "Moderation": "Moderación", + "Moderation log": "Registro de moderación", + "Moderation logs": "Registros de moderación", + "Moderator": "Moderador", + "More options": "Mas opciones", + "Most recently published": "Más recientemente publicado", + "Move": "Mover", + "Move \"{resourceName}\"": "Mover \"{resourceName}\"", + "Move resource to the root folder": "Mover recurso a la carpeta raíz", + "Move resource to {folder}": "Mover recurso a {folder}", + "My account": "Mi cuenta", + "My events": "Mis eventos", + "My federated identity ends in {domain}": "Mi identidad federada termina en {dominio}", + "My groups": "Mis grupos", + "My identities": "Mis identidades", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "¡NOTA! Los términos predeterminados no han sido revisados por un abogado y, por lo tanto, es poco probable que brinden protección legal completa para todas las situaciones para un administrador de instancia que los use. Tampoco son específicos de todos los países y jurisdicciones. Si no está seguro, consulte con un abogado.", + "Name": "Nombre", + "Navigated to {pageTitle}": "Navegó a {pageTitle}", + "New discussion": "Nueva discusión", + "New email": "Nuevo correo electrónico", + "New folder": "Nueva carpeta", + "New link": "Nuevo enlace", + "New members": "Nuevos miembros", + "New note": "Nueva nota", + "New password": "Nueva contraseña", + "New post": "Nueva publicación", + "New profile": "Nuevo perfil", + "Next": "Próximo", + "Next month": "Próximo mes", + "Next page": "Siguiente página", + "Next week": "La próxima semana", + "No activities found": "Ninguna actividad encontrada", + "No address defined": "Ninguna dirección definida", + "No categories with public upcoming events on this instance were found.": "No se encontraron categorías con próximos eventos públicos en esta instancia.", + "No closed reports yet": "Aún no hay informes cerrados", + "No comment": "Sin comentarios", + "No comments yet": "Sin comentarios aún", + "No discussions yet": "Aún no hay discusiones", + "No end date": "Sin fecha de finalización", + "No event found at this address": "No se encontró ningún evento en esta dirección", + "No events found": "No se encontraron eventos", + "No events found for {search}": "No se encontraron eventos para {buscar}", + "No follower matches the filters": "Ningún seguidor coincide con los filtros", + "No group found": "Ningún grupo encontrado", + "No group matches the filters": "Ningún grupo coincide con los filtros", + "No group member found": "No se encontró ningún miembro del grupo", + "No groups found": "No se encontraron grupos", + "No groups found for {search}": "No se encontraron grupos para {buscar}", + "No information": "Sin información", + "No instance follows your instance yet.": "Ninguna instancia sigue a tu instancia todavía.", + "No instance found.": "No se encontró ninguna instancia.", + "No instance to approve|Approve instance|Approve {number} instances": "No hay instancia para aprobar|Aprobar instancia|Aprobar {número} instancias", + "No instance to reject|Reject instance|Reject {number} instances": "Ninguna instancia para rechazar | Rechazar instancia | Rechazar {número} instancias", + "No instance to remove|Remove instance|Remove {number} instances": "No hay instancias para eliminar|Eliminar instancias|Eliminar {número} instancias", + "No instances match this filter. Try resetting filter fields?": "Ninguna instancia coincide con este filtro. ¿Intentar restablecer los campos de filtro?", + "No languages found": "No se encontraron idiomas", + "No member matches the filters": "Ningún miembro coincide con los filtros", + "No members found": "No se encontraron miembros", + "No memberships found": "No se encontraron miembros", + "No message": "Sin mensaje", + "No moderation logs yet": "Aún no hay registros de moderación", + "No more activity to display.": "No hay más actividad para mostrar.", + "No one is participating|One person participating|{going} people participating": "Nadie está participando|Una persona participando|{van} personas participando", + "No open reports yet": "Aún no hay informes abiertos", + "No organized events found": "No se encontraron eventos organizados", + "No organized events listed": "No se enumeran eventos organizados", + "No participant matches the filters": "Ningún participante coincide con los filtros", + "No participant to approve|Approve participant|Approve {number} participants": "Ningún participante debe aprobar|Aprobar participante|Aprobar {number} participantes", + "No participant to reject|Reject participant|Reject {number} participants": "Ningún participante que rechazar|Rechazar participante|Rechazar {number} participantes", + "No participations listed": "No se enumeran participaciones", + "No posts found": "No se han encontrado publicaciones", + "No posts yet": "Aún no hay publicaciones", + "No profile matches the filters": "Ningún perfil coincide con los filtros", + "No public upcoming events": "No hay eventos públicos próximos", + "No resolved reports yet": "Aún no hay informes resueltos", + "No resources in this folder": "No hay recursos en esta carpeta", + "No resources selected": "Ningún recurso seleccionado|Un recurso seleccionado|{count} recursos seleccionados", + "No resources yet": "Aún no hay recursos", + "No results for \"{queryText}\"": "No hay resultados para \"{queryText}\"", + "No results for {search}": "No hay resultados para {search}", + "No results found": "Ningún resultado encontrado", + "No results found for {search}": "No se han encontrado resultados para {buscar}", + "No rules defined yet.": "No hay reglas definidas todavía.", + "No user matches the filter": "Ningún usuario coincide con el filtro", + "No user matches the filters": "Ningún usuario coincide con los filtros", + "None": "Ninguno", + "Not accessible with a wheelchair": "No accesible con silla de ruedas", + "Not approved": "Sin aprovar", + "Not confirmed": "Sin confirmar", + "Notes": "Notas", + "Notification before the event": "Notificación antes del evento", + "Notification on the day of the event": "Notificación el día del evento", + "Notification settings": "Configuración de las notificaciones", + "Notifications": "Notificaciones", + "Notifications for manually approved participations to an event": "Notificaciones para participaciones aprobadas manualmente a un evento", + "Notify participants": "Notificar a los participantes", + "Notify the user of the change": "Notificar al usuario del cambio", + "Now, create your first profile:": "Ahora, crea tu primer perfil:", + "Number of members": "Número de miembros", + "Number of places": "Numero de plazas", + "OK": "OK", + "Old password": "Contraseña anterior", + "On the Fediverse": "En la Fediversa", + "On {date}": "el {date}", + "On {date} ending at {endTime}": "El {fecha} que termina en {endTime}", + "On {date} from {startTime} to {endTime}": "El {fecha} de {startTime} a {endTime}", + "On {date} starting at {startTime}": "El {fecha} a partir de {startTime}", + "On {instance} and other federated instances": "En {instance} y otras instancias federadas", + "Online": "En línea", + "Online events": "Eventos en línea", + "Online ticketing": "Venta de entradas en línea", + "Online upcoming events": "Próximos eventos en línea", + "Only Mobilizon instances can be followed": "\n \n", + "Only accessible through link": "Solo accesible a través del enlace", + "Only accessible through link (private)": "Solo accesible a través del enlace (privado)", + "Only accessible to members of the group": "Solo accesible para los miembros del grupo", + "Only alphanumeric lowercased characters and underscores are supported.": "Solo se admiten caracteres alfanuméricos en minúscula y guiones bajos.", + "Only group members can access discussions": "Solo los miembros del grupo pueden acceder a las discusiones", + "Only group moderators can create, edit and delete events.": "Solo los moderadores de grupo pueden crear, editar y eliminar eventos.", + "Only group moderators can create, edit and delete posts.": "Solo los moderadores de grupo pueden crear, editar y eliminar publicaciones.", + "Only registered users may fetch remote events from their URL.": "Solo los usuarios registrados pueden obtener eventos remotos de su URL.", + "Open": "Abrir", + "Open a topic on our forum": "Abrir un tema en nuestro foro", + "Open an issue on our bug tracker (advanced users)": "Abrir un problema en nuestro rastreador de errores (usuarios avanzados)", + "Open main menu": "Abrir menú principal", + "Open user menu": "Abrir menú de usuario", + "Opened reports": "Informes abiertos", + "Or": "O", + "Ordered list": "Lista ordenada", + "Organized": "Organizado", + "Organized by": "Organizado por", + "Organized by {name}": "Organizado por {name}", + "Organized events": "Eventos organizados", + "Organizer": "Organizador", + "Organizer notifications": "Notificaciones del organizador", + "Organizers": "Organizadores", + "Other": "Otro", + "Other actions": "Otras acciones", + "Other notification options:": "Otras opciones de notificación:", + "Other software may also support this.": "Otro software también puede soportar esto.", + "Other users with the same IP address": "Otros usuarios con la misma dirección IP", + "Other users with the same email domain": "Otros usuarios con el mismo dominio de correo electrónico", + "Otherwise this identity will just be removed from the group administrators.": "De lo contrario, esta identidad solo se eliminará de los administradores del grupo.", + "Owncast": "Owncast", + "Page": "Página", + "Page limited to my group (asks for auth)": "Página limitada a mi grupo (solicita autenticación)", + "Page not found": "Página no encontrada", + "Parent folder": "Carpeta superior", + "Partially accessible with a wheelchair": "Parcialmente accesible con silla de ruedas", + "Participant": "Participante", + "Participants": "Participantes", + "Participate": "Participar", + "Participate using your email address": "Participa usando tu dirección de correo electrónico", + "Participation approval": "Aprobación de la participación", + "Participation confirmation": "Confirmación de participación", + "Participation notifications": "Notificaciones de participación", + "Participation requested!": "¡Participación solicitada!", + "Participation with account": "Participación con cuenta", + "Participation without account": "Participación sin cuenta", + "Participations": "Participaciones", + "Password": "Contraseña", + "Password (confirmation)": "Contraseña (confirmación)", + "Password reset": "Restablecer la contraseña", + "Past events": "Eventos pasados", + "PeerTube live": "PeerTube en vivo", + "PeerTube replay": "Repetición de PeerTube", + "Pending": "Pendiente", + "Personal feeds": "Flujos personales", + "Photo by {author} on {source}": "Foto tomada por {author} en {source}", + "Pick": "Recoger", + "Pick a profile or a group": "Elige un perfil o un grupo", + "Pick an identity": "Elige una identidad", + "Pick an instance": "Elige una instancia", + "Please add as many details as possible to help identify the problem.": "Agregue tantos detalles como sea posible para ayudar a identificar el problema.", + "Please check your spam folder if you didn't receive the email.": "Verifique su carpeta de correo no deseado (spam) si no recibió el correo electrónico.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Póngase en contacto con el administrador de Mobilizon de esta instancia si cree que esto es un error.", + "Please do not use it in any real way.": "Por favor, no lo use de ninguna manera real.", + "Please enter your password to confirm this action.": "Introduzca su contraseña para confirmar esta acción.", + "Please make sure the address is correct and that the page hasn't been moved.": "Asegúrese de que la dirección sea correcta y que la página no se haya movido.", + "Please read the {fullRules} published by {instance}'s administrators.": "Lea las {fullRules} publicadas por los administradores de {instance}.", + "Popular groups close to you": "Grupos populares cerca de ti", + "Popular groups nearby {position}": "Grupos populares cercanos {position}", + "Post": "Publicación", + "Post URL": "URL de publicación", + "Post a comment": "Publicar un comentario", + "Post a reply": "Publica una respuesta", + "Post body": "Cuerpo de la publicación", + "Post {eventTitle} reported": "Publicación {eventTitle} informada", + "Postal Code": "Código postal", + "Posts": "Publicaciones", + "Powered by Mobilizon": "Desarrollado por Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Desarrollado por {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Hecho con el apoyo financiero de {contributors}.", + "Preferences": "Preferencias", + "Previous": "Anterior", + "Previous email": "Email anterior", + "Previous month": "Mes anterior", + "Previous page": "Pagina anterior", + "Price sheet": "Hoja de precios", + "Privacy": "Vida privada", + "Privacy Policy": "Política de privacidad", + "Privacy policy": "Política de privacidad", + "Private event": "Evento privado", + "Private feeds": "Feeds privados", + "Profile": "Perfil", + "Profile feeds": "Flujo de perfil", + "Profiles": "Perfiles", + "Profiles and federation": "Perfiles y federación", + "Promote": "Promover", + "Public": "Público", + "Public RSS/Atom Feed": "RSS/Atom Feed público", + "Public comment moderation": "Moderación de comentarios públicos", + "Public event": "Evento público", + "Public feeds": "Feeds públicos", + "Public iCal Feed": "Feed público de iCal", + "Public preview": "Vista previa pública", + "Publication date": "Fecha de publicación", + "Publish": "Publicar", + "Published by {name}": "Publicado por {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Eventos publicados con {comments} comentarios y {participations} participaciones confirmadas", + "Published events with {comments} comments and {participations} confirmed participations": "Eventos publicados con {comments} comentarios y {participations} participaciones confirmadas", + "Push": "Empujar", + "Quote": "Cita", + "RSS/Atom Feed": "RSS/Suministro Atom", + "Radius": "Radio", + "Recap every week": "Recordatorio semanal", + "Receive one email for each activity": "Reciba un correo electrónico por cada actividad", + "Receive one email per request": "Recibir un correo electrónico por solicitud", + "Redirecting in progress…": "Redirección en progreso…", + "Redirecting to Mobilizon": "Redirigiendo a Mobilizon", + "Redirecting to content…": "Redirigiendo al contenido…", + "Redo": "Rehacer", + "Refresh profile": "Actualizar perfil", + "Regenerate new links": "Regenerar nuevos enlaces", + "Region": "Región", + "Register": "Registrar", + "Register an account on {instanceName}!": "¡Registre una cuenta en {instanceName}!", + "Register on this instance": "Registrarse en esta instancia", + "Registration is allowed, anyone can register.": "El registro está permitido, cualquiera puede registrarse.", + "Registration is closed.": "El registro está cerrado.", + "Registration is currently closed.": "El registro está actualmente cerrado.", + "Registrations": "Registros", + "Registrations are restricted by allowlisting.": "Las inscripciones están restringidas por lista de permisos.", + "Reject": "Rechazar", + "Reject follow": "Rechazar seguir", + "Reject member": "Rechazar miembro", + "Rejected": "Rechazado", + "Remember my participation in this browser": "Recuerda mi participación en este navegador", + "Remove": "Eliminar", + "Remove link": "Remover enlace", + "Rename": "Renombrar", + "Rename resource": "Renombrar recurso", + "Reopen": "Reabrir", + "Replay": "Repetición", + "Reply": "Respuesta", + "Report": "Declarar", + "Report #{reportNumber}": "Informe #{reportNumber}", + "Report reason": "Ver más eventos", + "Report status": "Informe de estado", + "Report this comment": "Informar de este comentario", + "Report this event": "Informa de este evento", + "Report this group": "Reportar este grupo", + "Report this post": "Reportar esta publicación", + "Reported": "Declarado", + "Reported by": "Declarado por", + "Reported by someone anonymously": "Reportado por alguien de forma anónima", + "Reported by someone on {domain}": "Declarado por alguien en {dominio}", + "Reported by {reporter}": "Declarado por {reporter}", + "Reported content": "Contenido denunciado", + "Reported group": "Grupo informado", + "Reported identity": "Identidad declarada", + "Reports": "Declaraciones", + "Reports list": "Lista de informes", + "Request for participation confirmation sent": "Solicitud de confirmación de participación enviada", + "Resend confirmation email": "Reenviar correo electrónico de confirmación", + "Resent confirmation email": "Reenviar correo electrónico de confirmación", + "Reset": "Reiniciar", + "Reset filters": "Restablecer filtros", + "Reset my password": "Restablecer mi contraseña", + "Reset password": "Restablecer la contraseña", + "Resolved": "Resuelto", + "Resource provided is not an URL": "El recurso proporcionado no es una URL", + "Resources": "Recursos", + "Restricted": "Restringido", + "Return to the group page": "Volver a la página del grupo", + "Right now": "Ahora mismo", + "Role": "Rol", + "Rules": "Reglas", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL y su sucesor TLS son tecnologías de cifrado para asegurar las comunicaciones de datos cuando se utiliza el servicio. Puede reconocer una conexión encriptada en la línea de dirección de su navegador cuando la URL comienza con {https} y el icono de candado se muestra en la barra de direcciones de su navegador.", + "SSL/TLS": "SSL/TLS", + "Save": "Guardar", + "Save draft": "Guardar borrador", + "Schedule": "Calendario", + "Search": "Buscar", + "Search events, groups, etc.": "Buscar eventos, grupos, etc.", + "Search target": "Objetivo de búsqueda", + "Searching…": "Buscando…", + "Select a category": "Seleccione una categoría", + "Select a language": "Selecciona un idioma", + "Select a radius": "Seleccione un radio", + "Select a timezone": "Selecciona una zona horaria", + "Select languages": "Seleccionar idiomas", + "Select the activities for which you wish to receive an email or a push notification.": "Seleccione las actividades para las que desea recibir un correo electrónico o una notificación automática.", + "Send": "Enviar", + "Send email": "Enviar correo electrónico", + "Send feedback": "Enviar comentarios", + "Send notification e-mails": "Enviar correos electrónicos de notificación", + "Send password reset": "Enviar restablecimiento de contraseña", + "Send the confirmation email again": "Enviar el correo electrónico de confirmación nuevamente", + "Send the report": "Enviar el informe", + "Set an URL to a page with your own privacy policy.": "Establezca una URL a una página con su propia política de privacidad.", + "Set an URL to a page with your own terms.": "Establezca una URL a una página con sus propios términos.", + "Settings": "Configuraciones", + "Share": "Cuota", + "Share this event": "Comparte este event", + "Share this group": "Comparte este grupo", + "Share this post": "Compartir esta publicacion", + "Short bio": "Breve biografía", + "Show filters": "Aplicar filtros", + "Show map": "Mostrar mapa", + "Show me where I am": "Muéstrame donde estoy", + "Show remaining number of places": "Muestra el número restante de plazas", + "Show the time when the event begins": "Muestra la hora en que comienza el evento", + "Show the time when the event ends": "Muestra la hora en que finaliza el evento", + "Showing events before": "Mostrando eventos antes", + "Showing events starting on": "Mostrando eventos que comienzan el", + "Sign Language": "Lenguaje de señas", + "Sign in with": "Inicia sesión con", + "Sign up": "Regístrate", + "Since you are a new member, private content can take a few minutes to appear.": "Dado que es un miembro nuevo, el contenido privado puede tardar unos minutos en aparecer.", + "Skip to main content": "Saltar al contenido principal", + "Smoke free": "Libre de humos", + "Smoking allowed": "Fumar está permitido", + "Social": "Social", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Algunos términos, técnicos o de otro tipo, utilizados en el texto a continuación pueden abarcar conceptos que son difíciles de comprender. Hemos proporcionado un glosario aquí para ayudarlo a comprenderlos mejor:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Lo sentimos, no pudimos guardar sus comentarios. No se preocupe, intentaremos solucionar este problema de todos modos.", + "Sort by": "Ordenar por", + "Starts on…": "Comienza en …", + "Status": "Estado", + "Statuses": "Estatutos", + "Stop following instance": "Dejar de seguir la instancia", + "Street": "Calle", + "Submit": "Enviar", + "Subtitles": "Subtítulos", + "Suggestions:": "Sugerencias:", + "Suspend": "Suspender", + "Suspend group": "Suspender grupo", + "Suspend the account": "Suspender la cuenta", + "Suspend the account?": "¿Suspender la cuenta?", + "Suspended": "Suspendido", + "Tag search": "Búsqueda de etiquetas", + "Task lists": "Listas de tareas", + "Technical details": "Detalles técnicos", + "Tentative": "Tentativa", + "Tentative: Will be confirmed later": "Intento: se confirmará más tarde", + "Terms": "Condiciones", + "Terms of service": "Términos de servicio", + "Text": "Texto", + "Thanks a lot, your feedback was submitted!": "¡Muchas gracias, sus comentarios fueron enviados!", + "That you follow or of which you are a member": "Que sigues o del que eres miembro", + "The Big Blue Button video teleconference URL": "La URL de la videoconferencia de Big Blue Button", + "The Google Meet video teleconference URL": "La URL de la videoconferencia de Google Meet", + "The Jitsi Meet video teleconference URL": "La URL de la videoconferencia de Jitsi Meet", + "The Microsoft Teams video teleconference URL": "La URL de la video teleconferencia de Microsoft Teams", + "The URL of a pad where notes are being taken collaboratively": "La URL de un bloc donde se toman notas de forma colaborativa", + "The URL of a poll where the choice for the event date is happening": "La URL de una encuesta en la que se realiza la elección de la fecha del evento", + "The URL where the event can be watched live": "La URL donde se puede ver el evento en vivo", + "The URL where the event live can be watched again after it has ended": "La URL donde se puede volver a ver el evento en vivo una vez finalizado", + "The Zoom video teleconference URL": "La URL de la video teleconferencia de Zoom", + "The account's email address was changed. Check your emails to verify it.": "Se cambió la dirección de correo electrónico de la cuenta. Revise sus correos electrónicos para verificarlo.", + "The actual number of participants may differ, as this event is hosted on another instance.": "El número real de participantes puede diferir ya que este evento se aloja en otra instancia.", + "The calc will be created on {service}": "El cálculo se creará en {service}", + "The content came from another server. Transfer an anonymous copy of the report?": "El contenido vino de otro servidor. ¿Transferir una copia anónima del informe?", + "The draft event has been updated": "El borrador del evento ha sido actualizado", + "The event has a sign language interpreter": "El evento cuenta con intérprete de lengua de signos", + "The event has been created as a draft": "El evento ha sido creado como borrador", + "The event has been published": "El evento ha sido publicado", + "The event has been updated": "El evento ha sido actualizado", + "The event has been updated and published": "El evento ha sido actualizado y publicado", + "The event hasn't got a sign language interpreter": "El evento no tiene intérprete de lenguaje de señas", + "The event is fully online": "El evento está completamente en línea", + "The event live video contains subtitles": "El video en vivo del evento contiene subtítulos", + "The event live video does not contain subtitles": "El video en vivo del evento no contiene subtítulos", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "El organizador del evento ha elegido validar las participaciones manualmente. ¿Desea agregar una pequeña nota para explicar por qué desea participar en este evento?", + "The event organizer didn't add any description.": "El organizador del evento no agregó ninguna descripción.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "El organizador del evento aprueba manualmente las participaciones. Dado que ha elegido participar sin una cuenta, explique por qué desea participar en este evento.", + "The event title will be ellipsed.": "El título del evento será elipsado.", + "The event will show as attributed to this group.": "El evento se mostrará como atribuido a este grupo.", + "The event will show as attributed to this profile.": "El evento se mostrará como atribuido a este perfil.", + "The event will show as attributed to your personal profile.": "El evento se mostrará como atribuido a su perfil personal.", + "The event {event} was created by {profile}.": "El evento {event} fue creado por {profile}.", + "The event {event} was deleted by {profile}.": "El evento {event} Ha sido borrado por {profile}.", + "The event {event} was updated by {profile}.": "El evento {event} fue actualizado por {profile}.", + "The events you created are not shown here.": "Los eventos que creó no se muestran aquí.", + "The geolocation prompt was denied.": "Se denegó el aviso de geolocalización.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "Ahora cualquiera puede unirse al grupo, pero los nuevos miembros deben ser aprobados por un administrador.", + "The group can now be joined by anyone.": "Ahora cualquiera puede unirse al grupo.", + "The group can now only be joined with an invite.": "Ahora solo se puede unir al grupo con una invitación.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "El grupo se incluirá públicamente en los resultados de búsqueda y se puede sugerir en la sección de exploración. En su página solo se mostrará información pública.", + "The group's avatar was changed.": "Se cambió el avatar del grupo.", + "The group's banner was changed.": "Se cambió el estandarte del grupo.", + "The group's physical address was changed.": "Se cambió la dirección física del grupo.", + "The group's short description was changed.": "Se cambió la breve descripción del grupo.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "El administrador de la instancia es la persona o entidad que ejecuta esta instancia de Mobilizon.", + "The member was approved": "El miembro fue aprobado", + "The member was removed from the group {group}": "El miembro fue eliminado del grupo {grup}", + "The membership request from {profile} was rejected": "Se rechazó la solicitud de adesión de {profile}", + "The only way for your group to get new members is if an admininistrator invites them.": "La única forma de que su grupo obtenga nuevos miembros es si un administrador los invita.", + "The organiser has chosen to close comments.": "El organizador ha optado por cerrar los comentarios.", + "The pad will be created on {service}": "El pad se creará en {service}", + "The page you're looking for doesn't exist.": "La página que estás buscando no existe.", + "The password was successfully changed": "La contraseña fue cambiada con éxito", + "The post {post} was created by {profile}.": "La publicación {post} fue creada por {profile}.", + "The post {post} was deleted by {profile}.": "La publicación {post} ha sido borrada por {profile}.", + "The post {post} was updated by {profile}.": "La publicación {post} ha sido actualizada por {profile}.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "El informe se enviará a los moderadores de su instancia. Puede explicar por qué declara este contenido a continuación.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "La imagen seleccionada es demasiado pesada. Debe seleccionar un archivo menor que {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Los detalles técnicos del error pueden ayudar a los desarrolladores a resolver el problema más fácilmente. Agrégalos a tus comentarios.", + "The user has been disabled": "El usuario ha sido deshabilitado", + "The videoconference will be created on {service}": "La videoconferencia se creará en {service}", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Se utilizará {default_privacy_policy}. Se traducirán en el idioma del usuario.", + "The {default_terms} will be used. They will be translated in the user's language.": "Se utilizarán los {default_terms}. Se traducirán en el idioma del usuario.", + "Theme": "Tema", + "There are {participants} participants.": "Hay {participantes} participantes.", + "There is no activity yet. Start doing some things to see activity appear here.": "No hay actividad todavía. Comience a hacer algunas cosas para ver la actividad aparecer aquí.", + "There will be no way to recover your data.": "No habrá forma de recuperar sus datos.", + "There's no discussions yet": "Aún no hay discusiones", + "These events may interest you": "Estos eventos pueden interesarte", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Estos flujos contienen datos de eventos para los eventos en los que alguno de sus perfiles es participante o creador. Deberías mantenerlos privados. Puede encontrar flujos para perfiles específicos en cada página de edición de perfil.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Estos flujos contienen datos de eventos para los eventos para los que este perfil específico es un participante o creador. Deberías mantenerlos privados. Puede encontrar flujos para todos sus perfiles en la configuración de notificaciones.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Esta instancia de Mobilizon y este organizador de eventos permiten participaciones anónimas pero requieren validación mediante confirmación por correo electrónico.", + "This URL doesn't seem to be valid": "Esta URL no parece ser válida", + "This URL is not supported": "Esta URL no es compatible", + "This event has been cancelled.": "Este evento ha sido cancelado.", + "This event is accessible only through it's link. Be careful where you post this link.": "Este evento es accesible solo a través de su enlace. Tenga cuidado donde publica este enlace.", + "This group doesn't have a description yet.": "Este grupo aún no tiene una descripción.", + "This group is a remote group, it's possible the original instance has more informations.": "Este grupo es un grupo remoto, es posible que la instancia original tenga más información.", + "This group is accessible only through it's link. Be careful where you post this link.": "Este grupo es accesible solo a través de su enlace. Tenga cuidado donde publica este enlace.", + "This group is invite-only": "Este grupo es solo por invitación", + "This group was not found": "No se encontró este grupo", + "This identifier is unique to your profile. It allows others to find you.": "Este identificador es único para su perfil. Permite que otros te encuentren.", + "This information is saved only on your computer. Click for details": "Esta información se guarda solo en su computadora. Haga clic para más detalles", + "This instance doesn't follow yours.": "Esta instancia no sigue a la tuya.", + "This instance hasn't got push notifications enabled.": "Esta instancia no tiene habilitadas las notificaciones push.", + "This instance isn't opened to registrations, but you can register on other instances.": "Esta instancia no está abierta a registros pero puede registrarse en otras instancias.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Esta instancia,{instanceName} ({domain}), aloja su perfil, así que recuerde su nombre.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Esta instancia, {instanceName}, aloja su perfil, así que recuerde su nombre.", + "This is a demonstration site to test Mobilizon.": "Este es un sitio de demostración para probar Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Esto es como su nombre de usuario federado ({username}) para grupos. Permitirá que el grupo se encuentre en la federación y se garantiza que será único.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Este es como su nombre de usuario federado ({username}) para grupos Permitirá que el grupo se encuentre en la federación y se garantiza que sea único.", + "This month": "Este mes", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Esta publicación es accesible solo para miembros. Tiene acceso a él con fines de moderación solo porque es un moderador de instancia.", + "This post is accessible only through it's link. Be careful where you post this link.": "Esta publicación es accesible solo a través de su enlace. Tenga cuidado donde publica este enlace.", + "This profile is from another instance, the informations shown here may be incomplete.": "Este perfil es de otra instancia, la información que se muestra aquí puede estar incompleta.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Este perfil se encuentra en esta instancia, por lo que debe {access_the_corresponding_account} para suspenderlo.", + "This profile was not found": "No se encontró este perfil", + "This setting will be used to display the website and send you emails in the correct language.": "Esta configuración se utilizará para mostrar el sitio web y enviarle correos electrónicos en el idioma correcto.", + "This user doesn't have any profiles": "Este usuario no tiene ningún perfil", + "This user was not found": "Este usuario no se encontró", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Este sitio web no está moderado y los datos que ingrese se destruirán automáticamente todos los días a las 00:01 (zona horaria de París).", + "This week": "Esta semana", + "This weekend": "Este fin de semana", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Esto eliminará/anonimizará todo el contenido (eventos, comentarios, mensajes, participaciones ...) creado con esta identidad.", + "Time in your timezone ({timezone})": "Hora en tu zona horaria ({timezone})", + "Times in your timezone ({timezone})": "Horarios en tu zona horaria ({timezone})", + "Timezone": "Zona horaria", + "Timezone detected as {timezone}.": "Zona horaria borrada como {timezone}.", + "Title": "Título", + "To activate more notifications, head over to the notification settings.": "Para activar más notificaciones, dirígete a la configuración de notificaciones.", + "To confirm, type your event title \"{eventTitle}\"": "Para confirmar, escriba el título de su evento \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "Para confirmar, escriba su nombre de usuario de identidad \"{preferredUsername}\"", + "To create and manage multiples identities from a same account": "Para crear y administrar múltiples identidades desde una misma cuenta", + "To create and manage your events": "Para crear y gestionar sus eventos", + "To create or join an group and start organizing with other people": "Para crear o unirse a un grupo y comenzar a organizarse con otras personas", + "To follow groups and be informed of their latest events": "Seguir grupos y estar informado de sus últimos eventos", + "To register for an event by choosing one of your identities": "Para registrarse en un evento eligiendo una de sus identidades", + "Today": "Hoy", + "Tomorrow": "Mañana", + "Tools": "Herramientas", + "Total number of participations": "Número total de participaciones", + "Transfer to {outsideDomain}": "Transferir a {outsideDomain}", + "Triggered profile refreshment": "Refresco de perfil activado", + "Try different keywords.": "Pruebe diferentes palabras clave.", + "Try fewer keywords.": "Pruebe con menos palabras clave.", + "Try more general keywords.": "Prueba palabras clave más generales.", + "Twitch live": "Twitch en vivo", + "Twitch replay": "Repetición de Twitch", + "Twitter account": "Cuenta de Twitter", + "Type": "Tipo", + "Type or select a date…": "Escriba o seleccione una fecha …", + "URL": "URL", + "URL copied to clipboard": "URL copiada al portapapeles", + "Unable to copy to clipboard": "No se puede copiar al portapapeles", + "Unable to create the group. One of the pictures may be too heavy.": "No se pudo crear el grupo. Es posible que una de las imágenes sea demasiado pesada.", + "Unable to create the profile. The avatar picture may be too heavy.": "No se pudo crear el perfil. Es posible que la imagen del avatar sea demasiado pesada.", + "Unable to detect timezone.": "No se pudo detectar la zona horaria.", + "Unable to load event for participation. The error details are provided below:": "No se puede cargar el evento para participar. Los detalles del error se proporcionan a continuación:", + "Unable to save your participation in this browser.": "No se puede guardar su participación en este navegador.", + "Unable to update the profile. The avatar picture may be too heavy.": "No se pudo actualizar el perfil. Es posible que la imagen del avatar sea demasiado pesada.", + "Underline": "Subrayar", + "Undo": "Deshacer", + "Unfollow": "Dejar de seguir", + "Unfortunately, your participation request was rejected by the organizers.": "Lamentablemente, su solicitud de participación fue rechazada por los organizadores.", + "Unknown": "Desconocido", + "Unknown actor": "Actor desconocido", + "Unknown error.": "Error desconocido.", + "Unknown value for the openness setting.": "Valor desconocido para la configuración de apertura.", + "Unlogged participation": "Participación no registrada", + "Unsaved changes": "Cambios no guardados", + "Unsubscribe to browser push notifications": "Cancelar la suscripción a las notificaciones push del navegador", + "Unsuspend": "Aprobar", + "Upcoming": "Próximo", + "Upcoming events": "Próximos Eventos", + "Upcoming events from your groups": "Próximos eventos de sus grupos", + "Update": "Actualizar", + "Update app": "Actualización de la app", + "Update discussion title": "Actualizar el título de la discusión", + "Update event {name}": "Actualizar evento {name}", + "Update group": "Actualizar grupo", + "Update my event": "Actualizar mi evento", + "Update post": "Actualizar publicación", + "Updated": "Actualizado", + "Uploaded media size": "Tamaño de los medios cargados", + "Uploaded media total size": "Tamaño total de medios cargados", + "Use my location": "Usa mi ubicación", + "User": "Usuario", + "User settings": "Ajustes de usuario", + "Username": "Nombre de usuario", + "Users": "Los usuarios", + "Validating account": "Validando cuenta", + "Validating email": "Validando correo electrónico", + "Video Conference": "Video conferencia", + "View a reply": "Ver carentes de respuestas|Ver una respuesta|Ver {totalReplies} respuestas", + "View account on {hostname} (in a new window)": "Ver cuenta en {hostname} (en una nueva ventana)", + "View all": "Ver todo", + "View all categories": "Mostrar todas las categorías", + "View all events": "Ver todos los eventos", + "View all posts": "Ver todas las publicaciones", + "View event page": "Ver página del evento", + "View everything": "Ver todo", + "View full profile": "Ver todo el perfil", + "View less": "Ver menos", + "View more": "Ver más", + "View more events": "Ver más eventos", + "View more events around {position}": "Ver más eventos alrededor {position}", + "View more groups around {position}": "Ver más grupos alrededor {position}", + "View more online events": "Ver más eventos en línea", + "View page on {hostname} (in a new window)": "Ver página en {hostname} (en una nueva ventana)", + "View past events": "Ver eventos pasados", + "View the group profile on the original instance": "Ver el perfil del grupo en la instancia original", + "Visibility was set to an unknown value.": "La visibilidad se estableció en un valor desconocido.", + "Visibility was set to private.": "La visibilidad se estableció en privada.", + "Visibility was set to public.": "La visibilidad se estableció en público.", + "Visible everywhere on the web": "Visible por todas partes en la web", + "Visible everywhere on the web (public)": "Visible en todas partes de la web (público)", + "Waiting for organization team approval.": "Esperando la aprobación del equipo de la organización.", + "Warning": "Advertencia", + "We collect your feedback and the error information in order to improve this service.": "Recopilamos sus comentarios y la información de error para mejorar este servicio.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "No pudimos guardar su participación dentro de este navegador. No se preocupe, ha confirmado con éxito su participación, simplemente no pudimos guardar su estado en este navegador debido a un problema técnico.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Mejoramos este software gracias a sus comentarios. Para informarnos sobre este problema, hay dos posibilidades (ambas lamentablemente requieren la creación de una cuenta de usuario):", + "We just sent an email to {email}": "Acabamos de enviar un correo electrónico a {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Usamos su zona horaria para asegurarnos de que reciba notificaciones de un evento en el momento correcto.", + "We will redirect you to your instance in order to interact with this event": "Lo redirigiremos a su instancia para interactuar con este evento", + "We will redirect you to your instance in order to interact with this group": "Te redireccionaremos a tu instancia para poder interactuar con este grupo", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Le enviaremos un correo electrónico una hora antes de que comience el evento, para asegurarnos de que no lo olvide.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Usaremos la configuración de su zona horaria para enviarle un recordatorio la mañana del día evento.", + "Website": "Sitio web", + "Website / URL": "Sitio web / URL", + "Weekly email summary": "Resumen de correo electrónico semanal", + "Welcome back {username}!": "¡Bienvenido de nuevo {username}!", + "Welcome back!": "¡Bienvenido de nuevo!", + "Welcome to Mobilizon, {username}!": "¡Bienvenido a Mobilizon, {username}!", + "What can I do to help?": "¿Que puedo hacer para ayudar?", + "What happened?": "¿Qué pasó?", + "Wheelchair accessibility": "Accesibilidad para sillas de ruedas", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Cuando un moderador del grupo crea un evento y lo atribuye al grupo, se mostrará aquí.", + "When the event is private, you'll need to share the link around.": "Cuando el evento sea privado, deberá compartir el enlace.", + "When the post is private, you'll need to share the link around.": "Cuando la publicación sea privada, deberá compartir el enlace.", + "Whether smoking is prohibited during the event": "En caso de estar prohibido fumar durante el evento", + "Whether the event is accessible with a wheelchair": "Si el evento es accesible con silla de ruedas", + "Whether the event is interpreted in sign language": "Si el evento se interpreta en lenguaje de señas", + "Whether the event live video is subtitled": "Si el video en vivo del evento está subtitulado", + "Who can post a comment?": "¿Quién puede publicar un comentario?", + "Who can view this event and participate": "Quién puede ver este evento y participar", + "Who can view this post": "Quién puede ver esta publicación", + "Who published {number} events": "Quién publicó {número} eventos", + "Why create an account?": "¿Por qué crear una cuenta?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Permitirá mostrar y administrar su estado de participación en la página del evento cuando utilice este dispositivo. Desmarque si está usando un dispositivo público.", + "With the most participants": "Con la mayor cantidad de participantes", + "Within {number} kilometers of {place}": "|Dentro de un kilómetro de {place}|Dentro de {number} kilómetros de {place}", + "Write a new comment": "Escribe un nuevo comentario", + "Write a new message": "Escribe un nuevo mensaje", + "Write a new reply": "Escribe una nueva respuesta", + "Write something": "Escribe algo", + "Write your post": "Escribe tu publicación", + "Yesterday": "Ayer", + "You accepted the invitation to join the group.": "Aceptaste la invitación para unirte al grupo.", + "You added the member {member}.": "Agregaste al miembro {menber}.", + "You approved {member}'s membership.": "Aprobó la membresía de {member}.", + "You archived the discussion {discussion}.": "Archivaste la discusión {discussion}.", + "You are not an administrator for this group.": "No eres administrador de este grupo.", + "You are not part of any group.": "No formas parte de ningún grupo.", + "You are offline": "Estas desconectado", + "You are participating in this event anonymously": "Estás participando en este evento de forma anónima", + "You are participating in this event anonymously but didn't confirm participation": "Participas en este evento de forma anónima pero no has confirmado la participación", + "You can add tags by hitting the Enter key or by adding a comma": "Puede agregar etiquetas presionando la tecla Intro o agregando una coma", + "You can pick your timezone into your preferences.": "Puedes elegir tu zona horaria según tus preferencias.", + "You can try another search term or drag and drop the marker on the map": "Puedes probar con otro término de búsqueda o arrastrar y soltar el marcador en el mapa", + "You can't change your password because you are registered through {provider}.": "No puede cambiar su contraseña porque está registrado a través de {provider}.", + "You can't use push notifications in this browser.": "No puede usar notificaciones push en este navegador.", + "You changed your email or password": "Cambiaste tu correo electrónico o contraseña", + "You created the discussion {discussion}.": "Creaste la discusión {discussion}.", + "You created the event {event}.": "Has creado el evento {event}.", + "You created the folder {resource}.": "Creaste la carpeta {resource}.", + "You created the group {group}.": "Creaste el grupo {group}.", + "You created the post {post}.": "Creaste la publicación {post}.", + "You created the resource {resource}.": "Creaste el recurso {resource}.", + "You deleted the discussion {discussion}.": "Eliminaste la discusión {discusión}.", + "You deleted the event {event}.": "Has borrado el evento {event}.", + "You deleted the folder {resource}.": "Eliminaste la carpeta {recurso}.", + "You deleted the post {post}.": "Has borrado la publicación {post}.", + "You deleted the resource {resource}.": "Has borrado el recurso {resource}.", + "You demoted the member {member} to an unknown role.": "Has degradado al miembro {member} a una función desconocida.", + "You demoted {member} to moderator.": "Has degradado a {member} a moderador.", + "You demoted {member} to simple member.": "Has degradado a {member} a miembro simple.", + "You didn't create or join any event yet.": "Aún no creaste ni te uniste a ningún evento.", + "You don't follow any instances yet.": "Todavía no sigues ninguna instancia.", + "You don't have any upcoming events. Maybe try another filter?": "No tienes ningún evento próximo. ¿Quizás probar con otro filtro?", + "You excluded member {member}.": "Ha excluido al miembro {member}.", + "You have attended {count} events in the past.": "No ha asistido a ningún evento en el pasado. |Ha asistido a un evento en el pasado. |Ha asistido a {count} eventos en el pasado.", + "You have been invited by {invitedBy} to the following group:": "Usted ha sido invitado por {invitedBy} al siguiente grupo:", + "You have been removed from this group's members.": "Ha sido eliminado de los miembros de este grupo.", + "You have cancelled your participation": "Has cancelado tu participación", + "You have one event in {days} days.": "No tienes eventos en {days} días|Tienes un evento en {days} días. |Tienes {count} eventos en {days} días", + "You have one event today.": "No tienes eventos hoy|Tienes un evento hoy.|Tienes {count} eventos hoy", + "You have one event tomorrow.": "No tienes eventos mañana|Tienes un evento mañana.|Tienes {count} eventos mañana", + "You haven't interacted with other instances yet.": "Aún no has interactuado con otras instancias.", + "You invited {member}.": "as invitado a {member}.", + "You may also:": "También puedes:", + "You may clear all participation information for this device with the buttons below.": "Puede borrar toda la información de participación de este dispositivo con los botones a continuación.", + "You may now close this page or {return_to_the_homepage}.": "Ahora puede cerrar esta página o {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "Ahora puede cerrar esta ventana o {return_to_event}.", + "You may show some members as contacts.": "Puede mostrar algunos miembros como contactos.", + "You moved the folder {resource} into {new_path}.": "Moviste la carpeta {resource} a {new_path}.", + "You moved the folder {resource} to the root folder.": "Moviste la carpeta {resource} a la carpeta raíz.", + "You moved the resource {resource} into {new_path}.": "Moviste el recurso {resource} a {new_path}.", + "You moved the resource {resource} to the root folder.": "Moviste el recurso {resource} a la carpeta raíz.", + "You need to login.": "Necesitas iniciar sesión.", + "You posted a comment on the event {event}.": "Publicó un comentario sobre el evento {event}.", + "You promoted the member {member} to an unknown role.": "has ascendido al miembro {member} a un rol desconocido.", + "You promoted {member} to administrator.": "has ascendido a {menber} como administrador.", + "You promoted {member} to moderator.": "Has ascendido a {member} a moderador.", + "You rejected {member}'s membership request.": "Rechazaste la solicitud de adesión de {member}.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Has cambiado el nombre de la discusión de {old_discussion} a {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Cambió el nombre de la carpeta de {old_resource_title} a {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "cambiaste el nombre del recurso de {old_resource_title} a {resource}.", + "You replied to a comment on the event {event}.": "Respondiste a un comentario sobre el evento {evento}.", + "You replied to the discussion {discussion}.": "Respondiste a la discusión {discussion}.", + "You requested to join the group.": "Solicitaste unirte al grupo.", + "You updated the event {event}.": "Has actualizado el evento {event}.", + "You updated the group {group}.": "Actualizaste el grupo {group}.", + "You updated the member {member}.": "Ha actualizado al miembro {member}.", + "You updated the post {post}.": "Ha actualizado la publicación {post}.", + "You were demoted to an unknown role by {profile}.": "{profile} te degradó a una función desconocida.", + "You were demoted to moderator by {profile}.": "{profile} te degradó a moderador.", + "You were demoted to simple member by {profile}.": "{profile} te degradó a miembro simple.", + "You were promoted to administrator by {profile}.": "{profile} te ascendió a administrador.", + "You were promoted to an unknown role by {profile}.": "{profile} te ascendió a un puesto desconocido.", + "You were promoted to moderator by {profile}.": "{profile} te ascendió a moderador.", + "You will be able to add an avatar and set other options in your account settings.": "Podrá agregar un avatar y establecer otras opciones en la configuración de su cuenta.", + "You will be redirected to the original instance": "Serás redirigido a la instancia original", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Aquí encontrará todos los eventos que ha creado o aquellos en los que es participante, además de eventos organizados por grupos a los que forma parte o sigue.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Recibirás notificaciones sobre la actividad pública de este grupo según% {notification_settings}.", + "You wish to participate to the following event": "Desea participar en el siguiente evento", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Obtendrás un recordatorio semanal todos los lunes para los próximos eventos, si tiene alguno.", + "You'll need to change the URLs where there were previously entered.": "Deberá cambiar las URL donde se ingresaron anteriormente.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Deberá transmitir la URL del grupo para que las personas puedan acceder al perfil del grupo. El grupo no se podrá encontrar en la búsqueda de Mobilizon ni en los motores de búsqueda habituales.", + "You'll receive a confirmation email.": "Recibirá un correo electrónico de confirmación.", + "YouTube live": "YouTube en vivo", + "YouTube replay": "Reproducción de YouTube", + "Your account has been successfully deleted": "Su cuenta ha sido eliminada exitosamente", + "Your account has been validated": "Su cuenta ha sido validada", + "Your account is being validated": "Su cuenta esta siendo validada", + "Your account is nearly ready, {username}": "Su cuenta está casi lista, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Su ciudad o región y el radio solo se utilizarán para sugerirle eventos cercanos. El radio del evento considerará el centro administrativo del área.", + "Your current email is {email}. You use it to log in.": "Su correo electrónico actual es {correo electrónico}. Lo usas para iniciar sesión.", + "Your email": "Tu correo electrónico", + "Your email address was automatically set based on your {provider} account.": "Su dirección de correo electrónico se configuró automáticamente en función de su cuenta de {provider}.", + "Your email has been changed": "Su correo ha sido cambiado", + "Your email is being changed": "Su correo electrónico está siendo cambiado", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Su correo electrónico solo se utilizará para confirmar que es una persona real y enviarle actualizaciones eventuales para este evento. NO se transmitirá a otras instancias ni al organizador del evento.", + "Your federated identity": "Su identidad federada", + "Your membership is pending approval": "Su membresía está pendiente de aprobación", + "Your membership was approved by {profile}.": "Su adesión fue aprobada por {profile}.", + "Your participation has been confirmed": "Su participación ha sido confirmada", + "Your participation has been rejected": "Su participación ha sido rechazada", + "Your participation has been requested": "Su participación ha sido solicitada", + "Your participation request has been validated": "Tu participación ha sido validada", + "Your participation request is being validated": "Tu participación esta siendo validada", + "Your participation status has been changed": "Su estado de participación ha cambiado", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Su estado de participación se guarda solo en este dispositivo y se eliminará un mes después de que pase el evento.", + "Your participation still has to be approved by the organisers.": "Su participación aún debe ser aprobada por los organizadores.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Su participación será validada una vez que haga clic en el enlace de confirmación en el correo electrónico y después de que el organizador valide manualmente su participación.", + "Your participation will be validated once you click the confirmation link into the email.": "Su participación será validada una vez que haga clic en el enlace de confirmación en el correo electrónico.", + "Your position was not available.": "Tu puesto no estaba disponible.", + "Your profile will be shown as contact.": "Su perfil se mostrará como contacto.", + "Your timezone is currently set to {timezone}.": "Tu zona horaria está configurada actualmente en {timezone}.", + "Your timezone was detected as {timezone}.": "Su zona horaria se detectó como {timezone}.", + "Your timezone {timezone} isn't supported.": "Tu zona horaria {timezone} no es compatible.", + "Your upcoming events": "Tus próximos eventos", + "Zoom": "Zoom", + "Zoom in": "Zoom adelante", + "Zoom out": "Zoom atras", + "[This comment has been deleted by it's author]": "[Este comentario ha sido borrado por su autor]", + "[This comment has been deleted]": "[Este comentario ha sido eliminado]", + "[deleted]": "[eliminado]", + "a non-existent report": "un informe inexistente", + "access the corresponding account": "acceder a la cuenta correspondiente", + "access to the group's private content as well": "acceso al contenido privado del grupo también", + "and {number} groups": "y {number} grupos", + "any distance": "cualquier distancia", + "as {identity}": "como {identity}", + "contact uninformed": "contacto desinformado", + "create a group": "crear un grupo", + "create an event": "crear un evento", + "default Mobilizon privacy policy": "política de privacidad predeterminada de Mobilizon", + "default Mobilizon terms": "términos predeterminados de Mobilizon", + "detail": " ", + "e.g. 10 Rue Jangot": "e.j. 10 Rue Jangot", + "e.g. Accessibility, Twitch, PeerTube": "p.ej. Accesibilidad, Twitch, PeerTube", + "e.g. Nantes, Berlin, Cork, …": "p.ej. Nantes, Berlín, Cork,…", + "enable the feature": "habilitar la función", + "explore the events": "explorar los eventos", + "explore the groups": "explorar los grupos", + "find, create and organise events": "buscar, crear y organizar eventos", + "full rules": "reglas completas", + "group's upcoming public events": "próximos eventos públicos del grupo", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/algun-signo-secreto", + "iCal Feed": "Suministro iCal", + "instance rules": "reglas de instancia", + "mobilizon-instance.tld": "mobilizon-instance.tld", + "more than 1360 contributors": "más de 1360 contribuyentes", + "multitude of interconnected Mobilizon websites": "multitud de sitios web de Mobilizon interconectados", + "new{'@'}email.com": "nuevo{'@'}email.com", + "profile@instance": "perfil@instancia", + "report #{report_number}": "informe #{report_number}", + "return to the event's page": "volver a la página del evento", + "return to the homepage": "Vuelve a la página inicial", + "terms of service": "términos de servicio", + "tool designed to serve you": "herramienta diseñada para servirle", + "translation": " ", + "with another identity…": "con otra identidad …", + "your notification settings": "tu configuración de notificaciones", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "Asientos {approved}/{total}", + "{available}/{capacity} available places": "No quedan plazas|{available}/{capacity} plazas disponibles", + "{count} events": "{count} eventos", + "{count} km": "{count} km", + "{count} members": "Sin miembros|Un miembro|{count}miembros", + "{count} members or followers": "Sin miembros ni seguidores|Un miembro o seguidor|{count} miembros o seguidores", + "{count} participants": "Aún no hay participantes|Un participante|{count} participantes", + "{count} requests waiting": "{count} solicitudes en espera", + "{eventsCount} events found": "No se encontraron eventos|Se encontró un evento|{eventsCount} eventos encontrados", + "{folder} - Resources": "{folder} - Recursos", + "{groupsCount} groups found": "No se encontraron grupos|Se encontró un grupo|{groupsCount} grupos encontrados", + "{group} activity timeline": "Cronograma de actividad de {group}", + "{group} events": "{group} eventos", + "{group} posts": "{group} publicaciones", + "{group}'s events": "Eventos de {group}", + "{group}'s todolists": "Trabajos pendientes de {group}", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} es una instancia de lsoftware {mobilizon .", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} es una instancia de {mobilizon_link}, un software gratuito creado con la comunidad.", + "{member} accepted the invitation to join the group.": "{member} aceptó la invitación para unirse al grupo.", + "{member} joined the group.": "{member} se unió al grupo.", + "{member} rejected the invitation to join the group.": "{member} rechazó la invitación para unirse al grupo.", + "{member} requested to join the group.": "{member} solicitó unirse al grupo.", + "{member} was invited by {profile}.": "{member} fue invitado por {profile}.", + "{moderator} added a note on {report}": "{moderator} agregó una nota en{report}", + "{moderator} closed {report}": "{moderator} cerrado {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} eliminó un evento llamado \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} ha eliminado un comentario de {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} ha eliminado un comentario de {author} según el evento {event}", + "{moderator} has deleted user {user}": "{moderator} ha eliminado el usuario {user}", + "{moderator} has done an unknown action": "{moderator} ha realizado una acción desconocida", + "{moderator} has unsuspended group {profile}": "{moderator} ha canceladola suspension del grupo {profile}", + "{moderator} has unsuspended profile {profile}": "{moderator} ha rehabilitado el perfil {profile}", + "{moderator} marked {report} as resolved": "{moderator} marcado {report} como resuelto", + "{moderator} reopened {report}": "{moderator} reabierto {report}", + "{moderator} suspended group {profile}": "{moderator} ha suspendido el grupo {perfil}", + "{moderator} suspended profile {profile}": "{moderator} perfil suspendido {profile}", + "{nb} km": "{nb} km", + "{numberOfCategories} selected": "{numberOfCategories} seleccionado", + "{numberOfLanguages} selected": "{numberOfLanguages} seleccionados", + "{number} kilometers": "{número} kilómetros", + "{number} members": "{number} miembros", + "{number} memberships": "{number} miembros", + "{number} organized events": "No hay eventos organizados|Un evento organizad|{number} eventos organizados", + "{number} participations": "Sin participaciones|Una participación|{number} participaciones", + "{number} posts": "No hay publicaciones|Una publicación|{number} publicaciones", + "{number} seats left": "Quedan {number} asientos", + "{old_group_name} was renamed to {group}.": "Se cambió el nombre de {old_group_name} a {group}.", + "{profile} (by default)": "{profile} (por defecto)", + "{profile} added the member {member}.": "{profile} agregó el miembro {member}.", + "{profile} approved {member}'s membership.": "{profile} aprobó la adesión de {member}.", + "{profile} archived the discussion {discussion}.": "{profile} archivó la discusión {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} creó la discusión {discussion}.", + "{profile} created the folder {resource}.": "{profile} creó la carpeta {resource}.", + "{profile} created the group {group}.": "{profile} creó el grupo {group}.", + "{profile} created the resource {resource}.": "{profile} creó el recurso {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} eliminó la discusión {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} eliminó la carpeta {resource}.", + "{profile} deleted the resource {resource}.": "{profile} eliminó el recurso {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} degradó a {member} a una función desconocida.", + "{profile} demoted {member} to moderator.": "{profile} degradó a {member} a moderador.", + "{profile} demoted {member} to simple member.": "{profile} degradado {member} a miembro simple.", + "{profile} excluded member {member}.": "{profile} ha excluido al miembbro {member}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} moviste la carpeta {resource} a {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} movió la carpeta {resource} a la carpeta raíz.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} movió el recurso {resource} a {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} movió el recurso {resource} a la carpeta raíz.", + "{profile} posted a comment on the event {event}.": "{profile} publicó un comentario sobre el evento {event}.", + "{profile} promoted {member} to administrator.": "{perfil} ascendió a {miembro} a administrador.", + "{profile} promoted {member} to an unknown role.": "{profile} ascendió a {member} a una función desconocida.", + "{profile} promoted {member} to moderator.": "{profile} ascendió a {member} a moderador.", + "{profile} quit the group.": "{profile} abandona el grupo.", + "{profile} rejected {member}'s membership request.": "{profile} rechazó la solicitud de membresía de {member}.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} cambió el nombre de la discusión de {old_discussion} a {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} cambió el nombre de la carpeta de {old_resource_title} a {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} cambió el nombre del recurso de {old_resource_title} a {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} respondió a un comentario sobre el evento {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} respondió a la discusión {discussion}.", + "{profile} updated the group {group}.": "{profile} actualizó el grupo {group}.", + "{profile} updated the member {member}.": "{profile} actualizó el miembro {member}.", + "{resultsCount} results found": "No se encontraron resultados|En resultado encontrado|{resultsCount} resultados encontrados", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} trabajos pendientes)", + "{username} was invited to {group}": "{username} fue invitado a {group}", + "© The OpenStreetMap Contributors": "© The OpenStreetMap Contributors" +}); diff --git a/res/locale/eu.js b/res/locale/eu.js new file mode 100644 index 0000000..03b157a --- /dev/null +++ b/res/locale/eu.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "", + "+ Create a post": "", + "+ Create an event": "", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Tresna erabilterrez bat, emantzipatzailea eta etikoa, biltzeko, antolatzeko eta mobilizatzeko.", + "A validation email was sent to {email}": "Balioztatze eposta bat bidali da {email} helbidera", + "API": "", + "Abandon editing": "Editatzeari utzi", + "About": "Honi buruz", + "About Mobilizon": "Mobilizon-i buruz", + "About anonymous participation": "", + "About instance": "", + "About this event": "Ekitaldi honi buruz", + "About this instance": "Instantzia honi buruz", + "About {instance}": "", + "Accept": "", + "Accepted": "Onartua", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "Kontua", + "Account settings": "", + "Actions": "", + "Activate browser push notifications": "", + "Activated": "", + "Active": "", + "Activity": "", + "Actor": "", + "Add": "Gehitu", + "Add / Remove…": "", + "Add a contact": "", + "Add a new post": "", + "Add a note": "Gehitu ohar bat", + "Add a todo": "", + "Add an address": "Gehitu helbide bat", + "Add an instance": "Gehitu instantzia bat", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "Gehitu etiketa batzuk", + "Add to my calendar": "Gehitu nire egutegira", + "Additional comments": "Iruzkin gehigarriak", + "Admin": "Administradorea", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "Administradorearen ezarpenak ongi gordeak.", + "Administration": "Administrazioa", + "Administrator": "", + "All activities": "", + "All good, let's continue!": "", + "All the places have already been taken": "Leku guztiak hartu dira", + "Allow all comments from users with accounts": "", + "Allow registrations": "Erregistroak baimendu", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "Partehartzaile anonimoa", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Partehartzaile anonimoek parthartzea eposta bidez konfirmatu beharko dute.", + "Anonymous participations": "Partehartze anonimoak", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Ziur zaude zure kontu guztia ezabatu bahi duzula? Dena galduko duzu. Identitateak, ezarpenak, sortutako ekitaldiak, mezuak eta partehartzeak betirako galduko dira.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "Ziur zaude iruzkin hau ezabatu nahi duzula? Ekintza hau ezin da desegin.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Ziur zaude ekitaldi hau ezabatunahi duzula? Ekintza hau ezin da desegin. Ekitaldiaren sortzailearekin hitz egin dezakezu edo editatu besterik gabe.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Ziur zaude ekitaldiaren sortzea utzi nahi duzula? Aldaketa guztiak galduko dituzu.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Ziur zaude ekitaldiaren edizioa utzi nahi duzula? Aldaketa guztiak galduko dituzu.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Ziur zaude \"{title}\" ekitaldian zure partehartzea utzi nahi duzula?", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "Ziur zaude ekitaldi hau ezabatu nahi duzula? Ekintza hau ezingo da berreskuratu.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "", + "Back to group list": "", + "Back to previous page": "Aurreko orrialdera itzuli", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "", + "Before you can login, you need to click on the link inside it to validate your account.": "Saioa hasi aurretik, zure kontua balidatzeko estekan klik egin behar duzu.", + "Begins on": "", + "Big Blue Button": "", + "Bold": "", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "", + "By {group}": "", + "By {username}": "", + "Can be an email or a link, or just plain text.": "", + "Cancel": "Utzi", + "Cancel anonymous participation": "Parte hartze anonimoa bertan behera utzi", + "Cancel creation": "Ezeztatu sorkuntza", + "Cancel discussion title edition": "", + "Cancel edition": "Edizioa ezeztatu", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "Parte hartze eskaera ezeztatu…", + "Cancel my participation…": "Nire parte hartzea ezeztatu…", + "Cancelled": "", + "Cancelled: Won't happen": "", + "Change": "Aldatu", + "Change my email": "Nire posta aldatu", + "Change my identity…": "Nire identitatea aldatu…", + "Change my password": "Nire pasahitza aldatu", + "Change timezone": "", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "", + "Clear": "Garbitu", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "", + "Click to upload": "Klik egin igotzeko", + "Close": "Itxi", + "Close comments for all (except for admins)": "Iruzkinak desaktibatu denentzat (adminek izan ezik)", + "Closed": "Itxi", + "Comment body": "", + "Comment deleted": "Iruzkina ezabatuta", + "Comment text can't be empty": "", + "Comments": "Iruzkinak", + "Comments are closed for everybody else.": "", + "Confirm my participation": "Nire parte hartzea konfirmatu", + "Confirm my particpation": "Nire parte hartzea konfirmatu", + "Confirm participation": "", + "Confirmed": "", + "Confirmed at": "", + "Confirmed: Will happen": "", + "Congratulations, your account is now created!": "", + "Contact": "", + "Continue editing": "Editatzen jarraitu", + "Cookies and Local storage": "", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "Herrialdea", + "Create": "", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "", + "Create a new event": "Ekitaldi berria sortu", + "Create a new group": "Talde berria sortu", + "Create a new identity": "Identitate berria sortu", + "Create a new list": "", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "", + "Create discussion": "", + "Create event": "", + "Create group": "Taldea sortu", + "Create identity": "", + "Create my event": "Nire ekitaldia sortu", + "Create my group": "Nire taldea sortu", + "Create my profile": "Nire profila sortu", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "", + "Current page": "", + "Custom": "", + "Custom URL": "", + "Custom text": "", + "Daily email summary": "", + "Dashboard": "", + "Date": "", + "Date and time": "", + "Date and time settings": "", + "Date parameters": "", + "Decline": "", + "Decrease": "", + "Default": "", + "Default Mobilizon privacy policy": "", + "Default Mobilizon terms": "", + "Delete": "", + "Delete account": "", + "Delete conversation": "", + "Delete discussion": "", + "Delete event": "", + "Delete everything": "", + "Delete group": "", + "Delete my account": "", + "Delete post": "", + "Delete this discussion": "", + "Delete this identity": "", + "Delete your identity": "", + "Delete {eventTitle}": "", + "Delete {preferredUsername}": "", + "Deleting comment": "", + "Deleting event": "", + "Deleting my account will delete all of my identities.": "", + "Deleting your Mobilizon account": "", + "Demote": "", + "Description": "", + "Details": "", + "Didn't receive the instructions?": "", + "Disabled": "", + "Discussions": "", + "Discussions list": "", + "Display name": "", + "Display participation price": "", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "", + "Draft": "", + "Drafts": "", + "Due on": "", + "Duplicate": "", + "Edit": "", + "Edit post": "", + "Edit profile {profile}": "", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "", + "Either on the {instance} instance or on another instance.": "", + "Either the account is already validated, either the validation token is incorrect.": "", + "Either the email has already been changed, either the validation token is incorrect.": "", + "Either the participation request has already been validated, either the validation token is incorrect.": "", + "Element title": "", + "Element value": "", + "Email": "", + "Email address": "", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "", + "Ends on…": "", + "Enter the link URL": "", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "", + "Error details copied!": "", + "Error message": "", + "Error stacktrace": "", + "Error while changing email": "", + "Error while loading the preview": "", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "", + "Error while validating participation request": "", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "", + "Event URL": "", + "Event already passed": "", + "Event cancelled": "", + "Event creation": "", + "Event description body": "", + "Event edition": "", + "Event list": "", + "Event metadata": "", + "Event page settings": "", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "", + "Event {eventTitle} deleted": "", + "Event {eventTitle} reported": "", + "Events": "", + "Events nearby": "", + "Events tagged with {tag}": "", + "Everything": "", + "Ex: mobilizon.fr": "", + "Ex: someone@mobilizon.org": "", + "Explore": "", + "Explore events": "", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "", + "Featured events": "", + "Federated Group Name": "", + "Federation": "", + "Fediverse account": "", + "Fetch more": "", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "", + "Find an instance": "", + "Find another instance": "", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "", + "Followers": "", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "", + "Forgot your password ?": "", + "Forgot your password?": "", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "", + "From the {startDate} to the {endDate}": "", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "", + "General": "", + "General information": "", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "", + "Getting there": "", + "Glossary": "", + "Go": "", + "Go to the event page": "", + "Google Meet": "", + "Group": "", + "Group Followers": "", + "Group Members": "", + "Group URL": "", + "Group activity": "", + "Group address": "", + "Group description body": "", + "Group display name": "", + "Group name": "", + "Group profiles": "", + "Group settings": "", + "Group settings saved": "", + "Group short description": "", + "Group visibility": "", + "Group {displayName} created": "", + "Group {groupTitle} reported": "", + "Groups": "", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "", + "Hide replies": "", + "Home": "", + "Home to {number} users": "", + "Homepage": "", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "", + "I create an identity": "", + "I don't have a Mobilizon account": "", + "I have a Mobilizon account": "", + "I have an account on another Mobilizon instance.": "", + "I participate": "", + "I want to allow people to participate without an account.": "", + "I want to approve every participation request": "", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "", + "Identity {displayName} created": "", + "Identity {displayName} deleted": "", + "Identity {displayName} updated": "", + "If allowed by organizer": "", + "If an account with this email exists, we just sent another confirmation email to {email}": "", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "", + "Instance Long Description": "", + "Instance Name": "", + "Instance Privacy Policy": "", + "Instance Privacy Policy Source": "", + "Instance Privacy Policy URL": "", + "Instance Rules": "", + "Instance Short Description": "", + "Instance Slogan": "", + "Instance Terms": "", + "Instance Terms Source": "", + "Instance Terms URL": "", + "Instance administrator": "", + "Instance configuration": "", + "Instance feeds": "", + "Instance languages": "", + "Instance rules": "", + "Instance settings": "", + "Instances": "", + "Instances following you": "", + "Instances you follow": "", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "", + "Invite member": "", + "Invited": "", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "", + "Join group": "", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "", + "Language": "", + "Last IP adress": "", + "Last group created": "", + "Last published event": "", + "Last published events": "", + "Last sign-in": "", + "Last week": "", + "Latest posts": "", + "Learn more": "", + "Learn more about Mobilizon": "", + "Learn more about {instance}": "", + "Leave": "", + "Leave event": "", + "Leave group": "", + "Leaving event \"{title}\"": "", + "Legal": "", + "Let's define a few settings": "", + "License": "", + "Limited number of places": "", + "List title": "", + "Live": "", + "Load more": "", + "Load more activities": "", + "Loading comments…": "", + "Local": "", + "Local time ({timezone})": "", + "Locality": "", + "Location": "", + "Log in": "", + "Log out": "", + "Login": "", + "Login on Mobilizon!": "", + "Login on {instance}": "", + "Login status": "", + "Main languages you/your moderators speak": "", + "Manage participations": "", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "", + "Member": "", + "Members": "", + "Members-only post": "", + "Mentions": "", + "Message": "", + "Microsoft Teams": "", + "Mobilizon": "", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "", + "Moderated comments (shown after approval)": "", + "Moderation": "", + "Moderation log": "", + "Moderation logs": "", + "Moderator": "", + "Move": "", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "", + "My events": "", + "My groups": "", + "My identities": "", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "", + "Navigated to {pageTitle}": "", + "New discussion": "", + "New email": "", + "New folder": "", + "New link": "", + "New members": "", + "New note": "", + "New password": "", + "New post": "", + "New profile": "", + "Next": "", + "Next month": "", + "Next page": "", + "Next week": "", + "No address defined": "", + "No closed reports yet": "", + "No comment": "", + "No comments yet": "", + "No discussions yet": "", + "No end date": "", + "No events found": "", + "No follower matches the filters": "", + "No group found": "", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "", + "No information": "", + "No instance follows your instance yet.": "", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "", + "No member matches the filters": "", + "No members found": "", + "No memberships found": "", + "No message": "", + "No moderation logs yet": "", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "", + "No open reports yet": "", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "", + "No posts yet": "", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "", + "No results for {search}": "", + "No rules defined yet.": "", + "None": "", + "Not accessible with a wheelchair": "", + "Not approved": "", + "Not confirmed": "", + "Notes": "", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "", + "Notifications": "", + "Notifications for manually approved participations to an event": "", + "Notify participants": "", + "Now, create your first profile:": "", + "Number of places": "", + "OK": "", + "Old password": "", + "On {date}": "", + "On {date} ending at {endTime}": "", + "On {date} from {startTime} to {endTime}": "", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "", + "Open": "", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Opened reports": "", + "Or": "", + "Ordered list": "", + "Organized": "", + "Organized by": "", + "Organized by {name}": "", + "Organizer": "", + "Organizer notifications": "", + "Organizers": "", + "Other": "", + "Other actions": "", + "Other notification options:": "", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "", + "Page limited to my group (asks for auth)": "", + "Page not found": "", + "Parent folder": "", + "Partially accessible with a wheelchair": "", + "Participant": "", + "Participants": "", + "Participate": "", + "Participate using your email address": "", + "Participation approval": "", + "Participation confirmation": "", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "", + "Password (confirmation)": "", + "Password reset": "", + "Past events": "", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "", + "Pick an instance": "", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "", + "Please do not use it in any real way.": "Mesedez ez erabili inoiz modu erreal batean.", + "Please enter your password to confirm this action.": "", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "", + "Post": "", + "Post URL": "", + "Post a comment": "", + "Post a reply": "", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "", + "Posts": "", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "", + "Preferences": "", + "Previous": "", + "Previous month": "", + "Previous page": "", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "", + "Privacy policy": "", + "Private event": "", + "Private feeds": "", + "Profile": "", + "Profile feeds": "", + "Profiles": "", + "Profiles and federation": "", + "Promote": "", + "Public": "", + "Public RSS/Atom Feed": "", + "Public comment moderation": "", + "Public event": "", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "", + "Publish": "", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "", + "Radius": "", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "", + "Register": "", + "Register an account on {instanceName}!": "", + "Register on this instance": "", + "Registration is allowed, anyone can register.": "", + "Registration is closed.": "", + "Registration is currently closed.": "", + "Registrations": "", + "Registrations are restricted by allowlisting.": "", + "Reject": "", + "Reject member": "", + "Rejected": "", + "Remember my participation in this browser": "", + "Remove": "", + "Remove link": "", + "Rename": "", + "Rename resource": "", + "Reopen": "", + "Replay": "", + "Reply": "", + "Report": "", + "Report #{reportNumber}": "", + "Report this comment": "", + "Report this event": "", + "Report this group": "", + "Report this post": "", + "Reported": "", + "Reported by": "", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "", + "Reported group": "", + "Reported identity": "", + "Reports": "", + "Reports list": "", + "Request for participation confirmation sent": "", + "Resend confirmation email": "", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "", + "Reset password": "", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "", + "Restricted": "", + "Return to the group page": "", + "Right now": "", + "Role": "", + "Rules": "", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "", + "Save": "", + "Save draft": "", + "Schedule": "", + "Search": "", + "Search events, groups, etc.": "", + "Searching…": "", + "Select a language": "", + "Select a radius": "", + "Select a timezone": "", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "", + "Send the report": "", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "", + "Share": "", + "Share this event": "", + "Share this group": "", + "Share this post": "", + "Short bio": "", + "Show map": "", + "Show me where I am": "", + "Show remaining number of places": "", + "Show the time when the event begins": "", + "Show the time when the event ends": "", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "", + "Sign up": "", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "", + "Status": "", + "Street": "", + "Submit": "", + "Subtitles": "", + "Suspend": "", + "Suspend group": "", + "Suspended": "", + "Tag search": "", + "Task lists": "", + "Technical details": "", + "Tentative": "", + "Tentative: Will be confirmed later": "", + "Terms": "", + "Terms of service": "", + "Text": "", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "", + "The event has been published": "", + "The event has been updated": "", + "The event has been updated and published": "", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "", + "The page you're looking for doesn't exist.": "", + "The password was successfully changed": "", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no discussions yet": "", + "These events may interest you": "", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "", + "This event has been cancelled.": "", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "", + "This weekend": "", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "", + "Timezone detected as {timezone}.": "", + "Title": "", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "", + "To create and manage your events": "", + "To create or join an group and start organizing with other people": "", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "", + "Today": "", + "Tomorrow": "", + "Tools": "", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "", + "Type or select a date…": "", + "URL": "", + "URL copied to clipboard": "", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "", + "Unknown actor": "", + "Unknown error.": "", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "", + "Upcoming events": "", + "Upcoming events from your groups": "", + "Update": "", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "", + "Update group": "", + "Update my event": "", + "Update post": "", + "Updated": "", + "Uploaded media size": "", + "Use my location": "", + "User": "", + "User settings": "", + "Username": "", + "Users": "", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "", + "View account on {hostname} (in a new window)": "", + "View all": "", + "View all events": "", + "View all posts": "", + "View event page": "", + "View everything": "", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "", + "Visible everywhere on the web (public)": "", + "Waiting for organization team approval.": "", + "Warning": "", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "", + "Website / URL": "", + "Weekly email summary": "", + "Welcome back {username}!": "", + "Welcome back!": "", + "Welcome to Mobilizon, {username}!": "", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Yesterday": "", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "", + "Your account has been validated": "", + "Your account is being validated": "", + "Your account is nearly ready, {username}": "", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "", + "Your email": "", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "", + "Your upcoming events": "", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "", + "[This comment has been deleted]": "", + "[deleted]": "", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "", + "contact uninformed": "", + "create a group": "", + "create an event": "", + "default Mobilizon privacy policy": "", + "default Mobilizon terms": "", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "", + "instance rules": "", + "more than 1360 contributors": "", + "profile@instance": "", + "report #{report_number}": "", + "return to the event's page": "", + "terms of service": "", + "with another identity…": "", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "", + "{number} members": "", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "", + "© The OpenStreetMap Contributors": "" +}); diff --git a/res/locale/fa.js b/res/locale/fa.js new file mode 100644 index 0000000..e038687 --- /dev/null +++ b/res/locale/fa.js @@ -0,0 +1,1265 @@ +CTX.setMessages({ + "#{tag}": "", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "", + "+ Create a post": "", + "+ Create an event": "+ ایجاد یک رویداد", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "ابزاری کاربرپسند، رهایی‌بخش و اخلاقی برای گردهم‌آیی، سازمان‌دهی و بسیج افراد.", + "A validation email was sent to {email}": "رایانامه اعتبارسنجی به {email} فرستاده شد", + "API": "", + "Abandon editing": "ترک ویرایش", + "About": "درباره", + "About Mobilizon": "درباره موبیلیزون", + "About anonymous participation": "", + "About instance": "", + "About this event": "درباره این رویداد", + "About this instance": "درباره این نمونه", + "About {instance}": "درباره {instance}", + "Accept": "", + "Accepted": "پذیرفته شد", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "حساب", + "Account settings": "", + "Actions": "اقدامات", + "Activate browser push notifications": "", + "Activated": "", + "Active": "", + "Activity": "", + "Actor": "", + "Add": "افزودن", + "Add / Remove…": "", + "Add a contact": "", + "Add a new post": "", + "Add a note": "افزودن یک یادداشت", + "Add a todo": "", + "Add an address": "افزودن یک نشانی", + "Add an instance": "افزودن یک نمونه", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "چند برچسب اضافه شود", + "Add to my calendar": "به تقویم من اضافه شود", + "Additional comments": "نظرات اضافه‌تر", + "Admin": "مدیر", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "تنظیمات مدیریتی با موفقیت ذخیره شد.", + "Administration": "مدیریت", + "Administrator": "", + "All activities": "", + "All good, let's continue!": "", + "All the places have already been taken": "تمام مکان‌ها از قبل گرفته شده‌اند", + "Allow all comments from users with accounts": "", + "Allow registrations": "ثبت‌نام مجاز باشد", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements": "اعلانات", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "شرکت‌کنندهٔ ناشناس", + "Anonymous participants will be asked to confirm their participation through e-mail.": "از شرکت‌کنندگان ناشناس خواسته می‌شود تا شرکت‌شان را از طریق رایانامه تایید کنند.", + "Anonymous participations": "شرکت‌کنندگان ناشناس", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "آیا واقعا مطمئنید که می‌خواهد حساب‌تان را کلا پاک کنید؟ همه چیز از بین خواهد رفت. هویت‌ها، تنظیمات، رویدادهای ساخته شده، پیام‌ها و شرکت‌کنندگان برای همیشه پاک خواهند شد.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "مطمئنید که می‌خواهید این نظر را پاک کنید؟ این عمل غیر قابل بازگشت خواهد بود.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "مطمئنید که می‌خواهید این رویداد را پاک کنید؟ این عمل غیر قابل بازگشت خواهد بود. شاید بهتر باشد با سازنده رویداد صحبت کرده و یا رویداد را ویرایش کنید.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "مطمئنید که می‌خواهید ساخت رویداد را لغو کنید؟ همه تغییرات از دست خواهند رفت.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "مطمئنید که می‌خواهید ویرایش رویداد را لغو کنید؟ همه تغییرات از دست خواهند رفت.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "مطمئنید که می‌خواهید اعلام حضورتان در رویداد «{title}» را لغو کنید؟", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "مطمئنید که می‌خواهید این رویداد را پاک کنید؟ این عمل قابل بازگشت خواهند بود.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "آواتار", + "Back to group list": "", + "Back to previous page": "بازگشت به صفحه قبلی", + "Back to profile list": "", + "Back to top": "بازگشت به بالا", + "Back to user list": "", + "Banner": "", + "Before you can login, you need to click on the link inside it to validate your account.": "پیش از آن که بتواند وارد شوید لازم است روی پیوندی که داخل آن است کلیک کنید تا حساب‌تان اعتبارسنجی شود.", + "Begins on": "", + "Big Blue Button": "", + "Bold": "", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "توسط دیگران", + "By {group}": "توسط {group}", + "By {username}": "توسط {username}", + "Calendar": "تقویم", + "Can be an email or a link, or just plain text.": "", + "Cancel": "لغو", + "Cancel anonymous participation": "غلو حضور ناشناس", + "Cancel creation": "لغو ساخت", + "Cancel discussion title edition": "", + "Cancel edition": "لغو ویرایش", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "لغو درخواست شرکت من…", + "Cancel my participation…": "لغو شرکت من…", + "Cancelled": "", + "Cancelled: Won't happen": "لغو شد: رخ نخواهد داد", + "Change": "تغییر", + "Change my email": "تغییر رایانامه من", + "Change my identity…": "تغییر هویت من…", + "Change my password": "تغییر گذرواژه من", + "Change timezone": "تغییر منطقه زمانی", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "", + "Clear": "پاک کردن", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "", + "Click to upload": "برای بارگذاری کلیک کنید", + "Close": "بستن", + "Close comments for all (except for admins)": "بستن نظرات برای همه (به جز مدیران)", + "Closed": "بسته", + "Comment body": "", + "Comment deleted": "نظر پاک شد", + "Comment from {'@'}{username} reported": "دیدگاهی از {'@'}{username} گزارش شده است", + "Comment text can't be empty": "", + "Comments": "نظرات", + "Comments are closed for everybody else.": "", + "Confirm my participation": "تایید حضور من", + "Confirm my particpation": "تایید حضور من", + "Confirm participation": "", + "Confirmed": "", + "Confirmed at": "", + "Confirmed: Will happen": "تایید شد: رخ خواهد داد", + "Congratulations, your account is now created!": "", + "Contact": "", + "Continue editing": "ادامه ویرایش", + "Conversations": "پیام‌ها", + "Cookies and Local storage": "", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "کشور", + "Create": "ساخت", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "", + "Create a new event": "ساخت رویدادی جدید", + "Create a new group": "ساخت گروهی جدید", + "Create a new identity": "ساخت هویتی جدید", + "Create a new list": "", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "", + "Create discussion": "", + "Create event": "ایجاد رویداد", + "Create group": "ساخت گروه", + "Create identity": "", + "Create my event": "ساخت رویداد من", + "Create my group": "ساخت گروه من", + "Create my profile": "ساخت نمایه من", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "ساخت توکن", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "به منظور مدیریت این رویداد، هویت فعلی به {identityName} تغییر یافت.", + "Current page": "صفحه جاری", + "Custom": "سفارشی", + "Custom URL": "نشانی سفارشی", + "Custom text": "متن سفارشی", + "Daily email summary": "", + "Dashboard": "پیش‌خوان", + "Date": "تاریخ", + "Date and time": "", + "Date and time settings": "تنظیمات تاریخ و زمان", + "Date parameters": "پارامترهای تاریخ", + "Decline": "", + "Decrease": "", + "Default": "پیش‌فرض", + "Default Mobilizon privacy policy": "", + "Default Mobilizon terms": "", + "Delete": "حذف", + "Delete account": "حذف حساب", + "Delete conversation": "", + "Delete discussion": "", + "Delete event": "حذف رویداد", + "Delete everything": "حذف همه چیز", + "Delete group": "", + "Delete my account": "حذف حساب من", + "Delete post": "", + "Delete this discussion": "", + "Delete this identity": "حذف این هویت", + "Delete your identity": "حذف هویت شما", + "Delete {eventTitle}": "حذف {eventTitle}", + "Delete {preferredUsername}": "حذف {preferredUsername}", + "Deleting comment": "حذف دیدگاه", + "Deleting event": "حذف رویداد", + "Deleting my account will delete all of my identities.": "پاک کردن حسابم منجر به پاک شدن همه هویت‌های من می‌شود.", + "Deleting your Mobilizon account": "پاک کردن حساب موبیلیزون شما", + "Demote": "", + "Description": "توضیحات", + "Details": "", + "Didn't receive the instructions?": "", + "Disabled": "", + "Discussions": "", + "Discussions list": "", + "Display name": "نام نمایشی", + "Display participation price": "هزینه حضور نمایشی", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "دامنه", + "Draft": "پیش‌نویس", + "Drafts": "پیش‌نویس‌ها", + "Due on": "", + "Duplicate": "تکثیر کردن", + "Edit": "ویرایش", + "Edit post": "", + "Edit profile {profile}": "", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "به عنوان مثال: استکهلم، رقص، شطرنج…", + "Either on the {instance} instance or on another instance.": "چه در نمونه {instance} و چه در نمونه ای دیگر", + "Either the account is already validated, either the validation token is incorrect.": "یا حساب در حال حاضر اعتبار سنجی شده است، یا نشانه اعتبار سنجی نادرست است.", + "Either the email has already been changed, either the validation token is incorrect.": "یا ایمیل تغییر کرده است، یا نشانه اعتبار سنجی نادرست است.", + "Either the participation request has already been validated, either the validation token is incorrect.": "یا درخواست مشارکت اعتبار سنجی شده است، یا نشانه اعتبار سنجی نادرست است.", + "Element title": "", + "Element value": "", + "Email": "ایمیل", + "Email address": "آدرس رایانامه", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "", + "Ends on…": "پایان در…", + "Enter the link URL": "آدرس لینک را وارد کنید", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "", + "Error details copied!": "", + "Error message": "", + "Error stacktrace": "", + "Error while changing email": "خطا هنگام تغییر ایمیل", + "Error while loading the preview": "", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "خطا در هنگام اعتبارسنجی حساب", + "Error while validating participation request": "خطا حین اعتبارسنجی درخواست شرکت", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "رویداد", + "Event URL": "", + "Event already passed": "زمان رویداد گذشته است", + "Event cancelled": "رویداد لغو شد", + "Event creation": "ایجاد رویداد", + "Event description body": "", + "Event edition": "ویرایش رویداد", + "Event list": "فهرست رویداد", + "Event metadata": "", + "Event page settings": "تنظیمات صفحه رویداد", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "رویداد نیازمند تایید", + "Event {eventTitle} deleted": "رویداد {eventTitle} پاک شد", + "Event {eventTitle} reported": "رویداد {eventTitle} گزارش شد", + "Events": "رویدادها", + "Events nearby": "", + "Events tagged with {tag}": "", + "Everything": "همه چیز", + "Ex: mobilizon.fr": "مثلا: mobilizon.fr", + "Ex: someone@mobilizon.org": "", + "Explore": "کاوش", + "Explore events": "", + "Export": "", + "Failed to get location.": "موقعیت مکانی دریافت نشد.", + "Failed to save admin settings": "شکست در ذخیره تنظیمات مدیریتی", + "Featured events": "رویدادهای شاخص", + "Federated Group Name": "", + "Federation": "فدراسیون", + "Fediverse account": "", + "Fetch more": "", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "یافتن نشانی", + "Find an instance": "یافتن نمونه", + "Find another instance": "", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "", + "Followers": "دنبال‌کنندگان", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "دنبال‌شوندگان", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "مثلا: لندن، تکواندو، معماری…", + "Forgot your password ?": "گذرواژه را فراموش کرده‌اید؟", + "Forgot your password?": "", + "Framadate poll": "", + "From my groups": "از گروه‌های من", + "From the {startDate} at {startTime} to the {endDate}": "از تاریخ {startDate} ساعت {startTime} تا {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "از تاریخ {startDate} ساعت {startTime} تا {endDate} ساعت {endTime}", + "From the {startDate} to the {endDate}": "از تاریخ {startDate} تا {endDate}", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "گردهم‌آیی ⋅ سازمان‌دهی ⋅ بسیج", + "General": "کلی", + "General information": "اطلاعات عمومی", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "دریافت موقعیت مکانی", + "Getting there": "", + "Glossary": "", + "Go": "برو", + "Go to the event page": "", + "Google Meet": "", + "Group": "", + "Group Followers": "", + "Group Members": "", + "Group URL": "", + "Group activity": "", + "Group address": "", + "Group description body": "", + "Group display name": "", + "Group name": "نام گروه", + "Group profiles": "", + "Group settings": "", + "Group settings saved": "", + "Group short description": "", + "Group visibility": "", + "Group {displayName} created": "گروه {displayName} ایجاد شد", + "Group {groupTitle} reported": "", + "Groups": "گروه‌ها", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "", + "Hide replies": "پنهان‌سازی پاسخ‌ها", + "Home": "", + "Home to {number} users": "", + "Homepage": "", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "", + "I create an identity": "یک هویت می‌سازم", + "I don't have a Mobilizon account": "حساب موبیلیزون ندارم", + "I have a Mobilizon account": "حساب موبیلیزون دارم", + "I have an account on another Mobilizon instance.": "یک حساب روی نمونهٔ دیگری از موبیلیزون دارم.", + "I participate": "شرکت می‌کنم", + "I want to allow people to participate without an account.": "می‌خواهم اجازه دهم تا افراد بدون داشتن حساب بتوانند شرکت کنند.", + "I want to approve every participation request": "من می خواهم همه درخواست‌های مشارکت را تأیید کنم", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "", + "Identity {displayName} created": "هویت {displayName} ساخته شد", + "Identity {displayName} deleted": "هویت {displayName} حذف شد", + "Identity {displayName} updated": "هویت {displayName} به‌روزرسانی شد", + "If allowed by organizer": "", + "If an account with this email exists, we just sent another confirmation email to {email}": "اگر حسابی با این ایمیل موجود باشد، ایمیل تأیید دیگری را به {email} فرستاده‌ایم", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "اگر این هویت تنها مدیر برخی از گروه ها است، باید قبل از اینکه بتوانید این هویت را حذف کنید، آنها را حذف کنید.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "در صورت تمایل، می‌توانید از این‌جا پیامی به تشکیل‌دهنده رویداد بفرستید.", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "", + "Instance Long Description": "", + "Instance Name": "نام نمونه", + "Instance Privacy Policy": "", + "Instance Privacy Policy Source": "", + "Instance Privacy Policy URL": "", + "Instance Rules": "", + "Instance Short Description": "", + "Instance Slogan": "", + "Instance Terms": "شرایط نمونه", + "Instance Terms Source": "منبع شرایط نمونه", + "Instance Terms URL": "نشانی شرایط نمونه", + "Instance administrator": "", + "Instance configuration": "", + "Instance feeds": "", + "Instance languages": "", + "Instance rules": "", + "Instance settings": "تنظیمات نمونه", + "Instances": "نمونه‌ها", + "Instances following you": "", + "Instances you follow": "", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "", + "Invite member": "", + "Invited": "", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "عضو {instance} که یک نمونه موبیلیزون است شوید", + "Join group": "", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "", + "Language": "", + "Last IP adress": "", + "Last group created": "", + "Last published event": "آخرین رویداد منتشر‌شده", + "Last published events": "", + "Last sign-in": "", + "Last week": "هفتهٔ پیش", + "Latest posts": "", + "Learn more": "بیشتر بدانید", + "Learn more about Mobilizon": "دربارهٔ موبیلیزون بیشتر بدانید", + "Learn more about {instance}": "", + "Leave": "", + "Leave event": "ترک رویداد", + "Leave group": "", + "Leaving event \"{title}\"": "در حال ترک رویداد «{title}»", + "Legal": "", + "Let's define a few settings": "", + "License": "پروانه", + "Limited number of places": "تعداد محدودی از مکان‌ها", + "List of conversations": "فهرست پیام‌ها", + "List title": "", + "Live": "", + "Load more": "دریافت تعدادی بیشتر", + "Load more activities": "", + "Loading comments…": "", + "Local": "", + "Local time ({timezone})": "", + "Locality": "", + "Location": "موقعیت", + "Log in": "ورود", + "Log out": "خروج", + "Login": "ورود", + "Login on Mobilizon!": "ورود به موبیلیزون!", + "Login on {instance}": "ورود به {instance}", + "Login status": "", + "Main languages you/your moderators speak": "", + "Manage participations": "مدیریت شرکت‌کنندگان", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "علامت‌زدن به‌عنوان حل‌شده", + "Member": "", + "Members": "اعضا", + "Members-only post": "", + "Mentions": "", + "Message": "پیام", + "Microsoft Teams": "", + "Mobilizon": "", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "", + "Moderated comments (shown after approval)": "دیدگاه‌های مدیریت‌شده (پس از تأیید نشان داده می‌شوند)", + "Moderation": "", + "Moderation log": "", + "Moderation logs": "", + "Moderator": "", + "Move": "", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "حساب من", + "My events": "رویدادهای من", + "My groups": "گروه‌های من", + "My identities": "هویت‌های من", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "نام", + "Navigated to {pageTitle}": "", + "New discussion": "", + "New email": "ایمیل جدید", + "New folder": "", + "New link": "", + "New members": "", + "New note": "یادداشت جدید", + "New password": "گذرواژهٔ جدید", + "New post": "", + "New profile": "نمایهٔ جدید", + "Next": "", + "Next month": "", + "Next page": "صفحهٔ بعد", + "Next week": "", + "No address defined": "نشانی‌ای تعریف نشده است", + "No closed reports yet": "", + "No comment": "", + "No comments yet": "فعلاً بدون نظر", + "No discussions yet": "", + "No end date": "", + "No events found": "", + "No follower matches the filters": "", + "No group found": "", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "", + "No information": "", + "No instance follows your instance yet.": "", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "", + "No member matches the filters": "", + "No members found": "", + "No memberships found": "", + "No message": "", + "No moderation logs yet": "", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "", + "No open reports yet": "", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "", + "No posts yet": "", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "", + "No results for {search}": "", + "No rules defined yet.": "", + "None": "", + "Not accessible with a wheelchair": "", + "Not approved": "تایید نشده", + "Not confirmed": "", + "Notes": "", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "", + "Notifications": "", + "Notifications for manually approved participations to an event": "", + "Notify participants": "ارسال اعلان به مشارکت‌کننده‌ها", + "Now, create your first profile:": "", + "Number of places": "", + "OK": "", + "Old password": "", + "On {date}": "", + "On {date} ending at {endTime}": "", + "On {date} from {startTime} to {endTime}": "", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "", + "Open": "", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Open conversations": "باز کردن پیام‌ها", + "Opened reports": "", + "Or": "", + "Ordered list": "", + "Organized": "", + "Organized by": "ایجاد شده توسط", + "Organized by {name}": "ایجاد شده توسط {name}", + "Organizer": "", + "Organizer notifications": "", + "Organizers": "", + "Other": "", + "Other actions": "", + "Other notification options:": "", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "", + "Page limited to my group (asks for auth)": "", + "Page not found": "", + "Parent folder": "", + "Partially accessible with a wheelchair": "", + "Participant": "", + "Participants": "شرکت کنندگان", + "Participate": "", + "Participate using your email address": "", + "Participation approval": "", + "Participation confirmation": "", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "", + "Password (confirmation)": "", + "Password reset": "", + "Past events": "", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "", + "Pick an instance": "", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "", + "Please do not use it in any real way.": "لطفا در موارد واقعی از این استفاده نکنید.", + "Please enter your password to confirm this action.": "", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "", + "Post": "", + "Post URL": "", + "Post a comment": "", + "Post a reply": "ارسال پاسخ", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "", + "Posts": "", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "", + "Preferences": "", + "Previous": "", + "Previous month": "", + "Previous page": "صفحه قبل", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "", + "Privacy policy": "", + "Private event": "", + "Private feeds": "", + "Profile": "", + "Profile feeds": "", + "Profiles": "", + "Profiles and federation": "", + "Promote": "", + "Public": "", + "Public RSS/Atom Feed": "", + "Public comment moderation": "", + "Public event": "رویداد عمومی", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "", + "Publish": "", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "رویدادهای منتشرشده با {comments} نظر و {participations} مشارکت‌کننده تأییدشده", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "", + "Radius": "", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "", + "Register": "", + "Register an account on {instanceName}!": "", + "Register on this instance": "", + "Registration is allowed, anyone can register.": "نام‌نویسی آزاد است، همه می توانند نام‌نویسی کنند.", + "Registration is closed.": "", + "Registration is currently closed.": "", + "Registrations": "", + "Registrations are restricted by allowlisting.": "", + "Reject": "", + "Reject member": "", + "Rejected": "", + "Remember my participation in this browser": "", + "Remove": "", + "Remove link": "", + "Rename": "", + "Rename resource": "", + "Reopen": "", + "Replay": "", + "Reply": "", + "Report": "گزارش", + "Report #{reportNumber}": "", + "Report this comment": "گزارش کردن این نظر", + "Report this event": "گزارش کردن این رویداد", + "Report this group": "", + "Report this post": "", + "Reported": "گزارش شده", + "Reported by": "گزارش‌شده توسط", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "گزارش شده توسط {reporter}", + "Reported group": "", + "Reported identity": "", + "Reports": "گزارشات", + "Reports list": "", + "Request for participation confirmation sent": "", + "Resend confirmation email": "", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "", + "Reset password": "", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "", + "Restricted": "", + "Return to the group page": "", + "Right now": "", + "Role": "", + "Rules": "", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "", + "Save": "", + "Save draft": "", + "Schedule": "", + "Search": "", + "Search events, groups, etc.": "", + "Searching…": "", + "Select a language": "انتخاب زبان", + "Select a radius": "", + "Select a timezone": "", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "ارسال ایمیل", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "", + "Send the report": "ارسال گزارش", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "تنظیمات", + "Share": "", + "Share this event": "اشتراک‌گذاری این رویداد", + "Share this group": "", + "Share this post": "", + "Short bio": "", + "Show map": "نمایش نقشه", + "Show me where I am": "", + "Show remaining number of places": "", + "Show the time when the event begins": "نمایش زمان شروع رویداد", + "Show the time when the event ends": "نمایش زمان پایان رویداد", + "Showing events before": "", + "Showing events starting on": "نمایش رویدادها از تاریخ", + "Sign Language": "", + "Sign in with": "", + "Sign up": "", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "", + "Status": "", + "Street": "", + "Submit": "ارسال", + "Subtitles": "", + "Suspend": "", + "Suspend group": "", + "Suspended": "", + "Tag search": "", + "Task lists": "", + "Technical details": "", + "Tentative": "", + "Tentative: Will be confirmed later": "", + "Terms": "شرایط استفاده", + "Terms of service": "", + "Text": "", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "", + "The event has been published": "", + "The event has been updated": "", + "The event has been updated and published": "", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "", + "The page you're looking for doesn't exist.": "", + "The password was successfully changed": "", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no conversations yet": "فعلا هیچ پیامی ندارید", + "There's no discussions yet": "", + "These events may interest you": "این رویدادها ممکن برای شما جذاب باشند", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "", + "This event has been cancelled.": "این رویداد لغو شده است.", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "", + "This weekend": "", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "", + "Timezone detected as {timezone}.": "", + "Title": "", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "", + "To create and manage your events": "", + "To create or join an group and start organizing with other people": "", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "", + "Today": "", + "Tomorrow": "", + "Tools": "", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "", + "Type or select a date…": "", + "URL": "", + "URL copied to clipboard": "", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "", + "Unknown actor": "", + "Unknown error.": "", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "", + "Upcoming events": "رویدادهای آینده", + "Upcoming events from your groups": "", + "Update": "", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "", + "Update group": "", + "Update my event": "", + "Update post": "", + "Updated": "", + "Uploaded media size": "", + "Use my location": "استفاده از موقعیت من", + "User": "", + "User settings": "", + "Username": "", + "Users": "", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "", + "View account on {hostname} (in a new window)": "", + "View all": "", + "View all events": "", + "View all posts": "", + "View event page": "", + "View everything": "", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "", + "Visible everywhere on the web (public)": "", + "Waiting for organization team approval.": "", + "Warning": "", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "", + "Website / URL": "", + "Weekly email summary": "", + "Welcome back {username}!": "", + "Welcome back!": "", + "Welcome to Mobilizon, {username}!": "", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Write a new comment": "نظر جدیدی بنویسید", + "Yesterday": "", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "", + "You have one event in {days} days.": "شما هیچ رویدادی در {days} روز آینده ندارید. | شما یک رویداد در {days} روز آینده دارید. | شما {count} رویداد در {days} روز آینده دارید.", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "اینجا همه رویدادهایی را که ایجاد کرده‌اید یا در آن‌ها شرکت کرده‌اید و همچنین رویدادهایی که توسط گروه‌هایی که دنبال می کنید یا عضوی از آنها هستید برگزار می‌شوند را مشاهده خواهید کرد.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "", + "Your account has been validated": "", + "Your account is being validated": "", + "Your account is nearly ready, {username}": "", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "", + "Your email": "", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "", + "Your upcoming events": "", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "", + "[This comment has been deleted]": "", + "[deleted]": "", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "", + "contact uninformed": "", + "create a group": "", + "create an event": "ایجاد یک رویداد", + "default Mobilizon privacy policy": "", + "default Mobilizon terms": "", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "", + "instance rules": "", + "more than 1360 contributors": "", + "profile@instance": "", + "report #{report_number}": "", + "return to the event's page": "", + "terms of service": "", + "with another identity…": "", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "بدون شرکت‌کننده | ۱ شرکت کننده | {count} شرکت کننده", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "", + "{number} members": "", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "", + "© The OpenStreetMap Contributors": "" +}); diff --git a/res/locale/fi.js b/res/locale/fi.js new file mode 100644 index 0000000..3d5b457 --- /dev/null +++ b/res/locale/fi.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Peitetty)", + "(this folder)": "(tämä kansio)", + "(this link)": "(tämä linkki)", + "+ Add a resource": "+ Lisää resurssi", + "+ Create a post": "+ Luo viesti", + "+ Create an event": "+ Luo tapahtuma", + "+ Start a discussion": "+ Aloita keskustelu", + "{contact} will be displayed as contact.": "{contact} näytetään kontaktina.|{contact} näytetään kontakteina.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role)}", + "@{username}'s follow request was accepted": "Käyttäjän @{username} seurauspyyntö hyväksyttiin", + "@{username}'s follow request was rejected": "Käyttäjän @{username} seuraamispyyntö hylättiin", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Evästeellä tarkoitetaan sellaista tietoa, jonka palvelun tarjoajan palvelin lähettää käyttäjän selainohjelmalle pyytäen selainta tallentamaan tiedon käyttäjän päätelaitteelle ja jota kyseinen palvelun tarjoajan palvelin voi myöhemmin pyytää takaisin. Kyse on käytännössä pienestä tietomäärästä, tyypillisesti lyhyestä tekstistä. Voit asettaa selaimen kieltäytymään kaikista evästeistä, mutta tämä saattaa rikkoa joitakin toiminnallisuuksia.", + "A discussion has been created or updated": "Keskustelu on luotu tai päivitetty", + "A federated software": "Federoitu ohjelmisto", + "A fediverse account URL to follow for event updates": "Fediverse-tilin URL tapahtuman päivitysten seuraamiseksi", + "A link to a page presenting the event schedule": "Linkki tapahtuman aikataulun näyttävälle sivulle", + "A link to a page presenting the price options": "Linkki hintavaihtoehdot sisältävälle sivulle", + "A member has been updated": "Käyttäjä on päivitetty", + "A member requested to join one of my groups": "Käyttäjä pyysi liittyä yhteen ryhmistäni", + "A new version is available.": "Uusi versio on saatavilla.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Käytössäännöille, säännöille ja ohjeille varattu tila. HTML-tunnisteita voi käyttää.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Tässä voi esitellä ylläpitäjätahoa ja tämän instanssin erityispiirteitä. HTML-tunnisteita voi käyttää.", + "A place to publish something to the whole world, your community or just your group members.": "Paikka, jossa voit julkaista asioita koko maailmalle, yhteisöllesi tai pelkästään ryhmäsi jäsenille.", + "A place to store links to documents or resources of any type.": "Paikka, johon voit tallentaa linkkejä dokumentteihin tai muihin resursseihin.", + "A post has been published": "Viesti on julkaistu", + "A post has been updated": "Viesti on päivitetty", + "A practical tool": "Kätevä työkalu", + "A resource has been created or updated": "Resurssi on luotu tai päivitetty", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Lyhyt teksti instanssisi kotisivulle. Oletuksena \"Kokoonnu ⋅ Järjestä ⋅ Mobilizoi\"", + "A twitter account handle to follow for event updates": "Twitter-tili, jota seurata tapahtuman päivitysten saamiseksi", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Käyttäjäystävällinen, osallistava ja eettinen työkalu tapahtumien järjestämiseen, organisointiin ja mobilisointiin.", + "A validation email was sent to {email}": "Vahvistussähköposti lähetettiin osoitteeseen {email}", + "API": "API", + "Abandon editing": "Hylkää muutokset", + "About": "Tietoja", + "About Mobilizon": "Tietoa Mobilizonista", + "About anonymous participation": "Tietoa nimettömästä osallistumisesta", + "About instance": "", + "About this event": "Tietoa tapahtumasta", + "About this instance": "Tietoa tästä instanssista", + "About {instance}": "Tietoja {instance}:sta", + "Accept": "Hyväksy", + "Accepted": "Hyväksytty", + "Accessibility": "Saavutettavuus", + "Accessible only by link": "", + "Accessible only to members": "Pääsy vain jäsenille", + "Accessible through link": "Pääsy linkin kautta", + "Account": "Tili", + "Account settings": "", + "Actions": "Toimenpiteet", + "Activate browser push notifications": "Ota käyttöön selaimen push-ilmoitukset", + "Activated": "Käytössä", + "Active": "Aktiivinen", + "Activity": "Toiminta", + "Actor": "Toimija", + "Add": "Lisää", + "Add / Remove…": "Lisää/poista…", + "Add a contact": "Lisää kontakti", + "Add a new post": "Lisää uusi julkaisu", + "Add a note": "Lisää merkintä", + "Add a todo": "Lisää tehtävä", + "Add an address": "Lisää osoite", + "Add an instance": "Lisää instanssi", + "Add link": "", + "Add new…": "Lisää uusi…", + "Add picture": "", + "Add some tags": "Lisää tunnisteita", + "Add to my calendar": "Lisää kalenteriini", + "Additional comments": "Lisäkommentit", + "Admin": "Ylläpitäjä", + "Admin dashboard": "", + "Admin settings": "Ylläpitoasetukset", + "Admin settings successfully saved.": "Ylläpitoasetukset tallennettu.", + "Administration": "Ylläpito", + "Administrator": "Ylläpitäjä", + "All activities": "Kaikki toiminta", + "All good, let's continue!": "Kaikki kunnossa, eteenpäin!", + "All the places have already been taken": "Kaikki paikat on jo varattu", + "Allow all comments from users with accounts": "Salli kommentit kirjautuneilta käyttäjiltä", + "Allow registrations": "Salli rekisteröityminen", + "An URL to an external ticketing platform": "URL ulkoiselle lipunmyyntialustalle", + "An error has occured while refreshing the page.": "Sivua päivitettäessä tapahtui virhe.", + "An error has occured. Sorry about that. You may try to reload the page.": "Tapahtui virhe. Yritä ladata sivu uudelleen.", + "An ethical alternative": "Eettinen vaihtoehto", + "An event I'm going to has been updated": "Tapahtuma, jonne olen menossa, on päivitetty", + "An event I'm going to has posted an announcement": "Tapahtuma, jonne olen menossa, teki julkaisun", + "An event I'm organizing has a new comment": "Organisoimassani tapahtumassa on uusi kommentti", + "An event I'm organizing has a new participation": "Organisoimassani tapahtumassa on uusi osallistuja", + "An event I'm organizing has a new pending participation": "Organisoimassani tapahtumassa on uusi osallistumispyyntö", + "An event from one of my groups has been published": "Tapahtuma ryhmästäni on julkaistu", + "An event from one of my groups has been updated or deleted": "Tapahtuma ryhmistäni on päivitetty tai poistettu", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Instanssi tarkoittaa palvelintietokoneelle asennettua Mobilizon-ohjelmaa. Instanssi voi käyttää kuka tahansa, jolla on käytössään {mobilizon_software} tai jokin muu federoituva sovellus, eli se on osa niin kutsuttua fediversumia. Tämän instanssin nimi on {instance_name}. Mobilizon on useiden palvelinten muodostama federoituva verkosto (sähköpostipalvelinten tavaan), eli eri instansseille rekisteröityneet käyttäjät voivat olla yhteydessä toisiinsa vaikka eivät olisi rekisteröityneet samalle instanssille.", + "And {number} comments": "{number} kommenttia", + "Announcements and mentions notifications are always sent straight away.": "Ilmoitukset julkistuksista ja maininnoista lähetetään aina heti.", + "Anonymous participant": "Nimetön osallistuja", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Nimettömiä osallistujia pyydetään vahvistamaan osallistumisensa sähköpostitse.", + "Anonymous participations": "Nimettömät osallistujat", + "Any day": "Milloin vain", + "Any type": "", + "Anyone can join freely": "Kaikki voivat liittyä", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "Kaikki ryhmäsi jäsenet voivat liittyä ryhmäsi sivuilta.", + "Application": "Sovellus", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Haluatko varmasti poistaa koko tilisi? Tällöin kaikki poistetaan. Identiteetit, asetukset, luodut tapahtumat, viestit ja osallistumiset poistetaan pysyvästi.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Haluatko varmasti poistaa ryhmän kokonaan? Kaikille jäsenille (myös muilla instanssilla oleville) ilmoitetaan asiasta ja heidät poistetaan ryhmästä, ja kaikki ryhmän tiedot (tapahtumat, julkaisut, keskustelut, tehtävät jne.) poistetaan pysyvästi.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Haluatko varmasti poistaa tämän kommentin? Toimintoa ei voi perua.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Haluatko varmasti poistaa tämän tapahtuman? Toimintoa ei voi perua. Poistamisen sijaan voisit ehkä keskustella tapahtuman luojan kanssa tai muokata tapahtumaa.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Haluatko varmasti estää tämän ryhmän? Kaikille jäsenille (myös muilla instanssilla oleville) ilmoitetaan asiasta ja heidät poistetaan ryhmästä, ja kaikki ryhmän tiedot (tapahtumat, julkaisut, keskustelut, tehtävät jne.) poistetaan pysyvästi.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Haluatko varmasti estää tämän ryhmän? Koska ryhmä toimii instanssilta {instance} käsin, estäminen poistaa siitä paikalliset jäsenet ja paikalliset tiedot sekä estää kaikki ryhmään liittyvät myöhemmät tiedot.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Haluatko varmasti keskeyttää tapahtuman luomisen? Kaikki muutokset menetetään.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Haluatko varmasti keskeyttää tapahtuman muokkaamisen? Kaikki muutokset menetetään.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Haluatko varmasti perua osallistumisesi tapahtumaan {title}?", + "Are you sure you want to delete this entire discussion?": "Oletko varma, että haluat poistaa koko tämän keskustelun?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Haluatko varmasti poistaa tämän tapahtuman? Toimintoa ei voi perua.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Tapahtuman järjestäjä vahvistaa osallistumispyynnöt käsin, joten osallistumisesi on vahvistettu vasta sitten, kun saat vahvistuksesta kertovan sähköpostin.", + "Ask your instance admin to {enable_feature}.": "Kysy instanssisi ylläpitäjältä {enable_feature}.", + "Assigned to": "Yhdistetty", + "Atom feed for events and posts": "Tapahtumien ja julkaisujen Atom-syöte", + "Attending": "", + "Avatar": "Avatar", + "Back to group list": "", + "Back to previous page": "Palaa edelliselle sivulle", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "Banneri", + "Before you can login, you need to click on the link inside it to validate your account.": "Sinun on ennen sisäänkirjautumista vahvistettava tilisi napsauttamalla siinä olevaa linkkiä.", + "Begins on": "Alkaa", + "Big Blue Button": "Big Blue Button", + "Bold": "Lihavoitu", + "Booking": "Varaus", + "Breadcrumbs": "Leivänmurut", + "Browser notifications": "Selaimen ilmoitukset", + "Bullet list": "", + "By others": "Muilta", + "By {group}": "Tekijä {group}", + "By {username}": "Tehnyt {username}", + "Can be an email or a link, or just plain text.": "Voi olla sähköpostiosoite, linkki tai pelkkää tekstiä.", + "Cancel": "Peruuta", + "Cancel anonymous participation": "Peruuta nimetön osallistuminen", + "Cancel creation": "Peruuta luonti", + "Cancel discussion title edition": "", + "Cancel edition": "Peruuta muokkaus", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "Peru osallistumispyyntöni…", + "Cancel my participation…": "Peru osallistumiseni…", + "Cancelled": "Peruttu", + "Cancelled: Won't happen": "Peruutettu: Ei onnistu", + "Change": "Muuta", + "Change my email": "Vaihda sähköpostiosoitteeni", + "Change my identity…": "Vaihda identiteettiä…", + "Change my password": "Vaihda salasana", + "Change timezone": "Vaihda aikavyöhykettä", + "Check your inbox (and your junk mail folder).": "Tarkista sähköpostisi (myös roskapostikansio).", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "Kaupunki tai alue", + "Clear": "Tyhjennä", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "Poista kaikkien tapahtumien osallistumistiedot", + "Clear participation data for this event": "Poista tapahtuman osallistumistiedot", + "Clear timezone field": "", + "Click for more information": "Lisätietoja napsauttamalla", + "Click to upload": "Lähetä napsauttamalla", + "Close": "Sulje", + "Close comments for all (except for admins)": "Sulje kommentit kaikilta (paitsi ylläpitäjiltä)", + "Closed": "Suljettu", + "Comment body": "", + "Comment deleted": "Kommentti poistettu", + "Comment text can't be empty": "Kommentin teksti ei voi olla tyhjä", + "Comments": "Kommentit", + "Comments are closed for everybody else.": "Kommentit on suljettu muilta.", + "Confirm my participation": "Vahvista osallistumiseni", + "Confirm my particpation": "Vahvista osallistumiseni", + "Confirm participation": "", + "Confirmed": "Vahvistettu", + "Confirmed at": "Vahvistettu", + "Confirmed: Will happen": "Vahvistettu: Tapahtuu", + "Congratulations, your account is now created!": "Onneksi olkoon, tunnuksesi on luotu!", + "Contact": "Yhteystieto", + "Continue editing": "Jatka muokkausta", + "Cookies and Local storage": "Evästeet ja paikallisesti tallennettavat tiedot", + "Copy URL to clipboard": "Kopioi URL leikepöydälle", + "Copy details to clipboard": "Kopioi yksityiskohdat leikepöydälle", + "Country": "Maa", + "Create": "Luo", + "Create a calc": "Luo taulukko", + "Create a discussion": "Luo keskustelu", + "Create a folder": "Luo kansio", + "Create a new event": "Luo uusi tapahtuma", + "Create a new group": "Luo uusi ryhmä", + "Create a new identity": "Luo uusi identiteetti", + "Create a new list": "Luo uusi luettelo", + "Create a new profile": "Luo uusi profiili", + "Create a pad": "Luo tekstiasiakirja", + "Create a videoconference": "Luo videokokous", + "Create an account": "Luo käyttäjätunnus", + "Create discussion": "", + "Create event": "Luo tapahtuma", + "Create group": "Luo ryhmä", + "Create identity": "", + "Create my event": "Luo oma tapahtuma", + "Create my group": "Luo oma ryhmä", + "Create my profile": "Luo oma profiili", + "Create new links": "Luo uudet linkit", + "Create resource": "Luo resurssi", + "Create the discussion": "Luo keskustelu", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Luo tehtävälistoja, jaa tehtäviä ja aseta niille määräaikoja.", + "Create token": "Luo merkki", + "Created by {name}": "Luonut {name}", + "Created by {username}": "Luonut {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "Nykyiseksi identiteetiksi on vaihdettu {identityName} tämän tapahtuman hallinnointia varten.", + "Current page": "Nykyinen sivu", + "Custom": "Mukautettu", + "Custom URL": "Vapaavalintainen URL", + "Custom text": "Vapaavalintainen teksti", + "Daily email summary": "Yhteenvetosähköposti päivittäin", + "Dashboard": "Kojelauta", + "Date": "Päivämäärä", + "Date and time": "Aika", + "Date and time settings": "Aika- ja päivämääräasetukset", + "Date parameters": "Päivämäärävalinnat", + "Decline": "Hylkää", + "Decrease": "", + "Default": "Oletus", + "Default Mobilizon privacy policy": "Mobilizonin oletustietosuojakäytäntö", + "Default Mobilizon terms": "Mobilizonin oletusehdot", + "Delete": "Poista", + "Delete account": "Poista tili", + "Delete conversation": "Poista keskustelu", + "Delete discussion": "Poista keskustelu", + "Delete event": "Poista tapahtuma", + "Delete everything": "Poista kaikki", + "Delete group": "Poista ryhmä", + "Delete my account": "Poista tilini", + "Delete post": "Poista julkaisu", + "Delete this discussion": "Poista tämä keskustelu", + "Delete this identity": "Poista tämä identiteetti", + "Delete your identity": "Poista oma identiteetti", + "Delete {eventTitle}": "Poista {eventTitle}", + "Delete {preferredUsername}": "Poista {preferredUsername}", + "Deleting comment": "Poistetaan kommentti", + "Deleting event": "Poistetaan tapahtuma", + "Deleting my account will delete all of my identities.": "Oman tilin poistaminen poistaa kaikki identiteettini.", + "Deleting your Mobilizon account": "Poistetaan Mobilizon-tiliäsi", + "Demote": "Häivytä", + "Description": "Kuvaus", + "Details": "Yksityiskohdat", + "Didn't receive the instructions?": "Etkö saanut ohjeita?", + "Disabled": "Pois käytöstä", + "Discussions": "Keskustelut", + "Discussions list": "", + "Display name": "Näytä nimi", + "Display participation price": "Näytä osallistumisen hinta", + "Displayed nickname": "Näytettävä nimimerkki", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Näytetään aloitussivulla ja metatunnisteissa. Kerro yhdessä kappaleessa, mikä on Mobilizon ja mikä tässä instanssissa on erityistä.", + "Do not receive any mail": "Älä vastaanota mitään sähköpostia", + "Do you wish to {create_event} or {explore_events}?": "Haluatko {create_event} vai {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Haluatko {create_group} vai {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "Verkkotunnus", + "Draft": "Luonnos", + "Drafts": "Luonnokset", + "Due on": "Aikaa jäljellä", + "Duplicate": "Monista", + "Edit": "Muokkaa", + "Edit post": "Muokkaa julkaisua", + "Edit profile {profile}": "Muokkaa profiilia {profile}", + "Edited {ago}": "Muokattu {ago}", + "Edited {relative_time} ago": "Muokattu {relative_time} sitten", + "Eg: Stockholm, Dance, Chess…": "Esim. Helsinki, tanssi, shakki, …", + "Either on the {instance} instance or on another instance.": "Joko instanssilla {instance} tai toisella instanssilla.", + "Either the account is already validated, either the validation token is incorrect.": "Joko tili on jo vahvistettu tai vahvistusmerkki on virheellinen.", + "Either the email has already been changed, either the validation token is incorrect.": "Joko sähköpostiosoite on jo vaihdettu tai vahvistusmerkki on virheellinen.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Osallistumispyyntö on jo vahvistettu tai vahvistustunnus on virheellinen.", + "Element title": "Elementin nimi", + "Element value": "Elementin arvo", + "Email": "Sähköposti", + "Email address": "Sähköpostiosoite", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "Käytössä", + "Ends on…": "Päättyy…", + "Enter the link URL": "Syötä linkin URL", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Syötä sähköpostiosoitteesi, niin saat sähköpostitse ohjeet salasanan vaihtamiseen.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Kirjoita oma tietosuojakäytäntö. HTML-tunnisteet sallittuja. {mobilizon_privacy_policy} toimii mallina.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Kirjoita omat ehdot. HTML-tunnisteet sallittuja. {mobilizon_terms} toimivat mallina.", + "Error": "Virhe", + "Error details copied!": "Virheen yksityiskohdat kopioitu!", + "Error message": "Virheilmoitus", + "Error stacktrace": "Virheen jäljitys", + "Error while changing email": "Virhe sähköpostiosoitetta vaihdettaessa", + "Error while loading the preview": "Esikatselun latauksessa tapahtui virhe", + "Error while login with {provider}. Retry or login another way.": "Virhe kirjauduttaessa {provider}-tilillä. Yritä uudelleen tai kirjaudu toista kautta.", + "Error while login with {provider}. This login provider doesn't exist.": "Virhe kirjauduttaessa {provider}-tilillä. Tätä sisäänkirjautumispalvelua ei ole olemassa.", + "Error while reporting group {groupTitle}": "Tapahtui virhe raportoidessa ryhmää {groupTitle}", + "Error while subscribing to push notifications": "Virhe kun tilattiin push-ilmoitukset", + "Error while suspending group": "Ryhmän jäädytyksessä tapahtui virhe", + "Error while updating participation status inside this browser": "Osallistumistiedon päivittämisessä tapahtui virhe tässä selaimessa", + "Error while validating account": "Virhe tilin vahvistamisessa", + "Error while validating participation request": "Virhe osallistumispyyntöä vahvistettaessa", + "Etherpad notes": "Etherpad-muistiinpanot", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Eettinen vaihtoehto Facebookin tapahtumille, ryhmille ja sivuille. Mobilizon on työkalu, joka on suunniteltu palvelemaan sinua. Piste.", + "Event": "Tapahtuma", + "Event URL": "Tapahtuman URL", + "Event already passed": "Tapahtuma on jo mennyt", + "Event cancelled": "Tapahtuma peruttu", + "Event creation": "Tapahtuman luonti", + "Event description body": "", + "Event edition": "Tapahtuman muokkaus", + "Event list": "Tapahtumaluettelo", + "Event metadata": "Tapahtuman metadata", + "Event page settings": "Tapahtumasivun asetukset", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "Tapahtuma odottaa vahvistamista", + "Event {eventTitle} deleted": "Tapahtuma {eventTitle} poistettu", + "Event {eventTitle} reported": "Tapahtuma (eventTitle} raportoitu", + "Events": "Tapahtumat", + "Events nearby": "Lähellä olevat tapahtumat", + "Events tagged with {tag}": "Tapahtumat tunnisteella {tag}", + "Everything": "Kaikki", + "Ex: mobilizon.fr": "Esim. mobilizon.fr", + "Ex: someone@mobilizon.org": "Esim. joku@mobilizon.org", + "Explore": "Tutustu", + "Explore events": "Tutustu tapahtumiin", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "Ylläpitoasetusten tallennus epäonnistui", + "Featured events": "Ehdotetut tapahtumat", + "Federated Group Name": "Ryhmän federaationimi", + "Federation": "Federaatio", + "Fediverse account": "Fediverse-tili", + "Fetch more": "Hae lisää", + "Filter": "", + "Filter by name": "Suodata nimen mukaan", + "Filter by profile or group name": "Suodata profiilin tai ryhmän nimen mukaan", + "Find an address": "Etsi osoitetta", + "Find an instance": "Etsi instanssia", + "Find another instance": "Etsi toinen instanssi", + "Find or add an element": "Etsi tai lisää elementti", + "First steps": "", + "Follow": "", + "Follower": "Seuraaja", + "Followers": "Seuraajat", + "Followers will receive new public events and posts.": "Seuraajat saavat tiedon uusista julkisista tapahtumista ja julkaisuista.", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "Seurattavat", + "For instance: London": "Esimerkiksi: Lahti", + "For instance: London, Taekwondo, Architecture…": "Esimerkiksi: Tampere, taekwondo, arkkitehtuuri, …", + "Forgot your password ?": "Unohditko salasanasi?", + "Forgot your password?": "Unohditko salasanan?", + "Framadate poll": "Framadate-kysely", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "Alkaa {startDate} klo {startTime} ja päättyy {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Alkaa {startDate} klo {startTime} ja päättyy {endDate} klo {endTime}", + "From the {startDate} to the {endDate}": "Alkaa {startDate} ja päättyy {endDate}", + "From yourself": "Sinulta", + "Fully accessible with a wheelchair": "Pääsee täysin pyörätuolilla", + "Gather ⋅ Organize ⋅ Mobilize": "Kokoonnu ⋅ Järjestä ⋅ Mobilisoi", + "General": "Yleinen", + "General information": "Yleiset tiedot", + "General settings": "Yleiset asetukset", + "Geolocation was not determined in time.": "", + "Getting location": "Haetaan sijaintia", + "Getting there": "Reittiohjeet", + "Glossary": "Sanasto", + "Go": "Siirry", + "Go to the event page": "Siirry tapahtumasivulle", + "Google Meet": "Google Meet", + "Group": "Ryhmä", + "Group Followers": "Ryhmän seuraajat", + "Group Members": "Ryhmän jäsenet", + "Group URL": "Ryhmän URL", + "Group activity": "Ryhmän muutokset", + "Group address": "Ryhmän osoite", + "Group description body": "", + "Group display name": "Ryhmän näyttönimi", + "Group name": "Ryhmän nimi", + "Group profiles": "", + "Group settings": "Ryhmäasetukset", + "Group settings saved": "Ryhmän asetukset tallennettu", + "Group short description": "Ryhmän lyhyt kuvaus", + "Group visibility": "Ryhmän näkyvyys", + "Group {displayName} created": "Ryhmä {displayName} luotu", + "Group {groupTitle} reported": "Ryhmä {groupTitle} raportoitu", + "Groups": "Ryhmät", + "Groups are not enabled on this instance.": "Ryhmät eivät ole käytössä tällä instanssilla.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Ryhmät ovat tapahtumien järjestämiseen, koordinointiin ja valmisteluun sekä yhteisön hallinnointiin tarkoitettuja tiloja.", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "Otsikkokuva", + "Hide replies": "Piilota vastaukset", + "Home": "Alkuun", + "Home to {number} users": "{numbers} käyttäjän koti", + "Homepage": "", + "Hourly email summary": "Yhteenvetosähköposti tunneittain", + "I agree to the {instanceRules} and {termsOfService}": "Hyväksyn {instanceRules} ja {termsOfService}", + "I create an identity": "Luon indentiteetin", + "I don't have a Mobilizon account": "Minulla ei ole Mobilizon-tiliä", + "I have a Mobilizon account": "Minulla on Mobilizon-tili", + "I have an account on another Mobilizon instance.": "Minulla on tili toisella Mobilizon- instanssilla.", + "I participate": "Osallistun", + "I want to allow people to participate without an account.": "Osallistuminen ilman käyttäjätiliä sallittu.", + "I want to approve every participation request": "Haluan hyväksyä kaikki osallistumispyynnöt", + "I've been mentionned in a comment under an event": "Minut on mainittu tapahtuman kommentissa", + "I've been mentionned in a group discussion": "Minut on mainittu ryhmäkeskustelussa", + "ICS feed for events": "Tapahtumien ICS-syöte", + "ICS/WebCal Feed": "ICS/WebCal-syöte", + "Identities": "Identiteetit", + "Identity {displayName} created": "Identiteetti {displayName} luotu", + "Identity {displayName} deleted": "Identiteetti {displayName} poistettu", + "Identity {displayName} updated": "Identiteetti {displayName} päivitetty", + "If allowed by organizer": "Järjestäjän salliessa", + "If an account with this email exists, we just sent another confirmation email to {email}": "Jos osoitteeseen {email} liittyvä tili on jo olemassa, lähetämme vain uuden vahvistusviestin", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Jos tämä identiteetti on joidenkin ryhmien ainoa ylläpitäjä, ryhmät on poistettava ennen kuin identiteetin voi poistaa.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Jos sinulta kysytään federoitua käyttäjätunnustasi, se koostuu käyttäjätunnuksestasi ja instanssistasi. Esimerkiksi ensimmäisellä profiilillasi se on:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Jos olet valinnut osallistujien manuaalisen vahvistuksen, Mobilizon lähettää sinulle viestin uusista osallistujista jotka voit vahvistaa. Voit alla valita näiden viestien tiheyden.", + "If you want, you may send a message to the event organizer here.": "Tästä voit halutessasi lähettää tapahtuman järjestäjälle viestin.", + "Ignore": "Sivuuta", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "Seuraavassa sovellus tarkoittaa Mobilizon-tiimin tai kolmannen osapuolen toimittamaa ohjelmaa, jonka kautta instanssia käytetään.", + "In the past": "", + "Increase": "", + "Instance": "Instanssi", + "Instance Long Description": "Instanssin pitkä kuvaus", + "Instance Name": "Instanssin nimi", + "Instance Privacy Policy": "Instanssin tietosuojakäytäntö", + "Instance Privacy Policy Source": "Instanssin tietosuojakäytännön lähde", + "Instance Privacy Policy URL": "Instanssin tietosuojakäytännön osoite", + "Instance Rules": "Instanssin säännöt", + "Instance Short Description": "Instanssin lyhyt kuvaus", + "Instance Slogan": "Instanssin iskulause", + "Instance Terms": "Instanssin käyttöehdot", + "Instance Terms Source": "Instanssin käyttöehtojen lähde", + "Instance Terms URL": "Pälvelimen käyttöehtojen URL", + "Instance administrator": "Instanssin ylläpitäjä", + "Instance configuration": "Instanssin asetukset", + "Instance feeds": "Instanssin syötteet", + "Instance languages": "Instanssin kielet", + "Instance rules": "Instanssin säännöt", + "Instance settings": "Instanssin asetukset", + "Instances": "Instanssit", + "Instances following you": "Instanssit, jotka seuraavat sinua", + "Instances you follow": "Instanssit, joita seuraat", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Integroi tämä tapahtuma kolmannen osapuolen työkalujen kanssa ja näytä metadata tapahtumalle.", + "Interact": "", + "Interact with a remote content": "Vuorovaikuta ulkoisen sisällön kanssa", + "Invite a new member": "Kutsu uusi jäsen", + "Invite member": "Kutsu jäsen", + "Invited": "Kutsuttu", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Sisältö ei ole käytettävissä tämän palvelimen kautta mahdollisesti siksi, että tämä instanssi on estänyt sisällön taustalla olevat profiilit tai ryhmät.", + "Italic": "Kursivoitu", + "Jitsi Meet": "Jitsi-tapaaminen", + "Join {instance}, a Mobilizon instance": "Liity Mobilizon- instanssille {instance}", + "Join group": "Liity ryhmään", + "Join group {group}": "Liity ryhmään {group}", + "Keep the entire conversation about a specific topic together on a single page.": "Pidä kaikki aiheeseen liittyvä keskustelu samassa paikassa.", + "Key words": "Avainsanat", + "Language": "Kieli", + "Last IP adress": "Edellinen IP-osoite", + "Last group created": "Viimeisin luotu ryhmä", + "Last published event": "Viimeisin julkaistu tapahtuma", + "Last published events": "Viimeksi julkaistut tapahtumat", + "Last sign-in": "Edellinen sisäänkirjautuminen", + "Last week": "Viime viikko", + "Latest posts": "Viimeiset julkaisut", + "Learn more": "Lue lisää", + "Learn more about Mobilizon": "Lue lisää Mobilizonista", + "Learn more about {instance}": "Lisätietoa {instance}:sta", + "Leave": "Poistu", + "Leave event": "Poistu tapahtumasta", + "Leave group": "Poistu ryhmästä", + "Leaving event \"{title}\"": "Poistutaan tapahtumasta {title}", + "Legal": "Lait", + "Let's define a few settings": "Määritellään joitakin asetuksia", + "License": "Käyttöoikeussopimus", + "Limited number of places": "Paikkoja rajoitettu määrä", + "List title": "Luettelon otsikko", + "Live": "Suora lähetys", + "Load more": "Lataa lisää", + "Load more activities": "Lataa lisää toimintaa", + "Loading comments…": "Ladataan kommentteja…", + "Local": "Paikallinen", + "Local time ({timezone})": "", + "Locality": "Sijainti", + "Location": "Paikka", + "Log in": "Kirjaudu sisään", + "Log out": "Kirjaudu ulos", + "Login": "Kirjaudu sisään", + "Login on Mobilizon!": "Kirjaudu sisään Mobilizoniin!", + "Login on {instance}": "Kirjaudu instanssille {instance}", + "Login status": "Kirjautumisen tila", + "Main languages you/your moderators speak": "Pääkieli, jota sinä ja moderaattorisi puhuvat", + "Manage participations": "Hallinnoi osallistumisia", + "Manually approve new followers": "Hyväksy uudet seuraajat käsin", + "Manually invite new members": "Kutsu uusia jäseniä", + "Mark as resolved": "Merkitse ratkaistuksi", + "Member": "Jäsen", + "Members": "Jäsenet", + "Members-only post": "Vain jäsenille näkyvä viesti", + "Mentions": "Maininnat", + "Message": "Viesti", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon on federoituva verkosto. Tätä tapahtumasivua voi käyttää myös toiselta instanssilta.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon on federoitu palvelu, minkä ansiosta voit viestiä myös muilla instansseilla olevien käyttäjien ja ryhmien kanssa ja ilmoittautua niillä oleviin tapahtumiin.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon on työkalu, jolla pystyt hakemaan, luomaan ja järjestämään tapahtumia.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon ei ole jättiläismäinen keskitetty alusta vaan suuri joukko tosiinsa yhdistyneitä Mobilizon-instansseja.", + "Mobilizon software": "Mobilizon-ohjelma", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon käyttää profiilijärjestelmää, jonka avulla voit esiintyä eri profiileilla eri tarkoituksiin. Voit luoda niin monta profiilia kuin haluat.", + "Mobilizon version": "Mobilizon-versio", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon lähettää sähköpostia, jos tapahtumissa, joihin olet osallistumassa, tapahtuu olennaisia muutoksia: aika, osoite, vahvistus tai peruutus jne.", + "Moderate new members": "", + "Moderated comments (shown after approval)": "Moderoidut kommentit (näytetään hyväksymisen jälkeen)", + "Moderation": "Moderointi", + "Moderation log": "Moderointiloki", + "Moderation logs": "", + "Moderator": "Moderaattori", + "Move": "Siirrä", + "Move \"{resourceName}\"": "Siirrä ”{resourceName}”", + "Move resource to the root folder": "Siirrä resurssi juurikansioon", + "Move resource to {folder}": "Siirrä resurssi kansioon {folder}", + "My account": "Oma tili", + "My events": "Omat tapahtumat", + "My groups": "Omat ryhmät", + "My identities": "Omat identiteetit", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "HUOM! Oletusehdot eivät ole juristin tarkistamia, joten instanssin ylläpitäjän ei ole syytä luottaa niiden tarjoamaan juridiseen suojaan. Niitä ei ole myöskään sovitettu eri maiden ja lainkäyttöalueiden olosuhteisiin. Epävarmoissa tilanteissa suosittelemme tarkistuttamaan ehdot lakiasiantuntijalla.", + "Name": "Nimi", + "Navigated to {pageTitle}": "", + "New discussion": "Uusi keskustelu", + "New email": "Uusi sähköpostiosoite", + "New folder": "Uusi kansio", + "New link": "Uusi linkki", + "New members": "Uudet jäsenet", + "New note": "Uusi merkintä", + "New password": "Uusi salasana", + "New post": "Uusi viesti", + "New profile": "Uusi profiili", + "Next": "Seuraava", + "Next month": "Ensi kuussa", + "Next page": "Seuraava sivu", + "Next week": "Ensi viikolla", + "No address defined": "Ei määritettyä osoitetta", + "No closed reports yet": "Suljettuja raportteja ei vielä ole", + "No comment": "Ei kommenttia", + "No comments yet": "Kommentteja ei vielä ole", + "No discussions yet": "Ei keskusteluja vielä", + "No end date": "Ei päättymispäivää", + "No events found": "Tapahtumia ei löytynyt", + "No follower matches the filters": "Ei suodatinta vastaavia seuraajia", + "No group found": "Ryhmää ei löytynyt", + "No group matches the filters": "Yksikään ryhmä ei vastaa suodattimia", + "No group member found": "", + "No groups found": "Ryhmiä ei löytynyt", + "No information": "Ei tietoa", + "No instance follows your instance yet.": "Mikään instanssi ei vielä seuraa tätä instanssia.", + "No instance to approve|Approve instance|Approve {number} instances": "Ei hyväksyttäviä instansseja|Hyväksy instanssi|Hyväksy {number} instanssia", + "No instance to reject|Reject instance|Reject {number} instances": "Ei hylättäviä instansseja|Hylkää instanssi|Hylkää {number} instanssia", + "No instance to remove|Remove instance|Remove {number} instances": "Ei poistettavia instansseja|Poista instanssi|Poista {number} instanssia", + "No languages found": "Kieliä ei löytynyt", + "No member matches the filters": "Ei suodattimia vastaavia jäseniä", + "No members found": "Käyttäjiä ei löydy", + "No memberships found": "Jäsenyyksiä ei löytynyt", + "No message": "Ei viestiä", + "No moderation logs yet": "Moderointilokia ei vielä ole", + "No more activity to display.": "Toimintaa ei ole enää näytettävänä.", + "No one is participating|One person participating|{going} people participating": "Ei osallistujia|Yksi osallistuja|{going} osallistujaa", + "No open reports yet": "Avoimia raportteja ei vielä ole", + "No organized events found": "Järjestettyjä tapahtumia ei löydy", + "No organized events listed": "Ei järjestettyjä tapahtumia listattuna", + "No participant matches the filters": "Ei suodattimia vastaavia osallistujia", + "No participant to approve|Approve participant|Approve {number} participants": "Ei osallistujia hyväksyttäväksi|Hyväksy osallistuja|Hyväksy {number} osallistujaa", + "No participant to reject|Reject participant|Reject {number} participants": "Ei osallistujia hylättäväksi|Hylkää osallistuja|Hylkää {number} osallistujaa", + "No participations listed": "Ei osallistumisia listattuna", + "No posts found": "Viestejä ei löytynyt", + "No posts yet": "Ei julkaisuja vielä", + "No profile matches the filters": "Ei suodattimia vastaavia profiileja", + "No public upcoming events": "Ei julkisia tulevia tapahtumia", + "No resolved reports yet": "Ratkaistuja raportteja ei vielä ole", + "No resources in this folder": "Tässä kansiossa ei ole resursseja", + "No resources selected": "Ei valittuja resursseja|Yksi resurssi valittu|{count} resurssia valittu", + "No resources yet": "Ei resursseja vielä", + "No results for \"{queryText}\"": "Ei tuloksia haulle ”{queryText}”", + "No results for {search}": "Ei tuloksia haulle {search}", + "No rules defined yet.": "Sääntöjä ei ole vielä määritelty.", + "None": "Ei mitään", + "Not accessible with a wheelchair": "Ei pääse pyörätuolilla", + "Not approved": "Ei hyväksytty", + "Not confirmed": "Vahvistamaton", + "Notes": "Merkinnät", + "Notification before the event": "Ilmoitus ennen tapahtumaa", + "Notification on the day of the event": "Ilmoitus tapahtumapäivänä", + "Notification settings": "Ilmoitusasetukset", + "Notifications": "Ilmoitukset", + "Notifications for manually approved participations to an event": "Ilmoitukset tapahtuman käsin hyväksytyistä osallistumisista", + "Notify participants": "Ilmoita osallistujille", + "Now, create your first profile:": "Luo seuraavaksi ensimmäinen profiilisi:", + "Number of places": "Paikkojen määrä", + "OK": "OK", + "Old password": "Vanha salasana", + "On {date}": "{date}", + "On {date} ending at {endTime}": "{date}, päättyy {endTime}", + "On {date} from {startTime} to {endTime}": "{date} klo {startTime}–{endTime}", + "On {date} starting at {startTime}": "{date} klo {startTime}", + "On {instance} and other federated instances": "Instanssi {instance} ja muilla federoiduilla instansseilla", + "Online": "", + "Online ticketing": "Lipunmyynti verkossa", + "Only accessible through link": "Pääsy vain linkistä", + "Only accessible through link (private)": "Pääsy vain linkin kautta (yksityinen)", + "Only accessible to members of the group": "Pääsy vain ryhmän jäsenillä", + "Only alphanumeric lowercased characters and underscores are supported.": "Vain pieniä kirjaimia (a-z), numeroita ja alaviivaa voi käyttää.", + "Only group members can access discussions": "Vain ryhmän jäsenet voivat päästä keskusteluihin", + "Only group moderators can create, edit and delete events.": "Vain ryhmän moderaattorit voivat luoda, muokata ja poistaa tapahtumia.", + "Only group moderators can create, edit and delete posts.": "Vain ryhmän moderaattorit voivat luode, muokata ja poistaa viestejä.", + "Only registered users may fetch remote events from their URL.": "", + "Open": "Avoin", + "Open a topic on our forum": "Luo uusi aihe foorumillamme", + "Open an issue on our bug tracker (advanced users)": "Avaa vikailmoitus virheenjäljittimessämme (edistyneet käyttäjät)", + "Opened reports": "Avatut raportit", + "Or": "Tai", + "Ordered list": "", + "Organized": "Järjestetty", + "Organized by": "Järjestäjä", + "Organized by {name}": "Järjestää {name}", + "Organizer": "Järjestäjä", + "Organizer notifications": "Järjestäjän ilmoitukset", + "Organizers": "Järjestäjät", + "Other": "Muu", + "Other actions": "Muut toiminnat", + "Other notification options:": "Muut ilmoitusvalinnat:", + "Other software may also support this.": "Myös muut ohjelmat voivat tukea tätä.", + "Otherwise this identity will just be removed from the group administrators.": "Muussa tapauksessa tämä identiteetti vain poistetaan ryhmän ylläpitäjistä.", + "Page": "Sivu", + "Page limited to my group (asks for auth)": "Sivu rajattu omalle ryhmälle (vaatii tunnistautumista)", + "Page not found": "Sivua ei löydy", + "Parent folder": "Yläkansio", + "Partially accessible with a wheelchair": "Pääsee osittain pyörätuolilla", + "Participant": "Osallistuja", + "Participants": "Osallistujat", + "Participate": "Osallistu", + "Participate using your email address": "Osallistu sähköpostiosoitteella", + "Participation approval": "Osallistumisen hyväksyntä", + "Participation confirmation": "Osallistumisvahvistus", + "Participation notifications": "Osallistumisilmoitukset", + "Participation requested!": "Osallistumista pyydetty!", + "Participation with account": "", + "Participation without account": "", + "Participations": "Osallistumiset", + "Password": "Salasana", + "Password (confirmation)": "Salasana (varmistus)", + "Password reset": "Salasanan palautus", + "Past events": "Menneet tapahtumat", + "PeerTube live": "PeerTube-livelähetys", + "PeerTube replay": "PeerTube-uudelleentoisto", + "Pending": "Odottaa", + "Personal feeds": "Henkilökohtaiset syötteet", + "Pick": "Valitse", + "Pick a profile or a group": "Valitse profiili tai ryhmä", + "Pick an identity": "Valitse identiteetti", + "Pick an instance": "Valitse instanssi", + "Please add as many details as possible to help identify the problem.": "Laita niin monta yksityiskohtaa kuin mahdollista, jotta voimme tunnistaa ongelman.", + "Please check your spam folder if you didn't receive the email.": "Jos et saanut sähköpostia, tarkista roskapostikansio.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Jos epäilet tätä virheeksi, ota yhteyttä tämän instanssin Mobilizon-ylläpitäjään.", + "Please do not use it in any real way.": "Älä käytä todellisiin tarkoituksiin.", + "Please enter your password to confirm this action.": "Vahvista toimenpide syöttämällä salasanasi.", + "Please make sure the address is correct and that the page hasn't been moved.": "Varmista, että osoite on oikein eikä sivua ole siirretty.", + "Please read the {fullRules} published by {instance}'s administrators.": "Ole hyvä ja lue {fullRules} jotka {instance}:n ylläpito on kirjoittanut.", + "Post": "Julkaisu", + "Post URL": "", + "Post a comment": "Lähetä kommentti", + "Post a reply": "Lähetä vastaus", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "Postinumero", + "Posts": "Julkaisut", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Voimanlähteenä {mobilizon}. © 2018–{date} Mobilizon-kehittäjät – Taloudellista tukea on antanut {contributors}.", + "Preferences": "Valinnat", + "Previous": "Edellinen", + "Previous month": "", + "Previous page": "Edellinen sivu", + "Price sheet": "Hintalappu", + "Privacy": "", + "Privacy Policy": "Tietosuojakäytäntö", + "Privacy policy": "Tietosuojakäytäntö", + "Private event": "Yksityistapahtuma", + "Private feeds": "Yksityissyötteet", + "Profile": "Profiili", + "Profile feeds": "Profiilin syöte", + "Profiles": "Profiilit", + "Profiles and federation": "Profiilit ja federointi", + "Promote": "Nosta", + "Public": "Julkinen", + "Public RSS/Atom Feed": "Julkinen RSS/Atom-syöte", + "Public comment moderation": "Julkisten kommenttien moderointi", + "Public event": "Julkinen tapahtuma", + "Public feeds": "Julkiset syötteet", + "Public iCal Feed": "Julkinen iCal-syöte", + "Public preview": "Julkinen esikatselu", + "Publication date": "Julkaisupäivä", + "Publish": "Julkaise", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "Julkaistuissa tapahtumissa {comments} kommenttia ja {participations} vahvistettua osallistumista", + "Push": "Push", + "Quote": "", + "RSS/Atom Feed": "RSS/Atom-syöte", + "Radius": "Säde", + "Recap every week": "Muistutus joka viikko", + "Receive one email for each activity": "Vastaanota yksi sähköposti jokaista toimintoa kohden", + "Receive one email per request": "Vastaanota sähköposti jokaisesta pyynnöstä", + "Redirecting in progress…": "Uudelleenohjaus käynnissä…", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "Ohjataan sisältöön…", + "Redo": "", + "Refresh profile": "Päivitä profiili", + "Regenerate new links": "Luo linkit uudelleen", + "Region": "Alue", + "Register": "Rekisteröidy", + "Register an account on {instanceName}!": "Rekisteröi tili instanssille {instanceName}!", + "Register on this instance": "Rekisteröidy tälle instanssille", + "Registration is allowed, anyone can register.": "Rekisteröityminen on sallittu, kuka tahansa voi rekisteröityä.", + "Registration is closed.": "Rekisteröityminen on pois käytöstä.", + "Registration is currently closed.": "Rekisteröityminen on tällä hetkellä pois käytöstä.", + "Registrations": "Rekisteröitymiset", + "Registrations are restricted by allowlisting.": "Rekisteröinnit sallittu vain listatuille käyttäjille.", + "Reject": "Hylkää", + "Reject member": "", + "Rejected": "Hylätty", + "Remember my participation in this browser": "Muista osallistumiseni tässä selaimessa", + "Remove": "Poista", + "Remove link": "", + "Rename": "Nimeä uudelleen", + "Rename resource": "Nimeä resurssi uudelleen", + "Reopen": "Avaa uudelleen", + "Replay": "Uudelleentoisto", + "Reply": "Vastaa", + "Report": "Raportoi", + "Report #{reportNumber}": "Raportti nro {reportNumber}", + "Report this comment": "Raportoi kommentti", + "Report this event": "Raportoi tapahtuma", + "Report this group": "Raportoi tämä ryhmä ylläpidolle", + "Report this post": "", + "Reported": "Raportoitu", + "Reported by": "Raportoinut", + "Reported by someone on {domain}": "Raportoitu instanssilta {domain}", + "Reported by {reporter}": "Raportoinut {reporter}", + "Reported group": "Ryhmä raportoitu", + "Reported identity": "Raportoitu identiteetti", + "Reports": "Raportit", + "Reports list": "", + "Request for participation confirmation sent": "Pyyntö osallistumisen vahvistukseen lähetetty", + "Resend confirmation email": "Lähetä vahvistussähköposti uudelleen", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "Palauta salasana", + "Reset password": "", + "Resolved": "Ratkaistu", + "Resource provided is not an URL": "Ilmoitettu resurssi ei ole URL", + "Resources": "Resurssit", + "Restricted": "Rajoitettu", + "Return to the group page": "Palaa ryhmän sivulle", + "Right now": "Juuri nyt", + "Role": "Rooli", + "Rules": "Säännöt", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL ja sitä edeltänyt TLS ovat salausteknologioita, joilla suojataan palvelun käyttöön liittyvää tietoliikennettä. Salatun yhteyden tunnistaa selaimen osoiteriviltä siitä, että osoitteen alussa on näkyvissä {https} ja siihen liittyvä lukkokuvake.", + "SSL/TLS": "SSL/TLS", + "Save": "Tallenna", + "Save draft": "Tallenna luonnos", + "Schedule": "Aikataulu", + "Search": "Hae", + "Search events, groups, etc.": "Etsi tapahtumia, ryhmiä jne.", + "Searching…": "Haetaan…", + "Select a language": "Valitse kieli", + "Select a radius": "Valitse säde", + "Select a timezone": "Valitse aikavyöhyke", + "Select languages": "Valitse kielet", + "Select the activities for which you wish to receive an email or a push notification.": "Valitse toiminnat, joista haluat saada sähköposti- tai push-ilmoitukset.", + "Send": "", + "Send email": "Lähetä sähköposti", + "Send notification e-mails": "Lähetä ilmoitusten sähköpostit", + "Send password reset": "", + "Send the confirmation email again": "Lähetä vahvistussähköposti uudelleen", + "Send the report": "Lähetä raportti", + "Set an URL to a page with your own privacy policy.": "Aseta osoitteeksi oman tietosuojakäytäntösivun osoite.", + "Set an URL to a page with your own terms.": "Aseta instanssin käyttöehdot sisältävän sivun URL.", + "Settings": "Asetukset", + "Share": "Jaa", + "Share this event": "Jaa tapahtuma", + "Share this group": "Jaa tämä ryhmä", + "Share this post": "", + "Short bio": "Lyhyt kuvaus", + "Show map": "Näytä kartta", + "Show me where I am": "Näytä missä olen", + "Show remaining number of places": "Näytä vapaana olevien paikkojen määrä", + "Show the time when the event begins": "Näytä tapahtuman alkamisaika", + "Show the time when the event ends": "Näytä tapahtuman päättymisaika", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "Viittomakieli", + "Sign in with": "Kirjaudu käyttäen", + "Sign up": "Luo tili", + "Since you are a new member, private content can take a few minutes to appear.": "Koska olet uusi jäsen, yksityisen sisällön näkymisessä voi kestää joitakin minuutteja.", + "Skip to main content": "", + "Social": "Sosiaalinen", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Joidenkin seuraavassa tekstissä käytettyjen teknisten ja muiden termien tarkoittamat käsitteet voivat olla mutkikkaita. Tämä sanasto auttaa niiden ymmärtämisessä:", + "Starts on…": "Alkaa…", + "Status": "Tila", + "Street": "Katuosoite", + "Submit": "Lähetä", + "Subtitles": "Tekstitykset", + "Suspend": "Estä", + "Suspend group": "Estä ryhmä", + "Suspended": "Estetty", + "Tag search": "", + "Task lists": "Tehtäväluettelot", + "Technical details": "Tekniset tiedot", + "Tentative": "Alustava", + "Tentative: Will be confirmed later": "Alustava: vahvistetaan myöhemmin", + "Terms": "Käyttöehdot", + "Terms of service": "Käyttöehdot", + "Text": "Teksti", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "Big Blue Button -videokokouksen URL", + "The Google Meet video teleconference URL": "Google Meet -videokokouksen URL", + "The Jitsi Meet video teleconference URL": "Jitsi Meet -videokokouksen URL", + "The Microsoft Teams video teleconference URL": "Microsoft Teams -videokokouksen URL", + "The URL of a pad where notes are being taken collaboratively": "Muistikirjan URL, jossa muistiinpanoja tehdään yhdessä", + "The URL of a poll where the choice for the event date is happening": "Kyselyn URL, jonka kautta tapahtuu tapahtuman päivämäärän valinta", + "The URL where the event can be watched live": "URL, jonka kautta tapahtumaa voi seurata tosiaikaisesti", + "The URL where the event live can be watched again after it has ended": "URL, jonka kautta tapahtuman live-esitystä voi katsoa uudestaan päättymisen jälkeen", + "The Zoom video teleconference URL": "Zoom-videokokouksen URL", + "The account's email address was changed. Check your emails to verify it.": "Tilin sähköpostiosoite vaihdettiin. Katso vahvistusviesti sähköpostistasi.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Koska tapahtumasivu sijaitsee toisella instanssilla, osallistujien todellinen määrä voi poiketa tästä.", + "The content came from another server. Transfer an anonymous copy of the report?": "Sisältö on peräisin toiselta instanssilta. Lähetetäänkö raportista sinne nimetön kopio?", + "The draft event has been updated": "Tapahtumaluonnosta on päivitetty", + "The event has a sign language interpreter": "Tapahtumalla on viittomakielen tulkki", + "The event has been created as a draft": "Tapahtuma on luotu luonnoksena", + "The event has been published": "Tapahtuma on julkaistu", + "The event has been updated": "Tapahtuma on päivitetty", + "The event has been updated and published": "Tapahtuma on päivitetty ja julkaistu", + "The event hasn't got a sign language interpreter": "Tapahtumalla ei ole viittomakielen tulkkia", + "The event is fully online": "", + "The event live video contains subtitles": "Tapahtuman live-lähetys sisältää tekstitykset", + "The event live video does not contain subtitles": "Tapahtuman live-lähetys ei sisällä tekstityksiä", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Tapahtuman järjestäjä haluaa hyväksyä osallistujat käsin. Haluatko lisätä maininnan, jossa kerrot, miksi haluat osallistua tapahtumaan?", + "The event organizer didn't add any description.": "Tapahtuman järjestäjä ei ole lisännyt kuvausta.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Tapahtuman järjestäjä hyväksyy osallistujat käsin. Koska olet päättänyt osallistua ilman tiliä, kerro, miksi haluat osallistua tapahtumaan.", + "The event title will be ellipsed.": "Tapahtuman otsikkoa lyhennetään.", + "The event will show as attributed to this group.": "Tapahtuma näytetään liitettynä tähän ryhmään.", + "The event will show as attributed to this profile.": "Tapahtuma näkyy liitettynä tähän profiiliin.", + "The event will show as attributed to your personal profile.": "Tapahtuma näytetään liitettynä henkilökohtaiseen profiiliisi.", + "The event {event} was created by {profile}.": "Tapahtuman {event} loi {profile}.", + "The event {event} was deleted by {profile}.": "Tapahtuman {event} poisti {profile}.", + "The event {event} was updated by {profile}.": "Tapahtumaa {event} päivitti {profile}.", + "The events you created are not shown here.": "Luomiasi tapahtumia ei näytetä tässä.", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "Ryhmään voivat nyt liittyä kaikki.", + "The group can now only be joined with an invite.": "Ryhmään voi nyt liittyä vain kutsusta.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Ryhmä näkyy julkisissa hakutuloksissa, ja sitä voidaan esitellä esittelyosiossa. Esittelysivulla näytetään vain julkisia tietoja.", + "The group's avatar was changed.": "Ryhmän avatar muutettiin.", + "The group's banner was changed.": "Ryhmän banneri muutettiin.", + "The group's physical address was changed.": "Ryhmän osoite muutettiin.", + "The group's short description was changed.": "Ryhmän lyhyt kuvaus muutettiin.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "Instanssin ylläpitäjä on tämän Mobilizon-instanssin toiminnasta vastaava henkilö tai taho.", + "The member was approved": "", + "The member was removed from the group {group}": "Jäsen poistettiin ryhmästä {group}", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "Ryhmääsi voidaan ottaa uusia jäseniä vain ylläpitäjän kutsumana.", + "The organiser has chosen to close comments.": "Tapahtuman järjestäjä on sulkenut kommentoinnin.", + "The page you're looking for doesn't exist.": "Etsimääsi sivua ei ole olemassa.", + "The password was successfully changed": "Salasanan vaihto onnistui", + "The post {post} was created by {profile}.": "Viestin {post} loi {profile}.", + "The post {post} was deleted by {profile}.": "Viestin {post} poisti {profile}.", + "The post {post} was updated by {profile}.": "Viestiä {post} päivitti {profile}.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Raportti lähetetään oman instanssisi moderaattoreille. Alla voit kertoa, miksi raportoit sisällöstä.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "Valittu kuva on liian iso. Valitse tiedosto, joka on pienempi kuin {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Virheen tekniset yksityiskohdat voivat auttaa kehittäjiä ratkaisemaan ongelman helpommin. Lisää ne palautteeseesi, kiitos.", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Käytössä on {default_privacy_policy}. Ne käännetään käyttäjän valitsemalle kielelle.", + "The {default_terms} will be used. They will be translated in the user's language.": "{default_terms} ovat käytössä. Ne käännetään käyttäjän kielelle.", + "There are {participants} participants.": "Osallistujia on {participants}.", + "There is no activity yet. Start doing some things to see activity appear here.": "Toimintaa ei ole vielä täällä. Ala tekemään jotain, jotta näet toimintaa tapahtuvan täällä.", + "There will be no way to recover your data.": "Tietoja ei voi palauttaa millään tavalla.", + "There's no discussions yet": "Keskustelua ei vielä ole", + "These events may interest you": "Nämä tapahtumat saattavat kiinnostaa sinua", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Nämä syötteet sisältävät tapahtumadataa tapahtumille, joissa jokin profiileistasi on osallistuja tai luoja. Sinun tulisi pitää nämä yksityisinä. Voit löytää syötteet tietyille profiileille jokaisen profiilin sivuilta.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Nämä syötteet sisältävät tapahtumadataa tapahtumille, joissa tämä tietty profiili on osallistuja tai luoja. Sinun pitäisi pitää nämä yksityisinä. Voit löytää kaikkien profiiliesi syötteet ilmoitusasetuksista.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Nimetön osallistuminen on sallittua tällä Mobilizon-instanssilla ja tähän tapahtumaan, mutta osallistuminen on vahvistettava sähköpostitse.", + "This URL doesn't seem to be valid": "Tämä URL ei näytä olevan toimiva", + "This URL is not supported": "Osoite ei ole tuettu", + "This event has been cancelled.": "Tapahtuma on peruttu.", + "This event is accessible only through it's link. Be careful where you post this link.": "Tapahtumasivulle on pääsy vain linkin kautta. Ole tarkkana, missä julkaiset linkin.", + "This group doesn't have a description yet.": "Ryhmällä ei ole vielä kuvausta.", + "This group is accessible only through it's link. Be careful where you post this link.": "Tähän ryhmään pääsee vain linkin kautta. Ole varovainen minne jaat tämän linkin.", + "This group is invite-only": "Tämä ryhmä on vain kutsun saaneille", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "Tämä on yksilöllinen tunniste profiiliisi. Sen avulla muut voivat löytää sinut.", + "This information is saved only on your computer. Click for details": "Nämä tiedot tallennetaan vain omalle tietokoneellesi. Katso lisätietoja napsauttamalla", + "This instance hasn't got push notifications enabled.": "Tämä instanssi ei ole ottanut käyttöön push-ilmoituksia.", + "This instance isn't opened to registrations, but you can register on other instances.": "Tälle instanssille ei voi rekisteröityä, mutta voit rekisteröityä muille instansseille.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Tämä instanssi, {instanceName} ({domain}), sisältää profiilisi joten älä unohda sen nimeä.", + "This is a demonstration site to test Mobilizon.": "Tämä on koekäyttöön tarkoitettu Mobilizonin esittelysivu.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Tämä on ryhmän käyttäjätunnus ({username}) fediversumissa. Sen avulla ryhmä voidaan yksilöidysti löytää muiden instanssien kautta.", + "This month": "Tässä kuussa", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Tämä viesti näkyy vain jäsenille. Näet sen vain moderointitarkoituksessa, koska olet instanssisi moderaattori.", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "Tämän asetuksen perusteella sinulle näytetään verkkosivu ja lähetetään sähköpostit oikealla kielellä.", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Tätä sivustoa ei moderoida ja kaikki tiedot mitä syötetään tuhotaan automaattisesti joka päivä kello 00:01 (Pariisin aikavyöhyke).", + "This week": "Tällä viikolla", + "This weekend": "Tänä viikonloppuna", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Tämä poistaa tai anonymisoi kaiken tällä identiteetillä luodun sisällön (tapahtumat, kommentit, viestit, osallistumiset jne.).", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "Aikavyöhyke", + "Timezone detected as {timezone}.": "Aikavyöhykkeeksi tunnistettu {timezone}.", + "Title": "Otsikko", + "To activate more notifications, head over to the notification settings.": "Aktivoi lisäilmoitukset ilmoitusasetuksista.", + "To confirm, type your event title \"{eventTitle}\"": "Vahvista syöttämällä tapahtuman otsikko ”{eventTitle}”", + "To confirm, type your identity username \"{preferredUsername}\"": "Vahvista syöttämällä identiteettisi käyttäjänimi ”{preferredUsername}”", + "To create and manage multiples identities from a same account": "Luodaksesi useampia identiteettejä samalle tunnukselle", + "To create and manage your events": "Jotta voit luoda ja hallinnoida tapahtumia", + "To create or join an group and start organizing with other people": "Luodaksesi ryhmiä ja liittyäksesi ryhmiin alkaaksesi järjestämään tapahtumia muiden seurassa", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "Ilmoittautuaksesi tapahtumiin valitsemalla jokin identiteeteistäsi", + "Today": "Tänään", + "Tomorrow": "Huomenna", + "Tools": "Työkalut", + "Transfer to {outsideDomain}": "Siirry osoitteeseen {outsideDomain}", + "Triggered profile refreshment": "Profiilin päivitys aloitettu", + "Twitch live": "Twitch-lähetys", + "Twitch replay": "Twitch-uudelleentoisto", + "Twitter account": "Twitter-tili", + "Type": "Tyyppi", + "Type or select a date…": "Syötä tai valitse päivämäärä…", + "URL": "URL", + "URL copied to clipboard": "Osoite kopioitu leikepöydälle", + "Unable to copy to clipboard": "Ei pystytty kopioimaan leikepöydälle", + "Unable to create the group. One of the pictures may be too heavy.": "Ryhmää ei pystytty luomaan. Jokin kuvista voi olla liian iso.", + "Unable to create the profile. The avatar picture may be too heavy.": "Profiilia ei voitu luoda. Profiilikuva saataa olla liian raskas.", + "Unable to detect timezone.": "Aikavyöhykettä ei pystytty tunnistamaan.", + "Unable to load event for participation. The error details are provided below:": "Tapahtumaa ei voi ladata osallistumista varten. Tarkemmat tiedot virheestä:", + "Unable to save your participation in this browser.": "Osallistumistasi ei voi tallentaa tässä selaimessa.", + "Unable to update the profile. The avatar picture may be too heavy.": "Profiilia ei voitu päivittää. Profiilikuva saattaa olla liian raskas.", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "Ikävä kyllä järjestäjät hylkäsivät osallistumispyyntösi.", + "Unknown": "Tuntematon", + "Unknown actor": "Tuntematon tekijä", + "Unknown error.": "Tuntematon virhe.", + "Unknown value for the openness setting.": "Tuntematon arvo avoimuuden asetukselle.", + "Unlogged participation": "", + "Unsaved changes": "Tallentamattomia muutoksia", + "Unsubscribe to browser push notifications": "Peruuta selaimen push-ilmoitukset", + "Unsuspend": "Poista esto", + "Upcoming": "Tulossa", + "Upcoming events": "Tulevat tapahtumat", + "Upcoming events from your groups": "", + "Update": "Päivitä", + "Update app": "Päivitä sovellus", + "Update discussion title": "", + "Update event {name}": "Päivitä tapahtumaa {name}", + "Update group": "Päivitä ryhmä", + "Update my event": "Päivitä omaa tapahtumaa", + "Update post": "Päivitä julkaisua", + "Updated": "Päivitetty", + "Uploaded media size": "Lähetetyn median koko", + "Use my location": "Käytä sijaintiani", + "User": "Käyttäjä", + "User settings": "Käyttäjän asetukset", + "Username": "Käyttäjänimi", + "Users": "Käyttäjät", + "Validating account": "", + "Validating email": "", + "Video Conference": "Videokokous", + "View a reply": "|Näytä vastaus|Näytä {totalReplies} vastausta", + "View account on {hostname} (in a new window)": "Katso tiliä {hostname} (avautuu uuteen ikkunaan)", + "View all": "Näytä kaikki", + "View all events": "Näytä kaikki tapahtumat", + "View all posts": "Näytä kaikki viestit", + "View event page": "Näytä tapahtumasivu", + "View everything": "Näytä kaikki", + "View full profile": "", + "View less": "Katso vähemmän", + "View more": "Katso enemmän", + "View page on {hostname} (in a new window)": "Näytä sivu instanssilla {hostname} (uudessa ikkunassa)", + "Visibility was set to an unknown value.": "Näkyvyys asetettiin tuntemattomaan arvoon.", + "Visibility was set to private.": "Näkyvyys asetettiin yksityiseksi.", + "Visibility was set to public.": "Näkyvyys asetettiin julkiseksi.", + "Visible everywhere on the web": "Näkyy kaikkialle verkossa", + "Visible everywhere on the web (public)": "Näkyy kaikkialla verkossa (julkinen)", + "Waiting for organization team approval.": "Odottaa järjestäjien hyväksyntää.", + "Warning": "Varoitus", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Emme voineet tallentaa osallistumistasi tässä selaimessa. Ei syytä huoleen, olet vahvistanut osallistumisesi, mutta se ei tallentunut tähän selaimeen jostain teknisestä syystä.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Parannamme tätä ohjelmistoa palautteesi takia. Jotta saamme tietää tästä ongelmasta, kaksi mahdollisuutta (molemmat vaativat ikävä kyllä käyttäjätunnuksen luomista):", + "We just sent an email to {email}": "Lähetimme juuri sähköpostia osoitteeseen {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Aikavyöhyketiedon avulla saat tapahtumailmoitukset oikeaan aikaan.", + "We will redirect you to your instance in order to interact with this event": "Ohjaamme sinut omalle instanssillesi, jotta voit osallistua tapahtumaan", + "We will redirect you to your instance in order to interact with this group": "Ohjaamme sinut omalle instanssillesi voidaksesi toimia tässä ryhmässä", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Saat sähköpostimuistutuksen tapahtumasta tuntia ennen sen alkua.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Tapahtumapäivän aamuna lähetetään muistutus, ja siihen hyödynnetään aikavyöhykeasetusta.", + "Website": "Verkkosivu", + "Website / URL": "Verkkosivu/URL", + "Weekly email summary": "Viikottainen koostesähköposti", + "Welcome back {username}!": "Tervetuloa takaisin, {username}!", + "Welcome back!": "Tervetuloa takaisin!", + "Welcome to Mobilizon, {username}!": "Tervetuloa Mobilizoniin, {username}!", + "What can I do to help?": "Kuinka voin auttaa?", + "Wheelchair accessibility": "Saavutettavuus pyörätuoleille", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Tässä näkyy tapahtumat, jotka moderaattori on luonut ja liittänyt tähän ryhmään.", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "Onko tapahtuma saavutettavissa pyörätuolilla", + "Whether the event is interpreted in sign language": "Onko tapahtuma tulkattu viittomakielellä", + "Whether the event live video is subtitled": "Onko tapahtuman live-lähetys tekstitetty", + "Who can post a comment?": "", + "Who can view this event and participate": "Kuka voi nähdä tapahtuman ja osallistua siihen", + "Who can view this post": "Kuka voi nähdä tämän julkaisun", + "Who published {number} events": "{number} julkaistua tapahtumaa", + "Why create an account?": "Miksi kannattaa tehdä tunnus?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Sallimme osallistumisesi näyttämisen ja hallinnoinnin tapahtumasivulla tällä laitteella. Älä valitse, jos käytät julkista laitetta.", + "Within {number} kilometers of {place}": "|Yhden kilometrin sisällä paikasta {place}|{number} kilometrin päässä paikasta {place}", + "Yesterday": "Eilen", + "You accepted the invitation to join the group.": "Hyväksyit liittymiskutsun ryhmään.", + "You added the member {member}.": "Lisäsit käyttäjän {member}.", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "Arkistoit keskustelun {discussion}.", + "You are not an administrator for this group.": "Et ole ryhmän ylläpitäjä.", + "You are not part of any group.": "Et kuulu mihinkään ryhmään.", + "You are offline": "Ei verkkoyhteyttä", + "You are participating in this event anonymously": "Osallistut tapahtumaan nimettömänä", + "You are participating in this event anonymously but didn't confirm participation": "Osallistut tapahtumaan nimettömänä, mutta et ole vahvistanut osallistumistasi", + "You can add tags by hitting the Enter key or by adding a comma": "Voit lisätä tunnisteita painamalla enteriä tai lisäämällä pilkun", + "You can pick your timezone into your preferences.": "Voit valita aikavyöhykkeen asetuksistasi.", + "You can try another search term or drag and drop the marker on the map": "Voit kokeilla toista hakuehtoa tai vetää merkin kartalle", + "You can't change your password because you are registered through {provider}.": "Et voi vaihtaa salasanaa, koska olet rekisteröitynyt palvelussa {provider}.", + "You can't use push notifications in this browser.": "Et voi käyttää push-ilmoituksia tässä selaimessa.", + "You changed your email or password": "Muutit sähköpostisi tai salasanasi", + "You created the discussion {discussion}.": "Loit keskustelun {discussion}.", + "You created the event {event}.": "Loit tapahtuman {event}.", + "You created the folder {resource}.": "Loit kansion {resource}.", + "You created the group {group}.": "Loit ryhmän {group}.", + "You created the post {post}.": "Loit viestin {post}.", + "You created the resource {resource}.": "Loit resurssin {resource}.", + "You deleted the discussion {discussion}.": "Poistit keskustelun {discussion}.", + "You deleted the event {event}.": "Poistit tapahtuman {event}.", + "You deleted the folder {resource}.": "Poistit kansio {resource}.", + "You deleted the post {post}.": "Poistit viestin {post}.", + "You deleted the resource {resource}.": "Poistit resurssin {resource}.", + "You demoted the member {member} to an unknown role.": "Alensit käyttäjän {member} tuntemattomaan rooliin.", + "You demoted {member} to moderator.": "Alensit käyttäjän {member} roolin moderaattoriksi.", + "You demoted {member} to simple member.": "Alensit käyttäjän {member} roolin yksinkertaiseksi käyttäjäksi.", + "You didn't create or join any event yet.": "Et ole vielä luonut tapahtumaa tai liittynyt mihinkään tapahtumaan.", + "You don't follow any instances yet.": "Et seuraa vielä yhtäkään instanssia.", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "Jätit pois käyttäjän {member}.", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "{invitedBy} on kutsunut sinut seuraaviin ryhmiin:", + "You have been removed from this group's members.": "Sinut on poistettu ryhmän jäsenistä.", + "You have cancelled your participation": "Olet perunut osallistumisesi", + "You have one event in {days} days.": "Sinulla ei ole tapahtumia seuraavien {days} päivän aikana | Sinulla on yksi tapahtuma seuraavien {days} päivän aikana | Sinulla on {count} tapahtumaa seuraavien {days} päivän aikana", + "You have one event today.": "Sinulla ei ole tapahtumia tänään | Sinulla on yksi tapahtuma tänään | Sinulla on {count} tapahtumaa tänään", + "You have one event tomorrow.": "Sinulla ei ole tapahtumia huomenna | Sinulla on yksi tapahtuma huomenna | Sinulla on {count} tapahtumaa huomenna", + "You invited {member}.": "Kutsuit käyttäjän {member}.", + "You may clear all participation information for this device with the buttons below.": "Alla olevalla painikkeella voit poistaa kaikki tällä laitteella olevat osallistumistiedot.", + "You may now close this window, or {return_to_event}.": "Voit sulkea ikkunan tai {return_to_event}.", + "You may show some members as contacts.": "Voit näyttää jotkut käyttäjät yhteyshenkilöinä.", + "You moved the folder {resource} into {new_path}.": "Siirsit kansion {resource} polkuun {new_parh}.", + "You moved the folder {resource} to the root folder.": "Siirsit kansion {resource} juurikansioon.", + "You moved the resource {resource} into {new_path}.": "Siirsit resurssin {resource} polkuun {new_path].", + "You moved the resource {resource} to the root folder.": "Siirsit resurssin {resource} juurikansioon.", + "You need to login.": "Kirjaudu sisään.", + "You posted a comment on the event {event}.": "Lähetit kommentin tapahtumaan {event}.", + "You promoted the member {member} to an unknown role.": "Ylensit käyttäjän {member} tuntemattomaan rooliin.", + "You promoted {member} to administrator.": "Ylensit käyttäjän {member} ylläpitäjäksi.", + "You promoted {member} to moderator.": "Ylensit käyttäjän {member} moderaattoriksi.", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "Nimesit keskustelun uudelleen nmestä {old_discussion} nimeksi {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Muutit kansion nimestä {old_resource_title} nimeksi {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Nimesit resurssin uudelleen nimestä {old_resource_title} nimeksi {resource}.", + "You replied to a comment on the event {event}.": "Vastasit kommenttiin tapahtumassa {event}.", + "You replied to the discussion {discussion}.": "Vastasit keskusteluun {discussion}.", + "You requested to join the group.": "Pyysit liittymistäsi ryhmään.", + "You updated the event {event}.": "Päivitit tapahtumaa {event}.", + "You updated the group {group}.": "Päivitit ryhmän {group}.", + "You updated the member {member}.": "Päivitit käyttäjää {member}.", + "You updated the post {post}.": "Päivitit viestiä {post}.", + "You were demoted to an unknown role by {profile}.": "{profile} alensi roolisi tuntemattomaan rooliin.", + "You were demoted to moderator by {profile}.": "{profile} alensi roolisi moderaattoriksi.", + "You were demoted to simple member by {profile}.": "{profile} alensi roolisi yksinkertaiseksi käyttäjäksi.", + "You were promoted to administrator by {profile}.": "{profile} ylensi sinut ylläpitäjäksi.", + "You were promoted to an unknown role by {profile}.": "{profile} ylensi sinut tuntemattomaan rooliin.", + "You were promoted to moderator by {profile}.": "{profile} ylensi sinut moderaattoriksi.", + "You will be able to add an avatar and set other options in your account settings.": "Voit lisätä profiilikuvan ja antaa muita tietoja tunnuksen asetuksissasi.", + "You will be redirected to the original instance": "Sinut ohjataan alkuperäiselle instanssille", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "Haluat osallistua seuraavaan tapahtumaan", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Saat joka maanantai muistutuksen viikon mahdollisista tulevista tapahtumista.", + "You'll need to change the URLs where there were previously entered.": "Verkko-osoitteet tulee muuttaa sieltä mistä ne oli aiemmin syötetty.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Sinun täytyy jakaa linkki ryhmään, jotta käyttäjät voivat päästä ryhmän profiilisivulle. Ryhmä ei näy Mobilizonin haussa tai tavallisilla hakukoneilla.", + "You'll receive a confirmation email.": "Saat sähköpostiin vahvistuksen.", + "YouTube live": "YouTube-lähetys", + "YouTube replay": "YouTube-uudelleentoisto", + "Your account has been successfully deleted": "Tilin poistaminen onnistui", + "Your account has been validated": "Tilisi on vahvistettu", + "Your account is being validated": "Tiliäsi vahvistetaan", + "Your account is nearly ready, {username}": "Tilisi on melkein valmis, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Kaupunkisi tai alueesi ja säde käytetään vain ehdottamaan sinulle tapahtumia läheltä. Tapahtuman säde ottaa huomioon alueen hallinnollisen keskustan.", + "Your current email is {email}. You use it to log in.": "Nykyinen sähköpostiosoitteesi on {email}. Kirjaudu sisään sillä.", + "Your email": "Sähköpostiosoitteesi", + "Your email address was automatically set based on your {provider} account.": "Sähköpostiosoitteesi asetettiin automaattisesti {provider}-tilisi perusteella.", + "Your email has been changed": "Sähköpostiosoitteesi on vaihdettu", + "Your email is being changed": "Sähköpostiosoitetta vaihdetaan", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Sähköpostiosoitettasi käytetään vain vahvistamaan se, että olet todellinen ihminen, sekä lähettämään mahdollisia päivityksiä tapahtuman tietoihin. Osoitetta EI luovuteta muille instansseille tai tapahtuman järjestäjälle.", + "Your federated identity": "Identiteettisi fediversumissa", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "Osallistumisesi on vahvistettu", + "Your participation has been rejected": "Osallistumisesi on hylätty", + "Your participation has been requested": "Osallistumispyyntösi on tehty", + "Your participation request has been validated": "Osallistumisesi on vahvistettu", + "Your participation request is being validated": "Osallistumistasi vahvistetaan", + "Your participation status has been changed": "Osallistumisesi tilaa on muutettu", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Osallistumisesi tila tallennetaan vain tälle laitteelle, ja se poistetaan kuukauden kuluttua tapahtuman päättymisestä.", + "Your participation still has to be approved by the organisers.": "Järjestäjien pitää vielä hyväksyä osallistumisesi.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Osallistumisesi vahvistetaan, kun napsautat sähköpostin vahvistuslinkkiä, minkä jälkeen järjestäjä vahvistaa osallistumisesi käsin.", + "Your participation will be validated once you click the confirmation link into the email.": "Osallistumisesi vahvistetaan, kun napsautat sähköpostin vahvistuslinkkiä.", + "Your position was not available.": "", + "Your profile will be shown as contact.": "Profiilisi näytetään kontaktina.", + "Your timezone is currently set to {timezone}.": "Nykyinen aikavyöhykkeesi on {timezone}.", + "Your timezone was detected as {timezone}.": "Aikavyöhykkeeksesi tunnistettiin {timezone}.", + "Your timezone {timezone} isn't supported.": "Aikavyöhykkeesi {timezone} ei ole tuettu.", + "Your upcoming events": "Tulevat tapahtumasi", + "Zoom": "Zoom", + "Zoom in": "Suurenna", + "Zoom out": "Pienennä", + "[This comment has been deleted by it's author]": "[Kommentin kirjoittaja on poistanut kommentin]", + "[This comment has been deleted]": "[Kommentti on poistettu]", + "[deleted]": "[poistettu]", + "a non-existent report": "raporttia ei ole", + "access to the group's private content as well": "", + "and {number} groups": "ja {number} ryhmää", + "any distance": "miten kaukana tahansa", + "as {identity}": "identiteetillä {identity}", + "contact uninformed": "yhteyshenkilölle ei ilmoitettu", + "create a group": "luoda ryhmän", + "create an event": "luoda tapahtuman", + "default Mobilizon privacy policy": "Mobilizonin oletustietosuojakäytäntö", + "default Mobilizon terms": "Mobilizonin oletuskäyttöehdot", + "e.g. 10 Rue Jangot": "esim. Hämeenkatu 10", + "e.g. Accessibility, Twitch, PeerTube": "esim. Saavutettavuus, Twitch, PeerTube", + "enable the feature": "salli ominaisuus", + "explore the events": "tutustua tapahtumiin", + "explore the groups": "tutustua ryhmiin", + "full rules": "säännöt kokonaan", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "iCal-syöte", + "instance rules": "Instanssin säännöt", + "more than 1360 contributors": "yli 1360 tukijaa", + "profile@instance": "profiili@instanssi", + "report #{report_number}": "raportti #{report_number}", + "return to the event's page": "palata tapahtuman sivulle", + "terms of service": "käyttöehdot", + "with another identity…": "toisella identiteetillä…", + "your notification settings": "", + "{'@'}{username}": "{'@'}{username}", + "{approved} / {total} seats": "{approved} / {total} paikkaa", + "{available}/{capacity} available places": "Ei paikkoja jäljellä|{available}/{capacity} paikkaa jäljellä", + "{count} km": "{count} km", + "{count} members": "Ei jäseniä|Yksi jäsen|{count} jäsentä", + "{count} members or followers": "", + "{count} participants": "Ei osallistujia vielä | Yksi osallistuja | {count} osallistujaa", + "{count} requests waiting": "{count} pyyntöä odottamassa", + "{folder} - Resources": "{folder} - Resurssit", + "{group} activity timeline": "{group} toiminnan aikajana", + "{group} events": "{group} tapahtumat", + "{group} posts": "", + "{group}'s events": "Ryhmän {group} tapahtumat", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} on {mobilizon}-ohjelmaa käyttävä instanssi.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} on {mobilizon_link} -instanssi, yhteisön luoma vapaa ohjelmisto.", + "{member} accepted the invitation to join the group.": "{member} hyväksyi liittymiskutsun.", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "{member} hylkäsi kutsun ryhmään liittymiseen.", + "{member} requested to join the group.": "{member} pyysi liittymistä ryhmään.", + "{member} was invited by {profile}.": "Käyttäjän {member} kutsui {profile}.", + "{moderator} added a note on {report}": "{moderator} lisäsi huomautuksen: {report}", + "{moderator} closed {report}": "{moderator} sulki: {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} poisti tapahtuman ”{title)”", + "{moderator} has deleted a comment from {author}": "{moderator} poisti kommentin henkilöltä {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} poisti kommentin henkilöltä {author} joka liittyi tapahtumaan {event}", + "{moderator} has deleted user {user}": "{moderator} on poistanut käyttäjän {user}", + "{moderator} has done an unknown action": "{moderator} teki jotain tuntematonta", + "{moderator} has unsuspended group {profile}": "{moderator} poisti ryhmän jäädytyksen {profile}", + "{moderator} has unsuspended profile {profile}": "{moderator} on poistanut profiilin {profile} eston", + "{moderator} marked {report} as resolved": "{moderator} merkitsi ratkaistuksi: {report}", + "{moderator} reopened {report}": "{moderator} avasi uudelleen: {report}", + "{moderator} suspended group {profile}": "{moderator} jäädytti ryhmän {profile}", + "{moderator} suspended profile {profile}": "{moderator} esti profiilin {profile}", + "{nb} km": "{nb} km", + "{number} members": "{number} jäsentä", + "{number} memberships": "{number} jäsenyyttä", + "{number} organized events": "Ei järjestettyjä tapahtumia|Yksi järjestetty tapahtuma|{number} järjestettyä tapahtumaa", + "{number} participations": "Ei osallistumisia|Yksi osallistuminen|{number} osallistumista", + "{number} posts": "Ei julkaisuja|Yksi julkaisu|{number} julkaisua", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "{old_group_name} nimettiin uudelleen ryhmäksi {group}.", + "{profile} (by default)": "{profile} (oletuksena)", + "{profile} added the member {member}.": "{profile} lisäsi käyttäjän {member}.", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "{profile} arkistoi keskustelun {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} loi keskustelun {discussion}.", + "{profile} created the folder {resource}.": "{profile} loi kansion {resource}.", + "{profile} created the group {group}.": "{profile} loi ryhmän {group}.", + "{profile} created the resource {resource}.": "{profile} loi resurssin {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} poisti keskustelun {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} poisti kansion {resource}.", + "{profile} deleted the resource {resource}.": "{profile} poisti resurssin {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} alensi käyttäjän {member} tuntemattomaan rooliin.", + "{profile} demoted {member} to moderator.": "{profile} alensi käyttäjän {member} moderaattoriksi.", + "{profile} demoted {member} to simple member.": "{profile} alensi käytäjän {member} yksinkertaiseksi käyttäjäksi.", + "{profile} excluded member {member}.": "{profile} jätti pois käyttäjän {member}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} siirsi kansion {resource} polkuun {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} siirsi kansion {resource} juurikansioon.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} siirsi resurssin {resource} polkuun {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} siirsi resurssin {resource} juurikansioon.", + "{profile} posted a comment on the event {event}.": "{profile} lähetti kommentin tapahtumaan {event}.", + "{profile} promoted {member} to administrator.": "{proflle} ylensi käyttäjän {member} ylläpitäjäksi.", + "{profile} promoted {member} to an unknown role.": "{proflle} ylensi käyttäjän {member} tuntemattomaan rooliin.", + "{profile} promoted {member} to moderator.": "{profile} ylensi käyttäjän {member} moderaattoriksi.", + "{profile} quit the group.": "{profile} jätti ryhmän.", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} nimesi keskustelun uudelleen nimestä {old_discussion} nimeksi {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} nimesi uudelleen kansion nimestä {old_resource_title} nimeksi {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} nimesi resurssin nimestä {old_resource_title} nimeksi {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} vastasi kommenttiin tapahtumassa {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} vastasi keskusteluun {discussion}.", + "{profile} updated the group {group}.": "{profile} päivitti ryhmää {group}.", + "{profile} updated the member {member}.": "{profile} päivitti käyttäjää {member}.", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "{title} ({count} tehtävää)", + "{username} was invited to {group}": "{username} kutsuttiin ryhmään {group}", + "© The OpenStreetMap Contributors": "© OpenStreetMap-tekijät" +}); diff --git a/res/locale/fr_FR.js b/res/locale/fr_FR.js new file mode 100644 index 0000000..61f152a --- /dev/null +++ b/res/locale/fr_FR.js @@ -0,0 +1,1655 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Masqué)", + "(this folder)": "(ce dossier)", + "(this link)": "(ce lien)", + "+ Add a resource": "+ Ajouter une ressource", + "+ Create a post": "+ Créer un billet", + "+ Create an event": "+ Créer un événement", + "+ Start a discussion": "+ Lancer une discussion", + "0 Bytes": "0 octets", + "{contact} will be displayed as contact.": "{contact} sera affiché·e comme contact.|{contact} seront affiché·e·s comme contacts.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "La demande de suivi de @{username} a été acceptée", + "@{username}'s follow request was rejected": "La demande de suivi de @{username} a été rejetée", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Un cookie est un petit fichier contenant des informations qui est envoyé à votre ordinateur lorsque vous visitez un site web. Lorsque vous visitez le site à nouveau, le cookie permet à ce site de reconnaître votre navigateur. Les cookies peuvent stocker les préférences des utilisateur·rice·s et d'autres informations. Vous pouvez configurer votre navigateur pour qu'il refuse tous les cookies. Toutefois, cela peut entraîner le non-fonctionnement de certaines fonctions ou de certains services du site web. Le stockage local fonctionne de la même manière mais permet de stocker davantage de données.", + "A discussion has been created or updated": "Une discussion a été créée ou mise à jour", + "A federated software": "Un logiciel fédéré", + "A fediverse account URL to follow for event updates": "Un compte sur le fediverse à suivre pour les mises à jour de l'événement", + "A few lines about your group": "Quelques lignes à propos de votre groupe", + "A link to a page presenting the event schedule": "Un lien vers une page présentant le programme de l'événement", + "A link to a page presenting the price options": "Un lien vers une page présentant la tarification", + "A member has been updated": "Un membre a été mis à jour", + "A member requested to join one of my groups": "Un membre a demandé a rejoindre l'un de mes groupes", + "A new version is available.": "Une nouvelle version est disponible.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Une section appropriée pour votre code de conduite, règles ou lignes directrices. Vous pouvez utiliser des balises HTML.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Une section pour expliquer qui vous êtes et les aspects qui caractérisent votre instance. Vous pouvez utiliser des balises HTML.", + "A place to publish something to the whole world, your community or just your group members.": "Un endroit pour publier quelque chose à l'intention du monde entier, de votre communauté ou simplement des membres de votre groupe.", + "A place to store links to documents or resources of any type.": "Un endroit pour stocker des liens vers des documents ou des ressources de tout type.", + "A post has been published": "Un billet a été publié", + "A post has been updated": "Un billet a été mis à jour", + "A practical tool": "Un outil pratique", + "A resource has been created or updated": "Une resource a été créée ou mise à jour", + "A twitter account handle to follow for event updates": "Un compte sur Twitter à suivre pour les mises à jour de l'événement", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Un outil convivial, émancipateur et éthique pour se rassembler, s'organiser et se mobiliser.", + "A validation email was sent to {email}": "Un e-mail de validation a été envoyé à {email}", + "API": "API", + "Abandon editing": "Abandonner la modification", + "About": "À propos", + "About Mobilizon": "À propos de Mobilizon", + "About anonymous participation": "À propos de la participation anonyme", + "About instance": "À propos de l'instance", + "About this event": "À propos de cet événement", + "About this instance": "À propos de cette instance", + "About {instance}": "À propos de {instance}", + "Accept": "Accepter", + "Accept follow": "Accepter le suivi", + "Accepted": "Accepté", + "Access drafts events": "Accéder aux événements brouillons", + "Access followed groups": "Accéder à la liste des groupes suivis", + "Access group activities": "Accéder aux activités des groupes", + "Access group discussions": "Accéder aux discussions des groupes", + "Access group events": "Accéder aux événements des groupes", + "Access group followers": "Accéder à la liste des abonnés des groupes", + "Access group members": "Accéder à la liste des membres des groupes", + "Access group memberships": "Accéder à la liste de vos adhésions à des groupes", + "Access group suggested events": "Accéder aux événements des groupes suggérés", + "Access group todo-lists": "Accéder aux listes de tâches des groupes", + "Access organized events": "Accéder à la liste de vos événements organisés", + "Access participations": "Accéder à la liste de vos participations", + "Access your group's resources": "Accéder aux ressources de vos groupes", + "Accessibility": "Accessibilité", + "Accessible only by link": "Accessible uniquement par lien", + "Accessible only to members": "Accessible uniquement aux membres", + "Accessible through link": "Accessible uniquement par lien", + "Account": "Compte", + "Account settings": "Paramètres du compte", + "Actions": "Actions", + "Activate browser push notifications": "Activer les notifications push du navigateur", + "Activate notifications": "Activer les notifications", + "Activated": "Activé", + "Active": "Actif·ive", + "Activity": "Activité", + "Actor": "Acteur", + "Adapt to system theme": "S’adapter au thème du système", + "Add": "Ajouter", + "Add / Remove…": "Ajouter / Supprimer…", + "Add a contact": "Ajouter un contact", + "Add a new post": "Ajouter un nouveau billet", + "Add a note": "Ajouter une note", + "Add a recipient": "Ajouter un·e destinataire", + "Add a todo": "Ajouter un todo", + "Add an address": "Ajouter une adresse", + "Add an instance": "Ajouter une instance", + "Add link": "Ajouter un lien", + "Add new…": "Ajouter…", + "Add picture": "Ajouter une image", + "Add some tags": "Ajouter des tags", + "Add to my calendar": "Ajouter à mon agenda", + "Additional comments": "Commentaires additionnels", + "Admin": "Admin", + "Admin dashboard": "Tableau de bord admin", + "Admin settings": "Paramètres admin", + "Admin settings successfully saved.": "Les paramètres administrateur ont bien été sauvegardés.", + "Administration": "Administration", + "Administrator": "Administrateur·rice", + "All": "Toutes", + "All activities": "Toutes les activités", + "All good, let's continue!": "C'est tout bon, continuons !", + "All the places have already been taken": "Toutes les places ont déjà été prises", + "Allow all comments from users with accounts": "Autoriser tous les commentaires d'utilisateur·rice·s avec des comptes", + "Allow registrations": "Autoriser les inscriptions", + "An URL to an external ticketing platform": "Une URL vers une plateforme de billetterie externe", + "An anonymous profile joined the event {event}.": "Un profil anonyme a rejoint l'événement {event}.", + "An error has occured while refreshing the page.": "Une erreur est survenue lors du rafraîchissement de la page.", + "An error has occured. Sorry about that. You may try to reload the page.": "Une erreur est survenue. Nous en sommes désolé·es. Vous pouvez essayer de rafraîchir la page.", + "An ethical alternative": "Une alternative éthique", + "An event I'm going to has been updated": "Un événement auquel je participe a été mis à jour", + "An event I'm going to has posted an announcement": "Un événement auquel je participe a posté une annonce", + "An event I'm organizing has a new comment": "Un événement que j'organise a un nouveau commentaire", + "An event I'm organizing has a new participation": "Un événement que j'organise a une nouvelle participation", + "An event I'm organizing has a new pending participation": "Un événement que j'organise a une nouvelle participation en attente", + "An event from one of my groups has been published": "Un événement d'un de mes groupes a été publié", + "An event from one of my groups has been updated or deleted": "Un événement d'un de mes groupes a été mis à jour ou supprimé", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Une instance est une version du logiciel Mobilizon fonctionnant sur un serveur. Une instance peut être gérée par n'importe qui avec le {mobilizon_software} ou d'autres applications fédérées, correspondant au « fediverse ». Cette instance se nomme {instance_name}. Mobilizon est un réseau fédéré de multiples instances (tout comme des serveurs e-mail), des utilisateur·rice·s inscrites sur différentes instances peuvent communiquer bien qu'il·elle·s ne se soient pas enregistré·e·s sur la même instance.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "Une « interface de programmation d’application » ou « API » est un protocole de communication qui permet aux composants logiciels de communiquer entre eux. L'API Mobilizon, par exemple, peut permettre à des outils logiciels tiers de communiquer avec les instances Mobilizon pour effectuer certaines actions, telles que la publication d'événements en votre nom, automatiquement et à distance.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events, automatically and remotely.": "Une « interface de programmation d'application » ou « API » est un protocole de communication qui permet à des composants logiciels de communiquer entre eux. L'API de Mobilizon, par exemple, peut permettre à des outils logiciels tiers de communiquer avec des instances de Mobilizon pour effectuer certaines actions, comme la publication d'événements, automatiquement et à distance.", + "And {number} comments": "Et {number} commentaires", + "Announcements": "Annonces", + "Announcements and mentions notifications are always sent straight away.": "Les notifications d'annonces et de mentions sont toujours envoyées directement.", + "Announcements for {eventTitle}": "Annonces pour {eventTitle}", + "Anonymous participant": "Participant·e anonyme", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Les participants anonymes devront confirmer leur participation par e-mail.", + "Anonymous participations": "Participations anonymes", + "Any category": "N'importe quelle catégorie", + "Any day": "N'importe quand", + "Any distance": "N'importe quelle distance", + "Any type": "N'importe quel type", + "Anyone can join freely": "N'importe qui peut rejoindre", + "Anyone can request being a member, but an administrator needs to approve the membership.": "N'importe qui peut demander à être membre, mais un·e administrateur·ice devra approuver leur adhésion.", + "Anyone wanting to be a member from your group will be able to from your group page.": "N'importe qui voulant devenir membre pourra le faire depuis votre page de groupe.", + "Application": "Application", + "Application authorized": "Application autorisée", + "Application not found": "Application non trouvée", + "Application was revoked": "L'application a été révoquée", + "Apply filters": "Appliquer les filtres", + "Approve member": "Approuver le ou la membre", + "Apps": "Applications", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Êtes-vous vraiment certain·e de vouloir supprimer votre compte ? Vous allez tout perdre. Identités, paramètres, événements créés, messages et participations disparaîtront pour toujours.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Êtes-vous certain·e de vouloir complètement supprimer ce groupe ? Tous les membres - y compris ceux·elles sur d'autres instances - seront notifié·e·s et supprimé·e·s du groupe, et toutes les données associées au groupe (événements, billets, discussions, todos…) seront irrémédiablement détruites.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Êtes-vous certain·e de vouloir supprimer ce commentaire ? Cette action ne peut pas être annulée.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Êtes-vous certain·e de vouloir supprimer ce commentaire ? Cette action ne peut pas être annulée.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator and ask them to edit their event instead.": "Êtes-vous certain·e de vouloir supprimer cet événement ? Cette action n'est pas réversible. Vous voulez peut-être engager la discussion avec le créateur de l'événement et lui demander de modifier son événement à la place.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Êtes-vous certain·e de vouloir supprimer cet événement ? Cette action n'est pas réversible. Vous voulez peut-être engager la discussion avec le créateur de l'événement ou bien modifier son événement à la place.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Êtes-vous certain·e de vouloir suspendre ce groupe ? Tous les membres - y compris ceux·elles sur d'autres instances - seront notifié·e·s et supprimé·e·s du groupe, et toutes les données associées au groupe (événements, billets, discussions, todos…) seront irrémédiablement détruites.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Êtes-vous certain·e de vouloir suspendre ce groupe ? Comme ce groupe provient de l'instance {instance}, cela supprimera seulement les membres locaux et supprimera les données locales, et rejettera également toutes les données futures.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Êtes-vous certain·e de vouloir annuler la création de l'événement ? Vous allez perdre toutes vos modifications.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Êtes-vous certain·e de vouloir annuler la modification de l'événement ? Vous allez perdre toutes vos modifications.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Êtes-vous certain·e de vouloir annuler votre participation à l'événement « {title} » ?", + "Are you sure you want to delete this entire conversation?": "Êtes-vous sûr·e de vouloir supprimer l'entièreté de cette conversation ?", + "Are you sure you want to delete this entire discussion?": "Êtes-vous certain·e de vouloir supprimer l'entièreté de cette discussion ?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Êtes-vous certain·e de vouloir supprimer cet événement ? Cette action ne peut être annulée.", + "Are you sure you want to delete this post? This action cannot be reverted.": "Voulez-vous vraiment supprimer ce billet ? Cette action ne peut pas être annulée.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Êtes-vous sûr·e de vouloir quitter le groupe {groupName} ? Vous perdrez accès au contenu privé de ce groupe. Cette action ne peut pas être annulée.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "L'organisateur de l'événement ayant choisi de valider manuellement les demandes de participation, votre participation ne sera réellement confirmée que lorsque vous recevrez un courriel indiquant qu'elle est acceptée.", + "Ask your instance admin to {enable_feature}.": "Demandez à l'administrateur·ice de votre instance d'{enable_feature}.", + "Assigned to": "Assigné à", + "Atom feed for events and posts": "Flux Atom pour les événements et les billets", + "Attending": "Participant·e", + "Authorize": "Autoriser", + "Authorize application": "Autoriser l'application", + "Authorized on {authorization_date}": "Autorisée le {authorization_date}", + "Autorize this application to access your account?": "Autoriser cette application à accéder à votre compte ?", + "Avatar": "Avatar", + "Back to group list": "Retour à la liste des groupes", + "Back to homepage": "Retour à la page d'accueil", + "Back to previous page": "Retour à la page précédente", + "Back to profile list": "Retour à la liste des profiles", + "Back to top": "Retour en haut", + "Back to user list": "Retour à la liste des utilisateur·ices", + "Banner": "Bannière", + "Become part of the community and start organizing events": "Faites partie de la communauté et commencez à organiser des événements", + "Before you can login, you need to click on the link inside it to validate your account.": "Avant que vous puissiez vous enregistrer, vous devez cliquer sur le lien à l'intérieur pour valider votre compte.", + "Begins on": "Commence le", + "Best match": "Pertinence", + "Big Blue Button": "Big Blue Button", + "Bold": "Gras", + "Booking": "Réservations", + "Breadcrumbs": "Fil d'Ariane", + "Browser notifications": "Notifications du navigateur", + "Browser tab icon and PWA icon of the instance. Defaults to the upstream Mobilizon icon.": "Icône de l'onglet du navigateur et de la progressive web app.", + "Bullet list": "Liste à puce", + "By bike": "En vélo", + "By car": "En voiture", + "By others": "Des autres", + "By transit": "En transports en commun", + "By {group}": "Par {group}", + "By {username}": "Par {username}", + "Calendar": "Calendrier", + "Can be an email or a link, or just plain text.": "Peut être une adresse e-mail ou bien un lien, ou alors du simple texte brut.", + "Cancel": "Annuler", + "Cancel anonymous participation": "Annuler ma participation anonyme", + "Cancel creation": "Annuler la création", + "Cancel discussion title edition": "Annuler la mise à jour du titre de la discussion", + "Cancel edition": "Annuler la modification", + "Cancel follow request": "Annuler la demande de suivi", + "Cancel membership request": "Annuler la demande d'adhésion", + "Cancel my participation request…": "Annuler ma demande de participation…", + "Cancel my participation…": "Annuler ma participation…", + "Cancel participation": "Annuler la participation", + "Cancelled": "Annulé", + "Cancelled: Won't happen": "Annulé : N'aura pas lieu", + "Categories": "Catégories", + "Category": "Catégorie", + "Category illustrations credits": "Crédits des illustrations des catégories", + "Category list": "Liste des catégories", + "Change": "Modifier", + "Change email": "Changer l'e-mail", + "Change my email": "Changer mon adresse e-mail", + "Change my identity…": "Changer mon identité…", + "Change my password": "Modifier mon mot de passe", + "Change role": "Changer le role", + "Change the filters.": "Changez les filtres.", + "Change timezone": "Changer de fuseau horaire", + "Change user email": "Modifier l'e-mail de l'utilisateur·ice", + "Change user role": "Changer le role de l'utilisateur", + "Check your device to continue. You may now close this window.": "Vérifiez votre appareil pour continuer. Vous pouvez maintenant fermer cette fenêtre.", + "Check your inbox (and your junk mail folder).": "Vérifiez votre boîte de réception (et votre dossier des indésirables).", + "Choose the source of the instance's Privacy Policy": "Choisissez la source de la politique de confidentialité de l'instance", + "Choose the source of the instance's Terms": "Choisissez la source des conditions d'utilisation de l'instance", + "City or region": "Ville ou région", + "Clear": "Effacer", + "Clear address field": "Vider le champ addresse", + "Clear date filter field": "Vider le champ de filtre de la date", + "Clear participation data for all events": "Effacer mes données de participation pour tous les événements", + "Clear participation data for this event": "Effacer mes données de participation pour cet événement", + "Clear timezone field": "Vider le champ du fuseau horaire", + "Click for more information": "Cliquez pour plus d'informations", + "Click to upload": "Cliquez pour téléverser", + "Close": "Fermer", + "Close comments for all (except for admins)": "Fermer les commentaires à tout le monde (excepté les administrateur·rice·s)", + "Close map": "Fermer la carte", + "Closed": "Fermé", + "Comment body": "Corps du commentaire", + "Comment deleted": "Commentaire supprimé", + "Comment deleted and report resolved": "Commentaire supprimé et signalement résolu", + "Comment from a private conversation": "Commentaire d'une conversation privée", + "Comment from an event announcement": "Commentaire d'une annonce d'événement", + "Comment from {'@'}{username} reported": "Commentaire de {'@'}{username} signalé", + "Comment text can't be empty": "Le texte du commentaire ne peut être vide", + "Comment under event {eventTitle}": "Commentaire sous l'événement {eventTitle}", + "Comments": "Commentaires", + "Comments are closed for everybody else.": "Les commentaires sont fermés pour tou·te·s les autres.", + "Confirm": "Confirmer", + "Confirm my participation": "Confirmer ma participation", + "Confirm my particpation": "Confirmer ma participation", + "Confirm participation": "Confirmer la participation", + "Confirm user": "Confirmer l'utilisateur·ice", + "Confirmed": "Confirmé·e", + "Confirmed at": "Confirmé·e à", + "Confirmed: Will happen": "Confirmé : aura lieu", + "Congratulations, your account is now created!": "Bravo, votre compte est dorénavant créé !", + "Contact": "Contact", + "Continue": "Continuer", + "Continue editing": "Continuer la modification", + "Conversation with {participants}": "Conversation avec {participants}", + "Conversations": "Conversations", + "Cookies and Local storage": "Cookies et stockage local", + "Copy URL to clipboard": "Copier l'URL dans le presse-papiers", + "Copy details to clipboard": "Copier les détails dans le presse-papiers", + "Country": "Pays", + "Create": "Créer", + "Create a calc": "Créer un calc", + "Create a discussion": "Créer une discussion", + "Create a folder": "Créer un dossier", + "Create a new event": "Créer un nouvel événement", + "Create a new group": "Créer un nouveau groupe", + "Create a new identity": "Créer une nouvelle identité", + "Create a new list": "Créer une nouvelle liste", + "Create a new metadata element": "Créer un nouvel élément de métadonnées", + "Create a new profile": "Créer un nouveau profil", + "Create a pad": "Créer un pad", + "Create a videoconference": "Créer une visio-conférence", + "Create an account": "Créer un compte", + "Create discussion": "Créer une discussion", + "Create event": "Créer un événement", + "Create feed tokens": "Créer des jetons de flux", + "Create group": "Créer un groupe", + "Create group discussions": "Créer des discussions de groupes", + "Create group resources": "Créer des ressources de groupes", + "Create identity": "Créer une identité", + "Create my event": "Créer mon événement", + "Create my group": "Créer mon groupe", + "Create my profile": "Créer mon profil", + "Create new links": "Créer de nouveaux liens", + "Create new profiles": "Créer des nouveaux profils", + "Create resource": "Créer une ressource", + "Create the discussion": "Créer la discussion", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Créez des listes de choses à faire pour toutes les tâches que vous devez faire, attribuez les et fixez des dates d'échéance.", + "Create token": "Créer un jeton", + "Created by {name}": "Créé par {name}", + "Created by {username}": "Créé par {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "L'identité actuelle a été changée à {identityName} pour pouvoir gérer cet événement.", + "Current page": "Page courante", + "Custom": "Personnel", + "Custom URL": "URL personnalisée", + "Custom text": "Texte personnalisé", + "Daily email summary": "E-mail récapitulatif chaque jour", + "Dark": "Sombre", + "Dashboard": "Tableau de bord", + "Date": "Date", + "Date and time": "Date et heure", + "Date and time settings": "Paramètres de date et d'heure", + "Date parameters": "Paramètres de date", + "Deactivate notifications": "Désactiver les notifications", + "Decline": "Refuser", + "Decrease": "Baisser", + "Default": "Défaut", + "Default Mobilizon privacy policy": "Politique de confidentialité par défaut de Mobilizon", + "Default Mobilizon terms": "Conditions d'utilisation par défaut de Mobilizon", + "Default Picture": "Image par défaut", + "Default picture when an event or group doesn't have one.": "Image par défaut quand un évènement ou groupe n'en a pas.", + "Delete": "Supprimer", + "Delete account": "Suppression du compte", + "Delete comment": "Supprimer le commentaire", + "Delete comment and resolve report": "Supprimer le commentaire et résoudre le signalement", + "Delete comments": "Supprimer des commentaires", + "Delete conversation": "Supprimer la conversation", + "Delete discussion": "Supprimer la discussion", + "Delete event": "Supprimer un événement", + "Delete event and resolve report": "Supprimer l'événement et résoudre le signalement", + "Delete events": "Supprimer des événements", + "Delete everything": "Tout supprimer", + "Delete feed tokens": "Supprimer les jetons de flux", + "Delete group": "Supprimer le groupe", + "Delete group discussions": "Supprimer des discussions de groupes", + "Delete group posts": "Supprimer des billets de groupes", + "Delete group resources": "Supprimer des ressources de groupes", + "Delete my account": "Supprimer mon compte", + "Delete post": "Supprimer le billet", + "Delete profiles": "Supprimer des profils", + "Delete this conversation": "Supprimer cette conversation", + "Delete this discussion": "Supprimer cette discussion", + "Delete this identity": "Supprimer cette identité", + "Delete your identity": "Supprimer votre identité", + "Delete {eventTitle}": "Supprimer {eventTitle}", + "Delete {preferredUsername}": "Supprimer {preferredUsername}", + "Deleting comment": "Suppression du commentaire en cours", + "Deleting event": "Suppression de l'événement", + "Deleting my account will delete all of my identities.": "Supprimer mon compte supprimera toutes mes identités.", + "Deleting your Mobilizon account": "Supprimer votre compte Mobilizon", + "Demote": "Rétrograder", + "Describe your event": "Décrivez votre événement", + "Description": "Description", + "Details": "Détails", + "Device activation": "Activation de l'appareil", + "Didn't receive the instructions?": "Vous n'avez pas reçu les instructions ?", + "Disabled": "Désactivé", + "Discussions": "Discussions", + "Discussions list": "Liste des discussions", + "Display name": "Nom affiché", + "Display participation price": "Afficher un prix de participation", + "Displayed nickname": "Pseudonyme affiché", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Affichée sur la page d'accueil et dans les balises meta. Décrivez ce qu'est Mobilizon et ce qui rend spécifique cette instance en un seul paragraphe.", + "Distance": "Distance", + "Do not receive any mail": "Ne pas recevoir d'e-mail", + "Do you really want to suspend the account « {emailAccount} » ?": "Voulez-vous vraiment suspendre le compte « {emailAccount} » ?", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Voulez-vous vraiment suspendre ce compte ? Tous les profils de cet·te utilisateur·ice seront supprimés.", + "Do you really want to suspend this profile? All of the profiles content will be deleted.": "Voulez-vous vraiment suspendre ce profil ? Tout le contenu du profil sera supprimé.", + "Do you wish to {create_event} or {explore_events}?": "Voulez-vous {create_event} ou {explore_events} ?", + "Do you wish to {create_group} or {explore_groups}?": "Voulez-vous {create_group} ou {explore_groups} ?", + "Does the event needs to be confirmed later or is it cancelled?": "Est-ce que l'événement doit être confirmé plus tard ou bien est-il annulé ?", + "Domain": "Domaine", + "Domain or instance name": "Domaine ou nom de l'instance", + "Draft": "Brouillon", + "Drafts": "Brouillons", + "Due on": "Prévu pour le", + "Duplicate": "Dupliquer", + "Edit": "Modifier", + "Edit post": "Éditer le billet", + "Edit profile {profile}": "Éditer le profil {profile}", + "Edit user email": "Éditer l'e-mail de l'utilisateur·ice", + "Edited {ago}": "Édité il y a {ago}", + "Edited {relative_time} ago": "Édité il y a {relative_time}", + "Eg: Stockholm, Dance, Chess…": "Par exemple : Lyon, Danse, Bridge…", + "Either on the {instance} instance or on another instance.": "Sur l'instance {instance} ou bien sur une autre instance.", + "Either the account is already validated, either the validation token is incorrect.": "Soit le compte est déjà validé, soit le jeton de validation est incorrect.", + "Either the email has already been changed, either the validation token is incorrect.": "Soit l'adresse e-mail a déjà été modifiée, soit le jeton de validation est incorrect.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Soit la demande de participation a déjà été validée, soit le jeton de validation est incorrect.", + "Either your participation has already been cancelled, either the validation token is incorrect.": "Soit votre participation a déjà été annulée, soit le jeton de validation est incorrect.", + "Element title": "Titre de l'élement", + "Element value": "Valeur de l'élement", + "Email": "Courriel", + "Email address": "Adresse e-mail", + "Email validate": "Validation de l'e-mail", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "Les e-mails ne contiennent d'ordinaire pas de capitales, assurez-vous de n'avoir pas fait de faute de frappe.", + "Enabled": "Activé", + "Ends on…": "Se termine le…", + "Enter the code displayed on your device": "Saisissez le code affiché sur votre appareil", + "Enter the link URL": "Entrez l'URL du lien", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Indiquez votre adresse e-mail ci-dessous. Nous vous enverrons des instructions concernant la modification de votre mot de passe.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Entrez votre propre politique de confidentialité. Les balises HTML sont autorisées. La {mobilizon_privacy_policy} est fournie comme modèle.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Entrez vos propres conditions d'utilisation. Les balises HTML sont autorisées. Les {mobilizon_terms} sont fournies comme modèle.", + "Error": "Erreur", + "Error details copied!": "Détails de l'erreur copiés !", + "Error message": "Message d'erreur", + "Error stacktrace": "Trace d'appels de l'erreur", + "Error while adding tag: {error}": "Erreur lors de l'ajout d'un tag : {error}", + "Error while cancelling your participation": "Erreur lors de l'annulation de votre participation", + "Error while changing email": "Erreur lors de la modification de l'adresse e-mail", + "Error while loading the preview": "Erreur lors du chargement de l'aperçu", + "Error while login with {provider}. Retry or login another way.": "Erreur lors de la connexion avec {provider}. Réessayez ou bien connectez vous autrement.", + "Error while login with {provider}. This login provider doesn't exist.": "Erreur lors de la connexion avec {provider}. Cette méthode de connexion n'existe pas.", + "Error while reporting group {groupTitle}": "Erreur lors du signalement du groupe {groupTitle}", + "Error while subscribing to push notifications": "Erreur lors de la souscriptions aux notifications push", + "Error while suspending group": "Erreur lors de la suspension du groupe", + "Error while updating participation status inside this browser": "Erreur lors de la mise à jour du statut de votre participation dans ce navigateur", + "Error while validating account": "Erreur lors de la validation du compte", + "Error while validating participation request": "Erreur lors de la validation de la demande de participation", + "Etherpad notes": "Notes sur Etherpad", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Alternative éthique aux événements, groupes et pages Facebook, Mobilizon est un outil conçu pour vous servir. Point.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Alternative éthique aux événements, groupes et pages Facebook, Mobilizon est un {tool_designed_to_serve_you}. Point.", + "Event": "Événement", + "Event URL": "URL de l'événement", + "Event already passed": "Événement déjà passé", + "Event cancelled": "Événement annulé", + "Event creation": "Création d'événement", + "Event date": "Date de l'événement", + "Event deleted": "Événement supprimé", + "Event deleted and report resolved": "Événement supprimé et signalement résolu", + "Event description body": "Corps de la description de l'événement", + "Event edition": "Modification d'événement", + "Event list": "Liste d'événements", + "Event metadata": "Métadonnées de l'événement", + "Event page settings": "Paramètres de la page de l'événement", + "Event status": "Statut de l'événement", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Le fuseau horaire de l'événement sera mis par défaut au fuseau horaire de l'addresse de l'événement s'il y en a une, ou bien à votre propre paramètre de fuseau horaire.", + "Event to be confirmed": "Événement à confirmer", + "Event {eventTitle} deleted": "Événement {eventTitle} supprimé", + "Event {eventTitle} reported": "Événement {eventTitle} signalé", + "Events": "Événements", + "Events close to you": "Événements proches de vous", + "Events nearby": "Événements proches", + "Events nearby {position}": "Événements près de {position}", + "Events tagged with {tag}": "Événements taggés avec {tag}", + "Everything": "Tous", + "Ex: mobilizon.fr": "Ex : mobilizon.fr", + "Ex: someone@mobilizon.org": "Ex : une_personne@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "Ex : une_personne{'@'}mobilizon.org", + "Explore": "Explorer", + "Explore events": "Explorer les événements", + "Explore!": "Explorer !", + "Export": "Export", + "External provider URL": "URL du fournisseur externe", + "External registration": "Inscription externe", + "Failed to get location.": "Impossible de récupérer la localisation.", + "Failed to save admin settings": "Échec de la sauvegarde des paramètres administrateur", + "Favicon": "Favicon", + "Featured events": "Événements à la une", + "Federated Group Name": "Nom fédéré du groupe", + "Federation": "Fédération", + "Fediverse account": "Compte fediverse", + "Fetch more": "En récupérer plus", + "Filter": "Filtrer", + "Filter by name": "Filtrer par nom", + "Filter by profile or group name": "Filter par nom du profil ou du groupe", + "Find an address": "Trouver une adresse", + "Find an instance": "Trouver une instance", + "Find another instance": "Trouver une autre instance", + "Find or add an element": "Trouver ou ajouter un élément", + "First steps": "Premiers pas", + "Follow": "Suivre", + "Follow a new instance": "Suivre une nouvelle instance", + "Follow instance": "Suivre l'instance", + "Follow request pending approval": "Demande de suivi en attente d'approbation", + "Follow requests will be approved by a group moderator": "Les demandes de suivi seront approuvées par un·e modérateur·ice du groupe", + "Follow status": "Statut du suivi", + "Followed": "Suivies", + "Followed, pending response": "Suivie, en attente de la réponse", + "Follower": "Abonné·es", + "Followers": "Abonné·es", + "Followers will receive new public events and posts.": "Les abonnée·s recevront les nouveaux événements et billets publics.", + "Following": "Suivantes", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Suivre le groupe vous permettra d'être informé·e des {group_upcoming_public_events}, alors que rejoindre le groupe signfie que vous {access_to_group_private_content_as_well}, y compris les discussion de groupe, les resources du groupe et les billets réservés au groupe.", + "Followings": "Abonnements", + "Follows us": "Nous suit", + "Follows us, pending approval": "Nous suit, en attente de validation", + "For instance: London": "Par exemple : Lyon", + "For instance: London, Taekwondo, Architecture…": "Par exemple : Lyon, Taekwondo, Architecture…", + "Forgot your password ?": "Mot de passe oublié ?", + "Forgot your password?": "Mot de passe oublié ?", + "Framadate poll": "Sondage Framadate", + "From my groups": "De mes groupes", + "From the {startDate} at {startTime} to the {endDate}": "Du {startDate} à {startTime} jusqu'au {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Du {startDate} à {startTime} au {endDate} à {endTime}", + "From the {startDate} to the {endDate}": "Du {startDate} au {endDate}", + "From this instance only": "Depuis cette instance uniquement", + "From yourself": "De vous", + "Fully accessible with a wheelchair": "Entièrement accessible avec un fauteuil roulant", + "General": "Général", + "General information": "Informations générales", + "General settings": "Paramètres généraux", + "Geolocate me": "Me géolocaliser", + "Geolocation was not determined in time.": "La localisation n'a pas été déterminée à temps.", + "Get informed of the upcoming public events": "Soyez informé·e des événements publics à venir", + "Getting location": "Récupération de la position", + "Getting there": "S'y rendre", + "Glossary": "Glossaire", + "Go": "Allons-y", + "Go to booking": "Aller à la réservation", + "Go to the event page": "Aller à la page de l'événement", + "Go!": "Go !", + "Google Meet": "Google Meet", + "Group": "Groupe", + "Group Followers": "Abonné·es au groupe", + "Group Members": "Membres du groupe", + "Group URL": "URL du groupe", + "Group activity": "Activité des groupes", + "Group address": "Adresse du groupe", + "Group description body": "Corps de la description du groupe", + "Group display name": "Nom d'affichage du groupe", + "Group members": "Membres du groupe", + "Group name": "Nom du groupe", + "Group profiles": "Profils des groupes", + "Group settings": "Paramètres du groupe", + "Group settings saved": "Paramètres du groupe sauvegardés", + "Group short description": "Description courte du groupe", + "Group visibility": "Visibilité du groupe", + "Group {displayName} created": "Groupe {displayName} créé", + "Group {groupTitle} reported": "Groupe {groupTitle} signalé", + "Groups": "Groupes", + "Groups are not enabled on this instance.": "Les groupes ne sont pas activés sur cette instance.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Les groupes sont des espaces de coordination et de préparation pour mieux organiser des événements et gérer votre communauté.", + "Heading Level 1": "Titre de niveau 1", + "Heading Level 2": "Titre de niveau 2", + "Heading Level 3": "Titre de niveau 3", + "Headline picture": "Image à la une", + "Hide filters": "Masquer les filtres", + "Hide replies": "Masquer les réponses", + "Home": "Accueil", + "Home to {number} users": "Abrite {number} utilisateur·rice·s", + "Homepage": "Page d'accueil", + "Hourly email summary": "E-mail récapitulatif chaque heure", + "I agree to the {instanceRules} and {termsOfService}": "J'accepte les {instanceRules} et les {termsOfService}", + "I create an identity": "Je crée une identité", + "I don't have a Mobilizon account": "Je n'ai pas de compte Mobilizon", + "I have a Mobilizon account": "J'ai un compte Mobilizon", + "I have an account on another Mobilizon instance.": "J'ai un compte sur une autre instance Mobilizon.", + "I have an account on {instance}.": "J'ai un compte sur {instance}.", + "I participate": "Je participe", + "I want to allow people to participate without an account.": "Je veux permettre aux gens de participer sans avoir un compte.", + "I want to approve every participation request": "Je veux approuver chaque demande de participation", + "I want to manage the registration with an external provider": "Je souhaite gérer les inscriptions auprès d'un fournisseur externe", + "I've been mentionned in a comment under an event": "J'ai été mentionné·e dans un commentaire sous un événement", + "I've been mentionned in a conversation": "J'ai été mentionnée dans une conversation", + "I've been mentionned in a group discussion": "J'ai été mentionné·e dans une discussion d'un groupe", + "I've clicked on X, then on Y": "J'ai cliqué sur X, puis sur Y", + "ICS feed for events": "Flux ICS pour les événements", + "ICS/WebCal Feed": "Flux ICS/WebCal", + "IP Address": "Adresse IP", + "Identities": "Identités", + "Identity {displayName} created": "Identité {displayName} créée", + "Identity {displayName} deleted": "Identité {displayName} supprimée", + "Identity {displayName} updated": "Identité {displayName} mise à jour", + "If allowed by organizer": "Si autorisé par l'organisateur·rice", + "If an account with this email exists, we just sent another confirmation email to {email}": "Si un compte avec un tel e-mail existe, nous venons juste d'envoyer un nouvel e-mail de confirmation à {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Si cette identité est la seule administratrice de certains groupes, vous devez les supprimer avant de pouvoir supprimer cette identité.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Si l'on vous demande votre identité fédérée, elle est composée de votre nom d'utilisateur·ice et de votre instance. Par exemple, l'identité fédérée de votre premier profil est :", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Si vous avez opté pour la validation manuelle des participantes, Mobilizon vous enverra un e-mail pour vous informer des nouvelles participations à traiter. Vous pouvez choisir la fréquence de ces notifications ci-dessous.", + "If you want, you may send a message to the event organizer here.": "Si vous le désirez, vous pouvez laisser un message pour l'organisateur·ice de l'événement ci-dessous.", + "Ignore": "Ignorer", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Image d'illustration pour “{category}” par {author} sur {source} ({license})", + "In person": "En personne", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "Dans le contexte suivant, une application est un logiciel, fourni par l'équipe Mobilizon ou bien une tierce partie, utilisé pour interagir avec votre instance.", + "In the past": "Dans le passé", + "In this instance's network": "Dans le réseau de cette instance", + "Increase": "Augmenter", + "Instance": "Instance", + "Instance Long Description": "Description longue de l'instance", + "Instance Name": "Nom de l'instance", + "Instance Privacy Policy": "Politique de confidentialité de l'instance", + "Instance Privacy Policy Source": "Source de la politique de confidentialité de l'instance", + "Instance Privacy Policy URL": "URL de la politique de confidentialité de l'instance", + "Instance Rules": "Règles de l'instance", + "Instance Short Description": "Description courte de l'instance", + "Instance Slogan": "Slogan de l'instance", + "Instance Terms": "Conditions générales de l'instance", + "Instance Terms Source": "Source des conditions d'utilisation de l'instance", + "Instance Terms URL": "URL des conditions générales de l'instance", + "Instance administrator": "Administrateur·rice de l'instance", + "Instance configuration": "Configuration de l'instance", + "Instance feeds": "Flux de l'instance", + "Instance languages": "Langues de l'instance", + "Instance rules": "Règles de l'instance", + "Instance settings": "Paramètres de l'instance", + "Instances": "Instances", + "Instances following you": "Instances vous suivant", + "Instances you follow": "Instances que vous suivez", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Intégrer cet événement avec des outils tiers et afficher des métadonnées pour l'événement.", + "Interact": "Interagir", + "Interact with a remote content": "Interagir avec un contenu distant", + "Invite a new member": "Inviter un nouveau membre", + "Invite member": "Inviter un·e membre", + "Invited": "Invité·e", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Il est possible que le contenu ne soit pas accessible depuis cette instance, car cette instance a bloqué le profil ou le groupe derrière ce contenu.", + "Italic": "Italique", + "Jitsi Meet": "Jitsi Meet", + "Join": "Rejoindre", + "Join {instance}, a Mobilizon instance": "Rejoignez {instance}, une instance Mobilizon", + "Join group": "Rejoindre le groupe", + "Join group {group}": "Rejoindre le groupe {group}", + "Join {instance}, a Mobilizon instance": "Rejoignez {instance}, une instance Mobilizon", + "Keep the entire conversation about a specific topic together on a single page.": "Rassemblez sur une seule page toute la conversation à propos d'un sujet spécifique.", + "Key words": "Mots clés", + "Keyword, event title, group name, etc.": "Mot clé, titre d'un événement, nom d'un groupe, etc.", + "Language": "Langue", + "Languages": "Langues", + "Last IP adress": "Dernière adresse IP", + "Last group created": "Dernier groupe créé", + "Last published event": "Dernier événement publié", + "Last published events": "Derniers événements publiés", + "Last seen on": "Vu pour la dernière fois", + "Last sign-in": "Dernière connexion", + "Last used on {last_used_date}": "Utilisée pour la dernière fois le {last_used_date}", + "Last week": "La semaine dernière", + "Latest posts": "Derniers billets", + "Learn more": "En apprendre plus", + "Learn more about Mobilizon": "En savoir plus sur Mobilizon", + "Learn more about {instance}": "En savoir plus sur {instance}", + "Least recently published": "Le moins récemment publié", + "Leave": "Quitter", + "Leave event": "Annuler ma participation à l'événement", + "Leave group": "Quitter le groupe", + "Leaving event \"{title}\"": "Annuler ma participation à l'événement", + "Legal": "Légal", + "Let's define a few settings": "Définissons quelques paramètres", + "License": "Licence", + "Light": "Clair", + "Limited number of places": "Nombre de places limité", + "List": "Liste", + "List of conversations": "Liste des conversations", + "List title": "Titre de la liste", + "Live": "Direct", + "Load more": "Voir plus", + "Load more activities": "Charger plus d'activités", + "Loading comments…": "Chargement des commentaires…", + "Loading map": "Chargement de la carte", + "Local": "Local·e", + "Local time ({timezone})": "Heure locale ({timezone})", + "Local times ({timezone})": "Heures locales ({timezone})", + "Locality": "Commune", + "Location": "Lieu", + "Log in": "Se connecter", + "Log out": "Se déconnecter", + "Login": "Se connecter", + "Login on Mobilizon!": "Se connecter sur Mobilizon !", + "Login on {instance}": "Se connecter sur {instance}", + "Login status": "Statut de connexion", + "Logo": "Logo", + "Logo of the instance. Defaults to the upstream Mobilizon logo.": "Logo de l'instance.", + "Main languages you/your moderators speak": "Principales langues parlées par vous / vos modérateurs", + "Make sure that all words are spelled correctly.": "Vérifiez l’orthographe des termes de recherche.", + "Manage activity settings": "Gérer les paramètres d'activité", + "Manage event participations": "Gérer les participations aux événements", + "Manage group members": "Gérer les membres des groupes", + "Manage group memberships": "Gérer vos adhésions à des groupes", + "Manage participations": "Gérer les participations", + "Manage push notification settings": "Gérer les paramètres de notification push", + "Manually approve new followers": "Approuver les nouvelles demandes de suivi manuellement", + "Manually enter address": "Saisir manuellement l'adresse", + "Manually invite new members": "Inviter des nouveaux·elles membres manuellement", + "Map": "Carte", + "Mark as resolved": "Marquer comme résolu", + "Maybe the content was removed by the author or a moderator": "Peut-être que le contenu a été supprimé par l'auteur·ice ou un·e modérateur·ice", + "Member": "Membre", + "Members": "Membres", + "Members will also access private sections like discussions, resources and restricted posts.": "Les membres auront également accès aux section privées comme les discussions, les ressources et les billets restreints.", + "Members-only post": "Billet reservé aux membres", + "Membership requests will be approved by a group moderator": "Les demandes d'adhésion seront approuvées par un·e modérateur·ice du groupe", + "Memberships": "Adhésions", + "Mentions": "Mentions", + "Message": "Message", + "Message body": "Corps du message", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon est un réseau fédéré. Vous pouvez interagir avec cet événement depuis un serveur différent.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon est un logiciel fédéré, ce qui signifie que vous pouvez interagir - en fonction des paramètres de fédération de votre administrateur·ice - avec du contenu d'autres instances, comme par exemple rejoindre des groupes ou des événements ayant été créés ailleurs.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon est un outil qui vous permet de trouver, créer et organiser des événements.", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon est un outil qui vous permet de {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon n’est pas une plateforme géante, mais une multitude de sites web Mobilizon interconnectés.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon n’est pas une plateforme géante, mais une {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "logiciel Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon utilise un système de profils pour compartimenter vos activités. Vous pourrez créer autant de profils que vous voulez.", + "Mobilizon version": "Version de Mobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon vous enverra un e-mail lors de changements importants pour les événements auxquels vous participez : date et heure, adresse, confirmation ou annulation, etc.", + "Moderate new members": "Modérer les nouvelles et nouveaux membres", + "Moderated comments (shown after approval)": "Commentaires modérés (affichés après validation)", + "Moderation": "Modération", + "Moderation log": "Journaux de modération", + "Moderation logs": "Journaux de modération", + "Moderator": "Moderateur·ice", + "Modify all of your account's data": "Modifier toutes les données de votre compte", + "More options": "Plus d'options", + "Most recently published": "Publié récemment", + "Move": "Déplacer", + "Move \"{resourceName}\"": "Déplacer « {resourceName} »", + "Move resource to the root folder": "Déplacer la resource dans le dossier racine", + "Move resource to {folder}": "Déplacer la ressource dans {folder}", + "My account": "Mon compte", + "My events": "Mes événements", + "My federated identity ends in {domain}": "Mon identité fédérée se termine par {domain}", + "My groups": "Mes groupes", + "My identities": "Mes identités", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "REMARQUE : les conditions par défaut n'ont pas été vérifiées par un·e juriste et sont donc susceptibles de ne pas offrir une protection juridique complète dans toutes les situations pour un·e administrateur·rice d'instance qui les utilise. Elles ne sont pas non plus spécifiques à tous les pays et juridictions. Si vous n'êtes pas sûr·e, veuillez consulter un·e juriste.", + "Name": "Nom", + "Navigated to {pageTitle}": "Navigué vers {pageTitle}", + "Never used": "Jamais utilisée", + "New announcement": "Nouvelle annonce", + "New discussion": "Nouvelle discussion", + "New email": "Nouvelle adresse e-mail", + "New folder": "Nouveau dossier", + "New link": "Nouveau lien", + "New members": "Nouveaux·elles membres", + "New note": "Nouvelle note", + "New password": "Nouveau mot de passe", + "New post": "Nouveau billet", + "New private message": "Nouveau message privé", + "New profile": "Nouveau profil", + "Next": "Suivant", + "Next month": "Le mois-prochain", + "Next page": "Page suivante", + "Next week": "La semaine prochaine", + "No activities found": "Aucune activité trouvée", + "No address defined": "Aucune adresse définie", + "No apps authorized yet": "Aucune application autorisée pour le moment", + "No categories with public upcoming events on this instance were found.": "Aucune catégorie avec des événements publics à venir n'a été trouvée.", + "No closed reports yet": "Aucun signalement fermé pour le moment", + "No comment": "Pas de commentaire", + "No comments yet": "Pas encore de commentaires", + "No content found": "Aucun contenu trouvé", + "No discussions yet": "Pas encore de discussions", + "No end date": "Pas de date de fin", + "No event found at this address": "Aucun événement trouvé à cette addresse", + "No events found": "Aucun événement trouvé", + "No events found for {search}": "Aucun événement trouvé pour {search}", + "No follower matches the filters": "Aucun·e abonné·e ne correspond aux filtres", + "No group found": "Aucun groupe trouvé", + "No group matches the filters": "Aucun groupe ne correspond aux filtres", + "No group member found": "Aucun membre du groupe trouvé", + "No groups found": "Aucun groupe trouvé", + "No groups found for {search}": "Aucun groupe trouvé pour {search}", + "No information": "Non renseigné", + "No instance follows your instance yet.": "Aucune instance ne suit votre instance pour le moment.", + "No instance found.": "Aucune instance trouvée.", + "No instance to approve|Approve instance|Approve {number} instances": "Aucune instance à approuver|Approuver une instance|Approuver {number} instances", + "No instance to reject|Reject instance|Reject {number} instances": "Aucune instance à rejeter|Rejeter une instance|Rejeter {number} instances", + "No instance to remove|Remove instance|Remove {number} instances": "Pas d'instances à supprimer|Supprimer une instance|Supprimer {number} instances", + "No instances match this filter. Try resetting filter fields?": "Aucune instance ne correspond à ce filtre. Essayer de remettre à zéro les champs des filtres ?", + "No languages found": "Aucune langue trouvée", + "No member matches the filters": "Aucun·e membre ne correspond aux filtres", + "No members found": "Aucun·e membre trouvé·e", + "No memberships found": "Aucune adhésion trouvée", + "No message": "Pas de message", + "No moderation logs yet": "Pas encore de journaux de modération", + "No more activity to display.": "Il n'y a plus d'activité à afficher.", + "No one is participating|One person participating|{going} people participating": "Personne ne participe|Une personne participe|{going} personnes participent", + "No open reports yet": "Aucun signalement ouvert pour le moment", + "No organized events found": "Aucun événement organisé trouvé", + "No organized events listed": "Aucun événement organisé listé", + "No participant matches the filters": "Aucun·e participant·e ne correspond aux filtres", + "No participant to approve|Approve participant|Approve {number} participants": "Aucun·e participant·e à valider|Valider le ou la participant·e|Valider {number} participant·es", + "No participant to reject|Reject participant|Reject {number} participants": "Aucun·e participant·e à refuser|Refuser le ou la participant·e|Refuser {number} participant·es", + "No participations listed": "Aucune participation listée", + "No posts found": "Aucun billet trouvé", + "No posts yet": "Pas encore de billets", + "No profile matches the filters": "Aucun profil ne correspond aux filtres", + "No public upcoming events": "Aucun événement public à venir", + "No resolved reports yet": "Aucun signalement résolu pour le moment", + "No resources in this folder": "Aucune ressource dans ce dossier", + "No resources selected": "Aucune ressource sélectionnée|Une ressource sélectionnée|{count} ressources sélectionnées", + "No resources yet": "Pas encore de ressources", + "No results for \"{queryText}\"": "Pas de résultats pour « {queryText} »", + "No results for {search}": "Pas de résultats pour {search}", + "No results found": "Aucun résultat trouvé", + "No results found for {search}": "Aucun résultat trouvé pour {search}", + "No rules defined yet.": "Pas de règles définies pour le moment.", + "No user matches the filter": "Aucun·e utilisateur·ice ne correspond au filtre", + "No user matches the filters": "Aucun·e utilisateur·ice ne correspond aux filtres", + "None": "Aucun", + "Not accessible with a wheelchair": "Non accessible avec un fauteuil roulant", + "Not approved": "Non approuvé·e·s", + "Not confirmed": "Non confirmé·e", + "Notes": "Notes", + "Notification before the event": "Notification avant l'événement", + "Notification on the day of the event": "Notification le jour de l'événement", + "Notification settings": "Paramètres des notifications", + "Notifications": "Notifications", + "Notifications for manually approved participations to an event": "Notifications pour l'approbation manuelle des participations à un événement", + "Notify participants": "Notifier les participant·es", + "Notify the user of the change": "Notifier l'utilisateur du changement", + "Now, create your first profile:": "Maintenant, créez votre premier profil :", + "Number of members": "Nombre de membres", + "Number of places": "Nombre de places", + "OK": "OK", + "Old password": "Ancien mot de passe", + "On foot": "À pied", + "On the Fediverse": "Dans le fediverse", + "On {date}": "Le {date}", + "On {date} ending at {endTime}": "Le {date} jusqu'à {endTime}", + "On {date} from {startTime} to {endTime}": "Le {date} de {startTime} à {endTime}", + "On {date} starting at {startTime}": "Le {date} à partir de {startTime}", + "On {instance} and other federated instances": "Sur {instance} et d'autres instances fédérées", + "Online": "En ligne", + "Online events": "Événements en ligne", + "Online ticketing": "Billetterie en ligne", + "Online upcoming events": "Événements en ligne à venir", + "Only Mobilizon instances can be followed": "Seules les instances Mobilizon peuvent être suivies", + "Only accessible through link": "Accessible uniquement par le lien", + "Only accessible through link (private)": "Uniquement accessible par lien (privé)", + "Only accessible to members of the group": "Accessible uniquement aux membres du groupe", + "Only alphanumeric lowercased characters and underscores are supported.": "Seuls les caractères alphanumériques minuscules et les tirets bas sont acceptés.", + "Only group members can access discussions": "Seul·es les membres du groupes peuvent accéder aux discussions", + "Only group moderators can create, edit and delete events.": "Seule·s les modérateur·ices de groupe peuvent créer, éditer et supprimer des événements.", + "Only group moderators can create, edit and delete posts.": "Seul·e·s les modérateur·rice·s du groupe peuvent créer, éditer et supprimer des billets.", + "Only instances with an application actor can be followed": "Seules les instances avec un acteur application peuvent être suivies", + "Only registered users may fetch remote events from their URL.": "Seul·es les utilisateur·ices enregistré·es peuvent récupérer des événements depuis leur URL.", + "Open": "Ouvert", + "Open a topic on our forum": "Ouvrir un sujet sur notre forum", + "Open an issue on our bug tracker (advanced users)": "Ouvrir un ticket sur notre système de suivi des bugs (utilisateur·ices avancé·es)", + "Open conversations": "Ouvrir les conversations", + "Open main menu": "Ouvrir le menu principal", + "Open user menu": "Ouvrir le menu utilisateur", + "Opened reports": "Signalements ouverts", + "Or": "Ou", + "Ordered list": "Liste ordonnée", + "Organized": "Organisés", + "Organized by": "Organisé par", + "Organized by {name}": "Organisé par {name}", + "Organized events": "Événements organisés", + "Organizer": "Organisateur·ice", + "Organizer notifications": "Notifications pour organisateur·rice", + "Organizers": "Organisateur·ices", + "Other": "Autre", + "Other actions": "Autres actions", + "Other notification options:": "Autres options de notification :", + "Other software may also support this.": "D'autres logiciels peuvent également supporter cette fonctionnalité.", + "Other users with the same IP address": "Autres utilisateur·ices avec la même adresse IP", + "Other users with the same email domain": "Autres utilisateur·ices avec le même domaine de courriel", + "Otherwise this identity will just be removed from the group administrators.": "Sinon cette identité sera juste supprimée des administrateur·rice·s du groupe.", + "Owncast": "Owncast", + "Page": "Page", + "Page limited to my group (asks for auth)": "Accès limité à mon groupe (demande authentification)", + "Page not found": "Page non trouvée", + "Parent folder": "Dossier parent", + "Partially accessible with a wheelchair": "Partiellement accessible avec un fauteuil roulant", + "Participant": "Participant·e", + "Participants": "Participant·e·s", + "Participants to {eventTitle}": "Participant·es à {eventTitle}", + "Participate": "Participer", + "Participate using your email address": "Participer en utilisant votre adresse e-mail", + "Participation approval": "Validation des participations", + "Participation confirmation": "Confirmation de votre participation", + "Participation notifications": "Notifications de participation", + "Participation requested!": "Participation demandée !", + "Participation with account": "Participation avec compte", + "Participation without account": "Participation sans compte", + "Participations": "Participations", + "Password": "Mot de passe", + "Password (confirmation)": "Mot de passe (confirmation)", + "Password reset": "Réinitialisation du mot de passe", + "Past events": "Événements passés", + "PeerTube live": "Direct sur PeerTube", + "PeerTube replay": "Replay sur PeerTube", + "Pending": "En attente", + "Personal feeds": "Flux personnels", + "Photo by {author} on {source}": "Photo par {author} sur {source}", + "Pick": "Choisir", + "Pick a profile or a group": "Choisir un profil ou groupe", + "Pick an identity": "Choisissez une identité", + "Pick an instance": "Choisir une instance", + "Please add as many details as possible to help identify the problem.": "Merci d'ajouter un maximum de détails afin d'aider à identifier le problème.", + "Please check your spam folder if you didn't receive the email.": "Merci de vérifier votre dossier des indésirables si vous n'avez pas reçu l'e-mail.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Veuillez contacter l'administrateur·rice de cette instance Mobilizon si vous pensez qu’il s’agit d’une erreur.", + "Please do not use it in any real way.": "Merci de ne pas en faire une utilisation réelle.", + "Please enter your password to confirm this action.": "Merci d'entrer votre mot de passe pour confirmer cette action.", + "Please make sure the address is correct and that the page hasn't been moved.": "Assurez‐vous que l’adresse est correcte et que la page n’a pas été déplacée.", + "Please read the {fullRules} published by {instance}'s administrators.": "Merci de lire les {fullRules} publiées par les administrateur·rice·s de {instance}.", + "Popular groups close to you": "Groupes populaires proches de vous", + "Popular groups nearby {position}": "Groupes populaires près de {position}", + "Post": "Billet", + "Post URL": "URL du billet", + "Post a comment": "Ajouter un commentaire", + "Post a reply": "Envoyer une réponse", + "Post body": "Corps du billet", + "Post comments": "Poster des commentaires", + "Post {eventTitle} reported": "Billet {eventTitle} signalé", + "Postal Code": "Code postal", + "Posts": "Billets", + "Powered by Mobilizon": "Propulsé par Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Propulsé par {mobilizon}. © 2018 - {date} Les contributeur·rice·s Mobilizon - Fait avec le soutien financier de {contributors}.", + "Preferences": "Préférences", + "Previous": "Précédent", + "Previous email": "E-mail précédent", + "Previous month": "Mois précédent", + "Previous page": "Page précédente", + "Price sheet": "Feuille des prix", + "Primary Color": "Couleur primaire", + "Privacy": "Vie privée", + "Privacy Policy": "Politique de confidentialité", + "Privacy policy": "Politique de confidentialité", + "Private event": "Événement privé", + "Private feeds": "Flux privés", + "Profile": "Profil", + "Profile feeds": "Flux du profil", + "Profile suspended and report resolved": "Profil suspendu et signalement résolu", + "Profiles": "Profils", + "Profiles and federation": "Profils et fédération", + "Promote": "Promouvoir", + "Public": "Public", + "Public RSS/Atom Feed": "Flux RSS/Atom public", + "Public comment moderation": "Modération des commentaires publics", + "Public event": "Événement public", + "Public feeds": "Flux publics", + "Public iCal Feed": "Flux iCal public", + "Public preview": "Aperçu public", + "Publication date": "Date de publication", + "Publish": "Publier", + "Publish events": "Publier des événements", + "Publish group posts": "Publier des billets de groupes", + "Published by {name}": "Publié par {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Événements publiés avec {comments} commentaires et {participations} participations confirmées", + "Published events with {comments} comments and {participations} confirmed participations": "Événements publiés avec {comments} commentaires et {participations} participations confirmées", + "Push": "Push", + "Quote": "Citation", + "RSS/Atom Feed": "Flux RSS/Atom", + "Radius": "Rayon", + "Read all of your account's data": "Lire toutes les données de votre compte", + "Read user activity settings": "Lire les paramètres d'activité utilisateur·ice", + "Read user media": "Lire les médias utilisateur·ice", + "Read user memberships": "Accéder aux adhésions de l'utilisateur·ice", + "Read user participations": "Accéder aux participations de l'utilisateur·ice", + "Read user settings": "Lire les paramètres utilisateur·ice", + "Recap every week": "Récapitulatif hebdomadaire", + "Receive one email for each activity": "Recevoir un e-mail à chaque activité", + "Receive one email per request": "Recevoir un e-mail par demande", + "Redirecting in progress…": "Redirection en cours…", + "Redirecting to Mobilizon": "Redirection vers Mobilizon", + "Redirecting to content…": "Redirection vers le contenu…", + "Redo": "Refaire", + "Refresh profile": "Rafraîchir le profil", + "Regenerate new links": "Regénérer de nouveaux liens", + "Region": "Région", + "Register": "S'inscrire", + "Register an account on {instanceName}!": "S'inscrire sur {instanceName} !", + "Register on this instance": "S'inscrire sur cette instance", + "Registration is allowed, anyone can register.": "Les inscriptions sont autorisées, n'importe qui peut s'inscrire.", + "Registration is closed.": "Les inscriptions sont fermées.", + "Registration is currently closed.": "Les inscriptions sont actuellement fermées.", + "Registrations": "Inscriptions", + "Registrations are restricted by allowlisting.": "Les inscriptions sont restreintes par liste d'accès.", + "Reject": "Rejeter", + "Reject follow": "Rejeter le suivi", + "Reject member": "Rejeter le ou la membre", + "Rejected": "Rejetés", + "Remember my participation in this browser": "Se souvenir de ma participation dans ce navigateur", + "Remove": "Exclure", + "Remove link": "Enlever un lien", + "Remove uploaded media": "Supprimer des médias téléversés", + "Rename": "Renommer", + "Rename resource": "Renommer la ressource", + "Reopen": "Réouvrir", + "Replay": "Rattrapage", + "Reply": "Répondre", + "Report": "Signalement", + "Report #{reportNumber}": "Signalement #{reportNumber}", + "Report as ham": "Signaler comme faux positif", + "Report as spam": "Signaler comme spam", + "Report as undetected spam": "Signaler comme spam non détecté", + "Report reason": "Raison du signalement", + "Report status": "Statut du signalement", + "Report this comment": "Signaler ce commentaire", + "Report this event": "Signaler cet événement", + "Report this group": "Signaler ce groupe", + "Report this post": "Signaler ce billet", + "Reported": "Signalée", + "Reported at": "Signalé à", + "Reported by": "Signalée par", + "Reported by an unknown actor": "Signalé par un·e acteur·ice inconnu·e", + "Reported by someone anonymously": "Signalé par quelqu'un anonymement", + "Reported by someone on {domain}": "Signalé par quelqu'un depuis {domain}", + "Reported by {reporter}": "Signalé par {reporter}", + "Reported content": "Contenu signalé", + "Reported group": "Groupe signalé", + "Reported identity": "Identité signalée", + "Reports": "Signalements", + "Reports list": "Liste des signalements", + "Request for participation confirmation sent": "Demande de confirmation de participation envoyée", + "Resend confirmation email": "Envoyer à nouveau l'e-mail de confirmation", + "Resent confirmation email": "Réenvoi de l'e-mail de confirmation", + "Reset": "Remettre à zéro", + "Reset filters": "Réinitialiser les filtres", + "Reset my password": "Réinitialiser mon mot de passe", + "Reset password": "Réinitaliser le mot de passe", + "Resolved": "Résolu", + "Resource provided is not an URL": "La ressource fournie n'est pas une URL", + "Resources": "Ressources", + "Restricted": "Restreintes", + "Return to the event page": "Retourner à la page de l'événement", + "Return to the group page": "Retourner à la page du groupe", + "Revoke": "Révoquer", + "Right now": "À l'instant", + "Role": "Rôle", + "Rules": "Règles", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL et son successeur TLS sont des technologies de chiffrement qui permettent de sécuriser les communications de données lors de l'utilisation du service. Vous pouvez reconnaître une connexion chiffrée dans la barre d'adresse de votre navigateur lorsque l'URL commence par {https} et que l'icône du cadenas est affichée dans la barre d'adresse de votre navigateur.", + "SSL/TLS": "SSL/TLS", + "Save": "Enregistrer", + "Save draft": "Enregistrer le brouillon", + "Schedule": "Programme", + "Search": "Rechercher", + "Search events, groups, etc.": "Rechercher des événements, des groupes, etc.", + "Search target": "Cible de la recherche", + "Searching…": "Recherche en cours…", + "Secondary Color": "Couleur secondaire", + "Select a category": "Choisissez une categorie", + "Select a language": "Choisissez une langue", + "Select a radius": "Sélectionnez un rayon", + "Select a timezone": "Selectionnez un fuseau horaire", + "Select all resources": "Sélectionner toutes les ressources", + "Select distance": "Sélectionner la distance", + "Select languages": "Choisissez une langue", + "Select the activities for which you wish to receive an email or a push notification.": "Sélectionnez les activités pour lesquelles vous souhaitez recevoir un e-mail ou une notification push.", + "Select this resource": "Sélectionner cette ressource", + "Send": "Envoyer", + "Send email": "Envoyer un e-mail", + "Send feedback": "Envoyer vos remarques", + "Send notification e-mails": "Envoyer des e-mails de notification", + "Send password reset": "Envoi de la réinitalisation du mot de passe", + "Send the confirmation email again": "Envoyer l'e-mail de confirmation à nouveau", + "Send the report": "Envoyer le signalement", + "Sent to {count} participants": "Envoyé à aucun·e participant·e|Envoyé à une participant·e|Envoyé à {count} participant·es", + "Set an URL to a page with your own privacy policy.": "Entrez une URL vers une page web avec votre propre politique de confidentialité.", + "Set an URL to a page with your own terms.": "Entrez une URL vers une page web avec vos propres conditions d'utilisation.", + "Settings": "Paramètres", + "Share": "Partager", + "Share this event": "Partager l'événement", + "Share this group": "Partager ce groupe", + "Share this post": "Partager ce billet", + "Short bio": "Courte biographie", + "Show filters": "Afficher les filtres", + "Show map": "Afficher la carte", + "Show me where I am": "Afficher ma position", + "Show remaining number of places": "Afficher le nombre de places restantes", + "Show the time when the event begins": "Afficher l'heure de début de l'événement", + "Show the time when the event ends": "Afficher l'heure de fin de l'événement", + "Showing events before": "Afficher les événements avant", + "Showing events starting on": "Afficher les événements à partir de", + "Sign Language": "Langue des signes", + "Sign in with": "Se connecter avec", + "Sign up": "S'enregistrer", + "Since you are a new member, private content can take a few minutes to appear.": "Étant donné que vous êtes un·e nouveau·elle membre, le contenu privé peut mettre quelques minutes à arriver.", + "Skip to main content": "Passer au contenu principal", + "Smoke free": "Non fumeur", + "Smoking allowed": "Fumeurs autorisés", + "Social": "Social", + "Software details: {software_details}": "Détails du logiciel : {software_details}", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Certains termes, techniques ou non, utilisés dans le texte ci-dessous peuvent recouvrir des concepts difficiles à appréhender. Nous proposons ici un glossaire qui pourra vous aider à mieux les comprendre :", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Désolés, nous n'avons pas pu enregistrer vos commentaires. Ne vous inquiétez pas, nous essayerons quand même de résoudre ce problème.", + "Sort by": "Trier par", + "Starts on…": "Débute le…", + "Status": "Statut", + "Statuses": "Statuts", + "Stop following instance": "Arrêter de suivre l'instance", + "Street": "Rue", + "Submit": "Valider", + "Submit to Akismet": "Envoyer à Akismet", + "Subtitles": "Sous-titres", + "Suggestions:": "Suggestions :", + "Suspend": "Suspendre", + "Suspend group": "Suspendre le groupe", + "Suspend the account": "Suspendre le compte", + "Suspend the account?": "Suspendre le compte ?", + "Suspend the profile": "Suspendre le profil", + "Suspend the profile?": "Suspendre le profil ?", + "Suspended": "Suspendu·e", + "Tag search": "Recherche par tag", + "Task lists": "Listes de tâches", + "Technical details": "Détails techniques", + "Tentative": "Provisoire", + "Tentative: Will be confirmed later": "Provisoire : sera confirmé plus tard", + "Terms": "Conditions d'utilisation", + "Terms of service": "Conditions d'utilisation", + "Text": "Texte", + "Thanks a lot, your feedback was submitted!": "Merci beaucoup, votre commentaire a été soumis !", + "That you follow or of which you are a member": "Que vous suivez ou dont vous êtes membre", + "The Big Blue Button video teleconference URL": "L'URL de visio-conférence Big Blue Button", + "The Google Meet video teleconference URL": "L'URL de visio-conférence Google Meet", + "The Jitsi Meet video teleconference URL": "L'URL de visio-conférence Jitsi Meet", + "The Microsoft Teams video teleconference URL": "L'URL de visio-conférence Microsoft Teams", + "The URL of a pad where notes are being taken collaboratively": "L'URL d'un pad où les notes sont prises collaborativement", + "The URL of a poll where the choice for the event date is happening": "L'URL d'un sondage où la date de l'événement doit être choisie", + "The URL where the event can be watched live": "L'URL où l'événement peut être visionné en direct", + "The URL where the event live can be watched again after it has ended": "L'URL où le direct de l'événement peut être visionné à nouveau une fois terminé", + "The Zoom video teleconference URL": "L'URL de visio-conférence Zoom", + "The account's email address was changed. Check your emails to verify it.": "L'adresse e-mail du compte a été modifiée. Vérifiez vos e-mails pour confirmer le changement.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Le nombre réel de participant·e·s peut être différent, car cet événement provient d'une autre instance.", + "The calc will be created on {service}": "Le calc sera créé sur {service}", + "The content came from another server. Transfer an anonymous copy of the report?": "Le contenu provient d'une autre instance. Transférer une copie anonyme du signalement ?", + "The device code is incorrect or no longer valid.": "Le code de l'appareil est incorrect ou n'est plus valide.", + "The draft event has been updated": "L'événement brouillon a été mis à jour", + "The event has a sign language interpreter": "L'événement a un interprète en langue des signes", + "The event has been created as a draft": "L'événement a été créé en tant que brouillon", + "The event has been published": "L'événement a été publié", + "The event has been updated": "L'événement a été mis à jour", + "The event has been updated and published": "L'événement a été mis à jour et publié", + "The event hasn't got a sign language interpreter": "L'événement n'a pas d'interprète en langue des signes", + "The event is fully online": "L'événement est entièrement en ligne", + "The event live video contains subtitles": "Le direct vidéo de l'événement contient des sous-titres", + "The event live video does not contain subtitles": "Le direct vidéo de l'événement ne contient pas de sous-titres", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "L'organisateur·ice de l'événement a choisi de valider manuellement les demandes de participation. Voulez-vous ajouter un petit message pour expliquer pourquoi vous souhaitez participer à cet événement ?", + "The event organizer didn't add any description.": "L'organisateur·ice de l'événement n'a pas ajouté de description.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "L'organisateur·ice de l'événement valide les participations manuellement. Comme vous avez choisi de participer sans compte, merci d'expliquer pourquoi vous voulez participer à cet événement.", + "The event title will be ellipsed.": "Le titre de l'événement sera ellipsé.", + "The event will show as attributed to this group.": "L'événement sera affiché comme étant attribué à ce groupe.", + "The event will show as attributed to this profile.": "L'événement sera affiché comme attribué à ce profil.", + "The event will show as attributed to your personal profile.": "L'événement sera affiché comme étant attribué à votre profil.", + "The event {event} was created by {profile}.": "L'événement {event} a été créé par {profile}.", + "The event {event} was deleted by {profile}.": "L'événement {event} a été supprimé par {profile}.", + "The event {event} was updated by {profile}.": "L'événement {event} à été mis à jour par {profile}.", + "The events you created are not shown here.": "Les événements que vous avez créé ne s'affichent pas ici.", + "The following participants are groups, which means group members are able to reply to this conversation:": "Les participants suivants sont des groupes, ce qui signifie que les membres du groupes peuvent répondre dans cette conversation:", + "The following user's profiles will be deleted, with all their data:": "Les profils suivants de l'utilisateur·ice seront supprimés, avec toutes leurs données :", + "The geolocation prompt was denied.": "La demande de localisation a été refusée.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "Le groupe peut maintenant être rejoint par n'importe qui, mais les nouvelles et nouveaux membres doivent être approuvées par un·e modérateur·ice.", + "The group can now be joined by anyone.": "Le groupe peut maintenant être rejoint par n'importe qui.", + "The group can now only be joined with an invite.": "Le groupe peut maintenant être rejoint uniquement sur invitation.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Le groupe sera listé publiquement dans les résultats de recherche et pourra être suggéré sur la page « Explorer ». Seules les informations publiques seront affichées sur sa page.", + "The group's avatar was changed.": "L'avatar du groupe a été changé.", + "The group's banner was changed.": "La bannière du groupe a été changée.", + "The group's physical address was changed.": "L'adresse physique du groupe a été changée.", + "The group's short description was changed.": "La description courte du groupe a été changée.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "L'administrateur·rice de l'instance est la personne ou entité qui gère cette instance Mobilizon.", + "The member was approved": "Le ou la membre a été approuvée", + "The member was removed from the group {group}": "Le ou la membre a été supprimé·e du groupe {group}", + "The membership request from {profile} was rejected": "La demande d'adhésion de {profile} a été rejetée", + "The only way for your group to get new members is if an admininistrator invites them.": "La seule manière pour votre groupe d'obtenir de nouveaux·elles membres sera si un·e administrateur·ice les invite.", + "The organiser has chosen to close comments.": "L'organisateur·rice a choisi de fermer les commentaires.", + "The pad will be created on {service}": "Le pad sera créé sur {service}", + "The page you're looking for doesn't exist.": "La page que vous recherchez n'existe pas.", + "The password was successfully changed": "Le mot de passe a été changé avec succès", + "The post {post} was created by {profile}.": "Le billet {post} a été créé par {profile}.", + "The post {post} was deleted by {profile}.": "Le billet {post} a été supprimé par {profile}.", + "The post {post} was updated by {profile}.": "Le billet {post} a été mis à jour par {profile}.", + "The provided application was not found.": "L'application fournie n'a pas été trouvée.", + "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.": "Les contenus du signalement (les éventuels commentaires et événement) et les détails du profil signalé seront transmis à Akismet.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Le signalement sera envoyé aux modérateur·ices de votre instance. Vous pouvez expliquer pourquoi vous signalez ce contenu ci-dessous.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "L'image sélectionnée est trop lourde. Vous devez sélectionner un fichier de moins de {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Les détails techniques de l'erreur peuvent aider les développeur·ices à résoudre le problème plus facilement. Merci de les inclure dans vos retours.", + "The user has been disabled": "L'utilisateur·ice a été désactivé", + "The videoconference will be created on {service}": "La visio-conférence sera créée sur {service}", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "La {default_privacy_policy} sera utilisée. Elle sera traduite dans la langue de l'utilisateur·rice.", + "The {default_terms} will be used. They will be translated in the user's language.": "Les {default_terms} seront utilisées. Elles seront traduites dans la langue de l'utilisateur·rice.", + "Theme": "Thème", + "There are {participants} participants.": "Il n'y a qu'un·e participant·e. | Il y a {participants} participant·es.", + "There is no activity yet. Start doing some things to see activity appear here.": "Il n'y a pas encore d'activité. Commencez par effectuer des actions pour voir des éléments s'afficher ici.", + "There will be no way to recover your data.": "Il n'y aura aucun moyen de récupérer vos données.", + "There will be no way to restore the profile's data!": "Il n'y aura aucun moyen de restorer les données du profil !", + "There will be no way to restore the user's data!": "Il n'y aura aucun moyen de restorer les données de l'utilisateur·ice !", + "There's no announcements yet": "Il n'y a encore aucune annonce", + "There's no conversations yet": "Il n'y a pas encore de conversations", + "There's no discussions yet": "Il n'y a pas encore de discussions", + "These apps can access your account through the API. If you see here apps that you don't recognize, that don't work as expected or that you don't use anymore, you can revoke their access.": "Ces applications peuvent accéder à votre compte via l'API. Si vous voyez ici des applications que vous ne reconnaissez pas, qui ne fonctionnent pas comme prévu ou que vous n'utilisez plus, vous pouvez révoquer leur accès.", + "These events may interest you": "Ces événements peuvent vous intéresser", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Ces flux contiennent des informations sur les événements pour lesquels n'importe lequel de vos profils est un·e participant·e ou un·e créateur·ice. Vous devriez les garder privés. Vous pouvez trouver des flux spécifiques à chaque profil sur la page d'édition des profils.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Ces flux contiennent des informations sur les événements pour lesquels ce profil spécifique est un·e participant·e ou un·e créateur·ice. Vous devriez les garder privés. Vous pouvez trouver des flux pour l'ensemble de vos profils dans vos paramètres de notification.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Cette instance Mobilizon et l'organisateur·ice de l'événement autorise les participations anonymes, mais requiert une validation à travers une confirmation par e-mail.", + "This URL doesn't seem to be valid": "Cette URL ne semble pas être valide", + "This URL is not supported": "Cette URL n'est pas supportée", + "This announcement will be send to all participants with the statuses selected below. They will not be allowed to reply to your announcement, but they can create a new conversation with you.": "Cette annonce sera envoyée à tous les participant·es ayant le statut sélectionné ci-dessous. Iels ne pourront pas répondre à votre annonce, mais iels peuvent créer une nouvelle conversation avec vous.", + "This application asks for the following permissions:": "Cette application demande les autorisations suivantes :", + "This application didn't ask for known permissions. It's likely the request is incorrect.": "Cette application n'a pas demandé d'autorisations connues. Il est probable que la demande soit incorrecte.", + "This application will be able to access all of your informations and post content. Make sure you only approve applications you trust.": "Cette application sera capable d'accéder à toutes vos informations et poster du contenu. Assurez-vous d'approuver uniquement des applications en lesquelles vous avez confiance.", + "This application will be allowed to access all of the groups you're a member of": "Cette application pourra accéder à tous les groupes dont vous êtes membres", + "This application will be allowed to access group activities in all of the groups you're a member of": "This application will be allowed to access group activities in all of the groups you're a member of", + "This application will be allowed to access your user activity settings": "Cette application sera autorisée à accéder à vos paramètres utilisateur·ice d'activité", + "This application will be allowed to access your user settings": "Cette application sera autorisée a accéder à vos paramètres utilisateur·ice", + "This application will be allowed to create feed tokens": "This application will be allowed to create feed tokens", + "This application will be allowed to create group discussions": "This application will be allowed to create group discussions", + "This application will be allowed to create new profiles for your account": "This application will be allowed to create new profiles for your account", + "This application will be allowed to create resources in all of the groups you're a member of": "Cette application pourra créer des ressources dans chacun des groupes dont vous êtes membre", + "This application will be allowed to delete comments": "This application will be allowed to delete comments", + "This application will be allowed to delete events": "Cette application pourra supprimer des événements", + "This application will be allowed to delete feed tokens": "This application will be allowed to delete feed tokens", + "This application will be allowed to delete group discussions": "This application will be allowed to delete group discussions", + "This application will be allowed to delete group posts": "Cette application pourra supprimer des billets de groupes", + "This application will be allowed to delete resources in all of the groups you're a member of": "Cette application pourra supprimer des ressources dans chacun des groupes dont vous êtes membre", + "This application will be allowed to delete your profiles": "This application will be allowed to delete your profiles", + "This application will be allowed to join and leave groups": "This application will be allowed to join and leave groups", + "This application will be allowed to list and access group discussions in all of the groups you're a member of": "This application will be allowed to list and access group discussions in all of the groups you're a member of", + "This application will be allowed to list and access group events in all of the groups you're a member of": "Cette application pourra lister et accéder aux événements des groupes dont vous êtes membre", + "This application will be allowed to list and access group todo-lists in all of the groups you're a member of": "This application will be allowed to list and access group todo-lists in all of the groups you're a member of", + "This application will be allowed to list and view the events you're participating to": "This application will be allowed to list and view the events you're participating to", + "This application will be allowed to list and view the groups you're a member of": "This application will be allowed to list and view the groups you're a member of", + "This application will be allowed to list and view the groups you're following": "This application will be allowed to list and view the groups you're following", + "This application will be allowed to list and view your draft events": "Cetta application sera autorisée à lister et accéder à vos événements brouillons", + "This application will be allowed to list and view your organized events": "This application will be allowed to list and view your organized events", + "This application will be allowed to list group followers in all of the groups you're a member of": "This application will be allowed to list group followers in all of the groups you're a member of", + "This application will be allowed to list group members in all of the groups you're a member of": "This application will be allowed to list group members in all of the groups you're a member of", + "This application will be allowed to list the media you've uploaded": "Cette application sera autorisée a lister les médias que vous avez téléversé", + "This application will be allowed to list your suggested group events": "Cetta application sera autorisée à lister les événements de vos groupes qui vous sont suggérés", + "This application will be allowed to manage events participations": "Cette application sera autorisée à gérer vos participations à des événements", + "This application will be allowed to manage group members in all of the groups you're a member of": "This application will be allowed to manage group members in all of the groups you're a member of", + "This application will be allowed to manage your account activity settings": "Cette application sera autorisée à gérer vos paramètres d'activité", + "This application will be allowed to manage your account push notification settings": "Cette application sera autorisée à gérer vos paramètres de notification push", + "This application will be allowed to post comments": "This application will be allowed to post comments", + "This application will be allowed to publish and manage events, post and manage comments, participate to events, manage all of your groups, including group events, resources, posts and discussions. It will also be allowed to manage your account and profile settings.": "Cette application sera autorisée à publier et à gérer des événements, à publier et à gérer des commentaires, à participer à des événements, à gérer tous vos groupes, y compris les événements de groupe, les ressources, les messages et les discussions. Elle pourra également gérer les paramètres de votre compte et de votre profil.", + "This application will be allowed to publish events": "Cette application pourra publier des événements", + "This application will be allowed to publish group posts": "Cette application pourra publier des billets de groupes", + "This application will be allowed to remove uploaded media": "Cette application pourra supprimer des médias téléversés", + "This application will be allowed to see all of your events organized, the events you participate to, as well as every data from your groups.": "Cette application vous permettra de voir tous les événements que vous avez organisés, les événements auxquels vous participez, ainsi que toutes les données de vos groupes.", + "This application will be allowed to update comments": "This application will be allowed to update comments", + "This application will be allowed to update events": "Cette application pourra mettre à jour des événements", + "This application will be allowed to update group discussions": "This application will be allowed to update group discussions", + "This application will be allowed to update group posts": "Cette application pourra mettre à jour des billets de groupes", + "This application will be allowed to update resources in all of the groups you're a member of": "Cette application pourra mettre à jour des ressources dans chacun des groupes dont vous êtes membre", + "This application will be allowed to update your profiles": "This application will be allowed to update your profiles", + "This application will be allowed to upload media": "Cette application pourra téléverser des médias", + "This event has been cancelled.": "Cet événement a été annulé.", + "This event is accessible only through it's link. Be careful where you post this link.": "Cet événement est accessible uniquement à travers son lien. Faites attention où vous le diffusez.", + "This group doesn't have a description yet.": "Ce groupe n'a pas encore de description.", + "This group is a remote group, it's possible the original instance has more informations.": "Ce groupe est un groupe distant, il est possible que l'instance d'origine ait plus d'informations.", + "This group is accessible only through it's link. Be careful where you post this link.": "Ce groupe est accessible uniquement à travers son lien. Faites attention où vous le diffusez.", + "This group is invite-only": "Ce groupe est accessible uniquement sur invitation", + "This group was not found": "Ce groupe n'a pas été trouvé", + "This identifier is unique to your profile. It allows others to find you.": "Cet identifiant est unique à votre profil. Il permet à d'autres personnes de vous trouver.", + "This information is saved only on your computer. Click for details": "Cette information est sauvegardée uniquement sur votre appareil. Cliquez pour plus de details", + "This instance doesn't follow yours.": "Cette instance ne suit pas la vôtre.", + "This instance hasn't got push notifications enabled.": "Cette instance n'a pas activé la fonctionnalité de notification push.", + "This instance isn't opened to registrations, but you can register on other instances.": "Cette instance n'autorise pas les inscriptions, mais vous pouvez vous enregistrer sur d'autres instances.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Cette instance, {instanceName} ({domain}), héberge votre profil, donc notez bien son nom.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Cette instance, {instanceName}, héberge votre profil, donc souvenez-vous de son nom.", + "This is a announcement from the organizers of event {event}. You can't reply to it, but you can send a private message to event organizers.": "Ceci est une annonce des organisateur·ices de cet événement {event}. Vous ne pouvez pas y répondre, mais vous pouvez envoyer un nouveau message aux organisateur·ices de l'événement.", + "This is a demonstration site to test Mobilizon.": "Ceci est un site de démonstration permettant de tester Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "C'est comme votre adresse fédérée ({username}) pour les groupes. Cela permettra au groupe d'être trouvable sur la fédération, et est garanti d'être unique.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "C'est comme votre adresse fédérée ({username}) pour les groupes. Cela permettra au groupe d'être trouvable sur la fédération, et est garanti d'être unique.", + "This month": "Ce mois-ci", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Ce billet est accessible uniquement aux membres. Vous y avez accès à des fins de modération car vous êtes modérateur·ice de l'instance.", + "This post is accessible only through it's link. Be careful where you post this link.": "Ce billet est accessible uniquement à travers son lien. Faites attention où vous le diffusez.", + "This profile is from another instance, the informations shown here may be incomplete.": "Ce profil provient d'une autre instance, les informations montrées ici peuvent être incomplètes.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Ce profil se situe sur cette instance, vous devez donc {access_the_corresponding_account} afin de le suspendre.", + "This profile was not found": "Ce profil n'a pas été trouvé", + "This setting will be used to display the website and send you emails in the correct language.": "Ce paramètre sera utilisé pour l'affichage du site et pour vous envoyer des courriels dans la bonne langue.", + "This user doesn't have any profiles": "Cet utilisateur·ice n'a aucun profil", + "This user was not found": "Cet utilisateur·ice n'a pas été trouvé·e", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Ce site n’est pas modéré et les données que vous y rentrerez seront automatiquement détruites tous les jours à 00:01 (heure de Paris).", + "This week": "Cette semaine", + "This weekend": "Ce week-end", + "This will also resolve the report.": "Cela résoudra également le signalement.", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Cela supprimera / anonymisera tout le contenu (événements, commentaires, messages, participations…) créés avec cette identité.", + "Time in your timezone ({timezone})": "Heure dans votre fuseau horaire ({timezone})", + "Times in your timezone ({timezone})": "Heures dans votre fuseau horaire ({timezone})", + "Timezone": "Fuseau horaire", + "Timezone detected as {timezone}.": "Fuseau horaire détecté en tant que {timezone}.", + "Title": "Titre", + "To activate more notifications, head over to the notification settings.": "Pour activer plus de notifications, rendez-vous dans vos paramètres de notification.", + "To confirm, type your event title \"{eventTitle}\"": "Pour confirmer, entrez le titre de l'événement « {eventTitle} »", + "To confirm, type your identity username \"{preferredUsername}\"": "Pour confirmer, entrez le nom de l’identité « {preferredUsername} »", + "To create and manage multiples identities from a same account": "Pour pouvoir créer et gérer plusieurs identités avec un même compte", + "To create and manage your events": "Pour créer et gérer vos événements", + "To create or join an group and start organizing with other people": "Pour créer ou rejoindre un groupe et commencer à vous organiser avec d'autres personnes", + "To follow groups and be informed of their latest events": "Afin de suivre des groupes et être informé de leurs derniers événements", + "To register for an event by choosing one of your identities": "Pour s'inscrire à un événement en choisissant une de vos identités", + "Today": "Aujourd'hui", + "Tomorrow": "Demain", + "Tools": "Outils", + "Total number of participations": "Nombre total de participations", + "Transfer to {outsideDomain}": "Transférer à {outsideDomain}", + "Triggered profile refreshment": "Rafraîchissement du profil demandé", + "Try different keywords.": "Essayez d'autres mots.", + "Try fewer keywords.": "Spécifiez un moins grand nombre de mots-clés.", + "Try more general keywords.": "Utilisez des mots clés plus généraux.", + "Twitch live": "Direct sur Twitch", + "Twitch replay": "Replay sur Twitch", + "Twitter account": "Compte Twitter", + "Type": "Type", + "Type or select a date…": "Entrez ou sélectionnez une date…", + "URL": "URL", + "URL copied to clipboard": "URL copiée dans le presse-papiers", + "Unable to copy to clipboard": "Impossible de copier dans le presse-papiers", + "Unable to create the group. One of the pictures may be too heavy.": "Impossible de créer le groupe. Une des images est trop lourde.", + "Unable to create the profile. The avatar picture may be too heavy.": "Impossible de créer le profil. L'image d'avatar est probablement trop lourde.", + "Unable to detect timezone.": "Impossible de détecter le fuseau horaire.", + "Unable to load event for participation. The error details are provided below:": "Impossible de charger l'événement pour la participation. Les détails de l'erreur sont disponibles ci-dessous :", + "Unable to save your participation in this browser.": "Échec de la sauvegarde de votre participation dans ce navigateur.", + "Unable to update the profile. The avatar picture may be too heavy.": "Impossible de mettre à jour le profil. L'image d'avatar est probablement trop lourde.", + "Underline": "Souligné", + "Undo": "Annuler", + "Unfollow": "Ne plus suivre", + "Unfortunately, your participation request was rejected by the organizers.": "Malheureusement, votre demande de participation a été refusée par les organisateur·ices.", + "Unknown": "Inconnu", + "Unknown actor": "Acteur inconnu", + "Unknown error.": "Erreur inconnue.", + "Unknown value for the openness setting.": "Valeur inconnue pour le paramètre d'ouverture.", + "Unlogged participation": "Participation non connecté·e", + "Unsaved changes": "Modifications non enregistrées", + "Unsubscribe to browser push notifications": "Se désinscrire des notifications push du navigateur", + "Unsuspend": "Annuler la suspension", + "Upcoming": "À venir", + "Upcoming events": "Événements à venir", + "Upcoming events from your groups": "Événements de vos groupes à venir", + "Update": "Éditer", + "Update app": "Mettre à jour", + "Update comments": "Mettre à jour des commentaires", + "Update discussion title": "Mettre à jour le titre de la discussion", + "Update event {name}": "Mettre à jour l'événement {name}", + "Update events": "Mettre à jour des événements", + "Update group": "Mettre à jour le groupe", + "Update group discussions": "Mettre à jour des discussions de groupes", + "Update group posts": "Mettre à jour des billets de groupes", + "Update group resources": "Mettre à jour des ressources de groupes", + "Update my event": "Mettre à jour mon événement", + "Update post": "Mettre à jour le billet", + "Update profiles": "Mettre à jour des profils", + "Updated": "Mis à jour", + "Updated at": "Mis à jour à", + "Upload media": "Téléverser des médias", + "Uploaded media size": "Taille des médias téléversés", + "Uploaded media total size": "Taille totale des médias téléversés", + "Use my location": "Utiliser ma position", + "User": "Utilisateur·rice", + "User settings": "Paramètres utilisateur·ices", + "User suspended and report resolved": "Utilisateur suspendu et signalement résolu", + "Username": "Identifiant", + "Users": "Utilisateur·rice·s", + "Validating account": "Validation du compte", + "Validating email": "Validation de l'e-mail", + "Video Conference": "Visio-conférence", + "View a reply": "Aucune réponse | Voir une réponse | Voir {totalReplies} réponses", + "View account on {hostname} (in a new window)": "Voir le compte sur {hostname} (dans une nouvelle fenêtre)", + "View all": "Voir tous", + "View all categories": "Voir toutes les catégories", + "View all events": "Voir tous les événements", + "View all posts": "Voir tous les billets", + "View event page": "Voir la page de l'événement", + "View everything": "Voir tout", + "View full profile": "Voir le profil complet", + "View less": "Voir moins", + "View more": "Voir plus", + "View more events": "Voir plus d'événements", + "View more events around {position}": "Voir plus d'événements près de {position}", + "View more groups around {position}": "Voir plus de groupes près de {position}", + "View more online events": "Voir plus d'événements en ligne", + "View page on {hostname} (in a new window)": "Voir la page sur {hostname} (dans une nouvelle fenêtre)", + "View past events": "Voir les événements passés", + "View the group profile on the original instance": "Afficher le profil du groupe sur l'instance d'origine", + "Visibility was set to an unknown value.": "La visibilité a été définie à une valeur inconnue.", + "Visibility was set to private.": "La visibilité a été définie à privée.", + "Visibility was set to public.": "La visibilité a été définie à public.", + "Visible everywhere on the web": "Visible partout sur le web", + "Visible everywhere on the web (public)": "Visible partout sur le web (public)", + "Visit {instance_domain}": "Visiter {instance_domain}", + "Waiting for organization team approval.": "En attente d'approbation par l'organisation.", + "Warning": "Attention", + "We collect your feedback and the error information in order to improve this service.": "Nous recueillons vos réactions et les informations sur les erreurs afin d'améliorer ce service.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Nous n'avons pas pu sauvegarder votre participation dans ce navigateur. Aucune inquiétude, vous avez bien confirmé votre participation, nous n'avons juste pas pu enregistrer son statut dans ce navigateur à cause d'un souci technique.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Nous améliorons ce logiciel grâce à vos retours. Pour nous avertir de ce problème, vous avez deux possibilités (les deux requièrent toutefois la création d'un compte) :", + "We just sent an email to {email}": "Nous venons d'envoyer un e-mail à {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Nous utilisons votre fuseau horaire pour nous assurer que vous recevez les notifications pour un événement au bon moment.", + "We will redirect you to your instance in order to interact with this event": "Nous vous redirigerons vers votre instance pour interagir avec cet événement", + "We will redirect you to your instance in order to interact with this group": "Nous vous redirigerons vers votre instance afin que vous puissiez interagir avec ce groupe", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Nous vous enverrons un e-mail une heure avant que l'événement débute, pour être sûr que vous ne l'oubliez pas.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Nous prendrons en compte votre fuseau horaire pour vous envoyer un récapitulatif de vos événements le matin.", + "Website": "Site web", + "Website / URL": "Site web / URL", + "Weekly email summary": "Résumé hebdomadaire par e-mail", + "Welcome back {username}!": "Bon retour {username} !", + "Welcome back!": "Ravi de vous revoir !", + "Welcome to Mobilizon, {username}!": "Bienvenue sur Mobilizon, {username} !", + "What can I do to help?": "Que puis-je faire pour aider ?", + "What happened?": "Que s'est-il passé ?", + "Wheelchair accessibility": "Accessibilité aux fauteuils roulants", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Lorsqu'un·e modérateur·rice du groupe crée un événement et l'attribue au groupe, il s'affichera ici.", + "When the event is private, you'll need to share the link around.": "Lorsque l'événement est privé, vous aurez besoin de partager le lien.", + "When the post is private, you'll need to share the link around.": "Lorsque le billet est privé, vous aurez besoin de partager le lien.", + "Whether smoking is prohibited during the event": "S'il est interdit de fumer pendant l'événement", + "Whether the event is accessible with a wheelchair": "Si l'événement est accessible avec un fauteuil roulant", + "Whether the event is interpreted in sign language": "Si l'événement est interprété en langue des signes", + "Whether the event live video is subtitled": "Si le direct vidéo de l'événement est sous-titré", + "Who can post a comment?": "Qui peut poster un commentaire ?", + "Who can view this event and participate": "Qui peut voir cet événement et y participer", + "Who can view this post": "Qui peut voir ce billet", + "Who published {number} events": "Ayant publié {number} événements", + "Why create an account?": "Pourquoi se créer un compte ?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Permet d'afficher et de gérer le statut de votre participation sur la page de l'événement lorsque vous utilisez cet appareil. Décochez si vous utilisez un appareil public.", + "With the most participants": "Avec le plus de participants", + "With unknown participants": "Avec des participant·es inconnu·es", + "With {participants}": "Avec {participants}", + "Within {number} kilometers of {place}": "|Dans un rayon d'un kilomètre de {place}|Dans un rayon de {number} kilomètres de {place}", + "Write a new comment": "Écrivez un nouveau commentaire", + "Write a new message": "Écrivez un nouveau message", + "Write a new reply": "Écrivez une nouvelle réponse", + "Write something": "Écrivez quelque chose", + "Write your post": "Écrivez votre billet", + "Yesterday": "Hier", + "You accepted the invitation to join the group.": "Vous avez accepté l'invitation à vous joindre au groupe.", + "You added the member {member}.": "Vous avez ajouté le ou la membre {member}.", + "You approved {member}'s membership.": "Vous avez approuvé la demande d'adhésion de {member}.", + "You archived the discussion {discussion}.": "Vous avez archivé la discussion {discussion}.", + "You are not an administrator for this group.": "Vous n'êtes pas une administrateur·rice de ce groupe.", + "You are not part of any group.": "Vous ne faites partie d'aucun groupe.", + "You are offline": "Vous êtes hors-ligne", + "You are participating in this event anonymously": "Vous participez à cet événement anonymement", + "You are participating in this event anonymously but didn't confirm participation": "Vous participez à cet événement anonymement mais vous n'avez pas confirmé votre participation", + "You can add resources by using the button above.": "Vous pouvez ajouter des ressources en utilisant le bouton au dessus.", + "You can add tags by hitting the Enter key or by adding a comma": "Vous pouvez ajouter des tags en appuyant sur la touche Entrée ou bien en ajoutant une virgule", + "You can drag and drop the marker below to the desired location": "Vous pouvez faire glisser et déposer le marqueur ci-dessous à l'endroit souhaité", + "You can pick your timezone into your preferences.": "Vous pouvez choisir votre fuseau horaire dans vos préférences.", + "You can put any arbitrary content in this element. URLs will be clickable.": "Vous pouvez placer n'importe quel contenu arbitraire dans cet élément. Les URL seront cliquables.", + "You can try another search term or add the address details manually below.": "Vous pouvez essayer un autre terme de recherche ou ajouter manuellement les détails de l'adresse ci-dessous.", + "You can try another search term or drag and drop the marker on the map": "Vous pouvez essayer avec d'autres termes de recherche ou bien glisser et déposer le marqueur sur la carte", + "You can't change your password because you are registered through {provider}.": "Vous ne pouvez pas changer votre mot de passe car vous vous êtes enregistré via {provider}.", + "You can't use push notifications in this browser.": "Vous ne pouvez pas utiliser les notifications push dans ce navigateur.", + "You changed your email or password": "Vous avez modifié votre e-mail ou votre mot de passe", + "You created the discussion {discussion}.": "Vous avez créé la discussion {discussion}.", + "You created the event {event}.": "Vous avez créé l'événement {event}.", + "You created the folder {resource}.": "Vous avez créé le dossier {resource}.", + "You created the group {group}.": "Vous avez créé le groupe {group}.", + "You created the post {post}.": "Vous avez créé le billet {post}.", + "You created the resource {resource}.": "Vous avez créé la ressource {resource}.", + "You deleted the discussion {discussion}.": "Vous avez supprimé la discussion {discussion}.", + "You deleted the event {event}.": "Vous avez supprimé l'événement {event}.", + "You deleted the folder {resource}.": "Vous avez supprimé le dossier {resource}.", + "You deleted the post {post}.": "Vous avez supprimé le billet {post}.", + "You deleted the resource {resource}.": "Vous avez supprimé la ressource {resource}.", + "You demoted the member {member} to an unknown role.": "Vous avez rétrogradé le membre {member} à un role inconnu.", + "You demoted {member} to moderator.": "Vous avez rétrogradé {member} en tant que modérateur·ice.", + "You demoted {member} to simple member.": "Vous avez rétrogradé {member} en tant que simple membre.", + "You didn't create or join any event yet.": "Vous n'avez pas encore créé ou rejoint d'événement.", + "You don't follow any instances yet.": "Vous ne suivez aucune instance pour le moment.", + "You don't have any upcoming events. Maybe try another filter?": "Vous n'avez pas d'événements à venir. Essayez peut-être un autre filtre ?", + "You excluded member {member}.": "Vous avez exclu le ou la membre {member}.", + "You have access to this conversation as a member of the {group} group": "Vous avez accès à cette conversation en tant que membre du groupe {group}", + "You have attended {count} events in the past.": "Vous n'avez participé à aucun événement par le passé.|Vous avez participé à un événement par le passé.|Vous avez participé à {count} événements par le passé.", + "You have been invited by {invitedBy} to the following group:": "Vous avez été invité par {invitedBy} à rejoindre le groupe suivant :", + "You have been logged-out": "Vous avez été déconnecté·e", + "You have been removed from this group's members.": "Vous avez été exclu·e des membres de ce groupe.", + "You have cancelled your participation": "Vous avez annulé votre participation", + "You have one event in {days} days.": "Vous n'avez pas d'événements dans {days} jours | Vous avez un événement dans {days} jours. | Vous avez {count} événements dans {days} jours", + "You have one event today.": "Vous n'avez pas d'événement aujourd'hui | Vous avez un événement aujourd'hui. | Vous avez {count} événements aujourd'hui", + "You have one event tomorrow.": "Vous n'avez pas d'événement demain | Vous avez un événement demain. | Vous avez {count} événements demain", + "You haven't interacted with other instances yet.": "Vous n'avez interagi avec encore aucune autre instance.", + "You invited {member}.": "Vous avez invité {member}.", + "You joined the event {event}.": "Vous avez rejoint l'événement {event}.", + "You may also:": "Vous pouvez aussi :", + "You may clear all participation information for this device with the buttons below.": "Vous pouvez effacer toutes les informations de participation pour cet appareil avec les boutons ci-dessous.", + "You may now close this page or {return_to_the_homepage}.": "Vous pouvez maintenant fermer cette page ou {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "Vous pouvez maintenant fermer cette fenêtre, ou bien {return_to_event}.", + "You may show some members as contacts.": "Vous pouvez afficher certain·es membres en tant que contacts.", + "You moved the folder {resource} into {new_path}.": "Vous avez déplacé le dossier {resource} dans {new_path}.", + "You moved the folder {resource} to the root folder.": "Vous avez déplacé le dossier {resource} dans le dossier racine.", + "You moved the resource {resource} into {new_path}.": "Vous avez déplacé la ressource {resource} dans {new_path}.", + "You moved the resource {resource} to the root folder.": "Vous avez déplacé la ressource {resource} dans le dossier racine.", + "You need to enter a text": "Vous devez entrer un texte", + "You need to login.": "Vous devez vous connecter.", + "You need to provide the following code to your application. It will only be valid for a few minutes.": "Vous devez fournir le code suivant à votre application. Il sera seulement valide pendant quelques minutes.", + "You posted a comment on the event {event}.": "Vous avez posté un commentaire sur l'événement {event}.", + "You promoted the member {member} to an unknown role.": "Vous avez promu le ou la membre {member} à un role inconnu.", + "You promoted {member} to administrator.": "Vous avez promu {member} en tant qu'adminstrateur·ice.", + "You promoted {member} to moderator.": "Vous avez promu {member} en tant que modérateur·ice.", + "You rejected {member}'s membership request.": "Vous avez rejeté la demande d'adhésion de {member}.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Vous avez renommé la discussion {old_discussion} en {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Vous avez renommé le dossier {old_resource_title} en {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Vous avez renommé la ressource {old_resource_title} en {resource}.", + "You replied to a comment on the event {event}.": "Vous avez répondu à un commentaire sur l'événement {event}.", + "You replied to the discussion {discussion}.": "Vous avez répondu à la discussion {discussion}.", + "You requested to join the group.": "Vous avez demandé à rejoindre le groupe.", + "You updated the event {event}.": "Vous avez mis à jour l'événement {event}.", + "You updated the group {group}.": "Vous avez mis à jour le groupe {group}.", + "You updated the member {member}.": "Vous avez mis à jour le ou la membre {member}.", + "You updated the post {post}.": "Vous avez mis à jour le billet {post}.", + "You were demoted to an unknown role by {profile}.": "Vous avez été rétrogradé·e à un role inconnu par {profile}.", + "You were demoted to moderator by {profile}.": "Vous avez été rétrogradé·e modérateur·ice par {profile}.", + "You were demoted to simple member by {profile}.": "Vous avez été rétrogradé·e simple membre par {profile}.", + "You were promoted to administrator by {profile}.": "Vous avez été promu·e administrateur·ice par {profile}.", + "You were promoted to an unknown role by {profile}.": "Vous avez été promu·e à un role inconnu par {profile}.", + "You were promoted to moderator by {profile}.": "Vous avez été promu·e modérateur·ice par {profile}.", + "You will be able to add an avatar and set other options in your account settings.": "Vous pourrez ajouter un avatar et définir d'autres options dans les paramètres de votre compte.", + "You will be redirected to the original instance": "Vous allez être redirigé·e vers l'instance d'origine", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Vous trouverez ici tous les événements que vous avez créé ou dont vous êtes un·e participant·e, ainsi que les événements organisés par les groupes que vous suivez ou dont vous êtes membre.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Vous recevrez des notifications à propos de l'activité publique de ce groupe en fonction de %{notification_settings}.", + "You wish to participate to the following event": "Vous souhaitez participer à l'événement suivant", + "You'll be able to revoke access for this application in your account settings.": "Vous pourrez révoquer l'accès pour cette applications dans les paramètres de votre compte.", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Vous recevrez un récapitulatif hebdomadaire chaque lundi pour les événements de la semaine, si vous en avez.", + "You'll need to change the URLs where there were previously entered.": "Vous devrez changer les URLs là où vous les avez entrées précédemment.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Vous aurez besoin de transmettre l'URL du groupe pour que d'autres personnes accèdent au profil du groupe. Le groupe ne sera pas trouvable dans la recherche de Mobilizon ni dans les moteurs de recherche habituels.", + "You'll receive a confirmation email.": "Vous recevrez un e-mail de confirmation.", + "YouTube live": "Direct sur YouTube", + "YouTube replay": "Replay sur YouTube", + "Your account has been successfully deleted": "Votre compte a été supprimé avec succès", + "Your account has been validated": "Votre compte a été validé", + "Your account is being validated": "Votre compte est en cours de validation", + "Your account is nearly ready, {username}": "Votre compte est presque prêt, {username}", + "Your application code": "Votre code d'application", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Votre ville ou région et le rayon seront uniquement utilisés pour vous suggérer des événements proches. Le rayon des événements proches sera calculé par rapport au centre administratif de la zone.", + "Your current email is {email}. You use it to log in.": "Votre adresse e-mail actuelle est {email}. Vous l'utilisez pour vous connecter.", + "Your email": "Votre adresse e-mail", + "Your email address was automatically set based on your {provider} account.": "Votre adresse e-mail a été définie automatiquement en se basant sur votre compte {provider}.", + "Your email has been changed": "Votre adresse e-mail a bien été modifiée", + "Your email is being changed": "Votre adresse e-mail est en train d'être modifiée", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Votre e-mail sera uniquement utilisé pour confirmer que vous êtes bien une personne réelle et vous envoyer des éventuelles mises à jour pour cet événement. Il ne sera PAS transmis à d'autres instances ou à l'organisateur de l'événement.", + "Your federated identity": "Votre identité fédérée", + "Your membership is pending approval": "Votre adhésion est en attente d'approbation", + "Your membership was approved by {profile}.": "Votre demande d'adhésion a été approuvée par {profile}.", + "Your participation has been cancelled": "Votre participation a été annulée", + "Your participation has been confirmed": "Votre participation a été confirmée", + "Your participation has been rejected": "Votre participation a été rejettée", + "Your participation has been requested": "Votre participation a été demandée", + "Your participation is being cancelled": "Votre participation est en cours d'annulation", + "Your participation request has been validated": "Votre demande de participation a été validée", + "Your participation request is being validated": "Votre demande de participation est en cours de validation", + "Your participation status has been changed": "Le statut de votre participation a été mis à jour", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Le statut de votre participation est enregistré uniquement sur cet appareil et sera supprimé un mois après la fin de l'événement.", + "Your participation still has to be approved by the organisers.": "Votre participation doit encore être approuvée par les organisateur·rice·s.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Votre participation sera validée une fois que vous aurez cliqué sur le lien de confirmation contenu dans le courriel, et après que l'organisateur·ice valide votre participation.", + "Your participation will be validated once you click the confirmation link into the email.": "Votre participation sera validée une fois que vous aurez cliqué sur le lien de confirmation contenu dans le courriel.", + "Your position was not available.": "Votre position n'était pas disponible.", + "Your profile will be shown as contact.": "Votre profil sera affiché en tant que contact.", + "Your timezone is currently set to {timezone}.": "Votre fuseau horaire est actuellement défini à {timezone}.", + "Your timezone was detected as {timezone}.": "Votre fuseau horaire a été détecté en tant que {timezone}.", + "Your timezone {timezone} isn't supported.": "Votre fuseau horaire {timezone} n'est pas supporté.", + "Your upcoming events": "Vos événements à venir", + "Zoom": "Zoom", + "Zoom in": "Zoomer", + "Zoom out": "Dézoomer", + "[This comment has been deleted by it's author]": "[Ce commentaire a été supprimé par son auteur·rice]", + "[This comment has been deleted]": "[Ce commentaire a été supprimé]", + "[deleted]": "[supprimé]", + "a non-existent report": "un signalement non-existant", + "access the corresponding account": "accéder au compte correspondant", + "access to the group's private content as well": "accédez également au contenu privé du groupe", + "and {number} groups": "et {number} groupes", + "any distance": "peu importe", + "as {identity}": "en tant que {identity}", + "contact uninformed": "contact non renseigné", + "create a group": "créer un groupe", + "create an event": "créer un événement", + "default Mobilizon privacy policy": "politique de confidentialité par défaut de Mobilizon", + "default Mobilizon terms": "conditions d'utilisation par défaut de Mobilizon", + "e.g. 10 Rue Jangot": "par exemple : 10 Rue Jangot", + "e.g. Accessibility, Twitch, PeerTube": "par ex. Accessibilité, Framadate, PeerTube", + "e.g. Nantes, Berlin, Cork, …": "par ex : Nantes, Berlin, Cork, …", + "enable the feature": "activer la fonctionnalité", + "explore the events": "explorer les événements", + "explore the groups": "explorer les groupes", + "find, create and organise events": "trouver, créer et organiser des événements", + "full rules": "règles complètes", + "group's upcoming public events": "prochains événements publics du groupe", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/un-jeton-secret", + "iCal Feed": "Flux iCal", + "instance rules": "règles de l'instance", + "mobilizon-instance.tld": "instance-mobilizon.tld", + "more than 1360 contributors": "plus de 1360 contributeur·rice·s", + "multitude of interconnected Mobilizon websites": "multitude de sites web Mobilizon interconnectés", + "new{'@'}email.com": "nouvel{'@'}email.com", + "profile@instance": "profile@instance", + "profile{'@'}instance": "profil{'@'}instance", + "report #{report_number}": "le signalement #{report_number}", + "return to the event's page": "retourner sur la page de l'événement", + "return to the homepage": "retour à la page d'accueil", + "terms of service": "conditions générales d'utilisation", + "tool designed to serve you": "outil conçu pour vous servir", + "with another identity…": "avec une autre identité…", + "your notification settings": "vos paramètres de notification", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved} / {total} places", + "{available}/{capacity} available places": "Pas de places restantes|{available}/{capacity} place restante|{available}/{capacity} places restantes", + "{count} events": "{count} événements", + "{count} km": "{count} km", + "{count} members": "Aucun membre|Un·e membre|{count} membres", + "{count} members or followers": "Aucun·e membre ou abonné·e|Un·e membre ou abonné·e|{count} membres ou abonné·es", + "{count} participants": "Aucun·e participant·e | Un·e participant·e | {count} participant·e·s", + "{count} requests waiting": "Une demande en attente|{count} demandes en attente", + "{eventsCount} activities found": "Aucune activité trouvée|Une activité trouvée|{eventsCount} activités trouvées", + "{eventsCount} events found": "Aucun événement trouvé|Un événement trouvé|{eventsCount} événements trouvés", + "{folder} - Resources": "{folder} - Ressources", + "{groupsCount} groups found": "Aucun groupe trouvé|Un groupe trouvé|{groupsCount} groupes trouvés", + "{group} activity timeline": "Timeline de l'activité de {group}", + "{group} events": "Événements de {group}", + "{group} posts": "Billets de {group}", + "{group}'s events": "Événements de {group}", + "{group}'s todolists": "Liste de tâches de {group}", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} est une instance du logiciel {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} est une instance de {mobilizon_link}, un logiciel libre construit de manière communautaire.", + "{member} accepted the invitation to join the group.": "{member} a accepté l'invitation à se joindre au groupe.", + "{member} joined the group.": "{member} a rejoint le groupe.", + "{member} rejected the invitation to join the group.": "{member} a refusé l'invitation à se joindre au groupe.", + "{member} requested to join the group.": "{member} a demandé à rejoindre le groupe.", + "{member} was invited by {profile}.": "{member} a été invité·e par {profile}.", + "{moderator} added a note on {report}": "{moderator} a ajouté une note sur {report}", + "{moderator} closed {report}": "{moderator} a fermé {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} a supprimé un événement nommé \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} a supprimé un commentaire de {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} a supprimé un commentaire de {author} sous l'événement {event}", + "{moderator} has deleted user {user}": "{moderator} a supprimé l'utilisateur·rice {user}", + "{moderator} has done an unknown action": "{moderator} a effectué une action inconnue", + "{moderator} has unsuspended group {profile}": "{moderator} a annulé la suspension du groupe {profile}", + "{moderator} has unsuspended profile {profile}": "{moderator} a annulé la suspension de {profile}", + "{moderator} marked {report} as resolved": "{moderator} a marqué {report} comme résolu", + "{moderator} reopened {report}": "{moderator} a réouvert {report}", + "{moderator} suspended group {profile}": "{moderator} a suspendu le groupe {profile}", + "{moderator} suspended profile {profile}": "{moderator} a suspendu le profil {profile}", + "{nb} km": "{nb} km", + "{numberOfCategories} selected": "{numberOfCategories} sélectionnées", + "{numberOfLanguages} selected": "{numberOfLanguages} sélectionnées", + "{number} kilometers": "{number} kilomètres", + "{number} members": "Aucun·e membre|Un·e membre|{number} membres", + "{number} memberships": "{number} adhésions", + "{number} organized events": "Aucun événement organisé|Un événement organisé|{number} événements organisés", + "{number} participations": "Aucune participation|Une participation|{number} participations", + "{number} posts": "Aucun billet|Un billet|{number} billets", + "{number} seats left": "Aucune place restante|Une place restante|{number} places restantes", + "{old_group_name} was renamed to {group}.": "{old_group_name} a été renommé en {group}.", + "{profileName} (suspended)": "{profileName} (suspendu·e)", + "{profile} (by default)": "{profile} (par défault)", + "{profile} added the member {member}.": "{profile} a ajouté le ou la membre {member}.", + "{profile} approved {member}'s membership.": "{profile} a approuvé la demande d'adhésion de {member}.", + "{profile} archived the discussion {discussion}.": "{profile} a archivé la discussion {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} a créé la discussion {discussion}.", + "{profile} created the folder {resource}.": "{profile} a créé le dossier {resource}.", + "{profile} created the group {group}.": "{profile} a créé le groupe {group}.", + "{profile} created the resource {resource}.": "{profile} a créé la ressource {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} a supprimé la discussion {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} a supprimé le dossier {resource}.", + "{profile} deleted the resource {resource}.": "{profile} a supprimé la ressource {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} a rétrogradé {member} à un role inconnu.", + "{profile} demoted {member} to moderator.": "{profile} a rétrogradé {member} en tant que modérateur·ice.", + "{profile} demoted {member} to simple member.": "{profile} a rétrogradé {member} en tant que simple membre.", + "{profile} excluded member {member}.": "{profile} a exclu le ou la membre {member}.", + "{profile} joined the the event {event}.": "{profile} a rejoint l'événement {event}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} a déplacé le dossier {resource} dans {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} a déplacé le dossier {resource} dans le dossier racine.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} a déplacé la ressource {resource} dans {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} a déplacé la ressource {resource} dans le dossier racine.", + "{profile} posted a comment on the event {event}.": "{profile} a posté un commentaire sur l'événement {event}.", + "{profile} promoted {member} to administrator.": "{profile} a promu {member} en tant qu'administrateur·ice.", + "{profile} promoted {member} to an unknown role.": "{profile} a promu {member} à un role inconnu.", + "{profile} promoted {member} to moderator.": "{profile} a promu {member} en tant que modérateur·ice.", + "{profile} quit the group.": "{profile} a quitté le groupe.", + "{profile} rejected {member}'s membership request.": "{profile} a rejeté la demande d'adhésion de {member}.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} a renommé la discussion {old_discussion} en {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} a renommé le dossier {old_resource_title} en {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} a renommé la ressource {old_resource_title} en {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} a répondu à un commentaire sur l'événement {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} a répondu à la discussion {discussion}.", + "{profile} updated the group {group}.": "{profile} a mis à jour le groupe {group}.", + "{profile} updated the member {member}.": "{profile} a mis à jour le ou la membre {member}.", + "{resultsCount} results found": "Aucun résultat trouvé|Un résultat trouvé|{resultsCount} résultats trouvés", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} todos)", + "{username} was invited to {group}": "{username} a été invité à {group}", + "{user}'s follow request was accepted": "La demande de suivi de {user} a été acceptée", + "{user}'s follow request was rejected": "La demande de suivi de {user} a été rejetée", + "© The OpenStreetMap Contributors": "© Les Contributeur·ices OpenStreetMap" +}); diff --git a/res/locale/gd.js b/res/locale/gd.js new file mode 100644 index 0000000..3389a21 --- /dev/null +++ b/res/locale/gd.js @@ -0,0 +1,1340 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Falaichte)", + "(this folder)": "(am pasgan seo)", + "(this link)": "(an ceangal seo)", + "+ Add a resource": "+ Cuir goireas ris", + "+ Create a post": "+ Cruthaich post", + "+ Create an event": "+ Cruthaich tachartas", + "+ Start a discussion": "+ Tòisich air deasbad", + "0 Bytes": "0 baidht", + "{contact} will be displayed as contact.": "Thèid {contact} a shealltain mar neach-conaltraidh.|Thèid {contact} a shealltain mar luchd-conaltraidh.|Thèid {contact} a shealltain mar luchd-conaltraidh.|Thèid {contact} a shealltain mar luchd-conaltraidh.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "Chaidh gabhail ris an t-iarrtas leantainn aig @{username}", + "@{username}'s follow request was rejected": "Chaidh an t-iarrtas leantainn aig @{username} a dhiùltadh", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "’S e faidhle beag a th’ ann am briosgaid sa bheil fiosrachadh ’s a thèid a chur dhan choimpiutair agad nuair a thadhlas tu air làrach-lìn. Nuair a thadhlas tu air an làrach-lìn a-rithist, aithnichidh an làrach ud am brabhsair agad leis a’ bhriosgaid. Gabhaidh roghainnean cleachdaiche is fiosrachadh eile a stòradh ann am briosgaid. ’S urrainn dhut am brabhsair agad a rèiteachadh ach an diùlt e gach briosgaid. Gidheadh, dh’fhaoidte nach obraich a h-uile gleus no seirbheis aig làrach-lìn mar bu chòir an uairsin. Obraichidh an stòras ionadail air an aon dòigh ach faodar barrachd dàta a chumail ann.", + "A discussion has been created or updated": "Chaidh deasbad a chruthachadh no ùrachadh", + "A federated software": "Bathar-bog co-naisgte", + "A fediverse account URL to follow for event updates": "URL cunntais co-shaoghail airson naidheachdan tachartais a leantainn", + "A link to a page presenting the event schedule": "Ceangal gu duilleag a sheallas sgeideal an tachartais", + "A link to a page presenting the price options": "Ceangal gu duilleag a sheallas roghainnean nam prìsean", + "A member has been updated": "Chaidh ball ùrachadh", + "A member requested to join one of my groups": "Dh’iarr cuideigin ballrachd ann am fear dhe na buidhnean agam", + "A new version is available.": "Tha tionndadh ùr ri fhaighinn.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Seo àite airson còd-giùlain, riaghailtean no comharra-treòrachaidh. ’S urrainn dhut tagaichean HTML a chleachdadh.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Seo àite airson cò thusa agus dè a tha sònraichte mun ionstans agad a mhìneachadh. ’S urrainn dhut tagaichean HTML a chleachdadh.", + "A place to publish something to the whole world, your community or just your group members.": "Seo àite airson rudan fhoillseachadh dhan t-saoghal gu lèir, dhan choimhearsnachd agad no do bhuill do bhuidhinn a-mhàin.", + "A place to store links to documents or resources of any type.": "Seo àite airson ceanglaichean gu sgrìobhainnean no goireasan sam bith eile a stòradh.", + "A post has been published": "Chaidh post fhoillseachadh", + "A post has been updated": "Chaidh post ùrachadh", + "A practical tool": "Acainn prataigeach", + "A resource has been created or updated": "Chaidh goireas a chruthachadh no ùrachadh", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Seo facal-suaicheantais goirid airson duilleag-dhachaigh an ionstans agad. ’S e “Cruinnich ⋅ Cuir air dòigh ⋅ Iomair” a tha sa bhun-roghainn", + "A twitter account handle to follow for event updates": "Làimhsichear cunntas Twitter airson naidheachdan tachartais a leantainn", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Inneal saor beusail airson cruinneachadh, cur air dòigh is iomairt a tha furasta cleachdadh.", + "A validation email was sent to {email}": "Chaidh post-d dearbhaidh a chur gu {email}", + "API": "API", + "Abandon editing": "Tilg air falbh an deasachadh", + "About": "Mu dhèidhinn", + "About Mobilizon": "Mu Mobilizon", + "About anonymous participation": "Mun chom-pàirteachadh gun ainm", + "About instance": "Mun ionstans", + "About this event": "Mun tachartas seo", + "About this instance": "Mun ionstans seo", + "About {instance}": "Mu {instance}", + "Accept": "Gabh ris", + "Accept follow": "Gabh ris an iarrtas leantainn", + "Accepted": "Air a ghabhail ris", + "Accessibility": "So-ruigsinneachd", + "Accessible only by link": "Inntrigeadh le ceangal a-mhàin", + "Accessible only to members": "Chan fhaod ach buill inntrigeadh", + "Accessible through link": "Gabhaidh inntrigeadh le ceangal", + "Account": "Cunntas", + "Account settings": "Roghainnean a’ chunntais", + "Actions": "Gnìomhan", + "Activate browser push notifications": "Gnìomhaich brathan putaidh a’ bhrabhsair", + "Activate notifications": "Gnìomhaich na brathan", + "Activated": "An gnìomh", + "Active": "Gnìomhach", + "Activity": "Gnìomhachd", + "Actor": "Actar", + "Add": "Cuir ris", + "Add / Remove…": "Cuir ris / Thoir air falbh…", + "Add a contact": "Cuir fiosrachadh conaltraidh ris", + "Add a new post": "Cuir post ùr ris", + "Add a note": "Cuir nòta ris", + "Add a todo": "Cuir rud ri dhèanamh ris", + "Add an address": "Cuir seòladh ris", + "Add an instance": "Cuir ionstans ris", + "Add link": "Cuir ceangal ris", + "Add new…": "Cuir fear ùr ris…", + "Add picture": "Cuir dealbh ris", + "Add some tags": "Cuir tagaichean ris", + "Add to my calendar": "Cuir ris a’ mhìosachan agam", + "Additional comments": "Beachdan a bharrachd", + "Admin": "Rianaire", + "Admin dashboard": "Deas-bhòrd na rianachd", + "Admin settings": "Roghainnean na rianachd", + "Admin settings successfully saved.": "Chaidh roghainnean an rianaire a shàbhaladh.", + "Administration": "Rianachd", + "Administrator": "Rianaire", + "All": "Na h-uile", + "All activities": "A h-uile gnìomhachd", + "All good, let's continue!": "Tha seo dòigheil, leanamaid oirnn!", + "All the places have already been taken": "Chan eil àite saor air fhàgail", + "Allow all comments from users with accounts": "Ceadaich a h-uile beachd o chleachdaichean air an clàradh a-steach", + "Allow registrations": "Ceadaich clàradh", + "An URL to an external ticketing platform": "URL tu ùrlar ticeadan air an taobh a-muigh", + "An error has occured while refreshing the page.": "Thachair mearachd fhad ’s a bha sinn ag ath-nuadhachadh na duilleige.", + "An error has occured. Sorry about that. You may try to reload the page.": "Thachair mearachd. Tha sinn duilich mu dhèidhinn. Feuch is ath-luchdaich an duilleag.", + "An ethical alternative": "Roghainn bheusail", + "An event I'm going to has been updated": "Chaidh tachartas dhan dèid mi ùrachadh", + "An event I'm going to has posted an announcement": "Phostaidh tachartas dhan dèid mi brath-fios", + "An event I'm organizing has a new comment": "Tha beachd ùr ri tachartas a’ tha mi a’ cur air dòigh", + "An event I'm organizing has a new participation": "Tha com-pàirteachadh ùr ann an tachartas a’ tha mi a’ cur air dòigh", + "An event I'm organizing has a new pending participation": "Tha com-pàirteachadh ùr a’ feitheamh ann an tachartas a’ tha mi a’ cur air dòigh", + "An event from one of my groups has been published": "Dh’fhoillsich fear dhe na buidhnean agam tachartas", + "An event from one of my groups has been updated or deleted": "Chaidh tachartas aig fear dhe na buidhnean agam ùrachadh no a sguabadh às", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "’S e tionndadh dhen bhathar-bhog Mobilizon a chaidh a stàladh ’s a tha a’ ruith air frithealaiche a th’ ann an ionstans. ’S urrainn do dhuine sam bith ionstans a ruith le {mobilizon_software} no le aplacaidean co-naisgte eile, sin an “co-shaoghal”. Is {instance_name} ainm an ionstans seo. ’S e lìonra de dh’iomadh ionstans co-naisgte (coltach ri frithealaichean puist-d) a th’ ann am Mobilizon. ’S urrainn do chleachdaichean a chlàraich le ionstansan eadar-dhealaichte conaltradh ri chèile ged nach do chlàraich iad air an on ionstans.", + "And {number} comments": "Agus {number} beachd", + "Announcements and mentions notifications are always sent straight away.": "Thèid brathan mu bhrathan-fios is iomraidhean a chur sa bhad an-còmhnaidh.", + "Anonymous participant": "Freastalaiche gun ainm", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Thèid iarraidh air freastalaichean gun ainm gun dearbh iad an com-pàirteachadh air a’ phost-d.", + "Anonymous participations": "Com-pàirteachaidhean gun ainm", + "Any category": "Roinn-seòrsa sam bith", + "Any day": "Latha sam bith", + "Any type": "Seòrsa sam bith", + "Anyone can join freely": "Faodaidh neach sam bith a dhol an sàs ann gu saor", + "Anyone can request being a member, but an administrator needs to approve the membership.": "’S urrainn do dhuine sam bith iarrtas ballrachd a chur a-steach ach feumaidh rianaire gabhail ris a’ bhallrachd.", + "Anyone wanting to be a member from your group will be able to from your group page.": "’S urrainn do dhuine sam bith a tha airson ballrachd fhaighinn sa bhuidheann agad sin a dhèanamh air duilleag a’ bhuidhinn agad.", + "Application": "Aplacaid", + "Approve member": "Gabh ris a’ bhall", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "A bheil thu cinnteach gu bheil thu airson an cunntas agad a sguabadh às uile gu lèir? Caillidh tu a h-uile rud. Falbhaidh na dearbh-aithnean, na roghainnean, na tachartasan a chruthaich thu agus na com-pàirteachaidhean gu buan.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "A bheil thu cinnteach gu bheil thu airson am buidheann seo a sguabadh às uile gu lèir? Gheibh a’ bhallrachd uile gu lèir – a’ gabhail a-staigh an fheadhainn chèin – brath-naidheachd agus thèid an toirt air falbh on bhuidheann agus thèid dàta sam bith aig a’ bhuidheann (tachartasan, postaichean, deasbadan, rudan ri dhèanamh…) a mhilleadh gu buan.", + "Are you sure you want to delete this comment? This action cannot be undone.": "A bheil thu cinnteach gu bheil thu airson am beachd seo a sguabadh às? Cha ghabh seo a neo-dhèanamh.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "A bheil thu cinnteach gu bheil thu airson an tachartas seo a sguabadh às? Cha ghabh seo a neo-dhèanamh. ’S dòcha gum b’ fheàirrde thu deasbad leis an neach a chruthaich an tachartas no an tachartas aca-san a dheasachadh ’na àite.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "A bheil thu cinnteach gu bheil thu airson am buidheann seo a chur à rèim? Gheibh a’ bhallrachd uile gu lèir – a’ gabhail a-staigh an fheadhainn chèin – brath-naidheachd agus thèid an toirt air falbh on bhuidheann agus thèid dàta sam bith aig a’ bhuidheann (tachartasan, postaichean, deasbadan, rudan ri dhèanamh…) a mhilleadh gu buan.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "A bheil thu cinnteach gu bheil thu airson am buidheann seo a chur à rèim? On a thàinig am buidheann o ionstans {instance}, tha doir seo air falbh ach am ballrachd ionadail is cha dèid a sguabadh às ach an dàta ionadail ach thèid dàta ri teachd sam bith a dhiùltadh.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "A bheil thu cinnteach gu bheil thu airson sgur de chruthachadh an tachartais? Caillidh tu gach atharrachadh a rinn thu air.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "A bheil thu cinnteach gu bheil thu airson sgur de dheasachadh an tachartais? Caillidh tu gach atharrachadh a rinn thu air.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "A bheil thu cinnteach gu bheil thu airson sgur dhen chom-pàirteachadh agad aig “{title}”?", + "Are you sure you want to delete this entire discussion?": "A bheil thu cinnteach gu bheil thu airson an deasbad seo a sguabadh às uile gu lèir?", + "Are you sure you want to delete this event? This action cannot be reverted.": "A bheil thu cinnteach gu bheil thu airson an tachartas seo a sguabadh às? Cha ghabh seo a neo-dhèanamh.", + "Are you sure you want to delete this post? This action cannot be reverted.": "A bheil thu cinnteach gu bheil thu airson am post seo a sguabadh às? Cha ghabh seo a neo-dhèanamh.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "A bheil thu cinnteach gu bheil thu airson am buidheann {groupName} fhàgail? Caillidh tu an t-inntrigeadh do shusbaint phrìobhaideach a’ bhuidhinn seo. Cha ghabh seo a neo-dhèanamh.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Thagh eagraiche an tachartais gun dearbh iad cò ghabhas pàirt a làimh, mar sin cha bhi do chom-pàirteachadh air a dhearbhadh mus fhaigh thu post-d a dh’innseas gun do ghabh iad ris.", + "Ask your instance admin to {enable_feature}.": "Iarr air rianaire an ionstans agad {enable_feature}.", + "Assigned to": "Air iomruineadh dha", + "Atom feed for events and posts": "Inbhir Atom dha na tachartasan is postaichean", + "Attending": "An làthair", + "Avatar": "Avatar", + "Back to group list": "Air ais gu liosta nam buidhnean", + "Back to previous page": "Air ais dhan duilleag roimhpe", + "Back to profile list": "Air ais gu liosta nam pròifilean", + "Back to top": "Air ais gun bhàrr", + "Back to user list": "Air ais gu liosta nan cleachdaichean", + "Banner": "Bratach", + "Become part of the community and start organizing events": "Faigh ballrachd sa choimhearsnachd agus tòisich air tachartasan a chur air dòigh", + "Before you can login, you need to click on the link inside it to validate your account.": "Mus urrainn dhut clàradh a-steach, feumaidh tu briogadh air a’ cheangal ’na broinn gus an cunntas agad a dhearbhadh.", + "Begins on": "Tòisichidh e aig", + "Big Blue Button": "Big Blue Button", + "Bold": "Trom", + "Booking": "Bucadh", + "Breadcrumbs": "Breadcrumbs", + "Browser notifications": "Brathan a’ bhrabhsair", + "Bullet list": "Liosta pheilearaichte", + "By others": "Le daoine eile", + "By {group}": "Le {group}", + "By {username}": "Le {username}", + "Can be an email or a link, or just plain text.": "’S urrainn dhut post-d no ceangal no teacsa lom a cleachdadh.", + "Cancel": "Sguir dheth", + "Cancel anonymous participation": "Sguir dhen chom-pàirteachadh gun ainm", + "Cancel creation": "Sguir dhen chruthachadh", + "Cancel discussion title edition": "Sguir de dheasachadh tiotal an deasbaid", + "Cancel edition": "Sguir dhen deasachadh", + "Cancel follow request": "Sguir dhen iarrtas leantainn", + "Cancel membership request": "Sguir dhen iarrtas air ballrachd", + "Cancel my participation request…": "Sguir dhen iarrtas agam air com-pàirteachadh…", + "Cancel my participation…": "Sguir dhen chom-pàirteachadh agam…", + "Cancelled": "Chaidh a chur gu neoini", + "Cancelled: Won't happen": "Sguireadh dheth: Cha tachair seo", + "Category": "Roinn-seòrsa", + "Change": "Atharraich", + "Change email": "Atharraich am post-d", + "Change my email": "Atharraich am post-d agam", + "Change my identity…": "Atharraich an dearbh-aithne agam…", + "Change my password": "Atharraich am facal-faire agam", + "Change role": "Atharraich an dreuchd", + "Change timezone": "Atharraich an roinn-tìde", + "Change user email": "Atharraich post-d a’ chleachdaiche", + "Change user role": "Atharraich dreuchd a’ chleachdaiche", + "Check your inbox (and your junk mail folder).": "Thoir sùil air a’ bhogsa a-steach agad (’s air a’ phasgan airson puist-d thruilleis).", + "Choose the source of the instance's Privacy Policy": "Tagh tùs do phoileasaidh prìobhaideachd an ionstans", + "Choose the source of the instance's Terms": "Tagh tùs do theirmichean an ionstans", + "City or region": "Baile no sgìre", + "Clear": "Falamhaich", + "Clear address field": "Falamhaich raon an t-seòlaidh", + "Clear date filter field": "Falamhaich raon criathraidh a’ chinn-là", + "Clear participation data for all events": "Falamhaich dàta a’ chom-pàirteachaidh aig a h-uile tachartas", + "Clear participation data for this event": "Falamhaich dàta a’ chom-pàirteachaidh aig an tachartas seo", + "Clear timezone field": "Falamhaich raon na roinn-tìde", + "Click for more information": "Dèan briogadh airson barrachd fiosrachaidh", + "Click to upload": "Briog airson luchdadh suas", + "Close": "Dùin", + "Close comments for all (except for admins)": "Dùin na beachdan dhan a h-uile duine (ach rianairean)", + "Closed": "Dùinte", + "Comment body": "Bodhaig a’ bheachd", + "Comment deleted": "Chaidh am beachd a sguabadh às", + "Comment text can't be empty": "Chan fhaod teacsa a’ bheachd a bhith bàn", + "Comments": "Beachdan", + "Comments are closed for everybody else.": "Tha na beachdan dùinte dhan a h-uile duine eile.", + "Confirm my participation": "Dearbh an com-pàirteachadh agam", + "Confirm my particpation": "Dearbh an com-pàirteachadh agam", + "Confirm participation": "Dearbh an com-pàirteachadh", + "Confirm user": "Dearbh an cleachdaiche", + "Confirmed": "Air a dhearbhadh", + "Confirmed at": "Chaidh a dhearbhachadh", + "Confirmed: Will happen": "Air dearbhadh: Tachraidh seo", + "Congratulations, your account is now created!": "Meal do naidheachd, chaidh an cunntas agad a chruthachadh!", + "Contact": "Fios thugainn", + "Continue editing": "Lean air an deasachadh", + "Cookies and Local storage": "Briosgaidean is an stòras ionadail", + "Copy URL to clipboard": "Cuir lethbhreac dhen URL air an stòr-bhòrd", + "Copy details to clipboard": "Cuir lethbhreac dhen mion-fhiosrachadh air an stòr-bhòrd", + "Country": "Dùthaich", + "Create": "Cruthaich", + "Create a calc": "Cruthaich cliath-dhuilleag", + "Create a discussion": "Cruthaich deasbad", + "Create a folder": "Cruthaich pasgan", + "Create a new event": "Cruthaich tachartas ùr", + "Create a new group": "Cruthaich buidheann ùr", + "Create a new identity": "Cruthaich dearbh-aithne ùr", + "Create a new list": "Cruthaich liosta ùr", + "Create a new profile": "Cruthaich pròifil ùr", + "Create a pad": "Cruthaich pada", + "Create a videoconference": "Cruthaich coinneamh video", + "Create an account": "Cruthaich cunntas", + "Create discussion": "Cruthaich deasbad", + "Create event": "Cruthaich tachartas", + "Create group": "Cruthaich buidheann", + "Create identity": "Cruthaich fèin-aithne", + "Create my event": "Cruthaich an tachartas agam", + "Create my group": "Cruthaich am buidheann agam", + "Create my profile": "Cruthaich a’ phròifil agam", + "Create new links": "Cruthaich ceanglaichean ùra", + "Create resource": "Cruthaich goireas", + "Create the discussion": "Cruthaich an deasbad", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Cruthaich liostaichean de rudan ri dhèanamh dha na saothraichean uile a tha romhaibh, iomruin iad is suidhich cinn-latha orra.", + "Create token": "Cruthaich tòcan", + "Created by {name}": "Chaidh a chruthachadh le {name}", + "Created by {username}": "Chaidh a chruthachadh le {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "Chaidh an dearbh-aithne làithreach atharrachadh gu {identityName} airson an tachartas seo a stiùireadh.", + "Current page": "An duilleag làithreach", + "Custom": "Gnàthaichte", + "Custom URL": "URL gnàthaichte", + "Custom text": "Teacsa gnàthaichte", + "Daily email summary": "Geàrr-chunntas puist-d làitheil", + "Dashboard": "Deas-bhòrd", + "Date": "Ceann-latha", + "Date and time": "Ceann-là ’s àm", + "Date and time settings": "Roghainnean a’ chinn-là ’s an ama", + "Date parameters": "Paramadairean a’ chinn-là", + "Deactivate notifications": "Cuir na brathan à gnìomh", + "Decline": "Diùlt", + "Decrease": "Lùghdaich", + "Default": "Bun-roghainn", + "Default Mobilizon privacy policy": "Poileasaidh prìobhaideachd Mhobilizon bhunaiteach", + "Default Mobilizon terms": "Teirmichean Mhobilizon bunaiteach", + "Delete": "Sguab às", + "Delete account": "Sguab às an cunntas", + "Delete conversation": "Sguab às an còmhradh", + "Delete discussion": "Sguab às an deasbad", + "Delete event": "Sguab às an tachartas", + "Delete everything": "Sguab às a h-uile rud", + "Delete group": "Sguab às am buidheann", + "Delete my account": "Sguab às an cunntas agam", + "Delete post": "Sguab às am post", + "Delete this discussion": "Sguab às an deasbad seo", + "Delete this identity": "Sguab às an dearbh-aithne seo", + "Delete your identity": "Sguab às an dearbh-aithne agad", + "Delete {eventTitle}": "Sguab às {eventTitle}", + "Delete {preferredUsername}": "Sguab às {preferredUsername}", + "Deleting comment": "A’ sguabadh às am beachd", + "Deleting event": "A’ sguabadh às an tachartais", + "Deleting my account will delete all of my identities.": "Ma sguabas mi às an cunntas agam, thèid gach dearbh-aithne agam a sguabadh às cuideachd.", + "Deleting your Mobilizon account": "A’ sguabadh às an cunntas Mobilizon agad", + "Demote": "Ìslich", + "Description": "Tuairisgeul", + "Details": "Mion-fhiosrachadh", + "Didn't receive the instructions?": "Nach d’fhuair thu an stiùireadh?", + "Disabled": "À comas", + "Discussions": "Deasbadan", + "Discussions list": "Liosta nan deasbadan", + "Display name": "Ainm-taisbeanaidh", + "Display participation price": "Seall prìs a’ chom-pàirteachaidh", + "Displayed nickname": "Am far-ainm a chithear", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Thèid seo a shealltainn air an duilleag-dhachaigh agus am measg nan tagaichean meata. Mìnich dè th’ ann am Mobilizon agus dè tha sònraichte mun ionstans agad ann an earrann a-mhàin.", + "Do not receive any mail": "Na faigh post-d idir", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "A bheil thu cinnteach gu bheil thu airson an cunntas seo a chur à rèim? Thèid gach pròifil a’ chleachdaiche a sguabadh às.", + "Do you wish to {create_event} or {explore_events}?": "A bheil thu airson {create_event} no {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "A bheil thu airson {create_group} no {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "Am bi an tachartas feumach air dearbhadh uaireigin eile no an deach a chur dheth?", + "Domain": "Àrainn", + "Draft": "Dreachd", + "Drafts": "Dreachdan", + "Due on": "An dùil air", + "Duplicate": "Dùblaich", + "Edit": "Deasaich", + "Edit post": "Deasaich am post", + "Edit profile {profile}": "Deasaich pròifil {profile}", + "Edit user email": "Deasaich post-d a’ chleachdaiche", + "Edited {ago}": "Air a dheasachadh {ago}", + "Edited {relative_time} ago": "Chaidh a dheasachadh {relative_time} air ais", + "Eg: Stockholm, Dance, Chess…": "M.e.: Steòrnabhagh, Cèilidh, Spòrs…", + "Either on the {instance} instance or on another instance.": "Air an ionstans {instance} no air ionstans eile.", + "Either the account is already validated, either the validation token is incorrect.": "Chaidh an cunntas a dhearbhadh mo thràth no chan eil tòcan an dearbhaidh mar bu chòir.", + "Either the email has already been changed, either the validation token is incorrect.": "Chaidh am post-d atharrachadh mu thràth no chan eil tòcan an dearbhaidh mar bu chòir.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Chaidh an t-iarrtas air com-pàirteachadh a dhearbhadh mu thràth no chan eil tòcan a’ chom-pàirteachaidh mar bu chòir.", + "Element title": "Tiotal na h-eileamaid", + "Element value": "Luach na h-eileamaid", + "Email": "Post-d", + "Email address": "Seòladh puist-d", + "Email validate": "Dearbh am post-d", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "Cha bhi litrichean mòra ann am post-d mar as trice, dèan cinnteach nach do rinn thu mearachd sgrìobhaidh.", + "Enabled": "An comas", + "Ends on…": "Thig e gu crìoch…", + "Enter the link URL": "Cuir a-steach URL a’ cheangail", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Cuir a-steach an seòladh puist-d agad gu h-ìosal agus cuiridh sinn stiùireadh thugad air mar a dh’atharraicheas tu am facal-faire agad.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Cuir a-steach a’ phoileasaidh agad fhèin. Tha tagaichean HTML ceadaichte. Tha {mobilizon_privacy_policy} ’ga solar mar theamplaid.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Cuir a-steach na teirmichean agad fhèin. Tha tagaichean HTML ceadaichte. Tha {mobilizon_terms} ’gan solar mar theamplaid.", + "Error": "Mearachd", + "Error details copied!": "Chaidh lethbhreac dhen mhion-fhiosrachadh a dhèanamh!", + "Error message": "Teachdaireachd na mearachd", + "Error stacktrace": "Stacktrace na mearachd", + "Error while changing email": "Mearachd le atharrachadh a’ phuist-d", + "Error while loading the preview": "Mearachd le luchdadh an ro-sheallaidh", + "Error while login with {provider}. Retry or login another way.": "Mearachd a’ clàradh a-steach le {provider}. Feuch ris a-rithist no clàradh a-steach air dòigh eile.", + "Error while login with {provider}. This login provider doesn't exist.": "Mearachd a’ clàradh a-steach le {provider}. Chan eil an solaraiche clàraidh a-steach seo ann.", + "Error while reporting group {groupTitle}": "Tachair mearachd leis a’ ghearan mun bhuidheann {groupTitle}", + "Error while subscribing to push notifications": "Mearachd le fo-sgrìobhadh air brathan putaidh", + "Error while suspending group": "Mearachd le cur à rèim a’ bhuidhinn", + "Error while updating participation status inside this browser": "Mearachd le ùrachadh staid mun ghabhail pàirt am broinn a’ bhrabhsair seo", + "Error while validating account": "Mearachd le dearbhadh a’ chunntais", + "Error while validating participation request": "Mearachd le dearbhadh an iarrtais air com-pàirteachadh", + "Etherpad notes": "Nòtaichean Etherpad", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "’S e roghainn bheusail seach tachartasan, buidhnean is duilleagan Facebook a th’ ann am Mobilizon is chaidh a dhealbhadh air do shon-sa. Sin agad e.", + "Event": "Tachartas", + "Event URL": "URL an tachartais", + "Event already passed": "Tha an tachartas seachad mu thràth", + "Event cancelled": "Chaidh an tachartas a chur gu neoini", + "Event creation": "Cruthachadh tachartais", + "Event description body": "Bodhaig tuairisgeul an tachartais", + "Event edition": "Deasachadh tachartais", + "Event list": "Liosta nan tachartasan", + "Event metadata": "Meata-dàta an tachartais", + "Event page settings": "Roghainnean duilleag an tachartais", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Thèid an roinn-tìde aig seòladh an tachartais a chur air an tachartas gu bunaiteach ma tha gin ann no mur eil, roghainn na roinn-tìde agadsa.", + "Event to be confirmed": "Tachartas ri dearbhadh", + "Event {eventTitle} deleted": "Chaidh an tachartas {eventTitle} a sguabadh às", + "Event {eventTitle} reported": "Chaidh gearan a dhèanamh mun tachartas {eventTitle}", + "Events": "Tachartasan", + "Events nearby": "Tachartasan am fagas", + "Events nearby {position}": "Tachartasan faisg air {position}", + "Events tagged with {tag}": "Tachartasan le taga {tag} riutha", + "Everything": "A h-uile rud", + "Ex: mobilizon.fr": "Can: mobilizon.fr", + "Ex: someone@mobilizon.org": "Can: someone@mobilizon.org", + "Explore": "Rùraich", + "Explore events": "Rùraich na tachartasan", + "Export": "Às-phortaich", + "Failed to get location.": "Cha deach leinn an t-ionad fhaighinn.", + "Failed to save admin settings": "Dh’fhàillig le sàbhaladh roghainnean na rianachd", + "Featured events": "Tachartasan brosnaichte", + "Federated Group Name": "Ainm co-naisgte a’ bhuidhinn", + "Federation": "Co-nasgadh", + "Fediverse account": "Cunntas co-shaoghail", + "Fetch more": "Faigh barrachd dheth", + "Filter": "Criathrag", + "Filter by name": "Criathraich a-rèir ainm", + "Filter by profile or group name": "Criathraich a-rèir ainm pròifil no buidhinn", + "Find an address": "Lorg seòladh", + "Find an instance": "Lorg ionstans", + "Find another instance": "Lorg ionstans eile", + "Find or add an element": "Lorg no cuir eileamaid ris", + "First steps": "Na ciad ceuman", + "Follow": "Lean", + "Follow a new instance": "Lean ionstans ùr", + "Follow instance": "Lean an t-ionstans", + "Follow request pending approval": "Iarrtas leantainn ri aontachadh", + "Follow requests will be approved by a group moderator": "Thèid aontachadh ri iarrtasan leantainn le maor a’ bhuidhinn", + "Follow status": "Staid na leantainn", + "Followed": "’Ga leantainn leinne", + "Followed, pending response": "’Ga leantainn leinne, a’ feitheamh air freagairt", + "Follower": "Neach-leantainn", + "Followers": "Luchd-leantainn", + "Followers will receive new public events and posts.": "Gheibh an luchd-leantainn tachartasan is postaichean poblach.", + "Following": "A’ leantainn", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Ma leanas tu am buidheann, gheibh thu fiosrachadh mu {group_upcoming_public_events} ach ma gheibh thu ballrachd sa bhuidheann, gheibh thu {access_to_group_private_content_as_well}, a’ gabhail a-staigh deasbadan a’ bhuidhinn, goireasan a’ bhuidhinn agus postaichean a tha do bhuill a-mhàin.", + "Followings": "A’ leantainn", + "Follows us": "’Gar leantainn", + "Follows us, pending approval": "’Gar leantainn, a’ feitheamh air dearbhadh", + "For instance: London": "Mar eisimpleir: Glaschu", + "For instance: London, Taekwondo, Architecture…": "Mar eisimpleir: Glaschu, Camanachd, Ailtireachd…", + "Forgot your password ?": "Na dhìochuimhnich thu am facal-faire agad?", + "Forgot your password?": "Na dhìochuimhnich thu am facal-faire agad?", + "Framadate poll": "Cunntas-bheachd Framadate", + "From my groups": "O na buidhnean agam", + "From the {startDate} at {startTime} to the {endDate}": "O {startDate} aig {startTime} gu {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "O {startDate} aig {startTime} gu {endDate} aig {endTime}", + "From the {startDate} to the {endDate}": "O {startDate} gu {endDate}", + "From yourself": "Uat fhèin", + "Fully accessible with a wheelchair": "Gabhaidh a h-uile càil a ruigsinn le cathair-chuibhle", + "Gather ⋅ Organize ⋅ Mobilize": "Cruinnich ⋅ Cuir air dòigh ⋅ Iomair", + "General": "Coitcheann", + "General information": "Fiosrachadh coitcheann", + "General settings": "Roghainnean coitcheann", + "Geolocate me": "Dèan geò-lorgadh orm", + "Geolocation was not determined in time.": "Cha deach leis a’ gheò-lorgadh ri àm.", + "Get informed of the upcoming public events": "Faigh naidheachdan mu thachartasan poblach ri thighinn", + "Getting location": "A’ faighinn an ionaid", + "Getting there": "Mar a gheibh thu ann", + "Glossary": "Briathrachan", + "Go": "Siuthad", + "Go to the event page": "Tadhail air duilleag an tachartais", + "Google Meet": "Google Meet", + "Group": "Buidheann", + "Group Followers": "Luchd-leantainn a’ bhuidhinn", + "Group Members": "Buill dhen bhuidheann", + "Group URL": "URL a’ bhuidhinn", + "Group activity": "Gnìomhachd buidhinn", + "Group address": "Seòladh a’ bhuidhinn", + "Group description body": "Bodhaig tuairisgeul a’ bhuidhinn", + "Group display name": "Ainm-taisbeanaidh a’ bhuidhinn", + "Group name": "Ainm a’ bhuidhinn", + "Group profiles": "Pròifilean bhuidhnean", + "Group settings": "Roghainnean a’ bhuidhinn", + "Group settings saved": "Chaidh roghainnean a’ bhuidhinn a shàbhaladh", + "Group short description": "Tuairisgeul goirid a’ bhuidhinn", + "Group visibility": "So-fhaicsinneachd a’ bhuidhinn", + "Group {displayName} created": "Chaidh am buidheann {displayName} a chruthachadh", + "Group {groupTitle} reported": "Chaidh gearan a dhèanamh mun bhuidheann {groupTitle}", + "Groups": "Buidhnean", + "Groups are not enabled on this instance.": "Chan eil buidhnean an comas air an ionstans seo.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "’S e rumannan airson co-òrdanachadh is ullachadh thachartasan agus stiùireadh coimhearsnachd air dòigh nas fhasa a tha sna buidhnean.", + "Heading Level 1": "Ceann-sgrìobhadh ìre 1", + "Heading Level 2": "Ceann-sgrìobhadh ìre 2", + "Heading Level 3": "Ceann-sgrìobhadh ìre 3", + "Headline picture": "Dealbh cinn-naidheachd", + "Hide replies": "Falaich na freagairtean", + "Home": "Dachaigh", + "Home to {number} users": "Seo dachaigh do {number} luchd-cleachdaidh", + "Homepage": "Duilleag-dhachaigh", + "Hourly email summary": "Geàrr-chunntas puist-d gach uair a thìde", + "I agree to the {instanceRules} and {termsOfService}": "Tha mi ag aontachadh ri {instanceRules} agus {termsOfService}", + "I create an identity": "’S urrainn dhomh dearbh-aithne a chruthachadh", + "I don't have a Mobilizon account": "Chan eil cunntas Mobilizon agam", + "I have a Mobilizon account": "Tha cunntas Mobilizon agam", + "I have an account on another Mobilizon instance.": "Tha cunntas agam air ionstans eile de Mhobilizon.", + "I participate": "Gabhaidh mi pàirt", + "I want to allow people to participate without an account.": "Tha mi airson ceadachadh gun gabh daoine pàirt às aonais cunntais.", + "I want to approve every participation request": "Tha mi airson aontachadh ris a h-uile iarrtas air com-pàirteachadh", + "I've been mentionned in a comment under an event": "Chaidh iomradh a thoirt orm ann am beachd fo thachartas", + "I've been mentionned in a group discussion": "Chaidh iomradh a thoirt orm ann an deasbad buidhinn", + "I've clicked on X, then on Y": "Briog mi air X ’s an uairsin air Y", + "ICS feed for events": "Inbhir ICS dha na tachartasan", + "ICS/WebCal Feed": "Inbhir ICS/WebCal", + "IP Address": "Seòladh IP", + "Identities": "Dearbh-aithnean", + "Identity {displayName} created": "Chaidh an dearbh-aithne {displayName} a chruthachadh", + "Identity {displayName} deleted": "Chaidh an dearbh-aithne {displayName} a sguabadh às", + "Identity {displayName} updated": "Chaidh an dearbh-aithne {displayName} ùrachadh", + "If allowed by organizer": "Ma cheadaicheas an t-eagraiche e", + "If an account with this email exists, we just sent another confirmation email to {email}": "Ma thua cunntas aig a bheil am post-d seo ann, cuiridh sinn post-d dearbhaidh eile gu {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Mas e an t-aon rianaire aig buidheann a tha san dearbh-aithne seo, feumaidh tu a sguabadh às mus urrainn dhut an dearbh-aithne a sguabadh às.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Ma thèid do dhearbh-aithne co-naisgte iarraidh ort, cuiridh tu an t-ainm-cleachdaiche ’s an ionstans agad ri chèile dha. Mar eisimpleir, seo an dearbh-aithne co-naisgte aig a’ chiad phròifil agad:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Thagh thu gu bheil thu airson na com-pàirtichean a dhearbhadh a làimh. Cuiridh Mobilizon post-d thugad nuair a bhios com-pàirtichean ùra ri an dearbhadh ann. ’S urrainn dhut taghadh gu h-ìosal dè cho tric ’s a gheibh thu na brathan sin.", + "If you want, you may send a message to the event organizer here.": "Faodaidh tu teachdaireachd a chur gu eagraiche an tachartais an-seo ma thogras tu.", + "Ignore": "Leig seachad", + "In person": "Gu pearsanta", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "Sa cho-theacs a leanas, ’s e bathar-bog a th’ ann an aplacaid a chleachdas tu airson conaltradh leis an ionstans agad ’s a tha ’ga sholar le sgioba Mobilizon no le treas-phàrtaidh.", + "In the past": "San àm a dh’fhalbh", + "Increase": "Meudaich", + "Instance": "Ionstans", + "Instance Long Description": "Tuairisgeul fada an ionstans", + "Instance Name": "Ainm an ionstans", + "Instance Privacy Policy": "Poileasaidh prìobhaideachd an ionstans", + "Instance Privacy Policy Source": "Tùs poileasaidh prìobhaideachd an ionstans", + "Instance Privacy Policy URL": "URL poileasaidh prìobhaideachd an ionstans", + "Instance Rules": "Riaghailtean an ionstans", + "Instance Short Description": "Tuairisgeul goirid an ionstans", + "Instance Slogan": "Sluagh-ghairm an ionstans", + "Instance Terms": "Teirmichean an ionstans", + "Instance Terms Source": "Tùs teirmichean an ionstans", + "Instance Terms URL": "URL teirmichean an ionstans", + "Instance administrator": "Rianaire ionstans", + "Instance configuration": "Rèiteachadh an ionstans", + "Instance feeds": "Inbhirean an ionstans", + "Instance languages": "Cànain an ionstans", + "Instance rules": "Riaghailtean an ionstans", + "Instance settings": "Roghainnean an ionstans", + "Instances": "Ionstansan", + "Instances following you": "Na h-ionstansan a tha ’gad leantainn", + "Instances you follow": "Na h-ionstansan a leanas tu", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Amalaich an tachartas seo le innealan threas-phàrtaidhean is seall meata-dàta dhan tachartas.", + "Interact": "Gabh eadar-ghnìomh", + "Interact with a remote content": "Dèan conaltradh le susbaint chèin", + "Invite a new member": "Thoir cuireadh do bhall ùr", + "Invite member": "Thoir cuireadh do bhall", + "Invited": "Air cuireadh fhaighinn", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Dh’fhaoidte nach gabh an t-susbaint inntrigeadh air an ionstans seo on a bhac an t-ionstans seo na pròifilean no buidhnean a tha air cùlaibh na susbainte seo.", + "Italic": "Eadailteach", + "Jitsi Meet": "Jitsi Meet", + "Join": "Faigh ballrachd", + "Join {instance}, a Mobilizon instance": "Faigh ballrachd air {instance}, seo ionstans Mobilizon", + "Join group": "Faigh ballrachd sa bhuidheann", + "Join group {group}": "Faigh ballrachd sa bhuidheann {group}", + "Keep the entire conversation about a specific topic together on a single page.": "Cùm an còmhradh gu lèir mu chuspair sònraichte còmhla air an aon duilleag.", + "Key words": "Faclan-luirg", + "Language": "Cànan", + "Last IP adress": "An seòladh IP mu dheireadh", + "Last group created": "Am buidheann mu dheireadh a chruthaich thu", + "Last published event": "An tachartas foillsichte as ùire", + "Last published events": "Na tachartasan foillsichte as ùire", + "Last seen on": "Chunnacas an turas mu dheireadh", + "Last sign-in": "An clàradh a-steach mu dheireadh", + "Last week": "An t-seachdain seo chaidh", + "Latest posts": "Na puist as ùire", + "Learn more": "Barrachd fiosrachaidh", + "Learn more about Mobilizon": "Barrachd fiosrachaidh mu Mhobilizon", + "Learn more about {instance}": "Faigh barrachd fiosrachaidh mu {instance}", + "Leave": "Falbh", + "Leave event": "Fàg an tachartas", + "Leave group": "Fàg am buidheann", + "Leaving event \"{title}\"": "A’ fàgail an tachartais “{title}”", + "Legal": "Nòtaichean laghail", + "Let's define a few settings": "Nach suidhich sinn roghainn no dhà?", + "License": "Ceadachas", + "Limited number of places": "Àiteachan cuingichte", + "List title": "Tiotal na liosta", + "Live": "Beò", + "Load more": "Luchdaich barrachd dheth", + "Load more activities": "Luchdaich barrachd gnìomhachdan", + "Loading comments…": "A’ luchdadh nam beachdan…", + "Local": "Ionadail", + "Local time ({timezone})": "An t-àm ionadail ({timezone})", + "Local times ({timezone})": "Na h-amannan ionadail ({timezone})", + "Locality": "Ionad", + "Location": "Ionad", + "Log in": "Clàraich a-steach", + "Log out": "Clàraich a-mach", + "Login": "Clàraich a-steach", + "Login on Mobilizon!": "Clàraich a-steach air Mobilizon!", + "Login on {instance}": "Clàraich a-steach air {instance}", + "Login status": "Staid a’ chlàraidh a-steach", + "Main languages you/your moderators speak": "Na prìomh-chànanan a bhios agad ’s aig na maoir", + "Manage participations": "Stiùir na com-pàirteachaidhean", + "Manually approve new followers": "Aontaich ri luchd-leantainn ùra a làimh", + "Manually invite new members": "Thoir cuireadh do bhuill ùra a làimh", + "Mark as resolved": "Cuir comharra gun deach fhuasgladh", + "Member": "Ball", + "Members": "Buill", + "Members-only post": "Post do bhuill a-mhàin", + "Membership requests will be approved by a group moderator": "Thèid aontachadh ri iarrtasan ballrachd le maor a’ bhuidhinn", + "Memberships": "Ballrachdan", + "Mentions": "Iomraidhean", + "Message": "Teachdaireachd", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "’S e lìonra co-naisgte a th’ ann am Mobilizon ’S urrainn dhut conaltradh leis an tachartas seo o fhrithealaiche eile.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "’S e bathar-bog co-naisgte a th’ ann am Mobilizon. Is ciall dha seo gur urrainn dhut – a-rèir roghainnean rianachd a’ cho-nasgaidh –conaltradh le susbaint o ionstansan eile, can gum faigh thu ballrachd ann am buidheann no gun gabh thu pàirt ann an tachartas a chaidh a chruthachadh am badeigin eile.", + "Mobilizon is a tool that helps you find, create and organise events.": "’S e acainn a th’ ann am Mobilizon a chuidicheas thu ach an lorg, an cruthaich ’s an cuir thu air dòigh tachartasan.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Chan e mòr-ùrlar a th’ ann am Mobilizon ach pailteas de làraichean-lìn Mobilizon a tha co-cheangailte ri càch a chèile.", + "Mobilizon software": "Bathar-bog Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Cleachdaidh Mobilizon siostam de phròifilean airson do ghnìomhachdan a chumail fa leth. Faodaidh tu na thogras tu de phròifilean a chruthachadh.", + "Mobilizon version": "Tionndadh de Mhobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Cuiridh Mobilizon post-d thugad nuair a thig atharrachadh cudromach air na tachartasan sa bhios tu an làthair: an ceann-là ’s àm, an seòladh, gabhail ris no cur dheth is msaa.", + "Moderate new members": "Dèan maorsainneachd air buill ùra", + "Moderated comments (shown after approval)": "Beachdan fo mhaoirsainneachd (thèid an sealltainn as dèidh aontachaidh)", + "Moderation": "Maorsainneachd", + "Moderation log": "Loga na maorsainneachd", + "Moderation logs": "Logaichean maorsainneachd", + "Moderator": "Maor", + "Move": "Gluais", + "Move \"{resourceName}\"": "Gluais “{resourceName}”", + "Move resource to the root folder": "Gluais an goireas dhan phasgan freumha", + "Move resource to {folder}": "Gluais an goireas gu {folder}", + "My account": "An cunntas agam", + "My events": "Na tachartasan agam", + "My groups": "Na buidhnean agam", + "My identities": "Na dearbh-aithnean agam", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "AN AIRE! Cha dug neach-lagha sùil air na teirmichean bunaiteach idir agus mar sin chan eil sinn an dùil gun solar iad dìon laghail slàn anns gach suidheachadh do rianaire ionstans a chleachdas iad. Cuideachd, chan eil iad sònraichte do gach dùthaich is uachdranas laghail. Mur eil thu cinnteach, bruidhinn ri neach-lagha.", + "Name": "Ainm", + "Navigated to {pageTitle}": "Chaidh do sheòladh gu {pageTitle}", + "New discussion": "Deasbad ùr", + "New email": "Post-d ùr", + "New folder": "Pasgan ùr", + "New link": "Ceangal ùr", + "New members": "Buill ùra", + "New note": "Nòta ùr", + "New password": "Facal-faire ùr", + "New post": "Post ùr", + "New profile": "Pròifil ùr", + "Next": "Air adhart", + "Next month": "An ath mhìos", + "Next page": "An ath-dhuilleag", + "Next week": "An ath sheachdain", + "No address defined": "Cha deach seòladh a mhìneachadh", + "No closed reports yet": "Cha deach gearan a dhùnadh fhathast", + "No comment": "Gun bheachd", + "No comments yet": "Chan eil beachd ann fhathast", + "No discussions yet": "Chan eil deasbad ann fhathast", + "No end date": "Gun latha crìochnachaidh", + "No events found": "Cha deach tachartas sam bith a lorg", + "No follower matches the filters": "Chan eil neach-leantainn sam bith a’ maidseadh nan criathragan", + "No group found": "Cha deach buidheann sam bith a lorg", + "No group matches the filters": "Chan eil buidheann sam bith a’ maidseadh nan criathragan", + "No group member found": "Cha deach ball a lorg sa bhuidheann", + "No groups found": "Cha deach buidheann sam bith a lorg", + "No information": "Gun fhiosrachadh", + "No instance follows your instance yet.": "Chan eil ionstans sam bith a’ leantainn an ionstans agad-sa fhathast.", + "No instance found.": "Cha deach ionstans a lorg.", + "No instance to approve|Approve instance|Approve {number} instances": "Aontaich ri {number} ionstans|Aontaich ri {number} ionstans|Aontaich ri {number} ionstansan|Aontaich ri {number} ionstans", + "No instance to reject|Reject instance|Reject {number} instances": "Diùlt {number} ionstans|Diùlt {number} ionstans|Diùlt {number} ionstansan|Diùlt {number} ionstans", + "No instance to remove|Remove instance|Remove {number} instances": "Thoir air falbh {number} ionstans|Thoir air falbh {number} ionstans|Thoir air falbh {number} ionstansan|Thoir air falbh {number} ionstans", + "No instances match this filter. Try resetting filter fields?": "Chan eil ionstans sam bith a’ freagairt ris a’ chriathrag seo. Saoil an ath-shuidhich thu raointean na criathraige?", + "No languages found": "Cha deach cànan a lorg", + "No member matches the filters": "Chan eil ball sam bith a’ maidseadh nan criathragan", + "No members found": "Cha deach ball a lorg", + "No memberships found": "Cha deach ballrachd a lorg", + "No message": "Chan eil teachdaireachd ann", + "No moderation logs yet": "Chan eil loga maorsainneachd ann fhathast", + "No more activity to display.": "Chan eil barrachd ghnìomhan ri an sealltainn ann.", + "No one is participating|One person participating|{going} people participating": "{going} chom-pàirtiche| {going} chom-pàirtiche| {going} com-pàirtichean| {going} com-pàirtiche", + "No open reports yet": "Chan eil gearan gun fhuasgladh ann", + "No organized events found": "Cha deach tachartas a tha ’ga chur air dòigh a lorg", + "No organized events listed": "Chan eil tachartas a tha ’ga chur air dòigh air an liosta", + "No participant matches the filters": "Chan eil com-pàirtiche sam bith a’ maidseadh nan criathragan", + "No participant to approve|Approve participant|Approve {number} participants": "Aontaich ri {number} chom-pàirtiche|Aontaich ri {number} chom-pàirtiche|Aontaich ri {number} com-pàirtichean|Aontaich ri {number} com-pàirtiche", + "No participant to reject|Reject participant|Reject {number} participants": "Diùlt {number} chom-pàirtiche|Diùlt {number} chom-pàirtiche|Diùlt {number} com-pàirtichean|Diùlt {number} com-pàirtiche", + "No participations listed": "Chan eil com-pàirtiche air an liosta", + "No posts found": "Cha deach post a lorg", + "No posts yet": "Chan eil post ann fhathast", + "No profile matches the filters": "Chan eil pròifil sam bith a’ maidseadh nan criathragan", + "No public upcoming events": "Cha bhi tachartas poblach ann a dh’aithghearr", + "No resolved reports yet": "Cha deach gearan fuasgladh fhathast", + "No resources in this folder": "Chan eil goireas sa phasgan seo", + "No resources selected": "Chaidh {count} ghoireas a thaghadh|Chaidh {count} ghoireas a thaghadh|Chaidh {count} goireasan a thaghadh|Chaidh {count} goireas a thaghadh", + "No resources yet": "Chan eil goireas ann fhathast", + "No results for \"{queryText}\"": "Cha deach toradh a lorg airson “{queryText}”", + "No results for {search}": "Cha deach toradh a lorg airson {search}", + "No rules defined yet.": "Cha deach riaghailt a mhìneachadh fhathast.", + "No user matches the filter": "Chan eil cleachdaiche sam bith a’ maidseadh na criathraige", + "No user matches the filters": "Chan eil cleachdaiche sam bith a’ maidseadh nan criathragan", + "None": "Chan eil gin", + "Not accessible with a wheelchair": "Cha ghabh a ruigsinn le cathair-chuibhle", + "Not approved": "Gun aonta", + "Not confirmed": "Gun dearbhadh", + "Notes": "Nòtaichean", + "Notification before the event": "Brath ron tachartas", + "Notification on the day of the event": "Brath air latha an tachartais", + "Notification settings": "Roghainnean nam brathan", + "Notifications": "Brathan", + "Notifications for manually approved participations to an event": "Brathan mu chom-pàirteachaichean air tachartas a chaidh aontachadh riutha à làimh", + "Notify participants": "Cuir brath dha na com-pàirtichean", + "Notify the user of the change": "Leig fios leis a’ chleachdaiche mun atharrachadh", + "Now, create your first profile:": "Nise, cruthaich a’ chiad phròifil agad:", + "Number of places": "Co mheud àite", + "OK": "Ceart ma-thà", + "Old password": "An seann fhacal-faire", + "On {date}": "{date}", + "On {date} ending at {endTime}": "{date}, a’ crìochnachadh aig {endTime}", + "On {date} from {startTime} to {endTime}": "{date} o {startTime} gu {endTime}", + "On {date} starting at {startTime}": "{date}, a’ tòiseachadh aig {startTime}", + "On {instance} and other federated instances": "Air {instance} agus ionstansan co-naisgte eile", + "Online": "Air loidhne", + "Online ticketing": "Ticeadan air loidhne", + "Online upcoming events": "Tachartasan air loidhne ri thighinn", + "Only accessible through link": "Cha ghabh inntrigeadh ach le ceangal", + "Only accessible through link (private)": "Cha ghabh inntrigeadh ach le ceangal (prìobhaideach)", + "Only accessible to members of the group": "Cha ghabh inntrigeadh ach le buill a’ bhuidhinn", + "Only alphanumeric lowercased characters and underscores are supported.": "Chan eil taic ach ri litrichean gun sràcan, àireamhan is fo-loidhnichean.", + "Only group members can access discussions": "Chan fhaod ach buill a’ bhuidhinn na deasbadan inntrigeadh", + "Only group moderators can create, edit and delete events.": "Chan urrainn ach do mhaoir tachartasan a chruthachadh, a dheasachadh ’s a sguabadh às.", + "Only group moderators can create, edit and delete posts.": "Chan urrainn ach do mhaoir postaichean a chruthachadh, a dheasachadh ’s a sguabadh às.", + "Only registered users may fetch remote events from their URL.": "Chan fhaod ach cleachdaichean clàraichte tachartasan cèine fhaighinn on URL aca.", + "Open": "Fosgailte", + "Open a topic on our forum": "Fosgail cuspair air a’ bhòrd-bhrath againn", + "Open an issue on our bug tracker (advanced users)": "Fosgail cùis air tracaiche nam buga againn (luchd-cleachdaidh adhartach)", + "Opened reports": "Gearanan gun fhuasgladh", + "Or": "No", + "Ordered list": "Liosta le òrdugh", + "Organized": "’Ga eagrachadh", + "Organized by": "’Ga eagrachadh le", + "Organized by {name}": "’Ga eagrachadh le {name}", + "Organized events": "Tachartasan ’gan cur air dòigh", + "Organizer": "Eagraiche", + "Organizer notifications": "Brathan an eagraiche", + "Organizers": "Eagraichean", + "Other": "Eile", + "Other actions": "Gnìomhan eile", + "Other notification options:": "Roghainnean eile nam brathan:", + "Other software may also support this.": "Dh’fhaoidte gun doir bathar-bog eile taic ri seo cuideachd.", + "Other users with the same IP address": "Cleachdaichean eile aig a bheil an t-aon seòladh IP", + "Other users with the same email domain": "Cleachdaichean eile aig a bheil an aon àrainn puist-d", + "Otherwise this identity will just be removed from the group administrators.": "Air neo thèid an dearbh-aithne seo a thoirt air falbh le rianairean a’ bhuidhinn.", + "Owncast": "Owncast", + "Page": "Duilleag", + "Page limited to my group (asks for auth)": "Duilleag cuingichte air a’ bhuidheann agam (thèid dearbhadh iarraidh)", + "Page not found": "Cha deach an duilleag a lorg", + "Parent folder": "Pasgan pàrant", + "Partially accessible with a wheelchair": "Gabhaidh pàirt dheth a ruigsinn le cathair-chuibhle", + "Participant": "Com-pàirtiche", + "Participants": "Com-pàirtichean", + "Participate": "Gabh pàirt ann", + "Participate using your email address": "Gabh pàirt ann leis an t-seòladh puist-d agad", + "Participation approval": "Aontachadh a’ chom-pàirteachaidh", + "Participation confirmation": "Dearbhadh a’ chom-pàirteachaidh", + "Participation notifications": "Brathan mu chom-pàirteachaidhean", + "Participation requested!": "Chaidh com-pàirteachadh iarraidh!", + "Participation with account": "Com-pàirteachadh le cunntas", + "Participation without account": "Com-pàirteachadh gun chunntas", + "Participations": "Com-pàirteachaidhean", + "Password": "Facal-faire", + "Password (confirmation)": "Facal-faire (dearbhadh)", + "Password reset": "Ath-shuidheachadh an fhacail-fhaire", + "Past events": "Tachartasan a tha seachad mu thràth", + "PeerTube live": "PeerTube beò", + "PeerTube replay": "Ath-chluich PeerTube", + "Pending": "Ri dhèiligeadh", + "Personal feeds": "Inbhirean pearsanta", + "Photo by {author} on {source}": "Dealbh le {author} air {source}", + "Pick": "Tagh", + "Pick a profile or a group": "Tagh pròifil no buidheann", + "Pick an identity": "Tagh dearbh-aithne", + "Pick an instance": "Tagh ionstans", + "Please add as many details as possible to help identify the problem.": "Cuir nas urrainn dhut de dh’fhiosrachadh ris ach an aithnicheamaid an duilgheadas.", + "Please check your spam folder if you didn't receive the email.": "Thoir sùil air pasgan an spama agad mur fhuair thu am post-d.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Cuir fios gu rianaire an ionstans Mobilizon seo ma tha thu dhen bheachd gur e mearachd a th’ ann.", + "Please do not use it in any real way.": "Na cleachd ann an da-rìribh e.", + "Please enter your password to confirm this action.": "Cuir a-steach am facal-faire agad gus a dhearbhadh.", + "Please make sure the address is correct and that the page hasn't been moved.": "Dèan cinnteach gu bheil an t-seòladh mar bu chòir ’s nach deach an duilleag a ghluasad.", + "Please read the {fullRules} published by {instance}'s administrators.": "Leugh {fullRules} a chaidh fhoillseachadh leis na rianairean aig {instance}.", + "Popular groups nearby {position}": "Buidhnean fèillmhor faisg air {position}", + "Post": "Post", + "Post URL": "URL a’ phuist", + "Post a comment": "Postaich beachd", + "Post a reply": "Postaich freagairt", + "Post body": "Bodhaig a’ phuist", + "Post {eventTitle} reported": "Chaidh gearan a dhèanamh mun phost {eventTitle}", + "Postal Code": "Còd-puist", + "Posts": "Postaichean", + "Powered by Mobilizon": "Le cumhachd Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Le cumhachd {mobilizon}. © 2018 – {date} Luchd-cuideachaidh Mobilizon – Le taic maoineachaidh o {contributors}.", + "Preferences": "Roghainnean", + "Previous": "Air ais", + "Previous email": "Am post-d roimhe", + "Previous month": "Am mìos roimhe", + "Previous page": "An duilleag roimhpe", + "Price sheet": "Siota phrìsean", + "Privacy": "Prìobhaideachd", + "Privacy Policy": "Poileasaidh prìobhaideachd", + "Privacy policy": "Poileasaidh prìobhaideachd", + "Private event": "Tachartas prìobhaideach", + "Private feeds": "Inbhirean prìobhaideach", + "Profile": "Pròifil", + "Profile feeds": "Inbhirean na pròifile", + "Profiles": "Pròifilean", + "Profiles and federation": "Pròifilean agus co-nasgadh", + "Promote": "Àrdaich", + "Public": "Poblach", + "Public RSS/Atom Feed": "Inbhir RSS/Atom poblach", + "Public comment moderation": "Maorsainneachd nam beachdan poblach", + "Public event": "Tachartas poblach", + "Public feeds": "Inbhirean poblach", + "Public iCal Feed": "Inbhir iCal poblach", + "Public preview": "Ro-shealladh poblach", + "Publication date": "Ceann-là an fhoillseachaidh", + "Publish": "Foillsich", + "Published by {name}": "Air fhoillseachadh le {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Chaidh tachartasan fhoillseachadh le {comments} beachd(an) riutha agus {participations} com-pàirteachadh/com-pàirteachaidhean air an dearbhadh", + "Push": "Putadh", + "Quote": "Iomradh", + "RSS/Atom Feed": "Inbhir RSS/Atom", + "Radius": "Astar", + "Recap every week": "Cuimhneachan seachdaineil", + "Receive one email for each activity": "Faigh post-d fa leth air gach gnìomhachd", + "Receive one email per request": "Faigh aon phost-d air gach iarrtas", + "Redirecting in progress…": "’Gad ath-stiùireadh…", + "Redirecting to Mobilizon": "’Gad ath-stiùireadh gu Mobilizon", + "Redirecting to content…": "’Gad ath-stiùireadh dhan t-susbaint…", + "Redo": "Ath-dhèan", + "Refresh profile": "Ath-nuadhaich a’ phròifil", + "Regenerate new links": "Ath-ghin ceanglaichean ùra", + "Region": "Roinn-dùthcha", + "Register": "Clàraich", + "Register an account on {instanceName}!": "Clàraich cunntas air {instanceName}!", + "Register on this instance": "Clàraich leis an ionstans seo", + "Registration is allowed, anyone can register.": "Tha clàradh ceadaichte, ’s urrainn do dhuine sam bith clàradh.", + "Registration is closed.": "Tha an clàradh dùinte.", + "Registration is currently closed.": "Tha an clàradh dùinte aig an àm seo.", + "Registrations": "Clàraidhean", + "Registrations are restricted by allowlisting.": "Tha an clàradh cuingichte le liosta ceadachaidh.", + "Reject": "Diùlt", + "Reject follow": "Diùlt an iarrtas leantainn", + "Reject member": "Diùlt am ball", + "Rejected": "Air a dhiùltadh", + "Remember my participation in this browser": "Cùm an com-pàirteachadh agam an cuimhne a’ bhrabhsair seo", + "Remove": "Thoir air falbh", + "Remove link": "Thoir an ceangal air falbh", + "Rename": "Thoir ainm ùr air", + "Rename resource": "Thoir ainm ùr air a’ ghoireas", + "Reopen": "Ath-fhosgail", + "Replay": "Ath-chluich", + "Reply": "Freagair", + "Report": "Dèan gearan", + "Report #{reportNumber}": "Gearan #{reportNumber}", + "Report status": "Staid a’ ghearain", + "Report this comment": "Dèan gearan mun bheachd seo", + "Report this event": "Dèan gearan mun tachartas seo", + "Report this group": "Dèan gearan mun bhuidheann seo", + "Report this post": "Dèan gearan mun phost seo", + "Reported": "Air gearan a dhèanamh", + "Reported by": "Chaidh gearan a dhèanamh le", + "Reported by someone on {domain}": "Rinn cuideigin air {domain} gearan mu dhèidhinn", + "Reported by {reporter}": "Rinn {reporter} gearan mu dhèidhinn", + "Reported group": "Chaidh gearan a dhèanamh mun bhuidheann", + "Reported identity": "Chaidh gearan a dhèanamh air dearbh-aithne", + "Reports": "Gearanan", + "Reports list": "Liosta nan gearanan", + "Request for participation confirmation sent": "Chaidh iarrtas air dearbhadh a’ chom-pàirteachaidh a chur", + "Resend confirmation email": "Cuir am post-d dearbhaidh a-rithist", + "Resent confirmation email": "Chaidh am post-d dearbhaidh a chur a-rithist", + "Reset": "Ath-shuidhich", + "Reset filters": "Ath-shuidhich na criathragan", + "Reset my password": "Ath-shuidhich am facal-faire agam", + "Reset password": "Ath-shuidhich am facal-faire", + "Resolved": "Air fhuasgladh", + "Resource provided is not an URL": "Chan e URL a tha sa ghoireas a chaidh a solar", + "Resources": "Goireasan", + "Restricted": "Cuingichte", + "Return to the group page": "Till gu duilleag a’ bhuidhinn", + "Right now": "An-dràsta fhèin", + "Role": "Dreuchd", + "Rules": "Riaghailtean", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "’S e teicneolasan crioptachaidh a th’ anns an SSL agus san TLS a thàinig ’na dhèidh a nì dàta conaltraidh tèarainte nuair a chleachdas tu an t-seirbheis. Aithnichidh tu ceangal crioptaichte air loidhne an t-seòlaidh aig a’ bhrabhsair agad nuair a thòisicheas an URL le {https} agus ìomhaigheag glaise ’ga shealltainn air bàr an t-seòlaidh aig a’ bhrabhsair.", + "SSL/TLS": "SSL/TLS", + "Save": "Sàbhail", + "Save draft": "Sàbhail dreachd", + "Schedule": "Sgeideal", + "Search": "Lorg", + "Search events, groups, etc.": "Lorg tachartasan, buidhnean is msaa.", + "Searching…": "’Ga lorg…", + "Select a category": "Tagh roinn-seòrsa", + "Select a language": "Tagh cànan", + "Select a radius": "Tagh astar", + "Select a timezone": "Tagh roinn-tìde", + "Select languages": "Tagh na cànain", + "Select the activities for which you wish to receive an email or a push notification.": "Tagh na gnìomhachdan dhan fhaigh thu post-d no brath putaidh.", + "Send": "Cuir", + "Send email": "Cuir post-d", + "Send feedback": "Cuir do bheachd thugainn", + "Send notification e-mails": "Cuir puist-d bhrathan", + "Send password reset": "Cuir ath-shuidheachadh an fhacail-fhaire", + "Send the confirmation email again": "Cuir am post-d dearbhaidh a-rithist", + "Send the report": "Cuir an gearan", + "Set an URL to a page with your own privacy policy.": "Suidhich an t-URL air duilleag leis a’ phoileasaidh prìobhaideachd agad fhèin.", + "Set an URL to a page with your own terms.": "Suidhich an t-URL air duilleag leis na teirmichean agad fhèin.", + "Settings": "Roghainnean", + "Share": "Co-roinn", + "Share this event": "Co-roinn an tachartas seo", + "Share this group": "Co-roinn am buidheann seo", + "Share this post": "Co-roinn am post seo", + "Short bio": "Sgeul-beatha goirid", + "Show map": "Seall am mapa", + "Show me where I am": "Seall càite a bheil mi", + "Show remaining number of places": "Seall na tha air fhàgail de dh’àiteachan", + "Show the time when the event begins": "Seall an t-àm a thòisicheas an tachartas", + "Show the time when the event ends": "Seall an t-àm a chrìochnaicheas an tachartas", + "Showing events before": "A’ sealltainn tachartasan ro", + "Showing events starting on": "A’ sealltainn tachartasan a tha a’ tòiseachadh aig", + "Sign Language": "Cainnt-shanais", + "Sign in with": "Clàraich a-steach le", + "Sign up": "Clàraich", + "Since you are a new member, private content can take a few minutes to appear.": "On a tha thu ’nad bhall ùr, dh’fhaoidte gun doir e greiseag mus nochd susbaint phrìobhaideach.", + "Skip to main content": "Thoir leum gun phrìomh shusbaint", + "Smoke free": "Gun smocadh", + "Smoking allowed": "Gun smocadh", + "Social": "Sòisealta", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Tha cuid dhe na faclan a tha ’gan cleachdadh san teacsa gu h-ìosal, co-dhiù an e faclan teicnigeach a th’ annta gus nach e, mu bheachdan a tha caran doirbh a thuigsinn ma dh’fhaoidte. Rinn sinn briathrachan ach am bhiod e na b’ fhasa dhut an tuigsinn:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Tha sinn duilich ach cha b’ urrainn dhuinn do bheachd a shàbhaladh. Na gabh dragh, feuchaidh sinn gun càraich sinn an duilgheadas co-dhiù.", + "Starts on…": "Àm-tòiseachaidh…", + "Status": "Staid", + "Stop following instance": "Na lean an t-ionstans tuilleadh", + "Street": "Sràid", + "Submit": "Cuir a-null", + "Subtitles": "Fo-thiotalan", + "Suspend": "Cuir à rèim", + "Suspend group": "Cuir am buidheann à rèim", + "Suspend the account": "Cuir an cunntas à rèim", + "Suspend the account?": "A bheil thu airson an cunntas a chur à rèim?", + "Suspended": "Chaidh a chur à rèim", + "Tag search": "Lorg taga", + "Task lists": "Liostaichean shaothraichean", + "Technical details": "Mion-fhiosrachadh teicnigeach", + "Tentative": "Gun chinnt", + "Tentative: Will be confirmed later": "Gun chinnt: Thèid a dhearbhadh uaireigin eile", + "Terms": "Teirmichean", + "Terms of service": "Teirmichean na seirbheise", + "Text": "Teacsa", + "Thanks a lot, your feedback was submitted!": "Mòran taing, chaidh do bheachdan a chur thugainn!", + "That you follow or of which you are a member": "A tha thu ’ga leantainn no ’nad bhall ann", + "The Big Blue Button video teleconference URL": "URL co-labhairt video Big Blue Button", + "The Google Meet video teleconference URL": "URL co-labhairt video Google Meet", + "The Jitsi Meet video teleconference URL": "URL co-labhairt video Jitsi Meet", + "The Microsoft Teams video teleconference URL": "URL co-labhairt video Microsoft Teams", + "The URL of a pad where notes are being taken collaboratively": "URL pada far an dèid na nòtaichean a ghabhail còmhla", + "The URL of a poll where the choice for the event date is happening": "URL cunntais-bheachd le roghainnean cheann-là dhan tachartas", + "The URL where the event can be watched live": "An t-URL far an urrainnear coimhead air an tachartas bheò", + "The URL where the event live can be watched again after it has ended": "An t-URL far an urrainnear coimhead air an tachartas bheò a-rithist às dèidh a thighinn gu crìoch", + "The Zoom video teleconference URL": "URL co-labhairt video Zoom", + "The account's email address was changed. Check your emails to verify it.": "Chaidh seòladh puist-d a’ chunntais atharrachadh. Thoir sùil air a’ phost-d agad airson a dhearbhadh.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Dh’fhaoidte gu bheil àireamh fhìrinneach nan com-pàirtichean diofraichte on a tha an tachartas seo ’ga òstadh air ionstans eile.", + "The content came from another server. Transfer an anonymous copy of the report?": "Thàinig an t-susbaint o fhrithealaiche eile. A bheil thu airson lethbhreac gun ainm dhen ghearan a thar-chur?", + "The draft event has been updated": "Chaidh dreachd an tachartais ùrachadh", + "The event has a sign language interpreter": "Bidh eadar-theangaiche cainnt-shanais aig an tachartas", + "The event has been created as a draft": "Chaidh an tachartas a chruthachadh mar dreachd", + "The event has been published": "Chaidh an tachartas fhoillseachadh", + "The event has been updated": "Chaidh an tachartas ùrachadh", + "The event has been updated and published": "Chaidh an tachartas ùrachadh ’s fhoillseachadh", + "The event hasn't got a sign language interpreter": "Cha bhi eadar-theangaiche cainnt-shanais aig an tachartas", + "The event is fully online": "Tha an tachartas gu lèir air loidhne", + "The event live video contains subtitles": "Bidh fo-thiotalan aig an tachartas video bheò", + "The event live video does not contain subtitles": "Cha bhi fo-thiotalan aig an tachartas video bheò", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Chuir eagraiche an tachartais romhpa gun dearbh iad na com-pàirteachaidhean a làimh.Am bu mhiann leat nòta a chur ris a mhìnicheas carson a tha thu airson gabhail pàirt san tachartas seo?", + "The event organizer didn't add any description.": "Cha do chuir eagraiche an tachartais tuairisgeul sam bith ris.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Dearbhaidh eagraiche an tachartais romhpa na com-pàirteachaidhean a làimh.On a chuir thu romhad pàirt a ghabhail ann gun chunntas, mìnich carson a bu mhiann leat pàirt a ghabhail san tachartas seo.", + "The event title will be ellipsed.": "Thèid tiotal an tachartais a ghiorrachadh.", + "The event will show as attributed to this group.": "Thèid an tachartas seo iomruineadh dhan bhuidheann seo.", + "The event will show as attributed to this profile.": "Thèid an tachartas seo iomruineadh dhan phròifil seo.", + "The event will show as attributed to your personal profile.": "Thèid an tachartas seo iomruineadh dhan phròifil phearsanta agad.", + "The event {event} was created by {profile}.": "Chaidh an tachartas {event} a chruthachadh le {profile}.", + "The event {event} was deleted by {profile}.": "Chaidh an tachartas {event} a sguabadh às le {profile}.", + "The event {event} was updated by {profile}.": "Chaidh an tachartas {event} ùrachadh le {profile}.", + "The events you created are not shown here.": "Chan fhaic thu na tachartasan a chruthaich thu an-seo.", + "The geolocation prompt was denied.": "Chaidh an geò-lorgadh a dhiùltadh.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "’S urrainn do dhuine sam bith ballrachd fhaighinn sa bhuidheann seo a-nis ach feumaidh rianaire gabhail ris a’ bhallrachd.", + "The group can now be joined by anyone.": "’S urrainn do dhuine sam bith ballrachd fhaighinn sa bhuidheann seo a-nis.", + "The group can now only be joined with an invite.": "Chan urrainnear ballrachd fhaighinn sa bhuidheann seo ach le cuireadh a-nis.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Chithear am buidheann ann an toraidhean luirg gu poblach agus dh’fhaoidte gun dèid a mholadh san earrann rùrachaidh. Cha nochd ach fiosrachadh poblach air an duilleag aige.", + "The group's avatar was changed.": "Chaidh avatar a’ bhuidhinn atharrachadh.", + "The group's banner was changed.": "Chaidh bratach a’ bhuidhinn atharrachadh.", + "The group's physical address was changed.": "Chaidh seòladh fiosaigeach a’ bhuidhinn atharrachadh.", + "The group's short description was changed.": "Chaidh tuairisgeul goirid a’ bhuidhinn atharrachadh.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "’S e an neach no eintiteas a tha a’ ruith an t-ionstans seo de Mhobilizon a th’ ann an rianaire an ionstans.", + "The member was approved": "Chaidh gabhail ris a’ bhall", + "The member was removed from the group {group}": "Chaidh am ball a thoirt air falbh on bhuidheann {group}", + "The membership request from {profile} was rejected": "Chaidh an t-iarrtas aig {profile} air ballrachd a dhiùltadh", + "The only way for your group to get new members is if an admininistrator invites them.": "Chan fhaigh am buidheann agad buill ùra ach ma bheir rianaire cuireadh dhaibh.", + "The organiser has chosen to close comments.": "Chuir an eagraiche romhpa gun dùin iad na beachdan.", + "The page you're looking for doesn't exist.": "Chan eil an duilleag a tha thu a’ lorg ann.", + "The password was successfully changed": "Chaidh am facal-faire atharrachadh", + "The post {post} was created by {profile}.": "Chaidh am post {post} a chruthachadh le {profile}.", + "The post {post} was deleted by {profile}.": "Chaidh am post {post} a sguabadh às le {profile}.", + "The post {post} was updated by {profile}.": "Chaidh am post {post} ùrachadh le {profile}.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Thèid do ghearan a chuir dha na maoir aig an ionstans agad. ’S urrainn dhut mìneachadh carson a tha thu a’ dèanamh gearan mun t-susbaint seo gu h-ìosal.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "Tha an dealbh a thagh thu ro throm. Feumaidh tu faidhle a thaghadh a tha nas lugha na {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Cuidichidh am fiosrachadh teicnigeach mun mhearachd gum fuasgail an luchd-leasachaidh an duilgheadas nas fhasa. Cuir ri do bheachd e.", + "The user has been disabled": "Chaidh an cleachdaiche a chur à comas", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Thèid {default_privacy_policy} a chleachdadh. Thèid a h-eadar-theangachadh gu cànan a’ chleachdaiche.", + "The {default_terms} will be used. They will be translated in the user's language.": "Thèid {default_terms} a chleachdadh. Thèid an eadar-theangachadh gu cànan a’ chleachdaiche.", + "There are {participants} participants.": "Tha {participants} com-pàirtiche(an) ann.", + "There is no activity yet. Start doing some things to see activity appear here.": "Gun ghnìomhachd fhathast. Nochdaidh gnìomhachdan an-seo nuair a bhios tu air rudan a dhèanamh.", + "There will be no way to recover your data.": "Cha bhi dòigh sam bith ann gus an dàta agad aiseag.", + "There's no discussions yet": "Chan eil deasbad ann fhathast", + "These events may interest you": "Dh’fhaoidte gu bheil ùidh agad sna tachartasan seo", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Tha dàta nan tachartasan sa bheil gin dhe na pròifilean agad a’ gabhail pàirt no a chruthaich iad sna h-inbhirean seo. Bu chòir dhut an cumail prìobhaideach. Gheibh thu inbhirean do phròifilean sònraichte air duilleag deasachadh gach pròifile.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Tha dàta nan tachartasan sa bheil a’ phròifil shònraichte seo a’ gabhail pàirt no a chruthaich iad sna h-inbhirean seo. Bu chòir dhut an cumail prìobhaideach. Gheibh thu inbhirean dhan a h-uile pròifil agad ann an roghainnean nam brathan agad.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Gabhaidh an t-ionstans seo de Mhobilizon agus eagraiche an tachartais seo ri com-pàirteachadh gun ainm ach feumaidh tu a dhearbhadh air a’ phost-d.", + "This URL doesn't seem to be valid": "Chan eil coltas dligheach air an URL seo", + "This URL is not supported": "Chan eil taic ris an URL seo", + "This event has been cancelled.": "Chaidh an tachartas seo a chur gu neoini.", + "This event is accessible only through it's link. Be careful where you post this link.": "Cha ghabh an tachartas seo inntrigeadh ach leis a’ cheangal aige. Thoir an aire mus postaich thu an ceangal seo am badeigin.", + "This group doesn't have a description yet.": "Chan eil tuairisgeul aig a’ bhuidheann seo fhathast.", + "This group is a remote group, it's possible the original instance has more informations.": "’S e buidheann cèin a tha seo agus dh’fhaoidte gu bheil barrachd fiosrachaidh aig an ionstans tùsail.", + "This group is accessible only through it's link. Be careful where you post this link.": "Cha ghabh an tachartas seo inntrigeadh ach leis a’ cheangal aige. Thoir an aire mus postaich thu an ceangal seo am badeigin.", + "This group is invite-only": "Feumaidh tu cuireadh airson ballrachd fhaighinn sa bhuidheann seo", + "This group was not found": "Cha deach am buidheann seo a lorg", + "This identifier is unique to your profile. It allows others to find you.": "Tha an t-aithnichear seo àraidh dhan phròifil agad. Leigidh e le càch do lorg.", + "This information is saved only on your computer. Click for details": "Tha dèid am fiosrachadh seo a shàbhaladh ach air a’ choimpiutair agad. Briog airson mion-fhiosrachadh", + "This instance doesn't follow yours.": "Chan eil an t-ionstans seo a’ leantainn an fhir agadsa.", + "This instance hasn't got push notifications enabled.": "Chan eil na brathan putaidh an comas aig an ionstans seo.", + "This instance isn't opened to registrations, but you can register on other instances.": "Chan eil an t-ionstans seo fosgailte a chùm clàraidh ach ’s urrainn dhut clàradh air ionstansan eile.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "’S e an t-ionstans seo {instanceName} ({domain}) a tha ag òstadh na pròifil agad, mar sin cuir ainm-san ’nad chuimhne.", + "This is a demonstration site to test Mobilizon.": "Seo làrach taisbeanaidh airson Mobilizon fheuchainn.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Tha seo coltach ris an ainm-chleachdaiche cho-naisgte agad ({username}) ach do bhuidhnean. Gabhaidh am buidheann a lorg leis sa cho-nasgadh agus ’s e ainm àraidh a bhios ann.", + "This month": "Am mìos seo", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Chan fhaigh ach na buill cothrom air a’ phost seo. Faodaidh tu inntrigeadh a chùm maorsainneachd a-mhàin on a tha thu ’nad mhaor air an ionstans seo.", + "This post is accessible only through it's link. Be careful where you post this link.": "Cha ghabh am post seo inntrigeadh ach leis a’ cheangal aige. Thoir an aire mus postaich thu an ceangal seo am badeigin.", + "This profile is from another instance, the informations shown here may be incomplete.": "Tha a’ phròifil seo o ionstans eile, dh’fhaoidte nach eil am fiosrachadh a chì thu an-seo coileanta.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Tha a’ phròifil seo air an ionstans seo, mar sin feumaidh tu {access_the_corresponding_account} gus a cur à rèim.", + "This profile was not found": "Cha deach a’ phròifil seo a lorg", + "This setting will be used to display the website and send you emails in the correct language.": "Thèid an roghainn seo a chleachdadh airson an làrach-lìn a shealltainn agus puist-d a chur thugad sa chànan cheart.", + "This user doesn't have any profiles": "Chan eil pròifil sam bith aig a’ chleachdaiche seo", + "This user was not found": "Cha deach an cleachdaiche seo a lorg", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Chan eil an làrach-lìn seo fo mhaorsainneachd agus thèid an dàta a chuireas tu a-steach a mhilleadh gu fèin-obrachail gach oidhche aig 00:01 (roinn-tìde Pharais).", + "This week": "An t-seachdain seo", + "This weekend": "An deireadh-seachdain seo", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Sguabaidh seo às / Bheir seo air falbh gach susbaint (tachartasan, beachdan, teachdaireachdan, com-pàirteachaidhean…) a chaidh a chruthachadh leis an dearbh-aithne seo.", + "Time in your timezone ({timezone})": "An t-àm san roinn-tìde agadsa ({timezone})", + "Times in your timezone ({timezone})": "Amannan san roinn-tìde agadsa ({timezone})", + "Timezone": "Roinn-tìde", + "Timezone detected as {timezone}.": "Mhothaich sinn dha {timezone} mar an roinn-tìde agad.", + "Title": "Tiotal", + "To activate more notifications, head over to the notification settings.": "Airson barrachd bhrathan a ghnìomhachadh, tadhail air roghainnean nam brathan.", + "To confirm, type your event title \"{eventTitle}\"": "Airson a dhearbhadh, sgrìobh tiotal do thachartais “{eventTitle}”", + "To confirm, type your identity username \"{preferredUsername}\"": "Airson a dhearbhadh, sgrìobh ainm-cleachdaiche an dearbh-aithne “{preferredUsername}” agad", + "To create and manage multiples identities from a same account": "Airson iomadh dearbh-aithne a chruthachadh ’s a stiùireadh on aon chunntas", + "To create and manage your events": "Airson na tachartasan agad a chruthachadh ’s a stiùireadh", + "To create or join an group and start organizing with other people": "Airson buidheann a chruthachadh no ballrachd fhaighinn ann agus nithean a chur air dòigh le daoine eile", + "To follow groups and be informed of their latest events": "Airson buidhnean a leantainn agus fiosrachadh fhaighinn mu na tachartasan as ùire aca", + "To register for an event by choosing one of your identities": "Airson clàradh le tachartas le tè dhe na dearbh-aithnean agad", + "Today": "An-diugh", + "Tomorrow": "A-màireach", + "Tools": "Innealan", + "Total number of participations": "Com-pàirteachaidhean iomlan", + "Transfer to {outsideDomain}": "Tar-chur gu {outsideDomain}", + "Triggered profile refreshment": "Thèid a’ phròifil ath-nuadhachadh", + "Twitch live": "Twitch beò", + "Twitch replay": "Ath-chluiche Twitch", + "Twitter account": "Cunntas Twitter", + "Type": "Seòrsa", + "Type or select a date…": "Sgrìobh rudeigin no tagh ceann-latha…", + "URL": "URL", + "URL copied to clipboard": "Chaidh lethbhreac dhen URL a chur air an stòr-bhòrd", + "Unable to copy to clipboard": "Cha b’ urrainn dhuinn a chur air an stòr-bhòrd", + "Unable to create the group. One of the pictures may be too heavy.": "Cha b’ urrainn dhuinn am buidheann a chruthachadh. Dh’fhaoidte gu bheil fear de na dealbhan ro throm.", + "Unable to create the profile. The avatar picture may be too heavy.": "Cha b’ urrainn dhuinn a’ phròifil a chruthachadh. Dh’fhaoidte gu bheil dealbh an avatar ro throm.", + "Unable to detect timezone.": "Cha do dh’aithnich sinn an roinn-tìde.", + "Unable to load event for participation. The error details are provided below:": "Cha b’ urrainn dhuinn an tachartas a luchdadh dhan chom-pàirteachadh. Chì thu fiosrachadh mun mhearachd gu h-ìosal:", + "Unable to save your participation in this browser.": "Cha b’ urrainn dhuinn do chom-pàirteachadh a shàbhaladh sa bhrabhsair seo.", + "Unable to update the profile. The avatar picture may be too heavy.": "Cha b’ urrainn dhuinn a’ phròifil ùrachadh. Dh’fhaoidte gu bheil dealbh an avatar ro throm.", + "Underline": "Fo-loidhne", + "Undo": "Neo-dhèan", + "Unfollow": "Na lean tuilleadh", + "Unfortunately, your participation request was rejected by the organizers.": "Gu mì-fhortanach, dhiùlt na h-eagraichean do chom-pàirteachadh.", + "Unknown": "Chan eil fhios", + "Unknown actor": "Actar nach aithne dhuinn", + "Unknown error.": "Mearachd nach aithne dhuinn.", + "Unknown value for the openness setting.": "Chaidh luach nach aithne dhuinn a shuidheachadh air dè cho fosgailte ’s a tha am buidheann.", + "Unlogged participation": "Com-pàirteachadh gun logadh", + "Unsaved changes": "Atharraichean gun sàbhaladh", + "Unsubscribe to browser push notifications": "Cuir crìoch air an fho-sgrìobhadh air brathan putaidh", + "Unsuspend": "Cuir an gnìomh a-rithist", + "Upcoming": "Ri thighinn", + "Upcoming events": "Tachartasan ri thighinn", + "Upcoming events from your groups": "Tachartasan ri thighinn o na buidhnean agad", + "Update": "Ùraich", + "Update app": "Ùraich an aplacaid", + "Update discussion title": "Ùraich tiotal an deasbaid", + "Update event {name}": "Ùraich an tachartas {name}", + "Update group": "Ùraich am buidheann", + "Update my event": "Ùraich an tachartas agam", + "Update post": "Ùraich am post", + "Updated": "Air ùrachadh", + "Uploaded media size": "Meud a’ mheadhain a chaidh a luchdadh suas", + "Uploaded media total size": "Meud iomlan nam meadhanan a chaidh a luchdadh suas", + "Use my location": "Cleachd an t-ionad agam", + "User": "Cleachdaiche", + "User settings": "Roghainnean a’ chleachdaiche", + "Username": "Ainm-cleachdaiche", + "Users": "Cleachdaichean", + "Validating account": "Dearbhadh a’ chunntais", + "Validating email": "Dearbhadh puist-d", + "Video Conference": "Co-labhairt video", + "View a reply": "Seall {totalReplies} fhreagairt|Seall {totalReplies} fhreagairt|Seall {totalReplies} freagairtean|Seall {totalReplies} freagairt", + "View account on {hostname} (in a new window)": "Seall an cunntas air {hostname} (ann an uinneag ùr)", + "View all": "Seall a h-uile", + "View all events": "Seall a h-uile tachartas", + "View all posts": "Seall a h-uile post", + "View event page": "Seall duilleag an tachartais", + "View everything": "Seall a h-uile càil", + "View full profile": "Seall a’ phròifil shlàn", + "View less": "Seall nas lugha", + "View more": "Seall barrachd", + "View more events around {position}": "Seall barrachd thachartasan mu thimcheall {position}", + "View more groups around {position}": "Seall barrachd bhuidhnean mu thimcheall {position}", + "View more online events": "Seall barrachd thachartasan air loidhne", + "View page on {hostname} (in a new window)": "Seall an duilleag air {hostname} (ann an uinneag ùr)", + "View past events": "Seall na tachartasan san àm a dh’fhalbh", + "View the group profile on the original instance": "Faic pròifil a’ buidhinn air an ionstans tùsail", + "Visibility was set to an unknown value.": "Chaidh luach nach aithne dhuinn a shuidheachadh air an t-so-fhaicsinneachd.", + "Visibility was set to private.": "Chaidh so-fhaicsinneachd phrìobhaideach a shuidheachadh air.", + "Visibility was set to public.": "Chaidh so-fhaicsinneachd phoblach a shuidheachadh air.", + "Visible everywhere on the web": "Chithear air feadh an lìn e", + "Visible everywhere on the web (public)": "Chithear air feadh an lìn e (poblach)", + "Waiting for organization team approval.": "A’ feitheamh air aontachadh leis an sgioba eagrachaidh.", + "Warning": "Rabhadh", + "We collect your feedback and the error information in order to improve this service.": "Cruinnichidh sinn do bheachdan agus am fiosrachadh mun mhearachd ach an doir sinn piseach air an t-seirbheis seo.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Cha b’ urrainn dhuinn an com-pàirteachadh agad a shàbhaladh sa bhrabhsair seo. Na gabh dragh, dhearbh thu gun gabh thu pàirt ann ach cha b’ urrainn dhuinn sin a shàbhaladh sa bhrabhsair seo ri linn duilgheadas teicnigeach.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Bheir sinn piseach air a’ bhathar-bhog le taic do bheachdan. Tha dà dhòigh ann airson innse dhuinn mu dhèidhinn na trioblaide seo (gu mì-fhortanach, feumaidh tu cunntas a chruthachadh dhaibh):", + "We just sent an email to {email}": "Tha sinn air post-d a chur gu {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Cleachdaidh sinn an roinn-tìde agad ach an cuir sinn na brathan mu thachartas thugad aig an àm cheart.", + "We will redirect you to your instance in order to interact with this event": "Bheir sinn dhan ionstans agad-sa thu airson conaltradh leis an tachartas seo", + "We will redirect you to your instance in order to interact with this group": "Bheir sinn dhan ionstans agad-sa thu airson conaltradh leis a’ bhuidheann seo", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Cuiridh sinn post-d thugad uair a thìde mus tòisich an tachartas a dhèanamh cinnteach nach dìochuimhnich thu e.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Cleachdaidh sinn an roinn-tìde agad airson cuimhneachan a chur thugad sa mhadainn ron tachartas.", + "Website": "Làrach-lìn", + "Website / URL": "Làrach-lìn / URL", + "Weekly email summary": "Geàrr-chunntas puist-d seachdaineil", + "Welcome back {username}!": "Fàilte air ais, {username}!", + "Welcome back!": "Fàilte air ais!", + "Welcome to Mobilizon, {username}!": "Fàilte gu Mobilizon, {username}!", + "What can I do to help?": "Dè nì mi airson cuideachadh?", + "What happened?": "Dè thachair?", + "Wheelchair accessibility": "Inntrigeadh cathrach-cuibhle", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Nuair a chruthaicheas maor a’ bhuidhinn tachartas le iomruineadh dhan bhuidheann, nochdaidh e an-seo.", + "When the event is private, you'll need to share the link around.": "Nuair a bhios an tachartas prìobhaideach, feumaidh tu fhèin an ceangal a cho-roinneadh.", + "When the post is private, you'll need to share the link around.": "Nuair a bhios am post prìobhaideach, feumaidh tu fhèin an ceangal a cho-roinneadh.", + "Whether smoking is prohibited during the event": "Co-dhiù a bheil smocadh toirmisgte aig an tachartas gus nach eil", + "Whether the event is accessible with a wheelchair": "Co-dhiù am faighear dhan tachartas le cathair-chuibhle gus nach fhaigh", + "Whether the event is interpreted in sign language": "Co-dhiù am faighear eadar-theangachadh gu cainnt-shanais aig an tachartas gus nach fhaigh", + "Whether the event live video is subtitled": "Co-dhiù am bi fo-thiotalan aig an tachartas gus nach bi", + "Who can post a comment?": "Cò dh’fhaodas beachd a phostadh?", + "Who can view this event and participate": "Cò chì an tachartas seo ’s a dh’fhaodas pàirt a ghabhail ann", + "Who can view this post": "Cò chì am post seo", + "Who published {number} events": "A dh’fhoillsich {number} tachartas", + "Why create an account?": "Carson a chruthaichinn cunntas?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Leigidh seo leat staid do chom-pàirteachaidh a shealltainn ’s a stiùireadh air duilleag an tachartais nuair a chleachdas tu an t-uidheam seo. Thoir a’ chromag air falbh ma tha thu a’ cleachdadh uidheam poblach.", + "Within {number} kilometers of {place}": "Am broinn {number} chilemeatair o {place}|Am broinn {number} chilemeatair o {place}|Am broinn {number} cilemeatairean o {place}|Am broinn {number} cilemeatair o {place}", + "Yesterday": "An-dè", + "You accepted the invitation to join the group.": "Ghabh thu ris a’ bhallrachd sa bhuidheann.", + "You added the member {member}.": "Chuir thu am ball {member} ris.", + "You approved {member}'s membership.": "Dh’aontaich thu gum faigh {member} ballrachd.", + "You archived the discussion {discussion}.": "Chuir thu an deasbad {discussion} san tasg-lann.", + "You are not an administrator for this group.": "Chan eil thu ’nad rianaire sa bhuidheann seo.", + "You are not part of any group.": "Chan eil thu nad bhall ann am buidheann sam bith.", + "You are offline": "Tha thu far loidhne", + "You are participating in this event anonymously": "Tha thu a’ gabhail pàirt san tachartas seo gun ainm", + "You are participating in this event anonymously but didn't confirm participation": "Tha thu a’ gabhail pàirt san tachartas seo gun ainm ach cha do dhearbh thu do chom-pàirteachadh", + "You can add tags by hitting the Enter key or by adding a comma": "’S urrainn dhut tagaichean a chur ris ’s tu a’ brùthadh air Enter no a’ cur cromag ris", + "You can pick your timezone into your preferences.": "’S urrainn dhut an roinn-tìde a thaghadh sna roghainnean agad.", + "You can try another search term or drag and drop the marker on the map": "’S urrainn dhut facal-luirg eile fheuchainn no an comharra a shlaodadh agus leigeil às air a’ mhapa", + "You can't change your password because you are registered through {provider}.": "Chan urrainn dhut am facal-faire agad atharrachadh air sgàth ’s gun do clàraich thu le {provider}.", + "You can't use push notifications in this browser.": "Chan urrainn dhut brathan putaidh a chleachdadh sa bhrabhsair seo.", + "You changed your email or password": "Dh’atharraich thu am post-d no am facal-faire agad", + "You created the discussion {discussion}.": "Chruthaich thu an deasbad {discussion}.", + "You created the event {event}.": "Chruthaich thu an tachartas {event}.", + "You created the folder {resource}.": "Chruthaich thu am pasgan {resource}.", + "You created the group {group}.": "Chruthaich thu am buidheann {group}.", + "You created the post {post}.": "Chruthaich thu am post {post}.", + "You created the resource {resource}.": "Chruthaich thu an goireas {resource}.", + "You deleted the discussion {discussion}.": "Sguab thu às an deasbad {discussion}.", + "You deleted the event {event}.": "Sguab thu às an tachartas {event}.", + "You deleted the folder {resource}.": "Sguab thu às am pasgan {resource}.", + "You deleted the post {post}.": "Sguab thu às am post {post}.", + "You deleted the resource {resource}.": "Sguab thu às an goireas {resource}.", + "You demoted the member {member} to an unknown role.": "Thug thu dreuchd nach aithnich sinn dha {member} (ìsleachadh).", + "You demoted {member} to moderator.": "Rinn thu maor dhe {member} (ìsleachadh).", + "You demoted {member} to simple member.": "Rinn thu ball àbhaisteach dhe {member} (ìsleachadh).", + "You didn't create or join any event yet.": "Cha do chruthaich thu tachartas is chan eil thu a’ gabhail pàirt ann am fear sam bith fhathast.", + "You don't follow any instances yet.": "Chan eil thu a’ leantainn ionstans sam bith fhathast.", + "You don't have any upcoming events. Maybe try another filter?": "Chan eil tachartas ri thighinn agad. Am feuch thu criathrag eile?", + "You excluded member {member}.": "Dhùin thu am ball {member} a-mach.", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "Thug {invitedBy} cuireadh dhut dhan bhuidheann seo:", + "You have been removed from this group's members.": "Chaidh do thoirt air falbh o bhallrachd a’ bhuidhinn seo.", + "You have cancelled your participation": "Sguir thu dhen chom-pàirteachadh agad", + "You have one event in {days} days.": "| Bidh {count} tachartas agad sna {days} là(ithean) ri thighinn| Bidh {count} thachartas agad sna {days} là(ithean) ri thighinn| Bidh {count} tachartasan agad sna {days} là(ithean) ri thighinn| Bidh {count} tachartas agad sna {days} là(ithean) ri thighinn", + "You have one event today.": "Bidh {count} tachartas agad an-diugh| Bidh {count} thachartas agad an-diugh| Bidh {count} tachartasan agad an-diugh| Bidh {count} tachartas agad an-diugh", + "You have one event tomorrow.": "Bidh {count} tachartas agad a-màireach| Bidh {count} thachartas agad a-màireach| Bidh {count} tachartasan agad a-màireach| Bidh {count} tachartas agad a-màireach", + "You haven't interacted with other instances yet.": "Cha do rinn thu eadar-ghnìomh le ionstans sam bith eile fhathast.", + "You invited {member}.": "Thug thu cuireadh dha {member}.", + "You may also:": "’S urrainn dhut cuideachd:", + "You may clear all participation information for this device with the buttons below.": "’S urrainn dhut gach fiosrachadh mun chom-pàirteachadh a shuathadh bàn on uidheam seo leis na putanan gu h-ìosal.", + "You may now close this page or {return_to_the_homepage}.": "’S urrainn dhut an duilleag seo a dhùnadh a-nis no {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "’S urrainn dhut an uinneag seo a dhùnadh a-nis no {return_to_event}.", + "You may show some members as contacts.": "Faodaidh tu cuid a bhuill a shealltainn ’nan luchd-aithne.", + "You moved the folder {resource} into {new_path}.": "Ghluais thu am pasgan {resource} gu {new_path}.", + "You moved the folder {resource} to the root folder.": "Ghluais thu am pasgan {resource} dhan phasgan freumhach.", + "You moved the resource {resource} into {new_path}.": "Ghluais thu an goireas {resource} gu {new_path}.", + "You moved the resource {resource} to the root folder.": "Ghluais thu an goireas {resource} dhan phasgan freumhach.", + "You need to login.": "Feumaidh tu clàradh a-steach.", + "You posted a comment on the event {event}.": "Chuir thu beachd ris an tachartas {event}.", + "You promoted the member {member} to an unknown role.": "Thug thu dreuchd nach aithnich sinn dha {member} (àrdachadh).", + "You promoted {member} to administrator.": "Rinn thu rianaire dhe {member} (àrdachadh).", + "You promoted {member} to moderator.": "Rinn thu maor dhe {member} (àrdachadh).", + "You rejected {member}'s membership request.": "Dhiùlt thu gum faigheadh {member} ballrachd.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Thug thu {discussion} air an deasbad {old_discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Thug thu {resource} air a’ phasgan {old_resource_title}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Thug thu {resource} air a’ ghoireas {old_resource_title}.", + "You replied to a comment on the event {event}.": "Fhreagair thu do bheachd ris an tachartas {event}.", + "You replied to the discussion {discussion}.": "Fhreagair thu san deasbad {discussion}.", + "You requested to join the group.": "Dh’iarr thu ballrachd sa bhuidheann.", + "You updated the event {event}.": "Dh’ùraich thu an tachartas {event}.", + "You updated the group {group}.": "Dh’ùraich thu am buidheann {group}.", + "You updated the member {member}.": "Dh’ùraich thu am ball {member}.", + "You updated the post {post}.": "Dh’ùraich thu am post {post}.", + "You were demoted to an unknown role by {profile}.": "Thug {profile} dreuchd nach aithnich sinn dhut (ìsleachadh).", + "You were demoted to moderator by {profile}.": "Rinn {profile} maor dhiot (ìsleachadh).", + "You were demoted to simple member by {profile}.": "Rinn {profile} ball àbhaisteach dhiot (ìsleachadh).", + "You were promoted to administrator by {profile}.": "Rinn {profile} rianaire dhiot (àrdachadh).", + "You were promoted to an unknown role by {profile}.": "Thug {profile} dreuchd nach aithnich sinn dhut (àrdachadh).", + "You were promoted to moderator by {profile}.": "Rinn {profile} maor dhiot (àrdachadh).", + "You will be able to add an avatar and set other options in your account settings.": "’S urrainn dhut avatar a chur ris is roghainnean eile a thaghadh ann an roghainnean a’ chunntais agad.", + "You will be redirected to the original instance": "Thèid d’ ath-stiùireadh dhan ionstans tùsail", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Chì thu a h-uile tachartas a chruthaich thu no sa bheil thu a’ gabhail pàirt an-seo agus na tachartasan a chaidh a chur air dòigh le buidhnean a leanas tu no sa bheil thu ’nad bhall cuideachd.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Gheibh thu brathan mu ghnìomhachd phoblach a’ bhuidhinn seo a-rèir %{notification_settings} agad.", + "You wish to participate to the following event": "Tha thu airson pàirt a ghabhail san tachartas a leanas", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Gheibh thu cuimhneachan gach madainn DiLuain mu na tachartasan ri thighinn ma tha gin agad.", + "You'll need to change the URLs where there were previously entered.": "Feumaidh tu na h-URLaichean atharrachadh far an deach an cur a-steach roimhe.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Feumaidh tu URL a’ bhuidhinn a thar-chur ach an urrainn do dhaoine pròifil a’ bhuidhinn inntrigeadh. Cha ghabh am buidheann a lorg le gleus nan lorg aig Mobilizon no le einnseanan-luirg àbhaisteach.", + "You'll receive a confirmation email.": "Gheibh thu post-d dearbhaidh.", + "YouTube live": "YouTube beò", + "YouTube replay": "Ath-chluich YouTube", + "Your account has been successfully deleted": "Chaidh an cunntas agad a sguabadh às", + "Your account has been validated": "Chaidh an cunntas agad a dhearbhadh", + "Your account is being validated": "Tha an cunntas agad ’ga dhearbhadh", + "Your account is nearly ready, {username}": "Cha mhòr nach eil an cunntas gad ullamh, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Cha dèid am baile no sgìre ’s an t-astar agad a chleachdadh ach airson tachartasan am fagas a mholadh dhut. Bheir astar nan tachartasan an aire air meadhan riaghlaidh na sgìre.", + "Your current email is {email}. You use it to log in.": "Is {email} am post-d làithreach agad. Cleachd e airson clàradh a-steach.", + "Your email": "Am post-d agad", + "Your email address was automatically set based on your {provider} account.": "Chaidh am post-d agad a shuidheachadh gu fèin-obrachail, stèidhichte air a’ chunntas agad le {provider}.", + "Your email has been changed": "Chaidh am post-d agad atharrachadh", + "Your email is being changed": "Tha am post-d agad ’ga atharrachadh", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Cha dèid am post-d agad a chleachdadh ach airson dearbhadh gur e neach a th’ annad agus airson naidheachdan a chur thugad mun tachartas seo. ’S ann NACH DÈID a thar-chur gu ionstansan eile no gu eagraiche an tachartais.", + "Your federated identity": "An dearbh-aithne co-naisgte agad", + "Your membership is pending approval": "Tha do bhallrachd a’ feitheamh ri aontachadh", + "Your membership was approved by {profile}.": "Dh’aontaich {profile} gum faigh thu ballrachd.", + "Your participation has been confirmed": "Chaidh an com-pàirteachadh agad a dhearbhadh", + "Your participation has been rejected": "Chaidh an com-pàirteachadh agad a dhiùltadh", + "Your participation has been requested": "Chaidh an com-pàirteachadh agad iarraidh", + "Your participation request has been validated": "Chaidh an com-pàirteachadh agad a dhearbhadh", + "Your participation request is being validated": "Tha an com-pàirteachadh agad ’ga dhearbhadh", + "Your participation status has been changed": "Chaidh staid do chom-pàirteachaidh atharrachadh", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Cha dèid staid a’ chom-pàirteachaidh agad a shàbhaladh ach air an uidheam seo agus thèid a sguabadh às mìos às dèidh crìoch an tachartais.", + "Your participation still has to be approved by the organisers.": "Feumaidh na h-eagraichean aontachadh ri do chom-pàirteachadh fhathast.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Bidh do chom-pàirteachadh air a dhearbhadh nuair a bhriogas tu air a’ cheangal dearbhaidh sa phost-d agus nuair a bhios an t-eagraiche air do chom-pàirteachadh a dhearbhadh a làimh.", + "Your participation will be validated once you click the confirmation link into the email.": "Bidh do chom-pàirteachadh air a dhearbhadh nuair a bhriogas tu air a’ cheangal dearbhaidh sa phost-d.", + "Your position was not available.": "Cha robh d’ ionad ri fhaighinn.", + "Your profile will be shown as contact.": "Thèid a’ phròifil agad a shealltainn mar fhiosrachadh conaltraidh.", + "Your timezone is currently set to {timezone}.": "Chaidh an roinn-tìde agad a shuidheachadh air {timezone}.", + "Your timezone was detected as {timezone}.": "Mhothaich sinn dha {timezone} mar an roinn-tìde agad.", + "Your timezone {timezone} isn't supported.": "Chan eil taic ris an roinn-tìde {timezone} agad.", + "Your upcoming events": "Na tachartasan a tha gu bhith agad", + "Zoom": "Zoom", + "Zoom in": "Sùm a-steach", + "Zoom out": "Sùm a-mach", + "[This comment has been deleted by it's author]": "[Chaidh am beachd seo a sguabadh às leis an ùghdar]", + "[This comment has been deleted]": "[Chaidh am beachd seo a sguabadh às]", + "[deleted]": "[air a sguabadh às]", + "a non-existent report": "gearan nach eil ann", + "access the corresponding account": "an cunntas cho-cheangailte inntrigeadh", + "access to the group's private content as well": "inntrigeadh do shusbaint phrìobhaideach a’ bhuidhinn cuideachd", + "and {number} groups": "agus {number} buidheann/buidhnean", + "any distance": "astar sam bith", + "as {identity}": "mar {identity}", + "contact uninformed": "gun fhiosrachadh conaltraidh", + "create a group": "buidheann a chruthachadh", + "create an event": "tachartas a chruthachadh", + "default Mobilizon privacy policy": "poileasaidh Mhobilizon bhunaiteach", + "default Mobilizon terms": "teirmichean Mhobilizon bunaiteach", + "e.g. 10 Rue Jangot": "m.e. 10 Rathad a’ Chidhe", + "e.g. Accessibility, Twitch, PeerTube": "m.e. So-ruigsinneachd, Twitch, PeerTube", + "enable the feature": "an gleus a chur an comas", + "explore the events": "rùrachadh sna tachartasan", + "explore the groups": "rùrachadh sna buidhnean", + "full rules": "riaghailtean slàna", + "group's upcoming public events": "thachartasan poblach a’ bhuidhinn ri thighinn", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/some-secret-token", + "iCal Feed": "Inbhir iCal", + "instance rules": "riaghailtean an ionstans", + "mobilizon-instance.tld": "ionstans-mobilizon.tld", + "more than 1360 contributors": "còrr is 1360 luchd-cuideachaidh", + "new{'@'}email.com": "ùr{'@'}post-d.com", + "profile@instance": "ainm@ionstans", + "report #{report_number}": "gearan #{report_number}", + "return to the event's page": "till gu duilleag an tachartais", + "return to the homepage": "tilleadh dhan duilleag-dhachaigh", + "terms of service": "teirmichean na seirbheise", + "with another identity…": "le dearbh-aithne eile…", + "your notification settings": "roghainnean nam brathan", + "{'@'}{username}": "{'@'}{username}", + "{approved} / {total} seats": "{approved} / {total} àite(achan)", + "{available}/{capacity} available places": "{available}/{capacity} àite air fhàgail|{available}/{capacity} àite air fhàgail|{available}/{capacity} àiteachan air fhàgail|{available}/{capacity} àite air fhàgail", + "{count} km": "{count} km", + "{count} members": "{count} bhall|{count} bhall|{count} buill|{count} ball", + "{count} members or followers": "", + "{count} participants": "{count} chom-pàirtiche| {count} chom-pàirtiche| {count} com-pàirtichean| {count} com-pàirtiche", + "{count} requests waiting": "Tha {count} iarrtas(an) a’ feitheamh", + "{folder} - Resources": "{folder} – Goireasan", + "{group} activity timeline": "Loidhne-ama nan gnìomhachdan aig {group}", + "{group} events": "Tachartasan {group}", + "{group} posts": "Postaichean aig {group}", + "{group}'s events": "Na tachartasan aig {group}", + "{group}'s todolists": "Nithean ri dhèanamh aig {group}", + "{instanceName} is an instance of the {mobilizon} software.": "Tha {instanceName} ’na ionstans dhen bhathar-bhog {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "Tha {instanceName} ’na ionstans dhe {mobilizon_link}, bathar-bog saor a tha ’ga thogail leis a’ choimhearsnachd.", + "{member} accepted the invitation to join the group.": "Ghabh {member} ris a’ bhallrachd sa bhuidheann.", + "{member} joined the group.": "Fhuair {member} ballrachd sa bhuidheann.", + "{member} rejected the invitation to join the group.": "Dhiùlt {member} a’ bhallrachd sa bhuidheann.", + "{member} requested to join the group.": "Dh’iarr {member} ballrachd sa bhuidheann.", + "{member} was invited by {profile}.": "Fhuair {member} cuireadh o {profile}.", + "{moderator} added a note on {report}": "Chuir {moderator} nòta ri {report}", + "{moderator} closed {report}": "Dhùin {moderator} {report}", + "{moderator} deleted an event named \"{title}\"": "Sguab {moderator} às tachartas air a bheil “{title}”", + "{moderator} has deleted a comment from {author}": "Sguab {moderator} beachd le {author} às", + "{moderator} has deleted a comment from {author} under the event {event}": "Sguab {moderator} beachd le {author} às fon tachartas {event}", + "{moderator} has deleted user {user}": "Sguab {moderator} às an cleachdaiche {user}", + "{moderator} has done an unknown action": "Ghabh {moderator} gnìomh nach aithne dhuinn", + "{moderator} has unsuspended group {profile}": "Chuir {moderator} buidheann {profile} an gnìomh", + "{moderator} has unsuspended profile {profile}": "Chuir {moderator} pròifil {profile} an gnìomh", + "{moderator} marked {report} as resolved": "Chuir {moderator} comharra gun deach {report} fhuasgladh", + "{moderator} reopened {report}": "Dh’fhosgail {moderator} {report} a-rithist", + "{moderator} suspended group {profile}": "Chuir {moderator} buidheann {profile} à rèim", + "{moderator} suspended profile {profile}": "Chuir {moderator} a’ phròifil {profile} à rèim", + "{nb} km": "{nb} km", + "{number} members": "{number} ball/buill", + "{number} memberships": "Ballrachdan ({number})", + "{number} organized events": "Tha {number} tachartas ’ga chur air dòigh|Tha {number} thachartas ’ga chur air dòigh|Tha {number} tachartasan ’gan cur air dòigh|Tha {number} tachartas ’gan cur air dòigh", + "{number} participations": "{number} chom-pàirtiche|{number} chom-pàirtiche|{number} com-pàirtichean|{number} com-pàirtiche", + "{number} posts": "{number} phost|{number} phost|{number} postaichean|{number} post", + "{number} seats left": "Suidheachain air fhàgail: {number}", + "{old_group_name} was renamed to {group}.": "Chaidh {group} a thoirt air {old_group_name}.", + "{profile} (by default)": "{profile} (a ghnàth)", + "{profile} added the member {member}.": "Chuir {profile} am ball {member} ris.", + "{profile} approved {member}'s membership.": "Dh’aontaich {profile} gum faigh {member} ballrachd.", + "{profile} archived the discussion {discussion}.": "Chuir {profile} an deasbad {discussion} san tasg-lann.", + "{profile} created the discussion {discussion}.": "Chruthaich {profile} an deasbad {discussion}.", + "{profile} created the folder {resource}.": "Chruthaich {profile} am pasgan {resource}.", + "{profile} created the group {group}.": "Chruthaich {profile} am buidheann {group}.", + "{profile} created the resource {resource}.": "Chruthaich {profile} an goireas {resource}.", + "{profile} deleted the discussion {discussion}.": "Sguab {profile} às an deasbad {discussion}.", + "{profile} deleted the folder {resource}.": "Sguab {profile} às am pasgan {resource}.", + "{profile} deleted the resource {resource}.": "Sguab {profile} às an goireas {resource}.", + "{profile} demoted {member} to an unknown role.": "Thug {profile} dreuchd nach aithnich sinn dha {member} (ìsleachadh).", + "{profile} demoted {member} to moderator.": "Rinn {profile} maor dhe {member} (ìsleachadh).", + "{profile} demoted {member} to simple member.": "Rinn {profile} ball àbhaisteach dhe {member} (ìsleachadh).", + "{profile} excluded member {member}.": "Dhùin {profile} am ball {member} a-mach.", + "{profile} moved the folder {resource} into {new_path}.": "Ghluais {profile} am pasgan {resource} gu {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "Ghluais {profile} am pasgan {resource} dhan phasgan freumhach.", + "{profile} moved the resource {resource} into {new_path}.": "Ghluais {profile} an goireas {resource} gu {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "Ghluais {profile} an goireas {resource} dhan phasgan freumhach.", + "{profile} posted a comment on the event {event}.": "Chuir {profile} beachd ris an tachartas {event}.", + "{profile} promoted {member} to administrator.": "Rinn {profile} rianaire dhe {member} (àrdachadh).", + "{profile} promoted {member} to an unknown role.": "Thug {profile} dreuchd nach aithnich sinn dha {member} (àrdachadh).", + "{profile} promoted {member} to moderator.": "Rinn {profile} maor dhe {member} (àrdachadh).", + "{profile} quit the group.": "Dh’fhàg {profile} am buidheann.", + "{profile} rejected {member}'s membership request.": "Dhiùlt {profile} gum faigheadh {member} ballrachd.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "Thug {profile} {discussion} air an deasbad {old_discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "Thug {profile} {resource} air a’ phasgan {old_resource_title}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "Thug {profile} {resource} air a’ ghoireas {old_resource_title}.", + "{profile} replied to a comment on the event {event}.": "Fhreagair {profile} do bheachd ris an tachartas {event}.", + "{profile} replied to the discussion {discussion}.": "Fhreagair {profile} san deasbad {discussion}.", + "{profile} updated the group {group}.": "Dh’ùraich {profile} am buidheann {group}.", + "{profile} updated the member {member}.": "Dh’ùraich {profile} am ball {member}.", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} ri dhèanamh)", + "{username} was invited to {group}": "Fhuair {username} cuireadh gu {group}", + "© The OpenStreetMap Contributors": "© Luchd-cuideachaidh OpenStreetMap" +}); diff --git a/res/locale/gl.js b/res/locale/gl.js new file mode 100644 index 0000000..29f9f51 --- /dev/null +++ b/res/locale/gl.js @@ -0,0 +1,1660 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Oculto)", + "(this folder)": "(este cartafol)", + "(this link)": "(esta ligazón)", + "+ Add a resource": "+ Engadir un recurso", + "+ Create a post": "+ Crear publicación", + "+ Create an event": "+ Crear un evento", + "+ Start a discussion": "+ Comezar un debate", + "0 Bytes": "0 Bytes", + "{contact} will be displayed as contact.": "{contact} será mostrado como contacto.|{contact} serán mostrados como contactos.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "Foi aceptada a solicitude de seguimento de @{username}", + "@{username}'s follow request was rejected": "A solicitude de seguimento de @{username} foi rexeitada", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Unha cookie é un pequeno ficheiro que contén información que se envía á túa computadora cando visitas unha web. Cando volves á mesma web, a cookie permite que esa web recoñeza o teu navegador. As cookies poden gardar preferencias da usuaria e outra información. Podes configurar o navegador para rexeitar todas as cookies. Porén, esto podería facer que algúns servizos ou características da web non funcionen correctamente. O almacenaxe local funciona do mesmo xeito pero permite almacenar máis datos.", + "A discussion has been created or updated": "Creouse ou actualizouse unha conversa", + "A federated software": "Software federado", + "A fediverse account URL to follow for event updates": "URL da conta do fediverso para seguir actualizacións do evento", + "A few lines about your group": "Unhas liñas acerca do teu grupo", + "A link to a page presenting the event schedule": "Ligazón á páxina onde se mostran os horarios do evento", + "A link to a page presenting the price options": "Ligazón á páxina onde se mostran os prezos", + "A member has been updated": "Un membro foi actualizado", + "A member requested to join one of my groups": "Un membro solicitou unirse a un dos meus grupos", + "A new version is available.": "Hai unha nova versión dispoñible.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Lugar para o código de conduta, regras ou guías. Podes usar HTML.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Un lugar para explicar quen es e que distingue á túa instancia das demáis. Podes usar HTML.", + "A place to publish something to the whole world, your community or just your group members.": "Un lugar para publicar contidos para todo o mundo, a túa comunidade ou só para membros do grupo.", + "A place to store links to documents or resources of any type.": "Un lugar para gardar ligazóns a documentos ou recursos de calquera tipo.", + "A post has been published": "Hai unha nova publicación", + "A post has been updated": "Actualizouse unha publicación", + "A practical tool": "Ferramenta útil", + "A resource has been created or updated": "Creouse ou actualizouse un recurso", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Un pequeno subtítulo para o inicio da instancia. Por omisión \"Xuntar ⋅ Organizar ⋅ Mobilizar\"", + "A twitter account handle to follow for event updates": "Alcume da conta de twitter para seguir actualizacións do evento", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Unha ferramenta amigábel, emancipadora e ética para xuntar, organizar e mobilizar.", + "A validation email was sent to {email}": "Enviouse un correo de validación a {email}", + "API": "API", + "Abandon editing": "Saír da edición", + "About": "Sobre", + "About Mobilizon": "Sobre Mobilizon", + "About anonymous participation": "Acerca da participación anónima", + "About instance": "Acerca de {instance}", + "About this event": "Sobre este evento", + "About this instance": "Sobre esta instancia", + "About {instance}": "Acerca de {instance}", + "Accept": "Aceptar", + "Accept follow": "Aceptar seguimento", + "Accepted": "Aceptado", + "Access drafts events": "Acceder a borradores de eventos", + "Access followed groups": "Acceder a grupos seguidos", + "Access group activities": "Acceder ás actividades do grupo", + "Access group discussions": "Acceder a debates do grupo", + "Access group events": "Acceder a eventos do grupo", + "Access group followers": "Acceder ás seguidoras do grupo", + "Access group members": "Acceder a membros do grupo", + "Access group memberships": "Acceder á membresía nos grupos", + "Access group suggested events": "Acceder aos eventos suxeridos ao grupo", + "Access group todo-lists": "Acceder á lista de tarefas do grupo", + "Access organized events": "Acceder aos eventos organizados", + "Access participations": "Acceder a participacións", + "Access your group's resources": "Acceder aos recursos do grupo", + "Accessibility": "Accesibilidade", + "Accessible only by link": "Só accesible con ligazón", + "Accessible only to members": "Accesible só para membros", + "Accessible through link": "Accesible por ligazón", + "Account": "Conta", + "Account settings": "Axustes da conta", + "Actions": "Accións", + "Activate browser push notifications": "Activar notificacións push do navegador", + "Activate notifications": "Activar notificacións", + "Activated": "Activado", + "Active": "Activa", + "Activity": "Actividade", + "Actor": "Actor", + "Adapt to system theme": "Seguir ao decorado do sistema", + "Add": "Engadir", + "Add / Remove…": "Engadir / Eliminar…", + "Add a contact": "Engadir un contacto", + "Add a new post": "Engadir nova publicación", + "Add a note": "Engadir unha nota", + "Add a recipient": "Engadir correspondente", + "Add a todo": "Engadir tarefas pendentes", + "Add an address": "Engadir un enderezo", + "Add an instance": "Engadir unha instancia", + "Add link": "Engadir ligazón", + "Add new…": "Engadir novo…", + "Add picture": "Engadir imaxe", + "Add some tags": "Engadir etiquetas", + "Add to my calendar": "Engadir ao meu calendario", + "Additional comments": "Comentarios adicionais", + "Admin": "Admin", + "Admin dashboard": "Taboleiro de Admin", + "Admin settings": "Axustes de Admin", + "Admin settings successfully saved.": "Gardáronse os axustes de Admin.", + "Administration": "Administración", + "Administrator": "Administradora", + "All": "Todo", + "All activities": "Tódalas actividades", + "All good, let's continue!": "Todo ben, adiante!", + "All the places have already been taken": "Ocupáronse todas as prazas", + "Allow all comments from users with accounts": "Permitir comentarios das usuarias con sesión iniciada", + "Allow registrations": "Permitir o rexistro", + "An URL to an external ticketing platform": "URL da plataforma de venda de entradas", + "An anonymous profile joined the event {event}.": "Un perfil anónimo uníuse ao evento {event}.", + "An error has occured while refreshing the page.": "Houbo un fallo ao actualizar a páxina.", + "An error has occured. Sorry about that. You may try to reload the page.": "Algo fallou, lamentámolo. Podes intentar recargar a páxina.", + "An ethical alternative": "Unha alternativa ética", + "An event I'm going to has been updated": "Foi actualizado un evento no que vou participar", + "An event I'm going to has posted an announcement": "Un evento no que participarei publicou un anuncio", + "An event I'm organizing has a new comment": "Un evento que eu organizo ten un novo comentario", + "An event I'm organizing has a new participation": "Un evento que eu organizo ten unha nova participación", + "An event I'm organizing has a new pending participation": "Un evento que eu organizo ten unha nova participación pendente", + "An event from one of my groups has been published": "Publicouse un evento nun dos meus grupos", + "An event from one of my groups has been updated or deleted": "Actualizouse ou eliminouse un evento nun dos meus grupos", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Unha instancia é unha versión do software Mobilizon instalada nun servidor. Calquera persoa pode instalar unha instancia usando o {mobilizon_software} ou outras apps federadas, coñecidas como \"fediverso\". O nome desta instancia é {instance_name}. Mobilizon é unha rede federada de múltiples instancias (como os servidores de correo), usuarias rexistradas en diferentes servidores que poden comunicarse incluso se non están rexistradas na mesma instancia.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "Unha \"interface de programación da aplicación\" ou \"API\" é un protocolo de comunicación que permite que os compoñentes de software se comuniquen entre si. A API de Mobilizon, por exemplo, pode permitir que software de terceiras partes se comuniquen con instancias Mobilizon para realizar certas tarefas, como publicar eventos no teu nome, de xeito automático e remoto.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events, automatically and remotely.": "Unha \"interface de programación de aplicacións\" ou \"API\" é un protocolo de comunicación que permite aos compoñentes do software comunicarse entre eles. A API de Mobilizon, por exemplo, pode permitir que ferramentas de terceiras partes se comuniquen con instancias Mobilizon para realizar certas accións, como publicar eventos de xeito automático e remoto.", + "And {number} comments": "E {number} comentarios", + "Announcements": "Anuncios", + "Announcements and mentions notifications are always sent straight away.": "As notificacións de mencións e anuncios sempre son enviadas de todas formas.", + "Announcements for {eventTitle}": "Anuncios para {eventTitle}", + "Anonymous participant": "Participante anónimo", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Ós participantes anónimos pediráselle que confirmen a súa participación a través de email.", + "Anonymous participations": "Participacións anónimas", + "Any category": "Calquera categoría", + "Any day": "Calquera día", + "Any distance": "Calquera distancia", + "Any type": "Calquera tipo", + "Anyone can join freely": "Calquera pode unirse", + "Anyone can request being a member, but an administrator needs to approve the membership.": "Calquera pode solicitar membresía, pero a administración ten que aprobar a solicitude.", + "Anyone wanting to be a member from your group will be able to from your group page.": "Calquera que queira ser membro do teu grupo pode facelo desde a páxina do grupo.", + "Application": "Aplicación", + "Application authorized": "Aplicación autorizada", + "Application not found": "Non se atopa a aplicación", + "Application was revoked": "Aplicación revogada", + "Apply filters": "Aplicar filtros", + "Approve member": "Aprobar membro", + "Apps": "Aplicacións", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "¿Desexas realmente eliminar completamente a conta? Perderalo todo. Identidades, axustes, eventos creados, mensaxes e participación perderanse para sempre.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Tes a certeza de querer eliminar completamente este grupo? Todos os membros - incluíndo os remotos - serán notificados e eliminados do grupo, e todos os datos do grupo (eventos, publicacións, debates, tarefas...) serán irreversiblement destruídos.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Tes certeza de querer eliminar este comentario? Esta acción non se pode desfacer.", + "Are you sure you want to delete this comment? This action cannot be undone.": "¿Tes a certeza de querer eliminar este comentario? Esta acción non ten volta.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator and ask them to edit their event instead.": "Tes certeza de querer eliminar este evento?Esta acción non se pode desfacer Pode que antes queiras discutir a situación coa creadora do evento e preguntarlle se prefire editar o evento.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "¿Tes a certeza de querer eliminar este evento? Esta acción non ten volta. É posible que queiras comentalo coa persoa que creou o evento ou simplemente editalo.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Tes a certeza de querer suspender este grupo? Todos os membros - incluídos os remotos - serán notificados e eliminados do grupo, e todos os datos do grupo (eventos, publicacións, debates, tarefas...) serán irreversiblemente destruídos.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Tes a certeza de querer suspender o grupo? Como este grupo procede da instancia {instance} esta acción só elimina os membros locais e os datos locais, así como rexeitará datos futuros.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "¿Desexas cancelar a creación do evento? Perderás todas as modificacións.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "¿Tes a certeza de que queres cancelar a edición do evento? Perderás as modificacións.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "¿Tes a certeza de que queres cancelar a túa participación no evento \"{title}\"?", + "Are you sure you want to delete this entire conversation?": "Tes certeza de querer eliminar toda esta conversa?", + "Are you sure you want to delete this entire discussion?": "Tes a certeza de querer eliminar o debate completo?", + "Are you sure you want to delete this event? This action cannot be reverted.": "¿Tes a certeza de que queres eliminar este evento? Esta acción non é reversible.", + "Are you sure you want to delete this post? This action cannot be reverted.": "Tes certeza de querer eliminar a publicación? Esta acción non ten volta.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Tes certeza de querer deixar o grupo {groupName}? Non poderás acceder ao contido privado do grupo. Esta acción non ten volta atrás.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Como a organización do evento escolleu validar manualmente as solicitudes, a túa participación estará realmente confirmada cando recibas un correo informándote.", + "Ask your instance admin to {enable_feature}.": "Pídelle á administración da instancia que {enable_feature}.", + "Assigned to": "Asignado a", + "Atom feed for events and posts": "Fonte Atom para eventos e publicacións", + "Attending": "Participan", + "Authorize": "Autorizar", + "Authorize application": "Autorizar aplicación", + "Authorized on {authorization_date}": "Autorizada o {authorization_date}", + "Autorize this application to access your account?": "Permitir que esta aplicación acceda á túa conta?", + "Avatar": "Avatar", + "Back to group list": "Volver á lista de grupos", + "Back to homepage": "Volver ao inicio", + "Back to previous page": "Volver á páxina anterior", + "Back to profile list": "Volver á lista de perfís", + "Back to top": "Volver arriba", + "Back to user list": "Volver á lista de usuarias", + "Banner": "Cabeceira", + "Become part of the community and start organizing events": "Forma parte da comunidade e comeza a organizar eventos", + "Before you can login, you need to click on the link inside it to validate your account.": "Antes de poder acceder, tes que premer na ligazón incluída para validar a túa conta.", + "Begins on": "Comeza o", + "Best match": "Mellor coincidencia", + "Big Blue Button": "Big Blue Button", + "Bold": "Resaltado", + "Booking": "Reservas", + "Breadcrumbs": "Breadcrumbs", + "Browser notifications": "Notificacións do navegador", + "Browser tab icon and PWA icon of the instance. Defaults to the upstream Mobilizon icon.": "Pequena icona que aparece na pestana do navegador e icona PWA da insancia. Por defecto é a icona de Mobilizon.", + "Bullet list": "Lista de puntos", + "By bike": "En bicicleta", + "By car": "En coche", + "By others": "Por outras", + "By transit": "En transporte público", + "By {group}": "Por {group}", + "By {username}": "Por {username}", + "Calendar": "Calendario", + "Can be an email or a link, or just plain text.": "Pode ser un correo ou ligazón, o só texto plano.", + "Cancel": "Cancelar", + "Cancel anonymous participation": "Cancelar participación anónima", + "Cancel creation": "Cancelar creación", + "Cancel discussion title edition": "Desbotar a edición do título da conversa", + "Cancel edition": "Cancelar edición", + "Cancel follow request": "Desbotar solicitude de seguimento", + "Cancel membership request": "Desbotar a solicitude de membresía", + "Cancel my participation request…": "Cancelar a miña solicitude de participación…", + "Cancel my participation…": "Cancelar a miña participación…", + "Cancel participation": "Cancelar participación", + "Cancelled": "Cancelado", + "Cancelled: Won't happen": "Cancelado: Non acontecerá", + "Categories": "Categorías", + "Category": "Categoría", + "Category illustrations credits": "Crédito das ilustracións de categorías", + "Category list": "Lista da categoría", + "Change": "Cambiar", + "Change email": "Cambiar correo", + "Change my email": "Cambiar o meu correo", + "Change my identity…": "Cambiar a miña identidade…", + "Change my password": "Cambiar contrasinal", + "Change role": "Cambiar rol", + "Change the filters.": "Cambiar os filtros.", + "Change timezone": "Cambiar zona horaria", + "Change user email": "Cambiar correo da usuaria", + "Change user role": "Cambiar rol da usuaria", + "Check your device to continue. You may now close this window.": "Comproba o dispositivo para continuar. Xa podes pechar esta xanela.", + "Check your inbox (and your junk mail folder).": "Comproba a caixa de correo (e o cartafol de spam).", + "Choose the source of the instance's Privacy Policy": "Escolle a orixe da Política de Privacidade da instancia", + "Choose the source of the instance's Terms": "Elixe a orixe dos Termos da instancia", + "City or region": "Cidade ou rexión", + "Clear": "Baleirar", + "Clear address field": "Limpar campo de enderezo", + "Clear date filter field": "Limpar campo de data no filtro", + "Clear participation data for all events": "Eliminar os datos de participación para todos os eventos", + "Clear participation data for this event": "Eliminar os datos de participación para este evento", + "Clear timezone field": "Limpar o campo de zona horaria", + "Click for more information": "Preme para saber máis", + "Click to upload": "Preme para subir", + "Close": "Pechar", + "Close comments for all (except for admins)": "Pechar comentarios para todos (excepto admins)", + "Close map": "Pechar mapa", + "Closed": "Pechado", + "Comment body": "Corpo do comentario", + "Comment deleted": "Comentario eliminado", + "Comment deleted and report resolved": "Comentario eliminado e denuncia resolta", + "Comment from a private conversation": "Comentario nunha conversa privada", + "Comment from an event announcement": "Comentario desde un anuncio do evento", + "Comment from {'@'}{username} reported": "Denuncia sobre o comentario de {'@'}{username}", + "Comment text can't be empty": "O texto do comentario non pode estar baleiro", + "Comment under event {eventTitle}": "Comentario no evento {eventTitle}", + "Comments": "Comentarios", + "Comments are closed for everybody else.": "Os comentarios están pechados para todas.", + "Confirm": "Confirmar", + "Confirm my participation": "Confirmar a miña participación", + "Confirm my particpation": "Confirmar a miña participación", + "Confirm participation": "Confirmar a miña participación", + "Confirm user": "Confirmar usuaria", + "Confirmed": "Confirmada", + "Confirmed at": "Confirmada o", + "Confirmed: Will happen": "Confirmado: Acontecerá", + "Congratulations, your account is now created!": "Parabéns, xa tes a túa conta!", + "Contact": "Contactar", + "Continue": "Continuar", + "Continue editing": "Continuar editando", + "Conversation with {participants}": "Conversa con {participants}", + "Conversations": "Conversas", + "Cookies and Local storage": "Cookies e Almacenaxe Local", + "Copy URL to clipboard": "Copiar URL ao portapapeis", + "Copy details to clipboard": "Copiar detalles ao portapapeis", + "Country": "País", + "Create": "Crear", + "Create a calc": "Crear folla cálculo", + "Create a discussion": "Crear un debate", + "Create a folder": "Crear cartafol", + "Create a new event": "Crear novo evento", + "Create a new group": "Crear novo grupo", + "Create a new identity": "Crear nova identidade", + "Create a new list": "Crear nova lista", + "Create a new metadata element": "Crear un novo elemento de metadatos", + "Create a new profile": "Crear un novo perfil", + "Create a pad": "Crear un pad", + "Create a videoconference": "Crear videoconferencia", + "Create an account": "Crear unha conta", + "Create discussion": "Crear un debate", + "Create event": "Crear evento", + "Create feed tokens": "Crear tokens da fonte", + "Create group": "Crear grupo", + "Create group discussions": "Crear debates no grupo", + "Create group resources": "Crear recursos do grupo", + "Create identity": "Crear identidade", + "Create my event": "Crear o meu evento", + "Create my group": "Crear o meu grupo", + "Create my profile": "Crear o meu perfil", + "Create new links": "Crear novas ligazóns", + "Create new profiles": "Crear novos perfís", + "Create resource": "Crear recurso", + "Create the discussion": "Crear o debate", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Crear listas de tarefas para todo o que precisas facer, asignalas e establecer datas de entrega.", + "Create token": "Crear token", + "Created by {name}": "Creado por {name}", + "Created by {username}": "Creado por {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "Cambiouse a identidade actual a {identityName} para poder xestionar este evento.", + "Current page": "Páxina actual", + "Custom": "Personalizar", + "Custom URL": "URL personalizado", + "Custom text": "Texto personalizado", + "Daily email summary": "Resumen diario por correo", + "Dark": "Escuro", + "Dashboard": "Taboleiro", + "Date": "Data", + "Date and time": "Data e hora", + "Date and time settings": "Axustes de data e hora", + "Date parameters": "Parámetros da data", + "Deactivate notifications": "Desactivar notificacións", + "Decline": "Rexeitar", + "Decrease": "Diminuir", + "Default": "Por omisión", + "Default Mobilizon privacy policy": "Política de privacidade por omisión para Mobilizon", + "Default Mobilizon terms": "Termos Mobilizon por omisión", + "Default Picture": "Imaxe por defecto", + "Default picture when an event or group doesn't have one.": "Imaxe por defecto asignada a un evento ou grupo que non estableza unha.", + "Delete": "Eliminar", + "Delete account": "Borrar conta", + "Delete comment": "Eliminar comentario", + "Delete comment and resolve report": "Eliminar comentario e resolver a denuncia", + "Delete comments": "Eliminar comentarios", + "Delete conversation": "Eliminar conversa", + "Delete discussion": "Eliminar debate", + "Delete event": "Borrar evento", + "Delete event and resolve report": "Eliminar evento e resolver denuncia", + "Delete events": "Eliminar eventos", + "Delete everything": "Borrar todo", + "Delete feed tokens": "Eliminar tokens da fonte", + "Delete group": "Eliminar grupo", + "Delete group discussions": "Eliminar debates do grupo", + "Delete group posts": "Eliminar publicacións do grupo", + "Delete group resources": "Eliminar recursos do grupo", + "Delete my account": "Eliminar a miña conta", + "Delete post": "Eliminar publicación", + "Delete profiles": "Eliminar perfís", + "Delete this conversation": "Eliminar esta conversa", + "Delete this discussion": "Eliminar este debate", + "Delete this identity": "Eliminar esta identidade", + "Delete your identity": "Elimina a túa identidade", + "Delete {eventTitle}": "Eliminar {eventTitle}", + "Delete {preferredUsername}": "Eliminar {preferredUsername}", + "Deleting comment": "Borrando comentario", + "Deleting event": "Eliminando evento", + "Deleting my account will delete all of my identities.": "Eliminando a miña conta eliminarei todas as miñas identidades.", + "Deleting your Mobilizon account": "Eliminando a túa conta Mobilizon", + "Demote": "Degradar", + "Describe your event": "Describe o teu evento", + "Description": "Descrición", + "Details": "Detalles", + "Device activation": "Activación de dispositivo", + "Didn't receive the instructions?": "Non recibiches as instruccións?", + "Disabled": "Desactivado", + "Discussions": "Debates", + "Discussions list": "Lista de debates", + "Display name": "Mostrar nome", + "Display participation price": "Mostrar prezo da participación", + "Displayed nickname": "Nome mostrado", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Mostrado na páxina de inicio e etiquetas meta. Describe que é Mobilizon e que fai especial a esta instancia nun só párrafo.", + "Distance": "Distancia", + "Do not receive any mail": "Non recibir emails", + "Do you really want to suspend the account « {emailAccount} » ?": "Tes certeza de querer suspender a conta « {emailAccount} » ?", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Tes certeza de querer suspender a conta? Todos os perfís da usuaria serán eliminados.", + "Do you really want to suspend this profile? All of the profiles content will be deleted.": "Tes certeza de querer suspender este perfil? Todo o contido do perfil será eliminado.", + "Do you wish to {create_event} or {explore_events}?": "Queres {create_event} ou {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Queres {create_group} ou {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "Precísase confirmar posteriormente o evento ou se foi cancelado?", + "Domain": "Dominio", + "Domain or instance name": "Dominio ou nome da instancia", + "Draft": "Borrador", + "Drafts": "Borradores", + "Due on": "Previsto o", + "Duplicate": "Duplicar", + "Edit": "Editar", + "Edit post": "Editar publicación", + "Edit profile {profile}": "Editar perfil {profile}", + "Edit user email": "Editar correo da usuaria", + "Edited {ago}": "Editado {ago}", + "Edited {relative_time} ago": "Editado hai {relative_time}", + "Eg: Stockholm, Dance, Chess…": "Ex: Silleda, Baile, Billarda…", + "Either on the {instance} instance or on another instance.": "Ben na instancia {instance} ou en calquera outra instancia.", + "Either the account is already validated, either the validation token is incorrect.": "Ou a conta xa está validada, ou o token de validación non é correcto.", + "Either the email has already been changed, either the validation token is incorrect.": "Ou o correo xa foi cambiado ou o token de validación non é correcto.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Ou ben a solicitude de participación xa foi validada, ou ben o token de validación non é correcto.", + "Either your participation has already been cancelled, either the validation token is incorrect.": "Ou ben a túa participación foi canceladas ou ben o token de validación non é correcto.", + "Element title": "Título do elemento", + "Element value": "Valor do elemento", + "Email": "Correo electrónico", + "Email address": "Enderezo de correo", + "Email validate": "Validar correo", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "Os correos normalmente non conteñen maiúsculas, comproba que non hai un erro.", + "Enabled": "Activado", + "Ends on…": "Remata en…", + "Enter the code displayed on your device": "Escribe no teu dispositivo o código mostrado", + "Enter the link URL": "Escribe o URL da ligazón", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Escribe o enderezo de correo aquí, e eviarémosche un correo con instruccións para cambiar o contrasinal.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Escribe a túa propia política de privacidade. Permítese marcado HTML. A {mobilizon_privacy_policy} proporciónase como modelo.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Escribe os teus propios termos. Permítese o marcado HTML. Os {mobilizon_terms} proporciónanse como modelo.", + "Error": "Erro", + "Error details copied!": "Detalles do erro copiados!", + "Error message": "Mensaxe do erro", + "Error stacktrace": "Informe do erro", + "Error while adding tag: {error}": "Erro ao engadir a etiqueta: {error}", + "Error while cancelling your participation": "Erro ao cancelar a túa participación", + "Error while changing email": "Fallo ao cambiar o correo", + "Error while loading the preview": "Fallo ao subir a vista previa", + "Error while login with {provider}. Retry or login another way.": "Erro ao acceder con {provider}. Reinténtao ou accede doutro xeito.", + "Error while login with {provider}. This login provider doesn't exist.": "Erro ao acceder con {provider}. Este provedor de acceso podería non existir.", + "Error while reporting group {groupTitle}": "Erro ó denunciar o grupo {groupTitle}", + "Error while subscribing to push notifications": "Fallou a subscrición ás notificacións push", + "Error while suspending group": "Erro ao suspender o grupo", + "Error while updating participation status inside this browser": "Erro ao actualizar o estado de participación desde este navegador", + "Error while validating account": "Fallo ó validar a conta", + "Error while validating participation request": "Erro ó validar a solicitude de participación", + "Etherpad notes": "Notas Etherpad", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Alternativa ética aos eventos, grupos e páxinas de Facebook, Mobilizon é unha ferramenta deseñada para servirte. E punto.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Alternativa ética aos eventos, grupos e páxinas de Facebook, Mobilizon é unha {tool_designed_to_serve_you}. Punto.", + "Event": "Evento", + "Event URL": "URL do evento", + "Event already passed": "O evento xa rematou", + "Event cancelled": "Evento cancelado", + "Event creation": "Evento creado", + "Event date": "Data do evento", + "Event deleted": "Evento eliminado", + "Event deleted and report resolved": "Evento eliminado e denuncia resolta", + "Event description body": "Corpo da descrición do evento", + "Event edition": "Edición do evento", + "Event list": "Lista de eventos", + "Event metadata": "Metadatos do evento", + "Event page settings": "Páxina de axustes do evento", + "Event status": "Estado do evento", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "A zona horaria do evento terá por defecto a zona horaria do enderezo do evento (se está indicada), ou a túa zona horaria nos axustes.", + "Event to be confirmed": "Evento agardando confirmación", + "Event {eventTitle} deleted": "Eliminado o evento {eventTitle}", + "Event {eventTitle} reported": "Denunciado o evento {eventTitle}", + "Events": "Eventos", + "Events close to you": "Eventos preto de ti", + "Events nearby": "Pechar eventos", + "Events nearby {position}": "Eventos próximos a {position}", + "Events tagged with {tag}": "Eventos etiquetados con {tag}", + "Everything": "Todo", + "Ex: mobilizon.fr": "Ex: mobilizon.fr", + "Ex: someone@mobilizon.org": "Ex: breixo@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "Ex.: persoa{'@'}mobilizon.org", + "Explore": "Descubre", + "Explore events": "Descubrir eventos", + "Explore!": "Descubre!", + "Export": "Exportar", + "External provider URL": "URL do provedor externo", + "External registration": "Rexistro externo", + "Failed to get location.": "Non se obtivo a localización.", + "Failed to save admin settings": "Fallo ó gardar os axustes de admin", + "Favicon": "Favicon", + "Featured events": "Eventos destacados", + "Federated Group Name": "Nome federado do grupo", + "Federation": "Federación", + "Fediverse account": "Conta no Fediverso", + "Fetch more": "Obter máis", + "Filter": "Filtrar", + "Filter by name": "Filtrar por nome", + "Filter by profile or group name": "Filtrar por perfil ou nome do grupo", + "Find an address": "Atopar un enderezo", + "Find an instance": "Atopar unha instancia", + "Find another instance": "Atopa outra instancia", + "Find or add an element": "Atopa ou engade un elemento", + "First steps": "Primeiros pasos", + "Follow": "Seguir", + "Follow a new instance": "Seguir unha nova instancia", + "Follow instance": "Seguir instancia", + "Follow request pending approval": "Solicitudes de seguimento pendentes", + "Follow requests will be approved by a group moderator": "As peticións de seguimento serán aprobadas pola moderación do grupo", + "Follow status": "Estado do seguimento", + "Followed": "Séguete", + "Followed, pending response": "Solicitado, pendente da resposta", + "Follower": "Seguidora", + "Followers": "Seguidoras", + "Followers will receive new public events and posts.": "As seguidoras recibirán os novos eventos públicos e publicacións.", + "Following": "Seguindo", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Ao seguir o grupo poderás recibir información sobre {group_upcoming_public_events}, mentras que ao unirte ao grupo poderás {access_to_group_private_content_as_well}, incluíndo debates do grupo, recursos do grupo e publicacións só para membros.", + "Followings": "Seguindo", + "Follows us": "Séguenos", + "Follows us, pending approval": "Solicitou seguirnos, pendente aprobación", + "For instance: London": "Por exemplo: Allariz", + "For instance: London, Taekwondo, Architecture…": "Por exemplo: Leiro, Natación, Arquitectura…", + "Forgot your password ?": "¿Esqueceches o contrasinal?", + "Forgot your password?": "Esqueceches o contrasinal?", + "Framadate poll": "Enquisa Framadate", + "From my groups": "Dos meus grupos", + "From the {startDate} at {startTime} to the {endDate}": "Desde o {startDate} ás {startTime} ata o {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Desde o {startDate} ás {startTime} ata o {endDate} ás {endTime}", + "From the {startDate} to the {endDate}": "Desde o {startDate} ata o {endDate}", + "From this instance only": "Só nesta instancia", + "From yourself": "De ti mesma", + "Fully accessible with a wheelchair": "Totalmente accesible con cadeira de rodas", + "Gather ⋅ Organize ⋅ Mobilize": "Xunta - Organiza - Mobiliza", + "General": "Xeral", + "General information": "Información xeral", + "General settings": "Axustes xerais", + "Geolocate me": "A miña localización", + "Geolocation was not determined in time.": "Non se obtivo a xeolocalización a tempo.", + "Get informed of the upcoming public events": "Recibe información dos próximos eventos públicos", + "Getting location": "Obtendo localización", + "Getting there": "Chegar alí", + "Glossary": "Glosario", + "Go": "Ir", + "Go to booking": "Ir a reservar", + "Go to the event page": "Ir á páxina do evento", + "Go!": "Busca!", + "Google Meet": "Google Meet", + "Group": "Grupo", + "Group Followers": "Agrupar seguidoras", + "Group Members": "Membros do grupo", + "Group URL": "URL do grupo", + "Group activity": "Actividade do grupo", + "Group address": "Enderezo do grupo", + "Group description body": "Corpo da descrición do grupo", + "Group display name": "Nome mostrado do grupo", + "Group members": "Membros do grupo", + "Group name": "Nome do grupo", + "Group profiles": "Perfís do grupo", + "Group settings": "Axustes do grupo", + "Group settings saved": "Gardáronse os axustes", + "Group short description": "Descrición curta do grupo", + "Group visibility": "Visibilidade do grupo", + "Group {displayName} created": "Creado o grupo {displayName}", + "Group {groupTitle} reported": "Grupo {groupTitle} denunciado", + "Groups": "Grupos", + "Groups are not enabled on this instance.": "Os grupos non están activados nesta instancia.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Os grupos son espazos de coordinación e preparación, para organizar os eventos e xestionar a comunidade.", + "Heading Level 1": "Cabeceira Nivel 1", + "Heading Level 2": "Cabeceira Nivel 2", + "Heading Level 3": "Cabeceira Nivel 3", + "Headline picture": "Imaxe de cabeceira", + "Hide filters": "Agochar filtros", + "Hide replies": "Agochar respostas", + "Home": "Inicio", + "Home to {number} users": "Fogar de {number} usuarias", + "Homepage": "Inicio", + "Hourly email summary": "Resumen horario por correo", + "I agree to the {instanceRules} and {termsOfService}": "Acepto as {instanceRules} e os {termsOfService}", + "I create an identity": "Creei unha identidade", + "I don't have a Mobilizon account": "Non teño unha conta Mobilizon", + "I have a Mobilizon account": "Teño unha conta Mobilizon", + "I have an account on another Mobilizon instance.": "Teño unha conta noutra instancia Mobilizon.", + "I have an account on {instance}.": "Teño unha conta en {instance}.", + "I participate": "Eu participo", + "I want to allow people to participate without an account.": "Quero que a xente poida participar sen ter unha conta.", + "I want to approve every participation request": "Quero aprobar cada solicitude de participación", + "I want to manage the registration with an external provider": "Quero xestionar o rexistro cun provedor externo", + "I've been mentionned in a comment under an event": "Fun mencionada nun comentario no evento", + "I've been mentionned in a conversation": "Fun mencionada nunha conversa", + "I've been mentionned in a group discussion": "Fun mencionada na conversa dun grupo", + "I've clicked on X, then on Y": "Premín en X, e após en Y", + "ICS feed for events": "Fonte ICS para eventos", + "ICS/WebCal Feed": "Fonte ICS/WebCal", + "IP Address": "Enderezo IP", + "Identities": "Identidades", + "Identity {displayName} created": "Creouse a identidade {displayName}", + "Identity {displayName} deleted": "Eliminada a identidade {displayName}", + "Identity {displayName} updated": "Identidade {displayName} actualizada", + "If allowed by organizer": "Se permitido pola organización", + "If an account with this email exists, we just sent another confirmation email to {email}": "Se existe unha conta con este correo, enviaríamos outro correo de confirmación a {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Se esta identidade é a única administradora dalgúns grupos, precisas eliminalos antes de poder eliminar esta identidade.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Se che preguntan pola túa identidade federada, esta componse do identificador e da instancia. Por exemplo, a identidade federada do teu primeiro perfil é:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Se optaches pola validación manual das participantes, Mobilizon enviarache un correo para informarte das novas solicitudes a tratar. Podes escoller a frecuencia destas notificacións.", + "If you want, you may send a message to the event organizer here.": "Se o desexas, aquí podes enviar unha mensaxe á organización do evento.", + "Ignore": "Ignorar", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Imaxe de ilustración para \"{category}\" de {author} en {source} ({license})", + "In person": "En persoa", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "No seguinte contexto, unha aplicación é un software, proporcionado polo equipo Mobilizon ou por terceiros, utilizado para interactuar coa túa instancia.", + "In the past": "No pasado", + "In this instance's network": "Na rede desta instancia", + "Increase": "Aumentar", + "Instance": "Instancia", + "Instance Long Description": "Descrición longa da instancia", + "Instance Name": "Nome da instancia", + "Instance Privacy Policy": "Política de Privacidade da instancia", + "Instance Privacy Policy Source": "Fonte da política de privacidade da instancia", + "Instance Privacy Policy URL": "URL coa Política de Privacidade da instancia", + "Instance Rules": "Normas da instancia", + "Instance Short Description": "Descrición curta da instancia", + "Instance Slogan": "Eslogan da Instancia", + "Instance Terms": "Termos da instancia", + "Instance Terms Source": "Fonte dos Termos da instancia", + "Instance Terms URL": "URL dos Termos da instancia", + "Instance administrator": "Administradora da instancia", + "Instance configuration": "Configuración da instancia", + "Instance feeds": "Fontes da instancia", + "Instance languages": "Idiomas da instancia", + "Instance rules": "Normas da instancia", + "Instance settings": "Axustes da instancia", + "Instances": "Instancias", + "Instances following you": "Instancias que te seguen", + "Instances you follow": "Instancias que segues", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Integrar este evento en ferramentas de terceiras parte e mostrar metadatos do evento.", + "Interact": "Interactuar", + "Interact with a remote content": "Interactuar cun evento remoto", + "Invite a new member": "Convida a un novo membro", + "Invite member": "Convida a persoa", + "Invited": "Convidada", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "É posible que o contido non sexa accesible nesta instancia, porque a instancia bloqueou os perfís ou grupos que publican este contido.", + "Italic": "Cursiva", + "Jitsi Meet": "Jitsi Meet", + "Join": "Unirse", + "Join {instance}, a Mobilizon instance": "Únete a {instance}, unha instancia Mobilizon", + "Join group": "Unirse ó grupo", + "Join group {group}": "Únete ao grupo {group}", + "Join {instance}, a Mobilizon instance": "Únete a {instance}, unha instancia Mobilizon", + "Keep the entire conversation about a specific topic together on a single page.": "Manter nunha sóa páxina a conversa sobre un evento ou tema concreto.", + "Key words": "Palabras chave", + "Keyword, event title, group name, etc.": "Palabra chave, título do evento, nome do grupo, etc.", + "Language": "Idioma", + "Languages": "Idiomas", + "Last IP adress": "Último enderezo IP", + "Last group created": "Último grupo creado", + "Last published event": "Último evento publicado", + "Last published events": "Últimos eventos publicados", + "Last seen on": "Última visita", + "Last sign-in": "Última conexión", + "Last used on {last_used_date}": "Último acceso o {last_used_date}", + "Last week": "Última semana", + "Latest posts": "Últimas publicacións", + "Learn more": "Saber máis", + "Learn more about Mobilizon": "Coñece máis acerca de Mobilizon", + "Learn more about {instance}": "Coñece máis sobre {instance}", + "Least recently published": "Publicado máis antigo", + "Leave": "Saír", + "Leave event": "Deixar o evento", + "Leave group": "Deixar o grupo", + "Leaving event \"{title}\"": "Saíndo do evento \"{title}\"", + "Legal": "Legal", + "Let's define a few settings": "Define algúns parámetros", + "License": "Licenza", + "Light": "Claro", + "Limited number of places": "Número de prazas limitado", + "List": "Lista", + "List of conversations": "Lista das conversas", + "List title": "Título da lista", + "Live": "Directo", + "Load more": "Cargar máis", + "Load more activities": "Cargar máis actividades", + "Loading comments…": "Cargando comentarios…", + "Loading map": "Cargando mapa", + "Local": "Local", + "Local time ({timezone})": "Hora local ({timezone})", + "Local times ({timezone})": "Horas locais ({timezone})", + "Locality": "Localidade", + "Location": "Localización", + "Log in": "Acceder", + "Log out": "Saír", + "Login": "Acceso", + "Login on Mobilizon!": "Entra en Mobilizon!", + "Login on {instance}": "Accede a {instance}", + "Login status": "Estado da conexión", + "Logo": "Logotipo", + "Logo of the instance. Defaults to the upstream Mobilizon logo.": "Logotipo da instancia. Por defecto aparece o logo de Mobilizon.", + "Main languages you/your moderators speak": "Idiomas principais que ti ou as túas colaboradoras falades", + "Make sure that all words are spelled correctly.": "Comproba que todas as palabras están correctamente escritas.", + "Manage activity settings": "Xestionar axustes da actividade", + "Manage event participations": "Xestionar participacións no evento", + "Manage group members": "Xestionar membros do grupo", + "Manage group memberships": "Xestionar membros do grupo", + "Manage participations": "Xestionar participantes", + "Manage push notification settings": "Xestionar axustes de notificacións push", + "Manually approve new followers": "Aprobar manualmente novas solicitudes", + "Manually enter address": "Escribir manualmente o enderezo", + "Manually invite new members": "Convida manualmente a novos membros", + "Map": "Mapa", + "Mark as resolved": "Marcar como resolto", + "Maybe the content was removed by the author or a moderator": "Pode que o contido se movese de sitio pola autora ou a moderación", + "Member": "Membro", + "Members": "Membros", + "Members will also access private sections like discussions, resources and restricted posts.": "Os membros poderán acceder a seccións privadas como debates, recursos e publicacións restrinxidas.", + "Members-only post": "Publicación só para membros", + "Membership requests will be approved by a group moderator": "A solicitudes de unirse ao grupo serán aprobadas pola moderación do grupo", + "Memberships": "Membros", + "Mentions": "Mencións", + "Message": "Mensaxe", + "Message body": "Corpo da mensaxe", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon é unha rede federada. Podes interactuar con este evento desde outro servidor.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon é un software federado, esto significa que podes interactuar - dependendo dos axustes da instancia - con contido doutras instancias, como unirte a grupos ou eventos que foron creados nelas.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon axúdache a atopar, crear e organizar eventos.", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon é unha ferramenta que che axuda a {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon non é unha plataforma xigante, se non múltiples sitios web Mobilizon interconectados.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon non é unha plataforma xigante, se non unha {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "Software Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon utiliza un sistema de perfís para organizar as túas actividades. Poderás crear tantos perfís como queiras.", + "Mobilizon version": "Versión Mobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizón enviarache un correo cando os eventos nos que participes teñan cambios importantes: data e hora, enderezos, confirmación ou cancelación, etc.", + "Moderate new members": "Moderar novos membros", + "Moderated comments (shown after approval)": "Comentarios moderados (mostrados após aprobación)", + "Moderation": "Moderación", + "Moderation log": "Rexistro da moderación", + "Moderation logs": "Rexistro da moderación", + "Moderator": "Moderadora", + "Modify all of your account's data": "Modificar todos os datos da túa conta", + "More options": "Máis opcións", + "Most recently published": "Publicado máis recente", + "Move": "Mover", + "Move \"{resourceName}\"": "Mover \"{resourceName}\"", + "Move resource to the root folder": "Mover recurso ao cartafol primario", + "Move resource to {folder}": "Mover recurso a {folder}", + "My account": "Conta", + "My events": "Eventos", + "My federated identity ends in {domain}": "A miña identidade federada remata en {domain}", + "My groups": "Os meus grupos", + "My identities": "Identidades", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "AVISO! Os termos por omisión non foron revisados por avogados e dificilmente proporcionan cobertura legal completa para todas as situacións que se dean nun instancia. Tampouco son específicas para todos os países e xurisdicións. Se non estás segura, consúltaas cun avogado.", + "Name": "Nome", + "Navigated to {pageTitle}": "Ir a {pageTitle}", + "Never used": "Nunca utilizada", + "New announcement": "Novo anuncio", + "New discussion": "Novo debate", + "New email": "Novo correo", + "New folder": "Novo cartafol", + "New link": "Nova ligazón", + "New members": "Novos membros", + "New note": "Nova nota", + "New password": "Novo contrasinal", + "New post": "Nova publicación", + "New private message": "Nova mensaxe privada", + "New profile": "Novo perfil", + "Next": "Seguinte", + "Next month": "O mes seguinte", + "Next page": "Páxina seguinte", + "Next week": "A semana seguinte", + "No activities found": "Sen actividades", + "No address defined": "Sen enderezo definido", + "No apps authorized yet": "Aínda non hai apps autorizadas", + "No categories with public upcoming events on this instance were found.": "Non se atoparon nesta instancia categorías con eventos públicos próximos.", + "No closed reports yet": "Aínda sen denuncias pechadas", + "No comment": "Sen comentarios", + "No comments yet": "Aínda non hai comentarios", + "No content found": "Non hai contido", + "No discussions yet": "Aínda non hai debates", + "No end date": "Se data de fin", + "No event found at this address": "Non se atopan eventos neste enderezo", + "No events found": "Non se atopan eventos", + "No events found for {search}": "Non se atopan eventos para {search}", + "No follower matches the filters": "Ningunha seguidora supera o filtro", + "No group found": "Non hai grupos", + "No group matches the filters": "Ningún grupo concorda cos filtros", + "No group member found": "Non se atopa membro do grupo", + "No groups found": "Non se atoparon grupos", + "No groups found for {search}": "Non se atopan grupos con {search}", + "No information": "Sen información", + "No instance follows your instance yet.": "Aínda non te segue ningunha instancia.", + "No instance found.": "Non se atopou a instancia.", + "No instance to approve|Approve instance|Approve {number} instances": "Ningunha instancia que aprobar|Aprobar instancia|Aprobar {number} instancias", + "No instance to reject|Reject instance|Reject {number} instances": "Ningunha instancia que rexeitar|Rexeitar instancia|Rexeitar {number} instancias", + "No instance to remove|Remove instance|Remove {number} instances": "Ningunha instacia que eliminar|Eliminar instancia|Eliminar {number} instancias", + "No instances match this filter. Try resetting filter fields?": "Ningunha instancia concorda co filtro. Restablecemos os campos do filtro?", + "No languages found": "Non hai idiomas", + "No member matches the filters": "Ningún membro concorda cos filtros", + "No members found": "Non hai membros", + "No memberships found": "Non hai membresías", + "No message": "Sen mensaxe", + "No moderation logs yet": "Sen rexistros da moderación", + "No more activity to display.": "Sen máis actividade que amosar.", + "No one is participating|One person participating|{going} people participating": "Ninguén está a participar|Unha persoa participa|{going} persoas participan", + "No open reports yet": "Aínda non se presentaron denuncias", + "No organized events found": "Non hai eventos organizados", + "No organized events listed": "Sen eventos organizados na lista", + "No participant matches the filters": "Ningún participante para estos filtros", + "No participant to approve|Approve participant|Approve {number} participants": "Sen participantes que aprobar|Aprobar participante|Aprobar {number} participantes", + "No participant to reject|Reject participant|Reject {number} participants": "Sen participantes que rexeitar|Rexeitar participante|Rexeitar {number} participantes", + "No participations listed": "Sen participacións na lista", + "No posts found": "Non se atopan publicacións", + "No posts yet": "Aínda non hai publicacións", + "No profile matches the filters": "Ningún perfil para este filtro", + "No public upcoming events": "Sen eventos públicos próximamente", + "No resolved reports yet": "Sen denuncias non resoltas", + "No resources in this folder": "Sen recursos neste cartafol", + "No resources selected": "Sen recursos seleccionados|Un recurso seleccionado|{count} recursos seleccionados", + "No resources yet": "Aínda non hai recursos", + "No results for \"{queryText}\"": "Sen resultados para \"{queryText}\"", + "No results for {search}": "Sen resultados para {search}", + "No results found": "Sen resultados", + "No results found for {search}": "Sen resultados para {search}", + "No rules defined yet.": "Sen normas definidas.", + "No user matches the filter": "Ningunha usuaria concorda co filtro", + "No user matches the filters": "Ningunha usuaria concorda cos filtros", + "None": "Nada", + "Not accessible with a wheelchair": "Non é accesible con cadeira de rodas", + "Not approved": "Non aprobado", + "Not confirmed": "Non confirmado", + "Notes": "Notas", + "Notification before the event": "Notificación previa ó evento", + "Notification on the day of the event": "Notificación o día do evento", + "Notification settings": "Axustes das notificacións", + "Notifications": "Notificacións", + "Notifications for manually approved participations to an event": "Notificacións para participacións no evento aprobadas manualmente", + "Notify participants": "Notificar ás participantes", + "Notify the user of the change": "Avisar á usuaria do cambio", + "Now, create your first profile:": "Agora, crea o teu primeiro perfil:", + "Number of members": "Número de membros", + "Number of places": "Número de prazas", + "OK": "OK", + "Old password": "Contrasinal antigo", + "On foot": "A pé", + "On the Fediverse": "No Fediverso", + "On {date}": "O {date}", + "On {date} ending at {endTime}": "O {date} remantando ás {endTime}", + "On {date} from {startTime} to {endTime}": "O {date} desde {startTime} ás {endTime}", + "On {date} starting at {startTime}": "O {date} comezando ás {startTime}", + "On {instance} and other federated instances": "En {instance} e outras instancias federadas", + "Online": "En liña", + "Online events": "Eventos en liña", + "Online ticketing": "Entradas por internet", + "Online upcoming events": "Próximos eventos en liña", + "Only Mobilizon instances can be followed": " ", + "Only accessible through link": "Accesible só a través da ligazón", + "Only accessible through link (private)": "Só accesible desde a ligazón (privada)", + "Only accessible to members of the group": "Accesible só para membros do grupo", + "Only alphanumeric lowercased characters and underscores are supported.": "Só se permiten caracteres alfanuméricos en minúsculas e trazo baixo.", + "Only group members can access discussions": "Só os membros do grupo poden acceder aos debates", + "Only group moderators can create, edit and delete events.": "Só os moderadores do grupo poden crear, editar e eliminar eventos.", + "Only group moderators can create, edit and delete posts.": "Só as moderadoras do grupo poden crear, editar e eliminar publicacións.", + "Only instances with an application actor can be followed": "Só as instancias cun actor de aplicación poden ser seguidas", + "Only registered users may fetch remote events from their URL.": "Só as usuarias rexistradas poden recibir elementos remotos co seu URL.", + "Open": "Abrir", + "Open a topic on our forum": "Abrir un tema no noso foro", + "Open an issue on our bug tracker (advanced users)": "Abrir un informe no noso seguimento de fallos (usuarias avanzadas)", + "Open conversations": "Abrir conversas", + "Open main menu": "Abrir menú principal", + "Open user menu": "Abrir menú de usuaria", + "Opened reports": "Denuncias abertas", + "Or": "Ou", + "Ordered list": "Lista ordenada", + "Organized": "Organizado", + "Organized by": "Organizado por", + "Organized by {name}": "Organizado por {name}", + "Organized events": "Eventos organizados", + "Organizer": "Organizador", + "Organizer notifications": "Notificacións da organización", + "Organizers": "Organizado por", + "Other": "Outro", + "Other actions": "Outras accións", + "Other notification options:": "Outras opcións de notificación:", + "Other software may also support this.": "Outro software tamén podería soportar esto.", + "Other users with the same IP address": "Outras usuarias co mesmo enderezo IP", + "Other users with the same email domain": "Outras usuarias co mesmo dominio de correo", + "Otherwise this identity will just be removed from the group administrators.": "Se non esta identidade será eliminada do grupo de administradoras.", + "Owncast": "Owncast", + "Page": "Páxina", + "Page limited to my group (asks for auth)": "Páxina limitada ao meu grupo (pide autenticarse)", + "Page not found": "Páxina non atopada", + "Parent folder": "Cartafol superior", + "Partially accessible with a wheelchair": "Parcialmente accesible con cadeira de rodas", + "Participant": "Participante", + "Participants": "Participantes", + "Participants to {eventTitle}": "Participantes en {eventTitle}", + "Participate": "Participa", + "Participate using your email address": "Participa usando o teu enderezo de correo", + "Participation approval": "Aprobar participación", + "Participation confirmation": "Confirmación da participación", + "Participation notifications": "Notificacións da participación", + "Participation requested!": "Participación solicitada!", + "Participation with account": "Participación coa conta", + "Participation without account": "Participación sen conta", + "Participations": "Participacións", + "Password": "Contrasinal", + "Password (confirmation)": "Contrasinal (confirmación)", + "Password reset": "Restablecer contrasinal", + "Past events": "Eventos pasados", + "PeerTube live": "PeerTube en directo", + "PeerTube replay": "Repetición PeerTube", + "Pending": "Pendente", + "Personal feeds": "Fontes personais", + "Photo by {author} on {source}": "Foto de {author} en {source}", + "Pick": "Escoller", + "Pick a profile or a group": "Escolle un perfil ou un grupo", + "Pick an identity": "Escolle unha identidade", + "Pick an instance": "Escolle unha instancia", + "Please add as many details as possible to help identify the problem.": "Por favor engade tódolos detalles posibles para axudarnos a identificar o problema.", + "Please check your spam folder if you didn't receive the email.": "Comproba o cartafol de spam se non recibiches o correo.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Contacta coa administración da instancia Mobilizon se cres que é un erro.", + "Please do not use it in any real way.": "Non o utilice para eventos reais.", + "Please enter your password to confirm this action.": "Escribe o teu contrasinal para confirmar a acción.", + "Please make sure the address is correct and that the page hasn't been moved.": "Comproba ben o enderezo e que a páxina non foi movida a outro lugar.", + "Please read the {fullRules} published by {instance}'s administrators.": "Por favor le as {fullRules} publicadas pola administración de {instance}.", + "Popular groups close to you": "Grupos populares preto de ti", + "Popular groups nearby {position}": "Grupos populares preto de {position}", + "Post": "Publicación", + "Post URL": "URL da publicación", + "Post a comment": "Comenta", + "Post a reply": "Publica unha resposta", + "Post body": "Corpo da publicación", + "Post comments": "Publicar comentarios", + "Post {eventTitle} reported": "Denunciado o evento {eventTitle}", + "Postal Code": "Código Postal", + "Posts": "Publicacións", + "Powered by Mobilizon": "Grazas a Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Funciona grazas a {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Co soporte financieiro das {contributors}.", + "Preferences": "Preferencias", + "Previous": "Anterior", + "Previous email": "Correo anterior", + "Previous month": "Mes anterior", + "Previous page": "Páxina anterior", + "Price sheet": "Tarifa", + "Primary Color": "Cor Principal", + "Privacy": "Privacidade", + "Privacy Policy": "Política de Privacidade", + "Privacy policy": "Política de privacidade", + "Private event": "Evento privado", + "Private feeds": "Fontes privadas", + "Profile": "Perfil", + "Profile feeds": "Fontes do perfil", + "Profile suspended and report resolved": "Perfil suspendido e denuncia resolta", + "Profiles": "Perfís", + "Profiles and federation": "Perfís e federación", + "Promote": "Promocionar", + "Public": "Público", + "Public RSS/Atom Feed": "Fonte RSS/Atom pública", + "Public comment moderation": "Moderación de comentario público", + "Public event": "Evento público", + "Public feeds": "Fontes públicas", + "Public iCal Feed": "Fonte pública iCal", + "Public preview": "Vista previa pública", + "Publication date": "Data de publicación", + "Publish": "Publicar", + "Publish events": "Publicar eventos", + "Publish group posts": "Publicar no grupo", + "Published by {name}": "Publicado por {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Eventos publicados con {comments} comentarios e {participations} participacións confirmadas", + "Published events with {comments} comments and {participations} confirmed participations": "Eventos publicados con {comments} comentarios e {participations} participantes confirmados", + "Push": "Push", + "Quote": "Citar", + "RSS/Atom Feed": "Fonte RSS/Atom", + "Radius": "Radio", + "Read all of your account's data": "Ler todos os datos da túa conta", + "Read user activity settings": "Ler os axustes das actividades da usuaria", + "Read user media": "Ler multimedia da usuaria", + "Read user memberships": "Ler mebresías da usuaria", + "Read user participations": "Ler participacións da usuaria", + "Read user settings": "Ler axustes da usuaria", + "Recap every week": "Resumen semanal", + "Receive one email for each activity": "Recibir un correo por cada actividade", + "Receive one email per request": "Recibir un correo por solicitude", + "Redirecting in progress…": "Redireccionando…", + "Redirecting to Mobilizon": "Redirixindo a Mobilizon", + "Redirecting to content…": "Redirixindo ó contido…", + "Redo": "Volver facer", + "Refresh profile": "Actualiza perfil", + "Regenerate new links": "Recrear novas ligazóns", + "Region": "Rexión", + "Register": "Crear conta", + "Register an account on {instanceName}!": "Crea unha conta en {instanceName}!", + "Register on this instance": "Rexístrate nesta instancia", + "Registration is allowed, anyone can register.": "Rexistro permitido, calquera pode crear conta.", + "Registration is closed.": "O rexistro está pechado.", + "Registration is currently closed.": "Actualmente non é posible crear contas.", + "Registrations": "Rexistro", + "Registrations are restricted by allowlisting.": "Os rexistros están restrinxidos por listas autorizadas.", + "Reject": "Rexeitar", + "Reject follow": "Rexeitar seguimento", + "Reject member": "Rexeitar membro", + "Rejected": "Rexeitado", + "Remember my participation in this browser": "Lembra a miña participación neste navegador", + "Remove": "Eliminar", + "Remove link": "Eliminar ligazón", + "Remove uploaded media": "Eliminar multimedia subido", + "Rename": "Renomear", + "Rename resource": "Renomear recurso", + "Reopen": "Abrir de novo", + "Replay": "Repetición", + "Reply": "Responder", + "Report": "Denunciar", + "Report #{reportNumber}": "Denuncia #{reportNumber}", + "Report as spam": "Denunciar como spam", + "Report as undetected spam": "Denunciar como spam non detectado", + "Report reason": "Razón da denuncia", + "Report status": "Denunciar estado", + "Report this comment": "Denunciar este comentario", + "Report this event": "Denunciar este evento", + "Report this group": "Denunciar este grupo", + "Report this post": "Denuncia esta publicación", + "Reported": "Denunciado", + "Reported at": "Denunciado o", + "Reported by": "Denunciado por", + "Reported by an unknown actor": "Denunciado por un actor anónimo", + "Reported by someone anonymously": "Denunciado de xeito anónimo", + "Reported by someone on {domain}": "Foi denunciado por alguén desde {domain}", + "Reported by {reporter}": "Denunciado por {reporter}", + "Reported content": "Contido denunciado", + "Reported group": "Grupo denunciado", + "Reported identity": "Identidade denunciada", + "Reports": "Denuncias", + "Reports list": "Lista de denuncias", + "Request for participation confirmation sent": "Solicitar o envío da confirmación de participación", + "Resend confirmation email": "Reenviar correo de confirmación", + "Resent confirmation email": "Reenviado o correo de confirmación", + "Reset": "Restablecer", + "Reset filters": "Restablecer filtros", + "Reset my password": "Restablecer contrasinal", + "Reset password": "Restablecer contrasinal", + "Resolved": "Resolto", + "Resource provided is not an URL": "O recurso proporcionado non é un URL", + "Resources": "Recursos", + "Restricted": "Restrinxido", + "Return to the event page": "Volver á páxina do evento", + "Return to the group page": "Volver á páxina do grupo", + "Revoke": "Revogar", + "Right now": "Xusto agora", + "Role": "Rol", + "Rules": "Normas", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL e o seu sucesor TLS son tecnoloxías de cifrado para protexer a comunicación de datos cando se usa o servizo. Podes recoñecer unha conexión cifrada cando na barra de enderezos do navegador o URL comeza con {https} e aparece a icona do cadeado na barra de enderezos.", + "SSL/TLS": "SSL/TLS", + "Save": "Gardar", + "Save draft": "Gardar borrador", + "Schedule": "Programa", + "Search": "Buscar", + "Search events, groups, etc.": "Buscar eventos, grupos, etc.", + "Search target": "Buscar obxectivo", + "Searching…": "Buscando…", + "Secondary Color": "Cor Secundaria", + "Select a category": "Escoller unha categoría", + "Select a language": "Escolle idioma", + "Select a radius": "Elixe o radio", + "Select a timezone": "Escolle zona horaria", + "Select all resources": "Escolle todos os recursos", + "Select distance": "Elixe a distancia", + "Select languages": "Escolle idiomas", + "Select the activities for which you wish to receive an email or a push notification.": "Escolle as actividades das que queres recibir un correo ou notificación push.", + "Select this resource": "Escolle este recurso", + "Send": "Enviar", + "Send email": "Enviar correo", + "Send feedback": "Enviar experiencia", + "Send notification e-mails": "Enviar emails de notificacións", + "Send password reset": "Enviar restablecemento de contrasinal", + "Send the confirmation email again": "Enviar o correo de confirmación outra vez", + "Send the report": "Enviar a denuncia", + "Sent to {count} participants": "Non se enviou a ninguén|Enviado a 1 participante|Enviado a {count} participantes", + "Set an URL to a page with your own privacy policy.": "Establece o URL da páxina coa túa política de privacidade.", + "Set an URL to a page with your own terms.": "Establecer URL a unha páxina cos teus termos.", + "Settings": "Axustes", + "Share": "Compartir", + "Share this event": "Compartir este evento", + "Share this group": "Compartir este grupo", + "Share this post": "Comparte esta publicación", + "Short bio": "Bio curta", + "Show filters": "Mostrar filtros", + "Show map": "Mostrar mapa", + "Show me where I am": "Mostra onde me atopo", + "Show remaining number of places": "Mostrar o número de prazas restantes", + "Show the time when the event begins": "Mostrar a hora á que comeza o evento", + "Show the time when the event ends": "Mostar a hora na que remata o evento", + "Showing events before": "Mostrando eventos antes do", + "Showing events starting on": "Mostrando eventos a partir do", + "Sign Language": "Idioma de signos", + "Sign in with": "Acceder con", + "Sign up": "Rexistro", + "Since you are a new member, private content can take a few minutes to appear.": "Como es un novo membro, o contido privado podería tardar uns minutos en aparecer.", + "Skip to main content": "Ir directamente ao contido", + "Smoke free": "Libre de fume", + "Smoking allowed": "Permítese fumar", + "Social": "Social", + "Software details: {software_details}": "Detalles do software: {software_details}", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Algúns termos, técnicos ou doutro tipo, utilizados no texto poderían referirse a conceptos difíciles de entender. Aquí tes un glosario para axudarche a entendelos mellor:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Lamentámolo, pero non puidemos gardar a túa experiencia. Non te preocupes, intentaremos arranxar o problema igualmente.", + "Sort by": "Orde por", + "Starts on…": "Comeza o…", + "Status": "Estado", + "Statuses": "Estados", + "Stop following instance": "Deixar de seguir a instancia", + "Street": "Rúa", + "Submit": "Enviar", + "Submit to Akismet": "Enviar a Akismet", + "Subtitles": "Subtítulos", + "Suggestions:": "Suxestións:", + "Suspend": "Suspender", + "Suspend group": "Suspende grupo", + "Suspend the account": "Suspender a conta", + "Suspend the account?": "Suspender a conta?", + "Suspend the profile": "Suspender o perfil", + "Suspend the profile?": "Suspender o perfil?", + "Suspended": "Suspendida", + "Tag search": "Buscar etiqueta", + "Task lists": "Listas de tarefas", + "Technical details": "Detalles técnicos", + "Tentative": "Provisional", + "Tentative: Will be confirmed later": "Tentativa: será confirmada máis tarde", + "Terms": "Termos", + "Terms of service": "Termos do servizo", + "Text": "Texto", + "Thanks a lot, your feedback was submitted!": "Moitas grazas, enviouse o teu informe!", + "That you follow or of which you are a member": "Que sigues ou do que es membro", + "The Big Blue Button video teleconference URL": "URL da videoconferencia utilizando The Big Blue Button", + "The Google Meet video teleconference URL": "URL da videoconferencia a través de Google Meet", + "The Jitsi Meet video teleconference URL": "URL da videoconferencia usando Jitsi Meet", + "The Microsoft Teams video teleconference URL": "URL da videoconferencia a través de Microsoft Teams", + "The URL of a pad where notes are being taken collaboratively": "URL da libreta onde se tomaran notas de xeito colaborativo", + "The URL of a poll where the choice for the event date is happening": "O URL da enquisa onde se consulta acerca da data para o evento", + "The URL where the event can be watched live": "O URL onde se poderá ver o evento en directo", + "The URL where the event live can be watched again after it has ended": "O URL do lugar onde se poderá ver outra vez o evento unha vez remate", + "The Zoom video teleconference URL": "URL da videoconferencia por Zoom", + "The account's email address was changed. Check your emails to verify it.": "Cambiou o correo da conta. Comproba os teus correos para verficar o cambio.", + "The actual number of participants may differ, as this event is hosted on another instance.": "O número real de participantes podería ser diferente, este evento está noutra instancia.", + "The calc will be created on {service}": "Vaise crear a folla en {service}", + "The content came from another server. Transfer an anonymous copy of the report?": "O contido procede doutro servidor. Desexas transferir unha copia anónima da denuncia?", + "The device code is incorrect or no longer valid.": "O código de dispositivo non é correcto ou xa non é válido.", + "The draft event has been updated": "Actualizouse o borrador do evento", + "The event has a sign language interpreter": "O evento ten intérprete de lingua de signos", + "The event has been created as a draft": "O evento foi creado como un borrador", + "The event has been published": "O evento foi publicado", + "The event has been updated": "O evento foi actualizado", + "The event has been updated and published": "O evento foi actualizado e publicado", + "The event hasn't got a sign language interpreter": "O evento non ten intérprete de lingua de signos", + "The event is fully online": "Evento totalmente en liña", + "The event live video contains subtitles": "O vídeo do evento en directo contén subtítulos", + "The event live video does not contain subtitles": "O vídeo do evento en directo non contén subtítulos", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "O organizador do evento escolleu validar manualmente as participacións. Desexas engadir unha nota explicando a razón pola que queres participar no evento?", + "The event organizer didn't add any description.": "O organizador do evento non engadiu ningunha descrición.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "O organizador do evento aproba manualmente as participacións. Como escolleches participar sen crear unha conta, por favor explica a razón do teu desexo de participar.", + "The event title will be ellipsed.": "O título do evento será acurtado.", + "The event will show as attributed to this group.": "O evento aparecerá atribuído a este grupo.", + "The event will show as attributed to this profile.": "O evento aparecerá como atribuído a este perfil.", + "The event will show as attributed to your personal profile.": "O evento aparecerá atribuído ó teu perfil persoal.", + "The event {event} was created by {profile}.": "O evento {event} foi creado por {profile}.", + "The event {event} was deleted by {profile}.": "{profile} eliminou o evento {event}.", + "The event {event} was updated by {profile}.": "{profile} actualizou o evento {evento}.", + "The events you created are not shown here.": "Os eventos que ti creaches non se mostran aquí.", + "The following participants are groups, which means group members are able to reply to this conversation:": "Os seguintes participantes son grupos, o que significa que os membros dos grupos poderán responder a esta conversa:", + "The following user's profiles will be deleted, with all their data:": "Vanse eliminar os seguintes perfís da usuaria, con todos os seus datos:", + "The geolocation prompt was denied.": "Rexeitouse a solicitude para localización.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "Agora calquera pode unirse ao grupo, pero os novos membros teñen que ser aprobados pola administración.", + "The group can now be joined by anyone.": "Agora calquera pode unirse ao grupo.", + "The group can now only be joined with an invite.": "Agora só se pode acceder ao grupo cun convite.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Este grupo aparecerá en resultados de buscas e podería ser suxerido na sección descubrir. Só se mostrará información pública nesta páxina.", + "The group's avatar was changed.": "Cambiouse o avatar do grupo.", + "The group's banner was changed.": "Cambiouse a cabeceira do grupo.", + "The group's physical address was changed.": "Cambiouse o enderezo físico do grupo.", + "The group's short description was changed.": "Cambiouse a descrición curta do grupo.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "A administradora da instancia é a persoa ou entidade que xestiona a instancia Mobilizon.", + "The member was approved": "Foi aprobada a solicitude como membro", + "The member was removed from the group {group}": "A usuaria foi eliminada do grupo {group}", + "The membership request from {profile} was rejected": "Rexeitouse a solicitude de {profile} para ser membro", + "The only way for your group to get new members is if an admininistrator invites them.": "O único xeito para que o grupo teña novos membros e a través de convites das administradoras.", + "The organiser has chosen to close comments.": "A organización escolleu pechar os comentarios.", + "The pad will be created on {service}": "Vaise crear o documento en {service}", + "The page you're looking for doesn't exist.": "A páxina que buscas non existe.", + "The password was successfully changed": "Cambiouse correctamente o contrasinal", + "The post {post} was created by {profile}.": "{profile} creou a publicación {post}.", + "The post {post} was deleted by {profile}.": "A publicación {post} foi eliminada por {profile}.", + "The post {post} was updated by {profile}.": "A publicación {post} foi actualizada por {profile}.", + "The provided application was not found.": "Non se atopa a aplicación proporcionada.", + "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.": "O contido da denuncia (posibles comentarios e evento) así como os detalles do perfil denunciado serán transmitidos a Akismet.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "A denuncia vaise enviar á moderación da instancia. Podes explicar aquí abaixo as razóns para denunciar.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "A imaxe seleccionada é demasiado grande. Debes escoller un ficheiro menor de {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Os detalles técnicos do erro axudan ás desenvolvedoras a solucionar o problema máis facilmente. Engádeos ao teu informe.", + "The user has been disabled": "Desactivouse a usuaria", + "The videoconference will be created on {service}": "Vaise crear a videoconferencia en {service}", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Vaise usar a {default_privacy_policy} e será traducida ó idioma da usuaria.", + "The {default_terms} will be used. They will be translated in the user's language.": "Serán utilizados os {default_terms}. Serán traducidos ó idioma da usuaria.", + "Theme": "Decorado", + "There are {participants} participants.": "Hai {participants} participantes.", + "There is no activity yet. Start doing some things to see activity appear here.": "Aínda non hai actividade. Aparecerán aquí as cousas que vaias facendo.", + "There will be no way to recover your data.": "Non hai xeito de recuperar os teus datos.", + "There will be no way to restore the profile's data!": "Non haberá xeito de restablecer os datos do perfil!", + "There will be no way to restore the user's data!": "Non haberá xeito de restablecer os datos da usuaria!", + "There's no announcements yet": "Aínda non hai anuncios", + "There's no conversations yet": "Aínda non hai debates", + "There's no discussions yet": "Aínda non hai conversas", + "These apps can access your account through the API. If you see here apps that you don't recognize, that don't work as expected or that you don't use anymore, you can revoke their access.": "Estas apps poden acceder á túa conta usando a API. Se ves aquí aplicacións que non recoñeces, que non funcionan como agardabas ou que xa non usas, podes revogar o seu acceso.", + "These events may interest you": "Estos eventos poderían interesarche", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Estas fontes conteñen datos de eventos para calquera dos teus perfís nos que es participante ou creadora. Deberías mantelas privadas. Podes atopar fontes para perfís específicos en cada páxina de edición do perfil.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Estas fontes conteñen datos dos eventos dos que este perfil é participante ou creador. Deberías mantelas privadas. Podes atopar fontes nos axustes de notificacións para tódolos teus perfís.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Esta instancia Mobilizon e os organizadores do evento permiten a participación anónima, pero requiren validación a través dun correo.", + "This URL doesn't seem to be valid": "Este URL non semella ser válido", + "This URL is not supported": "O URL non está soportado", + "This announcement will be send to all participants with the statuses selected below. They will not be allowed to reply to your announcement, but they can create a new conversation with you.": "Este anuncio vaise enviar a todas as persoas participantes con estados seleccionados abaixo. Non poderán responder ao anuncio, pero poderán crear unha conversa contigo.", + "This application asks for the following permissions:": "Esta aplicación solicita os seguintes permisos:", + "This application didn't ask for known permissions. It's likely the request is incorrect.": "Esta aplicación non solicitou permisos coñecidos. Probablemente sexa unha solicitude non válida.", + "This application will be able to access all of your informations and post content. Make sure you only approve applications you trust.": "Esta aplicación poderá acceder a toda a túa información e contido publicado. Comproba que só autorizas as aplicacións nas que confías.", + "This application will be allowed to access all of the groups you're a member of": "Esta aplicación vai poder acceder a todos os grupo dos que ti es membro", + "This application will be allowed to access group activities in all of the groups you're a member of": "Esta aplicación vai poder acceder ás actividades do grupo en todos os grupos dos que es membro", + "This application will be allowed to access your user activity settings": "Esta aplicación poderá acceder aos axustes da túa actividade de usuaria", + "This application will be allowed to access your user settings": "Esta aplicación poderá acceder aos axustes da usuaria", + "This application will be allowed to create feed tokens": "Esta aplicación poderá crear tokens para a fonte", + "This application will be allowed to create group discussions": "Esta aplicación poderá crear debates no grupo", + "This application will be allowed to create new profiles for your account": "Esta aplicación poderá crear novos perfís para a túa conta", + "This application will be allowed to create resources in all of the groups you're a member of": "Esta aplicación vai poder crear recursos en todos os grupos dos que es membro", + "This application will be allowed to delete comments": "Esta aplicación poderá eliminar comentarios", + "This application will be allowed to delete events": "Esta aplicación vai poder eliminar eventos", + "This application will be allowed to delete feed tokens": "Esta aplicación poderá eliminar tokens para a fonte", + "This application will be allowed to delete group discussions": "Esta aplicación poderá eliminar debates do grupo", + "This application will be allowed to delete group posts": "Esta aplicación vai poder eliminar publicacións do grupo", + "This application will be allowed to delete resources in all of the groups you're a member of": "Esta aplicación vai poder eliminar recursos en todos os grupos dos que es membro", + "This application will be allowed to delete your profiles": "Esta aplicación vai poder eliminar os teus perfís", + "This application will be allowed to join and leave groups": "Esta aplicación poderá unirse e saír de grupos", + "This application will be allowed to list and access group discussions in all of the groups you're a member of": "Esta aplicación vai poder ver e acceder a debates do grupo en todos os grupos dos que es membro", + "This application will be allowed to list and access group events in all of the groups you're a member of": "Esta aplicación vai poder ver e acceder a todos os eventos do grupo en todos os grupos dos que es membro", + "This application will be allowed to list and access group todo-lists in all of the groups you're a member of": "Esta aplicación poderá acceder e editar a lista de tarefas pendentes do grupo en todos os grupos dos que es membro", + "This application will be allowed to list and view the events you're participating to": "Esta aplicación poder acceder e ver os eventos nos que participas", + "This application will be allowed to list and view the groups you're a member of": "Esta aplicación poderá acceder e ver os grupos dos que formas parte", + "This application will be allowed to list and view the groups you're following": "Esta aplicación poder acceder e ver os grupos que estás a seguir", + "This application will be allowed to list and view your draft events": "Esta aplicación poderá ver e acceder aos borradores de eventos", + "This application will be allowed to list and view your organized events": "Esta aplicación poderá ver e acceder aos eventos que organizas", + "This application will be allowed to list group followers in all of the groups you're a member of": "Esta aplicación vai poder ver as seguidoras do grupo en todos os grupos dos que es membro", + "This application will be allowed to list group members in all of the groups you're a member of": "Esta aplicación vai poder ver os membros do grupo en todos os grupos dos que es membro", + "This application will be allowed to list the media you've uploaded": "Esta aplicación poderá ver o multimedia que subiches", + "This application will be allowed to list your suggested group events": "Esta aplicación poderá ver os teus eventos suxeridos ao grupo", + "This application will be allowed to manage events participations": "Esta aplicación poderá xestionar as participantes no evento", + "This application will be allowed to manage group members in all of the groups you're a member of": "Esta aplicación poderá xestionar os membro do grupo en todos os grupos dos que es membro", + "This application will be allowed to manage your account activity settings": "Esta aplicación poderá xestionar os axustes da actividade da túa conta", + "This application will be allowed to manage your account push notification settings": "Esta aplicación poderá xestionar os axustes das notificacións push para a túa conta", + "This application will be allowed to post comments": "Esta aplicación poderá publicar comentarios", + "This application will be allowed to publish and manage events, post and manage comments, participate to events, manage all of your groups, including group events, resources, posts and discussions. It will also be allowed to manage your account and profile settings.": "Esta aplicación vai poder publicar e xestionar eventos, publicar e xestionar comentarios, participar en eventos, xestionar todos os teus grupos, incluíndo eventos dos grupos, recursos, publicacións e debates. Tamén poderá xestionar a túa conta e axustes do perfil.", + "This application will be allowed to publish events": "Esta aplicación vai ter permiso para publicar eventos", + "This application will be allowed to publish events, participate to events": " ", + "This application will be allowed to publish group posts": "Esta aplicación vai poder escribir publicacións para o grupo", + "This application will be allowed to remove uploaded media": "Esta aplicación vai poder eliminar multimedia subido", + "This application will be allowed to see all of your events organized, the events you participate to, as well as every data from your groups.": "Esta aplicación poderá ver todos os eventos que organizas, os eventos nos que participas así como os datos dos teus grupos.", + "This application will be allowed to see all of your events organized, the events you participate to, …": " ", + "This application will be allowed to update comments": "Esta aplicación poderá actualizar comentarios", + "This application will be allowed to update events": "Esta aplicación vai poder actualizar eventos", + "This application will be allowed to update group discussions": "Esta aplicación poderá actualizar debates do grupo", + "This application will be allowed to update group posts": "Esta aplicación vai poder actualizar publicacións do grupo", + "This application will be allowed to update resources in all of the groups you're a member of": "Esta aplicación vai poder actualizar recursos en todos os grupos dos que es membro", + "This application will be allowed to update your profiles": "Esta aplicación poderá actualizar os teus perfís", + "This application will be allowed to upload media": "Esta aplicación vai poder subir multimedia", + "This event has been cancelled.": "Este evento foi cancelado.", + "This event is accessible only through it's link. Be careful where you post this link.": "Este evento só é accesible coa súa ligazón. Ten tino de onde publicas esta ligazón.", + "This group doesn't have a description yet.": "Este grupo aínda non ten descrición.", + "This group is a remote group, it's possible the original instance has more informations.": "Este é un grupo remoto, é posible que a instancia orixinal teña máis información.", + "This group is accessible only through it's link. Be careful where you post this link.": "Este grupo é accesible só a través da súa ligazón. Pon tino sobre onde compartes esta ligazón.", + "This group is invite-only": "Acceso ó grupo só por convite", + "This group was not found": "Non se atopou o grupo", + "This identifier is unique to your profile. It allows others to find you.": "Este identificador é unico para o perfil. Permite que outras persoas te atopen.", + "This information is saved only on your computer. Click for details": "Esta información gárdase só na túa computadora. Preme para saber máis", + "This instance doesn't follow yours.": "Esta instancia non segue á túa.", + "This instance hasn't got push notifications enabled.": "Esta instancia non ten as notificacións push activadas.", + "This instance isn't opened to registrations, but you can register on other instances.": "Esta instancia non ten o rexistro aberto, mais podes crear unha conta noutra instancia.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Nesta instancia, {instanceName} ({domain}), está o teu perfil, así que lembra o seu nome.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Esta instancia, {instanceName}, hospeda o teu perfil, así que lembra o seu nome.", + "This is a announcement from the organizers of event {event}. You can't reply to it, but you can send a private message to event organizers.": "Este é un anuncio da organización do evento {evento}. Non podes responder, pero podes enviar unha mensaxe privada á organización do evento.", + "This is a demonstration site to test Mobilizon.": "Esta é unha web de exemplo para probar Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Esto é como o teu identificador federado ({username} pero para grupos. Permite que o grupo sexa atopado na federación, e garántese que sexa único.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Isto é como o teu identificador ({username}) pero para grupos. Permitirá que o grupo poida ser atopado na federación, é garántese que sexa único.", + "This month": "Este mes", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Esta publicación só é accesible para membros. Ti tes acceso a ela para poder moderala xa que es moderadora da instancia.", + "This post is accessible only through it's link. Be careful where you post this link.": "Este evento só é accesible coa súa ligazón. Ten tino de onde publicas esta ligazón.", + "This profile is from another instance, the informations shown here may be incomplete.": "Este perfil pertence a outra instancia, a información que ves podería estar incompleta.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Este perfil pertence a esta instancia, así tes que {access_the_corresponding_account} para suspendelo.", + "This profile was not found": "Non se atopou o perfil", + "This setting will be used to display the website and send you emails in the correct language.": "Este axuste usarase para mostrar o sitio web e enviarche os correos no idioma correcto.", + "This user doesn't have any profiles": "Esta usuaria non ten ningún perfil", + "This user was not found": "Non atopamos a usuaria", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Este sitio web non está moderado e os datos que introduzas serán eliminados cada día ás 00:01 (hora de París).", + "This week": "Esta semana", + "This weekend": "Este fin de semana", + "This will also resolve the report.": "E tamén resolverá a denuncia.", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Esto eliminará / anonimazará todo o contido (eventos, comentarios, mensaxes, participacións...) creado con esta identidade.", + "Time in your timezone ({timezone})": "Hora na túa zona horaria ({timezone})", + "Times in your timezone ({timezone})": "Horas na túa zona horaria ({timezone})", + "Timezone": "Zona horaria", + "Timezone detected as {timezone}.": "Zona horaria detectada como {timezone}.", + "Title": "Título", + "To activate more notifications, head over to the notification settings.": "Para activar máis notificacións, vaite ós axustes das notificacións.", + "To confirm, type your event title \"{eventTitle}\"": "Para confirmar, escribe o título do teu evento \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "Para confirmar, escribe o identificador da túa identidade \"{preferredUsername}\"", + "To create and manage multiples identities from a same account": "Para crear e xestionar múltiples identidades desde a mesma conta", + "To create and manage your events": "Para crear e xestionar eventos", + "To create or join an group and start organizing with other people": "Para crear ou unirte a un grupo e comezar a organizar xunto a outras persoas", + "To follow groups and be informed of their latest events": "Para seguir grupos e estar ao día cos anuncios de novos eventos", + "To register for an event by choosing one of your identities": "Para inscribirte nun evento escollendo unha das túas identidades", + "Today": "Hoxe", + "Tomorrow": "Mañán", + "Tools": "Ferramentas", + "Total number of participations": "Número total de participantes", + "Transfer to {outsideDomain}": "Transferir a {outsideDomain}", + "Triggered profile refreshment": "Realizouse a actualización do perfil", + "Try different keywords.": "Intenta con outras palabras.", + "Try fewer keywords.": "Intenta con menos palabras.", + "Try more general keywords.": "Intenta con palabras máis xenéricas.", + "Twitch live": "Twitch en directo", + "Twitch replay": "Repetición Twitch", + "Twitter account": "Conta en Twitter", + "Type": "Tipo", + "Type or select a date…": "Escribe o elixe unha data…", + "URL": "URL", + "URL copied to clipboard": "URL copiado ó portapapeis", + "Unable to copy to clipboard": "Non se puido copiar ao portapapeis", + "Unable to create the group. One of the pictures may be too heavy.": "Non se puido crear o grupo. Unha das imaxes podería ser demasiado grande.", + "Unable to create the profile. The avatar picture may be too heavy.": "Non se puido crear o perfil. A imaxe do avatar podería ser demasiado grande.", + "Unable to detect timezone.": "Non se detectou a zona horaria.", + "Unable to load event for participation. The error details are provided below:": "Non se puido cargar a participación no evento. Aquí abaixo tes detalles do erro:", + "Unable to save your participation in this browser.": "Non se puido gardar a túa participación neste navegador.", + "Unable to update the profile. The avatar picture may be too heavy.": "Non se puido actualizar o perfil. A imaxe do avatar podería ser demasiado grande.", + "Underline": "Subliñar", + "Undo": "Desfacer", + "Unfollow": "Deixar de seguir", + "Unfortunately, your participation request was rejected by the organizers.": "Desgraciadamente a túa solicitude de participación foi rexeitada pola organización.", + "Unknown": "Descoñecido", + "Unknown actor": "Actor descoñecido", + "Unknown error.": "Erro descoñecido.", + "Unknown value for the openness setting.": "Axuste descoñecido para o acceso ao grupo.", + "Unlogged participation": "Participación sen crear conta", + "Unsaved changes": "Cambios non gardados", + "Unsubscribe to browser push notifications": "Retirar subscrición ás notificacións push do navegdor", + "Unsuspend": "Reactivar", + "Upcoming": "Próximamente", + "Upcoming events": "Eventos próximos", + "Upcoming events from your groups": "Eventos previstos para os teus grupos", + "Update": "Actualizar", + "Update app": "Actualizar app", + "Update comments": "Actualizar comentarios", + "Update discussion title": "Actualiza o título da conversa", + "Update event {name}": "Actualizar evento {name}", + "Update events": "Actualizar eventos", + "Update group": "Actualizar grupo", + "Update group discussions": "Actualizar debates do grupo", + "Update group posts": "Actualizar publicacións do grupo", + "Update group resources": "Actualizar recursos do grupo", + "Update my event": "Actualizar o meu evento", + "Update post": "Actualizar publicación", + "Update profiles": "Actualizar perfís", + "Updated": "Actualizado", + "Updated at": "Actualizado o", + "Upload media": "Subir multimedia", + "Uploaded media size": "Tamaño do multimedia subido", + "Uploaded media total size": "Tamaño total do multimedia subido", + "Use my location": "Usar a miña localización", + "User": "Usuaria", + "User settings": "Axustes da usuaria", + "User suspended and report resolved": "Usuaria suspendida e denuncia resolta", + "Username": "Identificador", + "Users": "Usuarias", + "Validating account": "Validando a conta", + "Validating email": "Validando o correo", + "Video Conference": "Videoconferencia", + "View a reply": "|Ver unha resposta|Ver {totalReplies} respostas", + "View account on {hostname} (in a new window)": "Ver conta en {hostname} (en nova xanela)", + "View all": "Ver todo", + "View all categories": "Ver todas as categorías", + "View all events": "Ver todos os eventos", + "View all posts": "Ver publicacións", + "View event page": "Ver páxina do evento", + "View everything": "Velo todo", + "View full profile": "Ver perfil completo", + "View less": "Ver menos", + "View more": "Ver máis", + "View more events": "Ver máis eventos", + "View more events around {position}": "Ver máis eventos preto de {position}", + "View more groups around {position}": "Ver máis grupos preto de {position}", + "View more online events": "Ver máis eventos en liña", + "View page on {hostname} (in a new window)": "Ver páxina en {hostname} (en nova xanela)", + "View past events": "Ver eventos pasados", + "View the group profile on the original instance": "Ver perfil do grupo na páxina orixinal", + "Visibility was set to an unknown value.": "Estableceuse a visibilidade a un valor descoñecido.", + "Visibility was set to private.": "Estableceuse a visibilidade como privada.", + "Visibility was set to public.": "Estableceuse a visibilidade como pública.", + "Visible everywhere on the web": "Visible para todas na internet", + "Visible everywhere on the web (public)": "Visible en toda a web (público)", + "Visit {instance_domain}": "Visita {instance_domain}", + "Waiting for organization team approval.": "Agardando pola aprobación da organización.", + "Warning": "Aviso", + "We collect your feedback and the error information in order to improve this service.": "Recollemos a túa experiencia e información sobre o erro para poder mellorar o servizo.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Non puidemos gardar a túa participación neste navegador. Non te preocupes, confirmaches correctamente a túa participación, só que non puidemos gardar o estado neste navegador por algunha cuestión técnica.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Melloramos este software grazas á túa colaboración. Infórmanos acerca deste asunto, tes dúas posibilidades (desafortunadamente as dúas requiren a creación dunha conta):", + "We just sent an email to {email}": "Enviámosche un correo a {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Usamos a túa zona horaria para asegurarnos de que recibes as notificacións para o evento na hora correcta.", + "We will redirect you to your instance in order to interact with this event": "Vas ser redirixida á túa instancia para poder interactuar con este evento", + "We will redirect you to your instance in order to interact with this group": "Ímoste reenviar á túa instancia para que poidas interactuar con este grupo", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Enviarémosche un correo unha hora antes do comezo do evento, para que non o esquezas.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Usaremos os axustes de zona horaria para enviar un recordatorio na mañán do evento.", + "Website": "Sitio web", + "Website / URL": "Sitio web / URL", + "Weekly email summary": "Correo co resumo semanal", + "Welcome back {username}!": "Benvida {username}!", + "Welcome back!": "Benvida!", + "Welcome to Mobilizon, {username}!": "Benvida a Mobilizon, {username}!", + "What can I do to help?": "Que podo facer para axudar?", + "What happened?": "Que aconteceu?", + "Wheelchair accessibility": "Accesible con cadeira de rodas", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Aquí aparecerá un evento cando un moderador do grupo o cree e o atribúa ó grupo.", + "When the event is private, you'll need to share the link around.": "Se o evento é privado, deberás compartir ti a ligazón.", + "When the post is private, you'll need to share the link around.": "Se a publicación é privada, deberás compartir ti a ligazón.", + "Whether smoking is prohibited during the event": "Se está prohibido fumar durante o evento", + "Whether the event is accessible with a wheelchair": "Se o evento é accesible ou non con cadeira de rodas", + "Whether the event is interpreted in sign language": "Se o evento está interpretado en lingua de signos", + "Whether the event live video is subtitled": "Se o evento está subtitulado ou non", + "Who can post a comment?": "Quen pode comentar?", + "Who can view this event and participate": "Quen pode ver e participar neste evento", + "Who can view this post": "Quen pode ver esta publicación", + "Who published {number} events": "Que publicaron {number} eventos", + "Why create an account?": "Por que crear unha conta?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Permitirá mostrar e xestionar o estado da túa participación na páxina do evento cando utilices este dispositivo. Quita a marca se estás a usar un dispositivo público.", + "With the most participants": "Con maior participación", + "With unknown participants": "Con participantes descoñecidos", + "With {participants}": "Con {participants}", + "Within {number} kilometers of {place}": "|Menos dun quilómetro de {place}|A menos de {number} quilometros de {place}", + "Write a new comment": "Escribe un novo comentario", + "Write a new message": "Escribe unha nova mensaxe", + "Write a new reply": "Escribe unha nova resposta", + "Write something": "Escribe algo", + "Write your post": "Escribe a túa publicación", + "Yesterday": "Onte", + "You accepted the invitation to join the group.": "Aceptaches o convite para unirte ao grupo.", + "You added the member {member}.": "Engadiches a {member}.", + "You approved {member}'s membership.": "Aprobaches a membresía de {member}.", + "You archived the discussion {discussion}.": "Arquivaches o debate {discussion}.", + "You are not an administrator for this group.": "Non es administradora deste grupo.", + "You are not part of any group.": "Non formas parte de ningún grupo.", + "You are offline": "Non tes conexión", + "You are participating in this event anonymously": "Participas neste evento de xeito anónimo", + "You are participating in this event anonymously but didn't confirm participation": "Participas neste evento de xeito anónimo pero non confirmaches a participación", + "You can add resources by using the button above.": "Podes engadir recursos usando o botón superior.", + "You can add tags by hitting the Enter key or by adding a comma": "Podes engadir etiquetas premento Enter ou con vírgulas", + "You can drag and drop the marker below to the desired location": "Podes arrastrar e soltar o marcador inferior na localización desexada", + "You can pick your timezone into your preferences.": "Podes escoller a zona horaria nas preferencias.", + "You can put any arbitrary content in this element. URLs will be clickable.": "Podes poñer calquera contido arbitrario neste elemento. Poderase premer en URLs.", + "You can try another search term or add the address details manually below.": "Podes intentalo con outro termo a buscar ou engadir detalles do enderezo aquí embaixo.", + "You can try another search term or drag and drop the marker on the map": "Podes intentalo con outro termo de busca ou arrastrar e soltar a marca no mapa", + "You can't change your password because you are registered through {provider}.": "Non podes cambiar o contrasinal porque estás rexistrada en {provider}.", + "You can't use push notifications in this browser.": "Non podes usar notificacións push neste navegador.", + "You changed your email or password": "Cambiaches o correo ou o contrasinal", + "You created the discussion {discussion}.": "Creaches o debate {discussion}.", + "You created the event {event}.": "Creaches o evento {event}.", + "You created the folder {resource}.": "Creaches o cartafol {resource}.", + "You created the group {group}.": "Creaches o grupo {group}.", + "You created the post {post}.": "Creaches a publicación {post}.", + "You created the resource {resource}.": "Creaches o recurso {resource}.", + "You deleted the discussion {discussion}.": "Eliminaches o debate {discussion}.", + "You deleted the event {event}.": "Eliminaches o evento {evento}.", + "You deleted the folder {resource}.": "Eliminaches o cartafol {resource}.", + "You deleted the post {post}.": "Eliminaches a publicación {post}.", + "You deleted the resource {resource}.": "Eliminaches o recurso {resource}.", + "You demoted the member {member} to an unknown role.": "Degradaches a {member} a un rol descoñecido.", + "You demoted {member} to moderator.": "Degradaches a {member} a moderadora.", + "You demoted {member} to simple member.": "Degradaches a {member] a membresía básica.", + "You didn't create or join any event yet.": "Aínda non te uniches nin creaches un evento.", + "You don't follow any instances yet.": "Aínda non segues ningunha instancia.", + "You don't have any upcoming events. Maybe try another filter?": "Non tes eventos previstos. Queres probar con outro filtro?", + "You excluded member {member}.": "Excluíches a {member}.", + "You have access to this conversation as a member of the {group} group": "Tes acceso a esta conversa como membro do grupo {group}", + "You have attended {count} events in the past.": "Non participaches en ningún evento no pasado.|Participaches nun evento no pasado.|Participaches en {count} eventos no pasado.", + "You have been invited by {invitedBy} to the following group:": "Foches convidada por {invitedBy} ó seguinte grupo:", + "You have been logged-out": "Pechouse a túa sesión", + "You have been removed from this group's members.": "Sacáronte deste grupo.", + "You have cancelled your participation": "Cancelaches a túa participación", + "You have one event in {days} days.": "Non tes eventos en {days} días | Tes un evento en {days} días. | Tes {count} eventos en {days} días", + "You have one event today.": "Hoxe non tes eventos | Hoxe tes un evento. | Tes {count} eventos hoxe", + "You have one event tomorrow.": "Non tes eventos mañán | Tes un evento mañán. | Tes {count] eventos mañán", + "You haven't interacted with other instances yet.": "Aínda non interactuaches con outras instancias.", + "You invited {member}.": "Convidaches a {member}.", + "You joined the event {event}.": "Únicheste ao evento {event}.", + "You may also:": "Tamén podes:", + "You may clear all participation information for this device with the buttons below.": "Podes eliminar a información da participación neste dispositivo cos botóns inferiores.", + "You may now close this page or {return_to_the_homepage}.": "Xa podes pechar esta páxina ou {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "Xa podes pechar esta xanela, ou {return_to_event}.", + "You may show some members as contacts.": "Podes mostrar algúns membros como contactos.", + "You moved the folder {resource} into {new_path}.": "Moveches o cartafol {resource} a {new_path}.", + "You moved the folder {resource} to the root folder.": "Moveches o cartafol {resource} ao cartafol raíz.", + "You moved the resource {resource} into {new_path}.": "Moveches o recurso {resource} a {new_path}.", + "You moved the resource {resource} to the root folder.": "Moveches o recurso {resource} ao cartafol raíz.", + "You need to enter a text": "Debes escribir un texto", + "You need to login.": "Tes que acceder.", + "You need to provide the following code to your application. It will only be valid for a few minutes.": "Precisas proporcionar o seguinte código á túa aplicación. Só será válido durante uns minutos.", + "You posted a comment on the event {event}.": "Publicaches un comentario no evento {event}.", + "You promoted the member {member} to an unknown role.": "Adxudicácheslle a {member} un rol descoñecido.", + "You promoted {member} to administrator.": "Fixeches que {member} sexa administradora.", + "You promoted {member} to moderator.": "Fixeches que {member} sexa moderadora.", + "You rejected {member}'s membership request.": "Rexeitaches a solicitude de membresía de {member}.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Cambiacheslle o nome ao debate de {old_discussion} a {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Cambiaches o nome do cartafol de {old_resource_title} a {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Cambiaches o nome do recurso de {old_resource_title} a {resource}.", + "You replied to a comment on the event {event}.": "Respondeches a un comentario no evento {event}.", + "You replied to the discussion {discussion}.": "Respondeches ao debate {discussion}.", + "You requested to join the group.": "Solicitaches unirte ao grupo.", + "You updated the event {event}.": "Actualizaches o evento {event}.", + "You updated the group {group}.": "Actualizaches o grupo {group}.", + "You updated the member {member}.": "Actualizaches a partipante {member}.", + "You updated the post {post}.": "Actualizaches a publicación {post}.", + "You were demoted to an unknown role by {profile}.": "Foches degradada a un rol descoñecido por {profile].", + "You were demoted to moderator by {profile}.": "Foches degradada a moderador por {profile}.", + "You were demoted to simple member by {profile}.": "Foches degradada a usuaria básica por {profile}.", + "You were promoted to administrator by {profile}.": "Foches promovida a administradora por {profile}.", + "You were promoted to an unknown role by {profile}.": "Foches promovida a un rol descoñecido por {profile}.", + "You were promoted to moderator by {profile}.": "Foches promovida a moderadora por {profile}.", + "You will be able to add an avatar and set other options in your account settings.": "Poderás engadir un avatar e establecer outras opcións nos axustes da conta.", + "You will be redirected to the original instance": "Vas ser redirixida á instancia orixinal", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Aquí atoparás tódolos eventos que creaches ou dos que es partícipe, tamén os eventos organizados por grupos que segues ou aos que pertences.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Vas recibir notificacións sobre a actividade pública deste grupo dependendo dos %{notification_settings}.", + "You wish to participate to the following event": "Queres participar no seguinte evento", + "You'll be able to revoke access for this application in your account settings.": "Vas revogar o acceso desta aplicación aos axustes da túa conta.", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Recibirás un resumen semanal cada Luns para os próximos eventos, se os tes.", + "You'll need to change the URLs where there were previously entered.": "Precisarás cambiar os URLs alá onde fosen previamente utilizados.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Precisarás transmitir o URL do grupo para que a xente poida acceder ó perfil do grupo. O grupo non será descubrible nas buscas de Mobilizon ou buscadores normais.", + "You'll receive a confirmation email.": "Recibirás un correo de confirmación.", + "YouTube live": "YouTube en directo", + "YouTube replay": "Repetición YouTube", + "Your account has been successfully deleted": "A túa conta foi eliminada", + "Your account has been validated": "A túa conta foi validada", + "Your account is being validated": "A túa conta está sendo validada", + "Your account is nearly ready, {username}": "A túa conta xa case está preparada, {username}", + "Your application code": "O teu código de aplicación", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "A túa cidade ou rexión e o radio só se utilizará para suxerirche eventos próximos. O radio do evento será considerado desde o centro da área administrativa.", + "Your current email is {email}. You use it to log in.": "O teu correo é {email}. Utilízao para acceder.", + "Your email": "O teu correo", + "Your email address was automatically set based on your {provider} account.": "O enderezo de correo estableceuse automáticamente baseándonos na conta {provider}.", + "Your email has been changed": "Cambiouse o teu correo", + "Your email is being changed": "Estase cambiando o teu correo", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "O teu correo só se utilizará para confirmar que es unha persoa real e enviarche posibles actualizacións para o evento. NON será transferido a outras instancias ou á organización do evento.", + "Your federated identity": "A túa identidade federada", + "Your membership is pending approval": "A túa solicitude está pendente de ser aprobada", + "Your membership was approved by {profile}.": "{profile} aprobou a túa membresía.", + "Your participation has been cancelled": "Cancelouse a túa participación", + "Your participation has been confirmed": "A túa participación foi confirmada", + "Your participation has been rejected": "A túa participación foi rexeitada", + "Your participation has been requested": "A túa participación foi solicitada", + "Your participation is being cancelled": "Cancelouse a túa participación", + "Your participation request has been validated": "A túa participación foi validada", + "Your participation request is being validated": "Estase validando a túa participación", + "Your participation status has been changed": "O estado da túa participación cambiou", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "O estado da túa participación só se garda neste dispositivo e será borrado un mes despois de rematar o evento.", + "Your participation still has to be approved by the organisers.": "A participación aínda debe ser aprobada pola organización.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "A túa participación validarase unha vez premas na ligazón de confirmación do correo, e após a organización validará manualmente a participación.", + "Your participation will be validated once you click the confirmation link into the email.": "A túa participación será validada unha vez premas na ligazón de confirmación do correo.", + "Your position was not available.": "A túa posición non estaba dispoñible.", + "Your profile will be shown as contact.": "O teu perfil será mostrado como contacto.", + "Your timezone is currently set to {timezone}.": "Zona horaria actual establecida a {timezone}.", + "Your timezone was detected as {timezone}.": "Zona horaria detectada como {timezone}.", + "Your timezone {timezone} isn't supported.": "A túa zona horaria {timezone} non está soportada.", + "Your upcoming events": "Os teus próximos eventos", + "Zoom": "Zoom", + "Zoom in": "Aumentar", + "Zoom out": "Diminuir", + "[This comment has been deleted by it's author]": "[Este comentario foi eliminado pola súa autora]", + "[This comment has been deleted]": "[Este comentario foi eliminado]", + "[deleted]": "[eliminado]", + "a non-existent report": "denuncia non existente", + "access the corresponding account": "accede á conta correspondente", + "access to the group's private content as well": "accede tamén ao contido privado do grupo", + "and {number} groups": "e {number} grupos", + "any distance": "calquera distancia", + "as {identity}": "como {identity}", + "contact uninformed": "contacto non informado", + "create a group": "crear un grupo", + "create an event": "crear un evento", + "default Mobilizon privacy policy": "política de privacidade por omisión de Mobilizon", + "default Mobilizon terms": "termos por omisión de Mobilizon", + "detail": " ", + "e.g. 10 Rue Jangot": "ex. Rúa do Can 7", + "e.g. Accessibility, Twitch, PeerTube": "ex. Accessibility, Twitch, PeerTube", + "e.g. Nantes, Berlin, Cork, …": "ex. Malpica, Mos, Ribadeo, …", + "enable the feature": "activar a característica", + "explore the events": "descubre os eventos", + "explore the groups": "atopar grupos", + "find, create and organise events": "atopar, crear e organizar eventos", + "full rules": "normas completas", + "group's upcoming public events": "Próximos eventos públicos do grupo", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/some-secret-token", + "iCal Feed": "Fonte iCal", + "instance rules": "normas da instancia", + "mobilizon-instance.tld": "instancia-mobilizon.tld", + "more than 1360 contributors": "máis de 1360 colaboradoras", + "multitude of interconnected Mobilizon websites": "colectividade de sitios web Mobilizon interconectados", + "new{'@'}email.com": "novo{'@'}email.com", + "profile@instance": "perfil@instancia", + "profile{'@'}instance": "perfil{'@'}instancia", + "report #{report_number}": "denuncia #{report_number}", + "return to the event's page": "volver á páxina do evento", + "return to the homepage": "volver ao inicio", + "terms of service": "termos do servizo", + "tool designed to serve you": "ferramenta creada para servirte", + "translation": " ", + "with another identity…": "con outra identidade…", + "your notification settings": "axustes das túas notificacións", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved} / {total} prazas", + "{available}/{capacity} available places": "Non quedan prazas dispoñíbeis|Queda {available} praza dispoñíbel de {capacity}|Quedan {available} prazas dispoñíbeis de {capacity}", + "{count} events": "{count} eventos", + "{count} km": "{count} km", + "{count} members": "Sen membros|Un membro|{count} membros", + "{count} members or followers": "Sen membros ou seguidoras|Un membro ou seguidora|{count} membros ou seguidoras", + "{count} participants": "Sen participantes | Un participante | {count} participantes", + "{count} requests waiting": "{count} solicitudes agardando", + "{eventsCount} activities found": "Sen actividades|Hai unha actividade|Hai {eventsCount} actividades", + "{eventsCount} events found": "Non hai eventos|Atopouse un evento|{eventsCount} eventos atopados", + "{folder} - Resources": "{folder} - Recursos", + "{groupsCount} groups found": "Non hai grupos|Atopouse un grupo|{groupsCount} grupos atopados", + "{group} activity timeline": "Cronoloxía de actividade de {group}", + "{group} events": "Eventos de {group}", + "{group} posts": "{group} publicacións", + "{group}'s events": "Eventos de {group}", + "{group}'s todolists": "Tarefas pendentes de {group}", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} é unha instancia do software {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} é unha instancia de {mobilizon_link}, software libre feito para a comunidade.", + "{member} accepted the invitation to join the group.": "{member} aceptou o convite para unirse ao grupo.", + "{member} joined the group.": "{member} uníuse ao grupo.", + "{member} rejected the invitation to join the group.": "{member} rexeitou o convite para unirse ao grupo.", + "{member} requested to join the group.": "{member} solicitou unirse ao grupo.", + "{member} was invited by {profile}.": "{profile} convidou a {member}.", + "{moderator} added a note on {report}": "{moderator} engadeu unha nota a {report}", + "{moderator} closed {report}": "{moderator} pechou {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} eliminou o evento de nome \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} eleminou o comentario de {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} eliminou o comentario de {author} no evento {event}", + "{moderator} has deleted user {user}": "{moderator} eliminou a usuaria {user}", + "{moderator} has done an unknown action": "{moderator} realizou unha acción descoñecida", + "{moderator} has unsuspended group {profile}": "{moderator} retirou a suspensión ao grupo {profile}", + "{moderator} has unsuspended profile {profile}": "{moderator} reactivou o perfil {profile}", + "{moderator} marked {report} as resolved": "{moderator} marcou {report} como resolta", + "{moderator} reopened {report}": "{moderator} reabreu {report}", + "{moderator} suspended group {profile}": "{moderator} suspendeu o grupo {profile}", + "{moderator} suspended profile {profile}": "{moderator} suspendeu o perfil {profile}", + "{nb} km": "{nb} km", + "{numberOfCategories} selected": "{numberOfCategories} seleccionadas", + "{numberOfLanguages} selected": "{numberOfLanguages} seleccionados", + "{number} kilometers": "{number} quilómetros", + "{number} members": "{number} membros", + "{number} memberships": "{number} membresías", + "{number} organized events": "Sen eventos organizados|Un evento organizado|{number} eventos organizados", + "{number} participations": "Sen participacións|Unha participación|{number} participacións", + "{number} posts": "Sen publicacións|Unha publicación|{number} publicacións", + "{number} seats left": "Non quedan asentos|Queda un asento|Quedan {number} asentos", + "{old_group_name} was renamed to {group}.": "{old_group_name} mudou de nome a {group}.", + "{profileName} (suspended)": "{profileName} (suspendida)", + "{profile} (by default)": "{profile} (by default)", + "{profile} added the member {member}.": "{profile} engadiu a {member}.", + "{profile} approved {member}'s membership.": "{profile} aprobou a membresía de {member}.", + "{profile} archived the discussion {discussion}.": "{profile} arquivou o debate {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} creou o debate {discussion}.", + "{profile} created the folder {resource}.": "{profile} creou o cartafol {resource}.", + "{profile} created the group {group}.": "{profile} creou o grupo {group}.", + "{profile} created the resource {resource}.": "{profile} creou o recurso {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} eliminou o debate {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} eliminou o cartafol {resource}.", + "{profile} deleted the resource {resource}.": "{profile} eliminou o recurso {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} degradou a {member} a un rol descoñecido.", + "{profile} demoted {member} to moderator.": "{profile} degradou a {member} a moderadora.", + "{profile} demoted {member} to simple member.": "{profile} degradou a {member] a simple participante.", + "{profile} excluded member {member}.": "{profile} excluíu a {member}.", + "{profile} joined the the event {event}.": "{profile} uníuse ao evento {event}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} moveu o cartafol {resource} a {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} moveu o cartafol {resource} ao cartafol raíz.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} moveu o recurso {resource} a {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} moveu o recurso {recurso} ao cartafol raíz.", + "{profile} posted a comment on the event {event}.": "{profile} publicou un comentario no evento {event}.", + "{profile} promoted {member} to administrator.": "{profile} promocionou a {member} a administradora.", + "{profile} promoted {member} to an unknown role.": "{profile} promocionou a {member} a un rol descoñecido.", + "{profile} promoted {member} to moderator.": "{profile} promocionou a {member} a moderadora.", + "{profile} quit the group.": "{profile} deixou o grupo.", + "{profile} rejected {member}'s membership request.": "{profile} rexeitou a solicitude de mebresía de {member}.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} cambioulle o nome ao debate de {old_discussion} to {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} cambioulle o nome ao cartafol de {old_resource_title} a {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} cambioulle o nome ao recurso de {old_resource_title} a {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} respondeu a un comentario no evento {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} respondeu ao debate {discussion}.", + "{profile} updated the group {group}.": "{profile} actualizou o grupo {group}.", + "{profile} updated the member {member}.": "{profile} actualizou a participante {member].", + "{resultsCount} results found": "Sen resultados|Atopado un resultado|{resultsCount} resultados atopados", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} pendentes)", + "{username} was invited to {group}": "{username} foi convidada a {group}", + "{user}'s follow request was accepted": "Aceptouse a solicitude de seguimento de {user}", + "{user}'s follow request was rejected": "Rexeitouse a solicitude de seguimento de {user}", + "© The OpenStreetMap Contributors": "© The OpenStreetMap Contributors" +}); diff --git a/res/locale/he.js b/res/locale/he.js new file mode 100644 index 0000000..63030c3 --- /dev/null +++ b/res/locale/he.js @@ -0,0 +1,380 @@ +CTX.setMessages({ + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "כלי ידידותי למשתמש.ת, חופשי ואתי להתאספות, להתארגנות ולגיוס לפעולה משותפת.", + "A validation email was sent to {email}": "הודעת אימות נשלחה בדואר אלקטרוני לכתובת {email}", + "Abandon editing": "עזיבת עריכה", + "About": "אודות", + "About Mobilizon": "אודות מוביליזון", + "About this event": "אודות האירוע", + "About this instance": "אודות האתר", + "Accepted": "התקבל", + "Account": "חשבון", + "Add": "הוספה", + "Add a note": "הוספת הערה", + "Add an address": "הוספת כתובת", + "Add an instance": "הוספת אתר", + "Add some tags": "הוספת תגיות", + "Add to my calendar": "הוספה ללוח השנה שלי", + "Additional comments": "הערות נוספות", + "Admin": "מנהל.ת", + "Admin settings successfully saved.": "הגדרות מנהל.ת נשמרו בהצלחה.", + "Administration": "ניהול", + "All the places have already been taken": "כל המקומות כבר תפוסים", + "Allow registrations": "אפשור הרשמה", + "Anonymous participant": "משתתפ.ת בלתי מזוהה", + "Anonymous participants will be asked to confirm their participation through e-mail.": "משתתפים.ות בלתי מזוהים.ות יתבקשו לאשר השתתפות באמצעות דואר אלקטרוני.", + "Anonymous participations": "השתתפות בלתי מזוהה", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "האם את.ה בטוח.ה שאת.ה רוצה למחוק לגמרי את החשבון שלך? תאבד.י הכל. זהויות, הגדרות, אירועים שנוצרו, הודעות והשתתפויות יימחקו לצמיתות.", + "Are you sure you want to delete this comment? This action cannot be undone.": "האם את.ה בטוח.ה שאת.ה רוצה למחוק את התגובה? לא ניתן יהיה לבטל את הפעולה.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "האם את.ה בטוח.ה שאת.ה רוצה למחוק את האירוע? לא ניתן יהיה לבטל את הפעולה. ייתכן שתרצ.י ליצור קשר עם יוצר.ת האירוע, או לערוך את האירוע, במקום למחוק.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "האם את.ה בטוח.ה שאת.ה רוצה לבטל את יצירת האירוע? כל השינויים יאבדו.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "האם את.ה בטוח.ה שאת.ה רוצה לבטל את עריכת האירוע? כל השינויים יאבדו.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "האם את.ה בטוח.ה שאת.ה רוצה לבטל את השתתפותך באירוע \"{title}\"?", + "Are you sure you want to delete this event? This action cannot be reverted.": "האם את.ה בטוח.ה שאת.ה רוצה למחוק את האירוע? לא ניתן יהיה לבטל את הפעולה.", + "Avatar": "תמונה", + "Back to previous page": "חזרה לדף הקודם", + "Before you can login, you need to click on the link inside it to validate your account.": "לפני שתוכל.י להתחבר, עלייך ללחוץ על הקישור שבתוך ההודעה כדי לאשר את החשבון שלך.", + "By {username}": "נכתב על־ידי {username}", + "Cancel": "ביטול", + "Cancel anonymous participation": "ביטול השתתפות בלתי מזוהה", + "Cancel creation": "ביטול יצירה", + "Cancel edition": "ביטול עריכה", + "Cancel my participation request…": "ביטול בקשת ההשתתפות שלי…", + "Cancel my participation…": "ביטול ההשתתפות שלי…", + "Cancelled: Won't happen": "מבוטל: לא יתקיים", + "Change": "שינוי", + "Change my email": "שינוי כתובת דואר אלקטרוני", + "Change my identity…": "שינוי הזהות שלי…", + "Change my password": "שינוי ססמה", + "Clear": "ניקוי", + "Click to upload": "לחצ.י להעלאה", + "Close": "סגירה", + "Close comments for all (except for admins)": "ביטול תגובות לכולןם (מלבד מנהלים.ות)", + "Closed": "סגור", + "Comment deleted": "התגובה נמחקה", + "Comment from {'@'}{username} reported": "התגובה של {'@'}{username} דווחה", + "Comments": "תגובות", + "Confirm my participation": "אישור ההשתתפות שלי", + "Confirm my particpation": "אישור ההשתתפות שלי", + "Confirmed: Will happen": "מאושר: יתקיים", + "Continue editing": "המשך עריכה", + "Country": "מדינה", + "Create": "יצירה", + "Create a new event": "יצירת אירוע חדש", + "Create a new group": "יצירת קבוצה חדשה", + "Create a new identity": "יצירת זהות חדשה", + "Create group": "יצירת קבוצה", + "Create my event": "יצירת אירוע", + "Create my group": "יצירת קבוצה", + "Create my profile": "יצירת הפרופיל שלי", + "Create token": "יצירת אסימון", + "Current identity has been changed to {identityName} in order to manage this event.": "הזהות הנוכחית שונתה ל־{identityName} כדי לנהל אירוע זה.", + "Current page": "הדף הנוכחי", + "Custom": "התאמה אישית", + "Custom URL": "קישור מותאם אישית", + "Custom text": "טקסט מותאם אישית", + "Dashboard": "לוח בקרה", + "Date": "תאריך", + "Date and time settings": "הגדרות זמן ותאריך", + "Date parameters": "מאפייני תאריך", + "Default": "ברירת מחדל", + "Delete": "מחיקה", + "Delete account": "מחיקת חשבון", + "Delete event": "מחיקת אירוע", + "Delete everything": "מחיקת הכל", + "Delete my account": "מחיקת החשבון שלי", + "Delete this identity": "מחיקת זהות", + "Delete your identity": "מחיקת הזהות שלך", + "Delete {eventTitle}": "מחיקת {eventTitle}", + "Delete {preferredUsername}": "מחיקת {preferredUsername}", + "Deleting comment": "מוחק תגובה", + "Deleting event": "מוחק אירוע", + "Deleting my account will delete all of my identities.": "מחיקת החשבון שלי תמחק את כל הזהויות שלי.", + "Deleting your Mobilizon account": "מחיקת החשבון שלך במוביליזון", + "Description": "תיאור", + "Display name": "שם תצוגה", + "Display participation price": "הצגת מחיר השתתפות", + "Draft": "טיוטה", + "Drafts": "טיוטות", + "Edit": "עריכה", + "Eg: Stockholm, Dance, Chess…": "למשל: תל אביב, ריקוד, שחמט…", + "Either on the {instance} instance or on another instance.": "או באתר {instance} או באתר אחר.", + "Either the account is already validated, either the validation token is incorrect.": "החשבון כבר מאומת, או שקוד האימות שגוי.", + "Either the email has already been changed, either the validation token is incorrect.": "או שכתובת הדואר האלקטרוני כבר שונתה, או שקוד האימות שגוי.", + "Either the participation request has already been validated, either the validation token is incorrect.": "או שבקשת ההשתתפות כבר אומתה, או שקוד האימות שגוי.", + "Email": "דואר אלקטרוני", + "Ends on…": "נמשך עד…", + "Enter the link URL": "הזינ.י את הקישור", + "Error while changing email": "שגיאה בעת שינוי כתובת דואר אלקטרוני", + "Error while validating account": "שגיאה בעת אימות חשבון", + "Error while validating participation request": "שגיאה בעת אימות בקשת השתתפות", + "Event": "אירוע", + "Event already passed": "האירוע כבר חלף", + "Event cancelled": "האירוע בוטל", + "Event creation": "יצירת אירוע", + "Event edition": "עריכת אירוע", + "Event list": "רשימת אירועים", + "Event page settings": "הגדרות עמוד אירוע", + "Event to be confirmed": "אירוע לאישור", + "Event {eventTitle} deleted": "האירוע {eventTitle} נמחק", + "Event {eventTitle} reported": "האירוע {eventTitle} דווח", + "Events": "אירועים", + "Ex: mobilizon.fr": "למשל: mobilizon.fr", + "Explore": "סיור", + "Failed to save admin settings": "שמירת הגדרות ניהול נכשלה", + "Featured events": "אירועים מומלצים", + "Federation": "ביזור", + "Find an address": "מציאת כתובת", + "Find an instance": "מציאת אתר", + "Followers": "עוקבים.ות", + "Followings": "עוקב.ת אחרי", + "For instance: London, Taekwondo, Architecture…": "לדוגמה: תל אביב, אייקידו, ארכיטקטורה…", + "Forgot your password ?": "שכחת ססמה?", + "From the {startDate} at {startTime} to the {endDate}": "מתאריך {startDate} בשעה {startTime} עד התאריך {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "מתאריך {startDate} בשעה {startTime} עד התאריך {endDate} בשעה {endTime}", + "From the {startDate} to the {endDate}": "מהתאריך {startDate} עד התאריך {endDate}", + "Gather ⋅ Organize ⋅ Mobilize": "להתאסף ⋅ להתארגן ⋅ לפעול", + "General": "כללי", + "General information": "מידע כללי", + "Getting location": "מחפש מיקום", + "Go": "קדימה", + "Group name": "שם הקבוצה", + "Group {displayName} created": "הקבוצה {displayName} נוצרה", + "Groups": "קבוצות", + "Headline picture": "תמונת כותרת", + "Hide replies": "הסתרת תגובות", + "I create an identity": "אני יוצר.ת זהות", + "I don't have a Mobilizon account": "אין לי חשבון מוביליזון", + "I have a Mobilizon account": "יש לי חשבון מוביליזון", + "I have an account on another Mobilizon instance.": "יש לי חשבון באתר מוביליזון אחר.", + "I participate": "אני משתתפ.ת", + "I want to allow people to participate without an account.": "אני רוצה לאפשר לא.נשים להשתתף ללא חשבון.", + "I want to approve every participation request": "אני רוצה לאשר כל בקשת השתתפות", + "Identity {displayName} created": "הזהות {displayName} נוצרה", + "Identity {displayName} deleted": "הזהות {displayName} נמחקה", + "Identity {displayName} updated": "הזהות {displayName} עודכנה", + "If an account with this email exists, we just sent another confirmation email to {email}": "אם קיים חשבון עם כתובת הדואר האלקטרוני הזו, שלחנו עוד הודעת אימות לכתובת {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "אם הזהות הזו היא המנהלת היחידה של קבוצות כלשהן, עלייך למחוק אותן לפני שתוכלי למחוק את הזהות הזו.", + "If you want, you may send a message to the event organizer here.": "אם את.ה רוצה, באפשרותך לשלוח כאן הודעה למארגנ.ת האירוע.", + "Instance Name": "שם האתר", + "Instance Terms": "תנאי השימוש של האתר", + "Instance Terms Source": "תנאי השימוש של האתר", + "Instance Terms URL": "קישור לתנאי השימוש של האתר", + "Instance settings": "הגדרות האתר", + "Instances": "אתרים", + "Join {instance}, a Mobilizon instance": "הצטרפ.י ל־{instance}, אתר מוביליזון", + "Last published event": "האירוע האחרון שפורסם", + "Last week": "בשבוע שעבר", + "Learn more": "למדו עוד", + "Learn more about Mobilizon": "למדו עוד אודות מוביליזון", + "Leave event": "עזיבת האירוע", + "Leaving event \"{title}\"": "עוזב את האירוע \"{title}\"", + "License": "רישיון", + "Limited number of places": "מספר מוגבל של מקומות", + "Load more": "לטעון עוד", + "Locality": "מיקום", + "Log in": "כניסה", + "Log out": "יציאה", + "Login": "כניסה", + "Login on Mobilizon!": "כניסה למוביליזון!", + "Login on {instance}": "כניסה לאתר {instance}", + "Manage participations": "ניהול השתתפויות", + "Mark as resolved": "סימון כנפתר", + "Members": "חברים.ות", + "Message": "הודעה", + "Mobilizon is a federated network. You can interact with this event from a different server.": "מוביליזון היא רשת מבוזרת. ניתן לבצע פעולות בקשר לאירוע זה משרת אחר.", + "Moderated comments (shown after approval)": "תגובות שממתינות לאישור", + "Moderation": "אישור תגובות", + "Moderation log": "היסטוריית אישור תגובות", + "My account": "החשבון שלי", + "My events": "האירועים שלי", + "My identities": "הזהויות שלי", + "Name": "שם", + "New email": "הודעת דוא\"ל חדשה", + "New note": "הערה חדשה", + "New password": "ססמה חדשה", + "New profile": "פרופיל חדש", + "Next page": "הדף הבא", + "No address defined": "לא הוגדרה כתובת", + "No closed reports yet": "אין דיווחים סגורים עדיין", + "No comment": "אין תגובות", + "No comments yet": "אין תגובות עדיין", + "No end date": "אין תאריך סיום", + "No events found": "לא נמצאו אירועים", + "No group found": "לא נמצאה קבוצה", + "No groups found": "לא נמצאו קבוצות", + "No instance follows your instance yet.": "עדיין אין אתר שעוקב אחרי האתר שלך.", + "No instance to approve|Approve instance|Approve {number} instances": "אין אתרים לאשר|אישור האתר|אישור של {number} אתרים", + "No instance to reject|Reject instance|Reject {number} instances": "אין אתר לדחות|דחיית האתר|דחיית {number} אתרים", + "No instance to remove|Remove instance|Remove {number} instances": "אין אתרים להסיר|הסרת האתר|הסרת {number} אתרים", + "No message": "אין הודעות", + "No open reports yet": "אין דיווחים פתוחים עדיין", + "No participant to approve|Approve participant|Approve {number} participants": "אין משתתפים.ות לאשר|אישור המשתתפ.ת|אישור של {number} משתתפים.ות", + "No participant to reject|Reject participant|Reject {number} participants": "אין משתתפים.ות לדחות|דחיית המשתתפ.ת|דחיית {number} משתתפים.ות", + "No resolved reports yet": "אין דיווחים פתורים עדיין", + "No results for \"{queryText}\"": "אין תוצאות עבור \"{queryText}\"", + "Notes": "הערות", + "Number of places": "מספר מקומות", + "OK": "אישור", + "Old password": "ססמה ישנה", + "On {date}": "בתאריך {date}", + "On {date} ending at {endTime}": "בתאריך {date} מסתיים בשעה {endTime}", + "On {date} from {startTime} to {endTime}": "בתאריך {date} מהשעה {startTime} עד השעה {endTime}", + "On {date} starting at {startTime}": "בתאריך {date} החל מהשעה {startTime}", + "Only accessible through link (private)": "נגיש רק דרך קישור (פרטי)", + "Only alphanumeric lowercased characters and underscores are supported.": "רק אותיות קטנות באנגלית, ספרות וקו תחתי.", + "Open": "פתיחה", + "Opened reports": "דיווחים פתוחים", + "Or": "או", + "Organized": "מאורגן", + "Organized by {name}": "מאורגן על־ידי {name}", + "Organizer": "מארגנ.ת", + "Other software may also support this.": "תוכנות אחרות עשויות גם הן לתמוך בזה.", + "Otherwise this identity will just be removed from the group administrators.": "אחרת, זהות זו פשוט תוסר מניהול הקבוצה.", + "Page": "דף", + "Page limited to my group (asks for auth)": "הדף מוגבל לקבוצה שלי (מבקש להזדהות)", + "Participant": "משתתפ.ת", + "Participants": "משתתפים.ות", + "Participate": "השתתפות", + "Participate using your email address": "השתתפות בעזרת כתובת הדוא\"ל שלך", + "Participation approval": "אישור השתתפות", + "Participation confirmation": "אישור השתתפות", + "Participation requested!": "נשלחה בקשת השתתפות!", + "Password": "ססמה", + "Password (confirmation)": "ססמה (וידוא)", + "Password reset": "איפוס ססמה", + "Past events": "אירועים שחלפו", + "Pending": "ממתין", + "Pick an identity": "בחירת זהות", + "Please check your spam folder if you didn't receive the email.": "אנא בדק.י את תיקיית הספאם שלך אם לא קיבלת את הודעת הדוא\"ל.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "אנא צר.י קשר עם מנהל.ת האתר אם את.ה חושב.ת שזו טעות.", + "Please enter your password to confirm this action.": "אנא הזינ.י את הסממה שלך כדי לאשר את הפעולה.", + "Please make sure the address is correct and that the page hasn't been moved.": "אנא ודא.י שהכתובת נכונה ושהעמוד לא הוזז.", + "Post a comment": "פרסום תגובה", + "Post a reply": "פרסום תגובה", + "Postal Code": "מיקוד", + "Preferences": "העדפות", + "Previous page": "הדף הקודם", + "Privacy Policy": "מדיניות פרטיות", + "Private event": "אירוע פרטי", + "Private feeds": "היזנים פרטיים", + "Profiles": "פרופילים", + "Public RSS/Atom Feed": "ערוץ RSS/Atom פומבי", + "Public comment moderation": "בקרת תגובות פומביות", + "Public event": "אירוע פומבי", + "Public feeds": "היזנים פומביים", + "Public iCal Feed": "ערוץ iCal פומבי", + "Publish": "פרסום", + "Published events with {comments} comments and {participations} confirmed participations": "אירועים שפורסמו שיש להם {comments} תגובות ו־{participations} אישורי השתתפות", + "RSS/Atom Feed": "היזן רסס/אטום", + "Region": "אזור", + "Registration is allowed, anyone can register.": "ההרשמה מאופשרת, כל אחד.ת יכול.ה להירשם.", + "Registration is closed.": "ההרשמה סגורה.", + "Registration is currently closed.": "ההרשמה סגורה כעת.", + "Rejected": "נדחה", + "Reopen": "פתיחה מחדש", + "Reply": "תגובה", + "Report": "דיווח", + "Report this comment": "דיווח על תגובה זו", + "Report this event": "דיווח על אירוע זה", + "Reported": "מדווח", + "Reported by": "דווח על־ידי", + "Reported by someone on {domain}": "דווח על־ידי מישהו.י מהאתר {domain}", + "Reported by {reporter}": "דווח על־ידי {reporter}", + "Reported identity": "זהות מדווחת", + "Reports": "דיווחים", + "Reset my password": "איפוס הססמה שלי", + "Resolved": "נפתר", + "Resource provided is not an URL": "המשאב שהוזן אינו קישור תקין", + "Role": "תפקיד", + "Save": "שמירה", + "Save draft": "שמירת טיוטה", + "Search": "חיפוש", + "Search events, groups, etc.": "חיפוש אירועים, קבוצות וכו'", + "Searching…": "מחפש…", + "Send email": "שליחת דוא\"ל", + "Send the report": "שליחת הדיווח", + "Set an URL to a page with your own terms.": "הגדרת קישור לעמוד עם תנאים משלך.", + "Settings": "הגדרות", + "Share this event": "שיתוף אירוע זה", + "Show map": "הצגת מפה", + "Show remaining number of places": "הצגת מספר המקומות שנותרו", + "Show the time when the event begins": "הצגת זמן תחילת האירוע", + "Show the time when the event ends": "הצגת זמן סיום האירוע", + "Sign up": "הרשמה", + "Starts on…": "מתחיל ב…", + "Status": "מצב", + "Street": "רחוב", + "Tentative: Will be confirmed later": "לא סופי: יאושר בהמשך", + "Terms": "תנאים", + "The account's email address was changed. Check your emails to verify it.": "כתובת הדוא\"ל של החשבון שונתה. בדק.י את תיבת הדוא\"ל שלך כדי לאמת את השינוי.", + "The actual number of participants may differ, as this event is hosted on another instance.": "מספר המשתתפים.ות האמיתי עשוי להיות שונה, כי האירוע מתפרסם דרך אתר מוביליזון אחר.", + "The content came from another server. Transfer an anonymous copy of the report?": "התוכן הגיע משרת אחר. האם להעביר עותק אנונימי של הדיווח?", + "The draft event has been updated": "טיוטת האירוע עודכנה", + "The event has been created as a draft": "האירוע נוצר כטיוטה", + "The event has been published": "האירוע פורסם", + "The event has been updated": "האירוע עודכן", + "The event has been updated and published": "האירוע עודכן ופורסם", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "בקשות השתתפות מאושרות ידנית על־ידי מארגנ.ת האירוע. האם ברצונך להוסיף הערה עם הסבר מדוע את.ה רוצה להשתתף באירוע זה?", + "The event organizer didn't add any description.": "מארגנ.ת האירוע לא הוסיפ.ה תיאור.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "בקשות השתתפות מאושרות ידנית על־ידי מארגנ.ת האירוע. היות ובחרת להשתתף ללא חשבון, אנא צרפ.י הסבר מדוע את.ה רוצה להשתתף באירוע זה.", + "The event title will be ellipsed.": "כותרת האירוע תוצג באופן מקוצר עם שלוש נקודות בסוף.", + "The page you're looking for doesn't exist.": "העמוד שחיפשת לא קיים.", + "The password was successfully changed": "הססמה שונתה בהצלחה", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "הדיווח יישלח למנהלים.ות של השרת שלך. ניתן להסביר למטה את סיבת הדיווח של תוכן זה.", + "The {default_terms} will be used. They will be translated in the user's language.": "ייעשה שימוש ב{default_terms}. הם יתורגמו לשפה של המשתמש.ת.", + "There are {participants} participants.": "יש {participants} משתתפים.ות.", + "There will be no way to recover your data.": "לא תהיה אפשרות לשחזר את המידע שלך.", + "These events may interest you": "האירועים האלה עשויים לעניין אותך", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "שרת מוביליזון זה ואירוע זה מאפשרים בקשת השתתפות ללא חשבון, אך נדרש אימות באמצעות דואר אלקטרוני.", + "This information is saved only on your computer. Click for details": "מידע זה נשמר רק על המחשב שלך. לפרטים לחצ.י", + "This instance isn't opened to registrations, but you can register on other instances.": "שרת זה אינו פתוח להרשמה, אך ניתן להירשם בשרתים אחרים.", + "This is a demonstration site to test Mobilizon.": "זהו אתר הדגמה לצורך בדיקה של מוביליזון.", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "הדבר ימחק / יהפוך לאנונימי את כל התוכן (אירועים, תגובות, הודעות, אישורי השתתפות…) שנוצר מתוך זהות זו.", + "Title": "כותרת", + "To confirm, type your event title \"{eventTitle}\"": "לאישור, נא להזין את כותרת האירוע \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "לאישור, נא להזין את שם המשתמש.ת שלך \"{preferredUsername}\"", + "Transfer to {outsideDomain}": "העברה לשרת {outsideDomain}", + "Type": "סוג", + "URL": "קישור", + "Unfortunately, your participation request was rejected by the organizers.": "למרבה הצער, בקשת ההשתתפות שלך נדחתה על־ידי המארגניםות.", + "Unknown": "לא ידוע", + "Unknown error.": "שגיאה לא ידועה.", + "Unsaved changes": "שינויים שלא נשמרו", + "Upcoming": "אירועים קרובים", + "Update event {name}": "עדכון האירוע {name}", + "Update my event": "עדכון האירוע שלי", + "Updated": "עודכן", + "Use my location": "המיקום שלי", + "Username": "שם משתמש.ת", + "Users": "משתמשיםות", + "View a reply": "ללא הצגת תגובות|הצגת תגובה אחת|הצגת {totalReplies} תגובות", + "View event page": "הצגת עמוד האירוע", + "View everything": "הצגת הכל", + "View page on {hostname} (in a new window)": "הצגת העמוד ב־{hostname} (בחלון חדש)", + "Visible everywhere on the web (public)": "זמין לצפייה מכל מקום ברשת (ציבורי)", + "Waiting for organization team approval.": "בהמתנה לאישור מצוות המארגניםות.", + "Warning": "אזהרה", + "We just sent an email to {email}": "הרגע שלחנו דוא\"ל לכתובת {email}", + "We will redirect you to your instance in order to interact with this event": "אנחנו נעביר אותך לשרת שלך כדי לתקשר עם אירוע זה", + "Website / URL": "כתובת אתר / URL", + "Welcome back {username}!": "ברוכ.ה הבא.ה, {username}!", + "Welcome back!": "ברוכ.ה הבא.ה!", + "Welcome to Mobilizon, {username}!": "ברוכ.ה הבא.ה למוביליזון, {username}!", + "Who can view this event and participate": "מי יכול.ה לצפות באירוע ולהשתתף בו", + "You are participating in this event anonymously": "את.ה משתתפ.ת באירוע זה באופן אנונימי", + "You are participating in this event anonymously but didn't confirm participation": "את.ה משתתפ.ת באירוע זה באופן אנונימי אך טרם אישרת את השתתפותך", + "You can add tags by hitting the Enter key or by adding a comma": "ניתן להוסיף תגיות על־ידי לחיצה על מקש Enter או על־ידי הוספת פסיק", + "You can try another search term or drag and drop the marker on the map": "ניתן לנסות חיפוש נוסף או לגרור את הסמן שעל המפה", + "You have cancelled your participation": "ביטלת את השתתפותך", + "You have one event in {days} days.": "אין לך אירועים ב־{days} days | יש לך אירוע אחד ב־{days} ימים. | יש לך {count} אירועים ב־{days} ימים", + "You have one event today.": "אין לך אירועים היום | יש לך אירוע אחד היום | יש לך {count} אירועים היום", + "You have one event tomorrow.": "אין לך אירועים מחר | יש לך אירוע אחד מחר | יש לך {count} אירועים מחר", + "You need to login.": "יש להתחבר.", + "You will be redirected to the original instance": "את.ה תועבר.י לאתר המקורי", + "You wish to participate to the following event": "את.ה מבקש.ת להשתתף באירוע הבא", + "You'll receive a confirmation email.": "תקבל.י הודעת דוא\"ל לאישור.", + "Your account has been successfully deleted": "החשבון שלך נמחק בהצלחה", + "Your account has been validated": "החשבון שלך אומת", + "Your account is being validated": "החשבון שלך ממתין לאימות", + "Your account is nearly ready, {username}": "החשבון שלך כמעט מוכן, {username}" +}); diff --git a/res/locale/hr.js b/res/locale/hr.js new file mode 100644 index 0000000..465e29c --- /dev/null +++ b/res/locale/hr.js @@ -0,0 +1,1615 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Zamaskirano)", + "(this folder)": "(ova mapa)", + "(this link)": "(ova poveznica)", + "+ Add a resource": "+ Dodaj resurs", + "+ Create a post": "+ stvori objavu", + "+ Create an event": "+ Stvori događaj", + "+ Start a discussion": "+ Pokreni raspravu", + "0 Bytes": "0 bajtova", + "{contact} will be displayed as contact.": "{contact} će se prikazati kao kontakt.|{contact} će se prikazivati kao kontakti.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "Prihvaćen je zahtjev za praćenje od @{username}", + "@{username}'s follow request was rejected": "Odbijen zahtjev za praćenje od @{username}", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Kolačić je mala datoteka koja sadrži sve informacije poslane vašem računalu kada posjetite stranicu. Kada ju opet posjetite, kolačić omogućuje stranici da prepozna vaš preglednik. Kolačić može sadržavati vaše postavke ili druge informacije. Možete postaviti svoj preglednik da blokira sve kolačiće, ali to može dovesti do djelomičnog kvara nekih funkcija stranice. Lokalno spremište radi na isti način ali vam dopušta da spremite više podataka.", + "A discussion has been created or updated": "Jedna rasprava je stvorena ili aktualizirana", + "A federated software": "Federaliziran softver", + "A fediverse account URL to follow for event updates": "URL Fediverse računa za praćenje aktualiziranja događaja", + "A few lines about your group": "Par redaka o tvojoj grupi", + "A link to a page presenting the event schedule": "Poveznica na stranicu s rasporedom događaja", + "A link to a page presenting the price options": "Poveznica na stranicu sa cijenama", + "A member has been updated": "Jedan član je aktuliziran", + "A member requested to join one of my groups": "Jedan član je zatražio pridruživanje jednoj od mojih grupa", + "A new version is available.": "Dostupna je nova verzija.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Mjesto za vaš kućni red, pravila, ili smjernice. Možete koristiti HTML oznake.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Mjesto gdje objašnjavate tko ste i što čini vašu instancu jednistvenom. Možete koristiti HTML oznake.", + "A place to publish something to the whole world, your community or just your group members.": "Mjesto za objavljivanje nečega cijelom svijetu, vašoj zajednici, ili samo vašoj grupi.", + "A place to store links to documents or resources of any type.": "Mjesto za spremanje poveznica na dokumente ili resurse bilo koje vrste.", + "A post has been published": "Jedna objava je objavljena", + "A post has been updated": "Jedna objava je aktualizirana", + "A practical tool": "Praktični alat", + "A resource has been created or updated": "Jedan resurs je stvoren ili aktualiziran", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Kratki slogan za naslovnu stranicu tvoje instance. Standardno se koristi „Skupi ⋅ Organiziraj ⋅ Mobiliziraj”", + "A twitter account handle to follow for event updates": "Twitter račun za praćenje aktualiziranja događaja", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Emancipacijski i etični alat za okupljanje, organiziranje, i mobiliziranje, sa prijateljskim korisničkim sučeljem.", + "A validation email was sent to {email}": "E-mail za ovjeru je poslan na {email}", + "API": "API", + "Abandon editing": "Napusti uređivanje", + "About": "O nama", + "About Mobilizon": "O Mobilizonu", + "About anonymous participation": "O anonimnim sudjelovanjima", + "About instance": "Informacije o instanci", + "About this event": "O ovom događaju", + "About this instance": "O ovoj instanci", + "About {instance}": "O {instance}", + "Accept": "Prihvati", + "Accept follow": "Prihvati praćenje", + "Accepted": "Prihvaćeno", + "Access drafts events": "Pristupi nacrtima događaja", + "Access followed groups": "Pristupi grupama koje pratiš", + "Access group activities": "Pristupi aktivonstima grupe", + "Access group discussions": "Pristupi grupnim raspravama", + "Access group events": "Pristupi događajima grupe", + "Access group followers": "Pristupi pratiteljima grupe", + "Access group members": "Pristupi članovima grupe", + "Access group memberships": "Pristupi članstvima grupa", + "Access group suggested events": "Pristupi predloženim grupnim događajima", + "Access group todo-lists": "Pristupi popisu zadataka grupe", + "Access organized events": "Pristupi organiziranim događajima", + "Access participations": "Pristupi sudjelovanjima", + "Access your group's resources": "Pristupi resursima tvoje grupe", + "Accessibility": "Pristupačnost", + "Accessible only by link": "Dostupno samo putem poveznice", + "Accessible only to members": "Dostupno samo članovima", + "Accessible through link": "Dostupno kroz poveznicu", + "Account": "Račun", + "Account settings": "Postavke računa", + "Actions": "Akcije", + "Activate browser push notifications": "Aktiviraj automatske obavijesti preglednika", + "Activate notifications": "Aktiviraj obavijesti", + "Activated": "Upaljeno", + "Active": "Aktivno", + "Activity": "Aktivnost", + "Actor": "Akter", + "Adapt to system theme": "Prilagodi temi sustava", + "Add": "Dodaj", + "Add / Remove…": "Dodaj / Ukloni…", + "Add a contact": "Dodaj kontakt", + "Add a new post": "Dodaj novu objavu", + "Add a note": "Dodaj bilješku", + "Add a todo": "Dodaj obvezu", + "Add an address": "Dodaj adresu", + "Add an instance": "Dodaj instancu", + "Add link": "Dodaj poveznicu", + "Add new…": "Dodaj novi …", + "Add picture": "Dodaj sliku", + "Add some tags": "Dodaj oznake", + "Add to my calendar": "Dodaj u moj kalendar", + "Additional comments": "Dodatni komentari", + "Admin": "Admin", + "Admin dashboard": "Administratorska nadzorna ploča", + "Admin settings": "Administratorske postavke", + "Admin settings successfully saved.": "Administratorske postavke su uspješno spremljene.", + "Administration": "Administrator", + "Administrator": "Administrator", + "All": "Sve", + "All activities": "Sve aktivnosti", + "All good, let's continue!": "Sve je u redu. Nastavimo!", + "All the places have already been taken": "Sva mjesta su već zauzeta", + "Allow all comments from users with accounts": "Dozvoli sve komentare prijavljenih korisnika", + "Allow registrations": "Dozvoli registracije", + "An URL to an external ticketing platform": "URL-adresa eksterne platforme za prodaju karata", + "An anonymous profile joined the event {event}.": "Anonimni profil se pridružio događaju {event}.", + "An error has occured while refreshing the page.": "Dogodila se greška prilikom aktualiziranja stranice.", + "An error has occured. Sorry about that. You may try to reload the page.": "Desila se greška! Isprike. Možete probati ponovno učitati stranicu.", + "An ethical alternative": "Etična alternativa", + "An event I'm going to has been updated": "Događaj kojem ću prisustvovati je aktualiziran", + "An event I'm going to has posted an announcement": "Događaj kojem ću prisustvovati je objavio najavu", + "An event I'm organizing has a new comment": "Događaj koji organiziram ima nov komentar", + "An event I'm organizing has a new participation": "Događaj koji organiziram ima novo sudjelovanje", + "An event I'm organizing has a new pending participation": "Događaj koji organiziram ima novo sudjelovanje na čekanju", + "An event from one of my groups has been published": "Događaj jedne od mojih grupa je objavljen", + "An event from one of my groups has been updated or deleted": "Događaj jedne od mojih grupa je aktualiziran ili izbrisan", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Instanca je instalirana verzija Mobilizon softvera koja radi na serveru. Instancu može postaviti bilo tko, tko koristi {mobilizon_software} ili druge federalizirane aplikacije, poznato i kao „fediverse”. Ime ove instance je {instance_name}. Mobilizon je federalizirana mreža kaj se sastoji od više instanca (kao e-mail serveri) gdje korisnici, koji su registrirani na različitim instancama mogu komunicirati iako se ne nalaze na istoj instanci.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events, automatically and remotely.": "„Sučelje za programiranje aplikacija” ili „API” je komunikacijski protokol koji omogućuje komponentama softvera da međusobno komuniciraju. Mobilizon API, na primjer, može dozvoliti softverskim alatima trećih strana da komuniciraju s Mobilizon instancama za izvođenje određenih radnji, kao što je objavljivanje događaja, automatski i na daljinski način.", + "And {number} comments": "I {number} komentara", + "Announcements": "Najave", + "Announcements and mentions notifications are always sent straight away.": "Najave i obavijesti o spominjanjima uvijek se šalju odmah.", + "Announcements for {eventTitle}": "Najave za {eventTitle}", + "Anonymous participant": "Anonimni sudionik", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Od anonimnih sudionika će se tražiti potvrda o sudjelovanju kroz e-mail.", + "Anonymous participations": "Anonimno sudjelovanje", + "Any category": "Bilo koja kategorija", + "Any day": "Bilo koji dan", + "Any distance": "Bilo koja udaljenost", + "Any type": "Bilo koja vrsta", + "Anyone can join freely": "Svi se mogu pridružiti", + "Anyone can request being a member, but an administrator needs to approve the membership.": "Svatko može zatražiti članstvo, ali ga administrator mora odobriti.", + "Anyone wanting to be a member from your group will be able to from your group page.": "Svatko tko se želi pridružiti grupi će to moći napraviti preko stranice grupe.", + "Application": "Aplikacija", + "Application authorized": "Aplikacija je autorizirana", + "Application not found": "Aplikacija nije pronađena", + "Application was revoked": "Aplikacija je opozvana", + "Apply filters": "Primjeni filtre", + "Approve member": "Odobri člana", + "Apps": "Aplikacije", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Jeste li sigurni da želite izbrisati svoj cijeli račun? Izgubiti ćete sve. Identiteti, postavke, događaji, poruke, i sudjelovanja će biti zauvijek uklonjeni.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Stvarno želiš potpuno izbrisati ovu grupu? Svi članovi (uključujući i one izvan ove instance) će biti obaviješteni i uklonjeni iz grupe, te će se svi grupni podatci (događaji, objave, rasprave …) zauvijek poništiti.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Stvarno želiš izbrisati ovaj komentar? Ovo je nepovratna radnja.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Jeste li sigurni da želite izbrisati ovaj komentar? Nećete ga moći ponovno vratiti.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Jeste li sigurni da želite izbrisati ovaj komentar? Nećete ga moći ponovno vratiti. Možda biste željeli započeti razgovor sa organizatorom događaja ili izmjeniti događaj.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Stvarno želiš suspendirati ovu grupu. Svi članovi (uključujući i one izvan ove instance) će biti obaviješteni i uklonjeni iz grupe, te će se svi grupni podatci (događaji, objave, rasprave …) zauvijek poništiti.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Stvarno želiš suspendirati ovu grupu. Pošto je stvorena na ovoj instanci, uklonit će se samo lokalni članovi i podatci i blokirat će se sva buduća aktivnost.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Jeste li sigurni da želite poništiti stvaranje događaja? Izgubiti ćete sve izmjene.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Jeste li sigurni da želite poništiti uređivanje događaja? Izgubiti ćete sve izmjene.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Stvarno više ne želiš sudjelovati u događaju „{title}”?", + "Are you sure you want to delete this entire conversation?": "Stvarno želiš izbrisati ovu cijelu konverzaciju?", + "Are you sure you want to delete this entire discussion?": "Stvarno želiš izbrisati ovu cijeli raspravu?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Jeste li sigurni da želite izbrisati ovaj događaj? Nećete moći poništiti ovu odluku.", + "Are you sure you want to delete this post? This action cannot be reverted.": "Stvarno želiš izbrisati ovaj događaj? Ovo je nepovratna radnja.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Stvarno želiš napustiti grupu {groupName}? Izgubit ćeš pristup privatnom sadržaju ove grupe. Ova je nepovratna radnja.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Budući da su organizatori odlučili ručno potvrđivati zahtjeve, vaše sudjelovanje će biti potvrđeno kada primite e-mail s prihvaćanjem zahtjeva.", + "Ask your instance admin to {enable_feature}.": "Zatraži administratora instance da {enable_feature}.", + "Assigned to": "Dodijeljeno", + "Atom feed for events and posts": "Atom feed za događaje i objave", + "Attending": "Prisustvovanje", + "Authorize": "Dozvoli", + "Authorize application": "Autoriziraj aplikaciju", + "Authorized on {authorization_date}": "Autorizirano {authorization_date}", + "Autorize this application to access your account?": "Želiš li ovoj aplikaciji dozvoliti pristup tvom računu?", + "Avatar": "Avatar", + "Back to group list": "Natrag na popis grupa", + "Back to homepage": "Natrag na početnu web-stranicu", + "Back to previous page": "Natrag na prethodnu stranicu", + "Back to profile list": "Natrag na popis profila", + "Back to top": "Natrag na vrh stranice", + "Back to user list": "Natrag na popis korisnika", + "Banner": "Natpis", + "Become part of the community and start organizing events": "Postani dio zajednice i počni organizirati događaje", + "Before you can login, you need to click on the link inside it to validate your account.": "Prije prijave moraš ovjeriti svoj račun pritiskom na primljenu poveznicu.", + "Begins on": "Započinje na", + "Best match": "Najbolje poklapanje", + "Big Blue Button": "Big Blue Button", + "Bold": "Podeljano", + "Booking": "Rezervacija", + "Breadcrumbs": "Navigacijska traka", + "Browser notifications": "Obavijesti preglednika", + "Bullet list": "Popis s predznacima", + "By bike": "Biciklom", + "By car": "Vozilom", + "By others": "Od drugih", + "By transit": "S javnim prijevozom", + "By {group}": "Od {group}", + "By {username}": "Od {username}", + "Can be an email or a link, or just plain text.": "Može biti e-mail adresa, poveznica ili običan tekst.", + "Cancel": "Otkaži", + "Cancel anonymous participation": "Otkaži anonimno sudjelovanje", + "Cancel creation": "Otkaži stvaranje", + "Cancel discussion title edition": "Prekini mijenjanje naslova rasprave", + "Cancel edition": "Otkaži uređivanje", + "Cancel follow request": "Otkaži zahtjev za praćenje", + "Cancel membership request": "Storniraj zahtjev za članstvo", + "Cancel my participation request…": "Otkaži moj zahtjev za sudjelovanje…", + "Cancel my participation…": "Otkaži moje sudjelovanje…", + "Cancel participation": "Otkaži sudjelovanje", + "Cancelled": "Otkazano", + "Cancelled: Won't happen": "Otkazano: Neće se dogoditi", + "Categories": "Kategorije", + "Category": "Kategorija", + "Category illustrations credits": "Zasluge za ilustracije kategorije", + "Category list": "Popis kategorija", + "Change": "Promijeni", + "Change email": "Promijeni e-mail adresu", + "Change my email": "Promijeni moju e-mail adresu", + "Change my identity…": "Promijeni moj identitet…", + "Change my password": "Promijeni moju lozinku", + "Change role": "Promijeni ulogu", + "Change the filters.": "Promijeni filtre.", + "Change timezone": "Promijeni vremensku zonu", + "Change user email": "Promijeni e-mail adresu korisnika", + "Change user role": "Promijeni ulogu korisnika", + "Check your device to continue. You may now close this window.": "Za nastavljanje provjeri tvoj uređaj. Sada možeš zatvoriti ovaj prozor.", + "Check your inbox (and your junk mail folder).": "Provjeri svoj inbox (i spam mapu).", + "Choose the source of the instance's Privacy Policy": "Odaberi izvor politike privatnosti instance", + "Choose the source of the instance's Terms": "Odaberi izvor uvjeta instance", + "City or region": "Grad ili regija", + "Clear": "Očisti", + "Clear address field": "Isprazni polje adrese", + "Clear date filter field": "Isprazni polje filtra datuma", + "Clear participation data for all events": "Očisti podatke o sudjelovanju svih događaja", + "Clear participation data for this event": "Očisti podatke o sudjelovanju ovog događaja", + "Clear timezone field": "Isprazni polje vremenske zone", + "Click for more information": "Klikni za više informacija", + "Click to upload": "Stisni za slanje", + "Close": "Zatvori", + "Close comments for all (except for admins)": "Zatvori komentare za sve (osim administratore)", + "Close map": "Zatvori kartu", + "Closed": "Zatvoreno", + "Comment body": "Tekst komentara", + "Comment deleted": "Komentar obrisan", + "Comment from a private conversation": "Komentar iz privatne konverzacije", + "Comment from an event announcement": "Komentar iz najave događaja", + "Comment from {'@'}{username} reported": "Komentar od {'@'}{username} prijavljen", + "Comment text can't be empty": "Komentar ne smije biti prazan", + "Comments": "Komentari", + "Comments are closed for everybody else.": "Komentari su zatvoreni za sve ostale.", + "Confirm": "Potvrdi", + "Confirm my participation": "Potvrdi moje sudjelovanje", + "Confirm my particpation": "Potvrdi moje sudjelovanje", + "Confirm participation": "Potvrdi sudjelovanje", + "Confirm user": "Potvrdi korisnika", + "Confirmed": "Potvrđeno", + "Confirmed at": "Potvrđeno", + "Confirmed: Will happen": "Potrvđeno: Dogoditi će se", + "Congratulations, your account is now created!": "Čestitke, kreirali ste račun!", + "Contact": "Kontaktiraj", + "Continue": "Nastavi", + "Continue editing": "Nastavi uređivanje", + "Conversation with {participants}": "Konverzacija sa sudionicima {participants}", + "Conversations": "Konverzacije", + "Cookies and Local storage": "Kolačići i Lokalno spremište", + "Copy URL to clipboard": "Kopiraj URL u međuspremnik", + "Copy details to clipboard": "Kopiraj detalje u međuspremnik", + "Country": "Država", + "Create": "Stvori", + "Create a calc": "Stvori calc", + "Create a discussion": "Stvori raspravu", + "Create a folder": "Stvori mapu", + "Create a new event": "Stvori novi događaj", + "Create a new group": "Stvori novu grupu", + "Create a new identity": "Stvori novi indentitet", + "Create a new list": "Stvori novi popis", + "Create a new metadata element": "Stvori novi element metapodataka", + "Create a new profile": "Stvori novi profil", + "Create a pad": "Stvori pad", + "Create a videoconference": "Stvori video konferenciju", + "Create an account": "Kreiraj račun", + "Create discussion": "Stvori raspravu", + "Create event": "Stvori događaj", + "Create group": "Stvori grupu", + "Create group discussions": "Stvori grupne rasprave", + "Create group resources": "Stvori resurse grupe", + "Create identity": "Stvori identitet", + "Create my event": "Stvori moj događaj", + "Create my group": "Stvori moju grupu", + "Create my profile": "Stvori moj profil", + "Create new links": "Stvori nove poveznice", + "Create new profiles": "Stvori nove profile", + "Create resource": "Stvori resurs", + "Create the discussion": "Stvori raspravu", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Izradite popise obveza za sve zadatke koje trebate napraviti, dodijelite ih i postavite rokove.", + "Create token": "Stvori token", + "Created by {name}": "Stvorili {name}", + "Created by {username}": "Stvorili {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "Aktualni identitet je promijenjen u {identityName} kako bi se mogao voditi događaj.", + "Current page": "Aktualna stranica", + "Custom": "Vlastiti", + "Custom URL": "Vlastiti URL", + "Custom text": "Vlastiti tekst", + "Daily email summary": "E-mail dnevnog sažetka", + "Dark": "Tamna", + "Dashboard": "Nadzorna ploča", + "Date": "Datum", + "Date and time": "Datum i vrijeme", + "Date and time settings": "Postavke za datum i vrijeme", + "Date parameters": "Parametri za datum", + "Deactivate notifications": "Deaktiviraj obavijesti", + "Decline": "Odbij", + "Decrease": "Smanji", + "Default": "Standardno", + "Default Mobilizon privacy policy": "Standardna Mobilizon politika privatnosti", + "Default Mobilizon terms": "Standardni Mobilizon uvjeti", + "Delete": "Izbriši", + "Delete account": "Izbriši račun", + "Delete comment": "Izbriši komentar", + "Delete comments": "Izbriši komentare", + "Delete conversation": "Izbriši konverzaciju", + "Delete discussion": "Izbriši raspravu", + "Delete event": "Izbriši događaj", + "Delete events": "Izbriši događaje", + "Delete everything": "Izbriši sve", + "Delete group": "Izbriši grupu", + "Delete group discussions": "Izbriši grupne rasprave", + "Delete group posts": "Izbriši poruke grupe", + "Delete group resources": "Izbriši resurse grupe", + "Delete my account": "Izbriši moj račun", + "Delete post": "Izbriši objavu", + "Delete profiles": "Izbriši profile", + "Delete this conversation": "Izbriši ovu konverzaciju", + "Delete this discussion": "Izbriši ovu raspravu", + "Delete this identity": "Izbriši ovaj identitet", + "Delete your identity": "Izbriši svoj identitet", + "Delete {eventTitle}": "Izbriši {eventTitle}", + "Delete {preferredUsername}": "Izbriši {preferredUsername}", + "Deleting comment": "Brisanje komentara", + "Deleting event": "Brisanje događaja", + "Deleting my account will delete all of my identities.": "Brisanje računa će izbrisati sve moje identitete.", + "Deleting your Mobilizon account": "Brisanje mog Mobizilion računa", + "Demote": "Degradiraj", + "Describe your event": "Opiši tvoj događaj", + "Description": "Opis", + "Details": "Detalji", + "Device activation": "Aktiviranje uređaja", + "Didn't receive the instructions?": "Niste dobili instrukcije?", + "Disabled": "Ugašeno", + "Discussions": "Rasprave", + "Discussions list": "Popis rasprava", + "Display name": "Prikazno ime", + "Display participation price": "Prikaži cijenu sudjelovanja", + "Displayed nickname": "Prikazan nadimak", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Prikazuje se na početnoj stranici i meta oznakama. Opiši u jednom odlomku što je Mobilizon i što čini ovu instancu posebnom.", + "Distance": "Udaljenost", + "Do not receive any mail": "Nemoj dobivati mailove", + "Do you really want to suspend the account « {emailAccount} » ?": "Stvarno želiš suspendirati račun „{emailAccount}”?", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Stvarno želiš suspendirati ovaj račun? Svi korisnički profili će se izbrisati.", + "Do you really want to suspend this profile? All of the profiles content will be deleted.": "Stvarno želiš suspendirati ovaj profil? Sav sadržaj profila će se izbrisati.", + "Do you wish to {create_event} or {explore_events}?": "Želite li {create_event} ili {explore_event}?", + "Do you wish to {create_group} or {explore_groups}?": "Želite li {create_group} ili {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "Treba li događaj kasnije potvrditi ili je otkazan?", + "Domain": "Domena", + "Domain or instance name": "Ime domene ili instance", + "Draft": "Skica", + "Drafts": "Skice", + "Due on": "Rok", + "Duplicate": "Dupliciraj", + "Edit": "Uredi", + "Edit post": "Izmjeni objavu", + "Edit profile {profile}": "Uredi profil {profile}", + "Edit user email": "Uredi e-mail adresu korisnika", + "Edited {ago}": "Izmjenjeno {ago}", + "Edited {relative_time} ago": "Uređeno prije {relative_time}", + "Eg: Stockholm, Dance, Chess…": "Eg: Stockholm, Ples, Šah…", + "Either on the {instance} instance or on another instance.": "Ili na {instance} instanci ili na drugoj instanci.", + "Either the account is already validated, either the validation token is incorrect.": "Ili je račun već ovjeren, ili je token za ovjerenje netočan.", + "Either the email has already been changed, either the validation token is incorrect.": "Ili je e-mail već promijenjen, ili je token za ovjerenje netočan.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Ili je zahtjev za sudjelovanje već ovjeren, ili je token za ovjerenje netočan.", + "Either your participation has already been cancelled, either the validation token is incorrect.": "Ili je tvoje sudjelovanje već otkazano ili je token provjere netočan.", + "Element title": "Naslov elementa", + "Element value": "Vrijednost elementa", + "Email": "E-mail", + "Email address": "E-mail adresa", + "Email validate": "Ovjeri e-mail adresu", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "E-mailovi obično ne sadrže velika slova, provjerite pravopis.", + "Enabled": "Omogućeno", + "Ends on…": "Završava na…", + "Enter the code displayed on your device": "Upiši prikazani kod na tvom uređaju", + "Enter the link URL": "Upišite URL poveznice", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Upiši svoju e-mail adresu i mi ćemo ti poslati upute za mijenjanje lozinke.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Upiši tvoju politiku privatnosti. Možeš koristiti HTML oznake. {mobilizon_privacy_policy} se nudi kao predložak.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Upiši tvoje uvjete. Možeš koristiti HTML oznake. {mobilizon_terms} se nudi kao predložak.", + "Error": "Greška", + "Error details copied!": "Detalji greške kopirani!", + "Error message": "Poruka o grešci", + "Error stacktrace": "Slijed naredbi greške", + "Error while adding tag: {error}": "Greška prilikom dodavanja oznake: {error}", + "Error while cancelling your participation": "Greška prilikom otkazivanja tvog sudjelovanja", + "Error while changing email": "Greška pri promjeni e-maila", + "Error while loading the preview": "Greška tijekom učitavanja pregleda", + "Error while login with {provider}. Retry or login another way.": "Greška pri prijavi sa {provider}. Pokušajte ponovno ili se prijavite na drugi način.", + "Error while login with {provider}. This login provider doesn't exist.": "Greška pri prijavi sa {provider}. Ova prijavni operater ne postoji.", + "Error while reporting group {groupTitle}": "Greška pri prijavi grupe {groupTitle}", + "Error while subscribing to push notifications": "Greška prilikom pretplate na automatske obavijesti", + "Error while suspending group": "Greška tijekom suspendiranja grupe", + "Error while updating participation status inside this browser": "Greška tijekom aktualiziranja stanja sudjelovanja u ovom pregledniku", + "Error while validating account": "Greška pri ovjerenju računa", + "Error while validating participation request": "Greška pri ovjerenju zahtjeva za sudjelovanje", + "Etherpad notes": "Etherpad bilješke", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Etična alternativa Facebook događajima, grupama, i stranicama, Mobilizon je alat dizajniran da vam služi. I točka.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Etička alternativa za Facebook događe, grupe i stranice, Mobilizon je {tool_designed_to_serve_you}.", + "Event": "Događaj", + "Event URL": "URL događaja", + "Event already passed": "Događaj je već prošao", + "Event cancelled": "Događaj otkazan", + "Event creation": "Stvaranje događaja", + "Event date": "Datum događaja", + "Event deleted": "Događaj je izbrisan", + "Event description body": "Tekst opisa događaja", + "Event edition": "Uređivanje događaja", + "Event list": "Popis događaja", + "Event metadata": "Metapodaci događaja", + "Event page settings": "Postavke stranice događaja", + "Event status": "Stanje događaja", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Vremenska zona događaja će se standardno postaviti na vremensku zonu adrese događaja ako postoji ili na tvoju vremensku zonu.", + "Event to be confirmed": "Događaj iščekuje potvrdu", + "Event {eventTitle} deleted": "Događaj {eventTitle} izbrisan", + "Event {eventTitle} reported": "Događaj {eventTitle} prijavljen", + "Events": "Događaji", + "Events close to you": "Događaji u tvojoj blizini", + "Events nearby": "Obližnji događaji", + "Events nearby {position}": "Događaji u blizini od {position}", + "Events tagged with {tag}": "Događaji označeni sa {tag}", + "Everything": "Sve", + "Ex: mobilizon.fr": "Ex: mobilizon.fr", + "Ex: someone@mobilizon.org": "Npr.: sambadi@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "Primjer: netko{'@'}mobilizon.org", + "Explore": "Istraži", + "Explore events": "Istraži događaje", + "Explore!": "Istraži!", + "Export": "Izvezi", + "External provider URL": "URL eksternog pružatelja usluga", + "External registration": "Eksterna registracija", + "Failed to get location.": "Neuspjelo dohvaćanje lokacije.", + "Failed to save admin settings": "Greška pri spremanju administratorskih postavki", + "Featured events": "Istaknuti događaji", + "Federated Group Name": "Ime federalizirane grupe", + "Federation": "Federacija", + "Fediverse account": "Fediverse račun", + "Fetch more": "Uhvati više", + "Filter": "Filtar", + "Filter by name": "Filtriraj po imenu", + "Filter by profile or group name": "Filtriraj po imenu profila ili grupe", + "Find an address": "Pronađi adresu", + "Find an instance": "Pronađi instancu", + "Find another instance": "Nađi drugu instancu", + "Find or add an element": "Pronađi ili dodaj jedan element", + "First steps": "Prvi koraci", + "Follow": "Prati", + "Follow a new instance": "Prati novu instancu", + "Follow instance": "Prati instancu", + "Follow request pending approval": "Zahtjev za praćenje čeka na odobrenje", + "Follow requests will be approved by a group moderator": "Zahtjeve za praćenje će odobriti moderator grupe", + "Follow status": "Prati stanje", + "Followed": "Praćeno", + "Followed, pending response": "Praćeno, čeka na odgovor", + "Follower": "Pratilac", + "Followers": "Pratioci", + "Followers will receive new public events and posts.": "Pratioci će primati obavijesti o novim javnim događajima i objave.", + "Following": "Pratiš", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Praćenje grupe omogućuje dobivanje obavijesti o {group_upcoming_public_events}, dok pridruživanje grupi omogućuje {access_to_group_private_content_as_well}, uključujući grupne rasprave, grupne resurse i objave koje su namijenjene samo za članove.", + "Followings": "Praćenja", + "Follows us": "Prati nas", + "Follows us, pending approval": "Prati nas, čeka na odobrenje", + "For instance: London": "Na primjer: Osijek", + "For instance: London, Taekwondo, Architecture…": "Za instance: London, Taekwondo, Arhitektura.…", + "Forgot your password ?": "Zaboravio/la si lozinku?", + "Forgot your password?": "Zaboravio/la si svoju lozinku?", + "Framadate poll": "Framadate anketa", + "From my groups": "Iz mojih grupa", + "From the {startDate} at {startTime} to the {endDate}": "Od {startDate} u {startTime} do {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Od {startDate} u {startTime} do {endDate} u {endTime}", + "From the {startDate} to the {endDate}": "Od {startDate} do {endDate}", + "From yourself": "Od vas", + "Fully accessible with a wheelchair": "Potpun pristup za osobe u invalidskim kolicima", + "Gather ⋅ Organize ⋅ Mobilize": "Skupi ⋅ Organiziraj ⋅ Mobiliziraj", + "General": "Opće", + "General information": "Opće informacije", + "General settings": "Opće postavke", + "Geolocate me": "Odredi moju lokaciju", + "Geolocation was not determined in time.": "Geolokaliziranje nije na vrijeme utvrđeno.", + "Get informed of the upcoming public events": "Informiraj se o nadolazećim javnim događanjima", + "Getting location": "Lociranje", + "Getting there": "Dolazak", + "Glossary": "Glosar", + "Go": "Idi", + "Go to the event page": "Idi na stranicu događaja", + "Go!": "Kreni!", + "Google Meet": "Google Meet", + "Group": "Grupe", + "Group Followers": "Pratioci grupe", + "Group Members": "Članovi grupe", + "Group URL": "URL grupe", + "Group activity": "Aktivnost grupe", + "Group address": "Grupna adresa", + "Group description body": "Tekst opisa grupe", + "Group display name": "Ime grupe", + "Group members": "Članovi grupe", + "Group name": "Ime grupe", + "Group profiles": "Profili grupa", + "Group settings": "Postavke grupe", + "Group settings saved": "Grupne postavke spremljene", + "Group short description": "Kratki opis grupe", + "Group visibility": "Vidljivost grupe", + "Group {displayName} created": "Grupa {displayName} stvorena", + "Group {groupTitle} reported": "Grupa {groupTitle} prijavljena", + "Groups": "Grupe", + "Groups are not enabled on this instance.": "Grupe nisu omogućene na ovoj instanci.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Grupe su mjesta za koordinaciju, pripremanje, i organiziranje događaja te vođenje vaše zajednice.", + "Heading Level 1": "Naslov prve razine", + "Heading Level 2": "Naslov druge razine", + "Heading Level 3": "Naslov treće razine", + "Headline picture": "Naslovna slika", + "Hide filters": "Sakrij filtre", + "Hide replies": "Sakrij odgovore", + "Home": "Doma", + "Home to {number} users": "Udomljuje {number} korisnika", + "Homepage": "Početna web-stranica", + "Hourly email summary": "E-mail satnog sažetka", + "I agree to the {instanceRules} and {termsOfService}": "Slažem se sa {instanceRules} i {termsOfService}", + "I create an identity": "Stvorim identitet", + "I don't have a Mobilizon account": "Nemam Mobilizon račun", + "I have a Mobilizon account": "Imam Mobilizon račun", + "I have an account on another Mobilizon instance.": "Imam račun na drugoj Mobilizon instanci.", + "I have an account on {instance}.": "Imam račun na {instance}.", + "I participate": "Sudjelujem", + "I want to allow people to participate without an account.": "Želim dopustiti ljudima da sudjeluju i bez računa.", + "I want to approve every participation request": "Želim odobriti svaki zahtjev za sudjelovanje", + "I want to manage the registration with an external provider": "Želim upravljati registracijom s eksternim pružateljem usluga", + "I've been mentionned in a comment under an event": "Spomenut/a sam u komentaru u jednom događaju", + "I've been mentionned in a conversation": "Spomenut/a sam u konverzaciji", + "I've been mentionned in a group discussion": "Spomenut/a sam u grupnoj raspravi", + "I've clicked on X, then on Y": "Pritisnuo/la sam X, zatim Y", + "ICS feed for events": "ICS feed za događaje", + "ICS/WebCal Feed": "ICS/WebCal feed", + "IP Address": "IP adresa", + "Identities": "Identiteti", + "Identity {displayName} created": "Identitet {displayName} stvoren", + "Identity {displayName} deleted": "Identitet {displayName} izbrisan", + "Identity {displayName} updated": "Identitet {displayName} ažuriran", + "If allowed by organizer": "Ako organizator dozvoljava", + "If an account with this email exists, we just sent another confirmation email to {email}": "Ako račun s ovom e-mail adresom postoji, upravo smo poslali još jedan e-mail za potvrdu na {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Ako je ovaj identitet jedini administrator nekih grupa, trebate ih izbrisati prije nego što možete izbrisati ovaj identitet.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Ako vas se pita za vaš federalizirani identitet, sastoji se od vašeg korisničkog imena i vaše instance. Na primjer, federalizirani identitet za vaš prvi profil je:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Ako je odabrano ručno odobrenje sudionika, Mobilizon će ti poslati e-mail o novim sudionicima koji se moraju obraditi. Dolje možeš odabrati učestalost ovih obavijesti.", + "If you want, you may send a message to the event organizer here.": "Ako želite, ovdje možete poslati poruku organizatoru događaja.", + "Ignore": "Zanemari", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Slika ilustracije za kategoriju „{category}”. Autor {author} na {source} ({license})", + "In person": "Osobno", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "U sljedećem kontekstu, aplikacija je softver pružen od Mobilizon tima ili 3. partije, koji vam omogućuje povezivanje sa instancom.", + "In the past": "U prošlosti", + "In this instance's network": "U mreži ove instance", + "Increase": "Povećaj", + "Instance": "Instanca", + "Instance Long Description": "Dugi opis instance", + "Instance Name": "Ime Instance", + "Instance Privacy Policy": "Politika privatnosi instance", + "Instance Privacy Policy Source": "Izvor politike privatnosti instance", + "Instance Privacy Policy URL": "URL politike privatnosti instance", + "Instance Rules": "Pravila Instance", + "Instance Short Description": "Kratki opis instance", + "Instance Slogan": "Slogan instance", + "Instance Terms": "Uvjeti Instance", + "Instance Terms Source": "Izvor Uvjeta Instance", + "Instance Terms URL": "URL Uvjeta Instance", + "Instance administrator": "Administrator instance", + "Instance configuration": "Konfiguracija instance", + "Instance feeds": "Feedovi instance", + "Instance languages": "Jezici instance", + "Instance rules": "Pravila instance", + "Instance settings": "Postavke instance", + "Instances": "Instance", + "Instances following you": "Instance koje vas prate", + "Instances you follow": "Instance koje pratite", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Integriraj ovaj događaj s alatima treće strane i prikaži metapodatke za događaj.", + "Interact": "Interakcija", + "Interact with a remote content": "Interagiraj sa sadržajem na udeljenom računalu", + "Invite a new member": "Pozovi novog člana", + "Invite member": "Pozovi člana", + "Invited": "Pozvani", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Moguće je da sadržaj nije dostupan na ovoj instanci, jer je blokirala profile i grupe koji su ga objavili.", + "Italic": "Kurziv", + "Jitsi Meet": "Jitsi Meet", + "Join": "Pridruži se", + "Join {instance}, a Mobilizon instance": "Pridruži se {instance}, Mobilizon instanca", + "Join group": "Pridruži se grupi", + "Join group {group}": "Pridruži se grupi {group}", + "Join {instance}, a Mobilizon instance": "Pridruži se instanci {instance}, Mobilizon instanca", + "Keep the entire conversation about a specific topic together on a single page.": "Zadrži cijelu konverzaciju o nekoj temi na jednoj stranici.", + "Key words": "Ključne riječi", + "Keyword, event title, group name, etc.": "Ključna riječ, naslov događaja, ime grupe itd.", + "Language": "Jezik", + "Languages": "Jezici", + "Last IP adress": "Zadnja IP adresa", + "Last group created": "Zadnja stvorena grupa", + "Last published event": "Zadnji objavljeni događaj", + "Last published events": "Zadnji objavljeni događaji", + "Last seen on": "Zadnji put gledano", + "Last sign-in": "Zadnja prijava", + "Last used on {last_used_date}": "Zadnji put korišteno {last_used_date}", + "Last week": "Prošli tjedan", + "Latest posts": "Zadnje objave", + "Learn more": "Saznaj više", + "Learn more about Mobilizon": "Saznaj više o Mobilizonu", + "Learn more about {instance}": "Saznaj više o {instance}", + "Least recently published": "Najstarije objavljeno", + "Leave": "Napusti", + "Leave event": "Napusti događaj", + "Leave group": "Napusti grupu", + "Leaving event \"{title}\"": "Napuštanje događaja „{title}”", + "Legal": "Pravna pitanja", + "Let's define a few settings": "Postavimo par postavki", + "License": "Licenca", + "Light": "Svijetla", + "Limited number of places": "Ograničeni broj mjesta", + "List": "Popis", + "List of conversations": "Popis konverzacija", + "List title": "Naslov popisa", + "Live": "Uživo", + "Load more": "Učitaj više", + "Load more activities": "Učitaj više aktivnosti", + "Loading comments…": "Učitavanje komentara…", + "Loading map": "Učitavanje karte", + "Local": "Lokalno", + "Local time ({timezone})": "Lokalno vrijeme ({timezone})", + "Local times ({timezone})": "Lokalna vremena ({timezone})", + "Locality": "Lokalitet", + "Location": "Lokacija", + "Log in": "Prijava", + "Log out": "Odjava", + "Login": "Prijava", + "Login on Mobilizon!": "Prijava na Mobilizon!", + "Login on {instance}": "Prijava na {instance}", + "Login status": "Status prijave", + "Main languages you/your moderators speak": "Glavni jezici koje vi/vaši moderatori govorite", + "Make sure that all words are spelled correctly.": "Provjeri ispravnost pisanja riječi.", + "Manage activity settings": "Upravljaj postavkama aktivnosti", + "Manage event participations": "Upravljaj sudjelovanjima događaja", + "Manage group members": "Upravljaj članovima grupe", + "Manage group memberships": "Upravljaj članstvima grupe", + "Manage participations": "Uredi sudjelovanja", + "Manage push notification settings": "Upravljaj postavkama obavještavanja", + "Manually approve new followers": "Ručno odobri nove pratioce", + "Manually enter address": "Upiši adresu ručno", + "Manually invite new members": "Ručno pozivanje novih članova", + "Map": "Karta", + "Mark as resolved": "Označi kao obavljeno", + "Maybe the content was removed by the author or a moderator": "Možda je autor ili moderator uklonio sadržaj", + "Member": "Član", + "Members": "Članovi", + "Members will also access private sections like discussions, resources and restricted posts.": "Članovi će također pristupiti privatnim odjeljcima kao što su rasprave, resursi i ograničene objave.", + "Members-only post": "Objava samo za članove", + "Membership requests will be approved by a group moderator": "Zahtjeve za članstvo će odobriti moderator grupe", + "Memberships": "Članstva", + "Mentions": "Spominjanja", + "Message": "Poruka", + "Message body": "Sadržaj poruke", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon je federalizirana mreža. S ovim događajem možeš interagirati s jednog drugog servera.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon je federaliziran softver, što znači da – ovisno o administracijskim postavkama instance – može komunicirati sa sadržajem drugih instanca poput pridruživanje grupama koju su stvorene negdje drugdje.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon je alat koji pomaže u traženju, stvaranju i organiziranju događaja.", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon je alat koji ti pomaže za {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon nije jedna ogromna platforma, već mnogo međusobno povezanih Mobilizon stranica.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon nije ogromna platforma. Mobilizon je {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "Mobilizon software", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon koristi sistem profila kako bi razdvojili vaše aktivnosti. Možete napraviti koliko god profila želite.", + "Mobilizon version": "Mobilizon verzija", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon će vam poslati e-mail kada dođe do promjena u događajima kojima prisustvujete: datum i vrijeme, adresa, potvrda ili otkazivanje itd.", + "Moderate new members": "Moderiranje novih članova", + "Moderated comments (shown after approval)": "Moderirani komentari (prikazuju se nakon odobrenja)", + "Moderation": "Moderiranje", + "Moderation log": "Zapisnik moderiranja", + "Moderation logs": "Zapisnici moderiranja", + "Moderator": "Moderator", + "Modify all of your account's data": "Promijeni sve podatke tvog računa", + "More options": "Daljnje opcije", + "Most recently published": "Najnedavnije objavljeno", + "Move": "Premjesti", + "Move \"{resourceName}\"": "Premjesti „{resourceName}”", + "Move resource to the root folder": "Premjesti resurs u početnu mapu", + "Move resource to {folder}": "Premjesti resurs u {folder}", + "My account": "Moj račun", + "My events": "Moji događaji", + "My groups": "Moje grupe", + "My identities": "Moji identiteti", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "PAZI! Zadani uvjeti nisu bili pregledani od odvjetnika i time nisu predviđeni za sve situacije ili punu legalnu zaštitu administratora koji ih koriste. Također nisu specifične za sve države ili nadležnosti. Ako nisi siguran/na, savjetuj odvjetnika.", + "Name": "Ime", + "Navigated to {pageTitle}": "Prijelaz na {pageTitle}", + "Never used": "Nikada korišteno", + "New announcement": "Nova najava", + "New discussion": "Nova rasprava", + "New email": "Novi email", + "New folder": "Nova mapa", + "New link": "Novi link", + "New members": "Novi članovi", + "New note": "Nova bilješka", + "New password": "Nova lozinka", + "New post": "Nova objava", + "New private message": "Nova privatna poruka", + "New profile": "Novi profil", + "Next": "Sljedeće", + "Next month": "Sljedeći mjesec", + "Next page": "Sljedeća stranica", + "Next week": "Sljedeći tjedan", + "No address defined": "Nema određene adrese", + "No apps authorized yet": "Još nema autoriziranih aplikacija", + "No categories with public upcoming events on this instance were found.": "U ovoj instanci nije pronađena nijedna kategorija s javnim nadolazećim događajima.", + "No closed reports yet": "Nema zatvorenih prijava", + "No comment": "Nema komentara", + "No comments yet": "Još nema komentara", + "No content found": "Sadržaj nije pronađen", + "No discussions yet": "Još nema rasprava", + "No end date": "Bez završnog datum", + "No event found at this address": "Na ovoj adresi nije pronađen nijedan događaj", + "No events found": "Bez rezultata", + "No events found for {search}": "Nema događaja za {search}", + "No follower matches the filters": "Nijedan pratilac ne odgovara filtrima", + "No group found": "Bez rezultata", + "No group matches the filters": "Nijedna grupa ne odgovara filterima", + "No group member found": "Nije pronađen nijedan član grupe", + "No groups found": "Bez rezultata", + "No groups found for {search}": "Nema grupa za {search}", + "No information": "Nema informacija", + "No instance follows your instance yet.": "Nijedna instanca još ne prati vašu instancu.", + "No instance found.": "Nije pronađena nijedna instanca.", + "No instance to approve|Approve instance|Approve {number} instances": "Nema instance za odobriti|Odobri instancu|Odobri {number} instanca", + "No instance to reject|Reject instance|Reject {number} instances": "Nema instance za odbiti|Odbij instancu|Odbij {number} instanca", + "No instance to remove|Remove instance|Remove {number} instances": "Nema instanca za ukloniti|Ukolni instancu|Ukloni {number} instanca", + "No instances match this filter. Try resetting filter fields?": "Nijedna instanca ne odgovara ovom filtru. Pokušati obnoviti polja filtra?", + "No languages found": "Nema pronađenih jezika", + "No member matches the filters": "Nijedan član ne odgovara filtrima", + "No members found": "Nema članova", + "No memberships found": "Nema članstva", + "No message": "Nema poruke", + "No moderation logs yet": "Još nema zapisnika moderiranja", + "No more activity to display.": "Nema daljnjih prikazivih aktivnosti.", + "No one is participating|One person participating|{going} people participating": "Nitko ne sudjeluje|Jedna osoba sudjeluje|{going} osobe/a sudjeluje", + "No open reports yet": "Nema otvorenih prijava", + "No organized events found": "Nema organiziranih događaja", + "No organized events listed": "Nema organiziranih događaja", + "No participant matches the filters": "Nijedan sudionik ne paše filterima", + "No participant to approve|Approve participant|Approve {number} participants": "Nema sudjelovanja za odobiriti|Odobri sudjelovanje|Odobri {number} sudjelovanja", + "No participant to reject|Reject participant|Reject {number} participants": "Nema sudjelovanja za odbiti|Odbij sudjelovanje|Odbij {number} sudjelovanja", + "No participations listed": "Nema sudjelovanja", + "No posts found": "Nema nađenih objava", + "No posts yet": "Nema objava", + "No profile matches the filters": "Nijedan profil ne paše filterima", + "No public upcoming events": "Nema javnih nadolazećih događaja", + "No resolved reports yet": "Nema razriješenih prijava", + "No resources in this folder": "Nema resursa u ovoj mapi", + "No resources selected": "Nema odabranih resursa|Jedan odabrani resurs|{count} odabranih resursa", + "No resources yet": "Nema resursa", + "No results for \"{queryText}\"": "Nema rezultata za „{queryText}”", + "No results for {search}": "Nema rezultata za {search}", + "No results found": "Nema rezultata", + "No results found for {search}": "Nema rezultata za {search}", + "No rules defined yet.": "Pravila još nisu postavljena.", + "No user matches the filter": "Nijedan korisnik se ne poklapa s filtrom", + "No user matches the filters": "Nijedan korisnik se ne poklapa s filtrom", + "None": "Ništa", + "Not accessible with a wheelchair": "Ne postoji pristup za osobe u invalidskim kolicima", + "Not approved": "Nije odobreno", + "Not confirmed": "Nepotvrđeno", + "Notes": "Bilješke", + "Notification before the event": "Obavijest prije događaja", + "Notification on the day of the event": "Obavijest na dan događaja", + "Notification settings": "Postavke obavještavanja", + "Notifications": "Obavijeti", + "Notifications for manually approved participations to an event": "Obavijesti za ručno odobrena sudjelovanja događaju", + "Notify participants": "Obavijesti sudionike", + "Notify the user of the change": "Obavjiesti korisnika o promjeni", + "Now, create your first profile:": "Sada, napravite svoj prvi profil:", + "Number of members": "Broj članova", + "Number of places": "Broj mjesta", + "OK": "OK", + "Old password": "Stara lozinka", + "On foot": "Pješice", + "On the Fediverse": "Na Fediverse", + "On {date}": "Na {date}", + "On {date} ending at {endTime}": "Na {date} završava u {endTime}", + "On {date} from {startTime} to {endTime}": "Na {date} od {startTime} do {endTime}", + "On {date} starting at {startTime}": "Na {date} započinje u {startTime}", + "On {instance} and other federated instances": "Na {instance} i drugim federaliziranim instancama", + "Online": "Online", + "Online events": "Online događaji", + "Online ticketing": "Online prodaja karata", + "Online upcoming events": "Nadolazeći online događaji", + "Only accessible through link": "Dostupno samo preko poveznice", + "Only accessible through link (private)": "Dostupno samo kroz poveznicu (privatno)", + "Only accessible to members of the group": "Dostupno samo članovima grupe", + "Only alphanumeric lowercased characters and underscores are supported.": "Samo alphanumerična mala slova i podcrte su podržane.", + "Only group members can access discussions": "Samo članovi grupe mogu pristupiti raspravama", + "Only group moderators can create, edit and delete events.": "Samo moderatori grupa mogu stvarati, mijenjati i brisati događaje.", + "Only group moderators can create, edit and delete posts.": "Samo grupni moderatori mogu stvarati, izmjenjivati i brisati objave.", + "Only registered users may fetch remote events from their URL.": "Samo registrirani korisnici mogu dohvaćati eksterne događaje sa svojih URL-ova.", + "Open": "Otvori", + "Open a topic on our forum": "Otvori temu na našem forumu", + "Open an issue on our bug tracker (advanced users)": "Otvori problem na našem bug tragaču (napredni korisnici)", + "Open conversations": "Otvori konverzacije", + "Open main menu": "Otvori glavni izbornik", + "Open user menu": "Otvori korisnički izbornik", + "Opened reports": "Otvorene prijave", + "Or": "Ili", + "Ordered list": "Razvrstan popis", + "Organized": "Organizirano", + "Organized by": "Organizirali", + "Organized by {name}": "Organizira {name}", + "Organized events": "Organizirani događaji", + "Organizer": "Organizator", + "Organizer notifications": "Obavijesti organizatora", + "Organizers": "Organizatori", + "Other": "Ostalo", + "Other actions": "Druge radnje", + "Other notification options:": "Ostale opcije za obavijesti:", + "Other software may also support this.": "Moguće je da i drugi sotfware ovo podržava.", + "Other users with the same IP address": "Drugi korisnici s istom IP adresom", + "Other users with the same email domain": "Drugi korisnici s istom e-mail domenom", + "Otherwise this identity will just be removed from the group administrators.": "Inače će ovaj identitet biti uklonjen iz grupnih administratora.", + "Owncast": "Owncast", + "Page": "Stranica", + "Page limited to my group (asks for auth)": "Stranica ograničena na moju grupu (autentikacija po upitu)", + "Page not found": "Stranica nije pronađena", + "Parent folder": "Nadređena mapa", + "Partially accessible with a wheelchair": "Djelomičan pristup za osobe u invalidskim kolicima", + "Participant": "Sudionik", + "Participants": "Sudionici", + "Participants to {eventTitle}": "Sudionici događaja {eventTitle}", + "Participate": "Sudjeluj", + "Participate using your email address": "Sudjelujte korišteći vašu email adresu", + "Participation approval": "Odobrenje za sudjelovanje", + "Participation confirmation": "Potvrda za sudjelovanje", + "Participation notifications": "Obavijesti o sudjelovanjima", + "Participation requested!": "Sudjelovanje zatraženo!", + "Participation with account": "Sudjelovanje s računom", + "Participation without account": "Sudjelovanje bez računa", + "Participations": "Sudjelovanja", + "Password": "Lozinka", + "Password (confirmation)": "Lozinka (potvrđivanje)", + "Password reset": "Obnavljanje lozinke", + "Past events": "Prošli događaji", + "PeerTube live": "PeerTube uživo", + "PeerTube replay": "PeerTube repriza", + "Pending": "U tijeku", + "Personal feeds": "Osobni feedovi", + "Photo by {author} on {source}": "Autor fotografije je {author} na {source}", + "Pick": "Izaberi", + "Pick a profile or a group": "Izaberi profil ili grupu", + "Pick an identity": "Izaberite identitet", + "Pick an instance": "Izaberi instancu", + "Please add as many details as possible to help identify the problem.": "Dodaj što više detalja kako bi se problem idnetificirao.", + "Please check your spam folder if you didn't receive the email.": "Pregledaj mapu nepoželjne pošte ako nisi primio/la e-mail.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Kontaktiraj administratora ove instance ako misliš da se radi o grešci.", + "Please do not use it in any real way.": "Nemoj koristiti na bilo kakav stvarni način.", + "Please enter your password to confirm this action.": "Za potvrđivanje ove radnje upiši svoju lozinku.", + "Please make sure the address is correct and that the page hasn't been moved.": "Provjeri je li adresa točna i da stranica nije premještena.", + "Please read the {fullRules} published by {instance}'s administrators.": "Pročitaj {fullRules} koje je objavio administrator instance {instance}.", + "Popular groups close to you": "Popularne grupe u tvojoj blizini", + "Popular groups nearby {position}": "Popularne grupe u blizini od {position}", + "Post": "Objava", + "Post URL": "URL objave", + "Post a comment": "Pošalji komentar", + "Post a reply": "Pošalji odgovor", + "Post body": "Tekst objave", + "Post comments": "Objavi komentare", + "Post {eventTitle} reported": "Objava {eventTitle} prijavljena", + "Postal Code": "Poštanski broj", + "Posts": "Objave", + "Powered by Mobilizon": "Pokreće Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Vodi {mobilizon}. © 2018 - {date} Mobilizon suradnici - Omogućeno financijskom podrškom od {contributors}.", + "Preferences": "Postavke", + "Previous": "Prethodno", + "Previous email": "Prethodna e-mail adresa", + "Previous month": "Prošli mjesec", + "Previous page": "Prethodna stranica", + "Price sheet": "Cijene", + "Privacy": "Privatnost", + "Privacy Policy": "Politika privatnosti", + "Privacy policy": "Politika privatnosti", + "Private event": "Privatni događaj", + "Private feeds": "Privatni feed", + "Profile": "Profil", + "Profile feeds": "Feedovi profila", + "Profiles": "Profili", + "Profiles and federation": "Profili i federacija", + "Promote": "Promoviraj", + "Public": "Javno", + "Public RSS/Atom Feed": "Javni RSS/Atom Feed", + "Public comment moderation": "Moderiranje javnih komentara", + "Public event": "Javni događaj", + "Public feeds": "Javni feed", + "Public iCal Feed": "Javni iCal Feed", + "Public preview": "Javni pregled", + "Publication date": "Datum objave", + "Publish": "Objavi", + "Publish events": "Objavi događaje", + "Publish group posts": "Objavi poruke grupe", + "Published by {name}": "Autor objave: {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Objavljeni događaji sa {comments} komentarima i {participations} potvrđenim sudjelovanjima", + "Published events with {comments} comments and {participations} confirmed participations": "Objavljeni događaji s {comments} komentara i {participations} potvrđenih sudjelovanja", + "Push": "Automatska obavijest", + "Quote": "Citat", + "RSS/Atom Feed": "RSS/Atom Feed", + "Radius": "Radijus", + "Read all of your account's data": "Pogledaj sve podatke tvog računa", + "Read user activity settings": "Čitaj postavke korisničke aktivnosti", + "Read user media": "Čitaj korisničke medije", + "Read user memberships": "Čitaj korisnička članstva", + "Read user participations": "Čitaj korisnička sudjelovanja", + "Read user settings": "Čitaj korisničke postavke", + "Recap every week": "Sažetak svaki tjedan", + "Receive one email for each activity": "Primi jedan e-mail za svaku aktivnost", + "Receive one email per request": "Primi jedan e-mail po zahtjevu", + "Redirecting in progress…": "Preusmjeravanje u tijeku …", + "Redirecting to Mobilizon": "Preusmjeravanje na Mobilizon", + "Redirecting to content…": "Preusmjeravanje na sadržaj…", + "Redo": "Ponovi", + "Refresh profile": "Osvježi profil", + "Regenerate new links": "Ponovno stvori nove poveznice", + "Region": "Regija", + "Register": "Registriraj se", + "Register an account on {instanceName}!": "Registriraj račun na {instanceName}!", + "Register on this instance": "Registrirajte se na ovoj instanci", + "Registration is allowed, anyone can register.": "Registriranje je dozvoljeno, bilo tko se može registrirati.", + "Registration is closed.": "Registracije su zatvorene.", + "Registration is currently closed.": "Registracija je trenutačno zatvorena.", + "Registrations": "Registracije", + "Registrations are restricted by allowlisting.": "Registracije su ograničene na dopusnu listu.", + "Reject": "Odbij", + "Reject follow": "Odbij praćenje", + "Reject member": "Odbij člana", + "Rejected": "Odbijeno", + "Remember my participation in this browser": "Zapamti moje sudjelovanje na ovom pregledniku", + "Remove": "Ukloni", + "Remove link": "Ukloni poveznicu", + "Remove uploaded media": "Ukloni prenesene medije", + "Rename": "Preimenuj", + "Rename resource": "Preimenuj resurs", + "Reopen": "Otvori opet", + "Replay": "Repriza", + "Reply": "Odgovori", + "Report": "Prijavi", + "Report #{reportNumber}": "Prijava broj {reportNumber}", + "Report as spam": "Prijavi kao nepoželjnu poštu", + "Report as undetected spam": "Prijavi kao neotkrivenu nepoželjnu poštu", + "Report reason": "Razlog prijave", + "Report status": "Stanje prijave", + "Report this comment": "Prijavi ovaj komentar", + "Report this event": "Prijavi ovaj događaj", + "Report this group": "Prijavi ovu grupu", + "Report this post": "Prijavi ovu objavu", + "Reported": "Prijavljeno", + "Reported at": "Prijavljeno", + "Reported by": "Prijavljeno od", + "Reported by someone anonymously": "Anonimno prijavljeno", + "Reported by someone on {domain}": "Prijavljeno od nekog na domeni {domain}", + "Reported by {reporter}": "Prijavljeno od {reporter}", + "Reported content": "Prijavljen sadržaj", + "Reported group": "Prijavljena grupa", + "Reported identity": "Prijavljeni identitet", + "Reports": "Prijave", + "Reports list": "Popis izvještaja", + "Request for participation confirmation sent": "Zahjev za potvrdu sudjelovanja je poslan", + "Resend confirmation email": "Pošalji e-mail za potvrdu ponovo", + "Resent confirmation email": "Ponovo pošalji e-mail za potvrdu", + "Reset": "Resetiraj", + "Reset filters": "Resetiraj filtre", + "Reset my password": "Obnovi moju lozinku", + "Reset password": "Obnovi lozinku", + "Resolved": "Riješeno", + "Resource provided is not an URL": "Priloženi resurs nije URL", + "Resources": "Resursi", + "Restricted": "Restrikcije", + "Return to the event page": "Vrati se na stranicu događaja", + "Return to the group page": "Vrati se na stranicu grupe", + "Revoke": "Opozovi", + "Right now": "Sada", + "Role": "Uloga", + "Rules": "Pravila", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL i nasljedni TLS su tehnologije za šifrianje koje se koriste za zaštitu prijenosa podataka i komunikacije pri korištenju servisa. Možete prepoznati šifriranu vezu u poveznici na vrhu vašeg preglednika, gdje URL počinje sa {https} i pored toga se nalazi ikona lokota.", + "SSL/TLS": "SSL/TLS", + "Save": "Spremi", + "Save draft": "Spremi skicu", + "Schedule": "Raspored", + "Search": "Pretraži", + "Search events, groups, etc.": "Pretraži događaje, grupe, itd.", + "Search target": "Traži cilj", + "Searching…": "Pretraživanje…", + "Select a category": "Odaberi kategoriju", + "Select a language": "Odaberi jezik", + "Select a radius": "Odaberite radius", + "Select a timezone": "Odaberi vremensku zonu", + "Select all resources": "Odaberi sve resurse", + "Select languages": "Odaberi jezike", + "Select the activities for which you wish to receive an email or a push notification.": "Odaberi aktivnosti za koje želiš primati e-mail poruke ili automatsku obavijest.", + "Select this resource": "Odaberi ovaj resurs", + "Send": "Pošalji", + "Send email": "Pošalji e-mail", + "Send feedback": "Pošalji povratne informacije", + "Send notification e-mails": "Pošalji obavještavajuće e-mailove", + "Send password reset": "Pošalji zahtjev za obnavljanje lozinke", + "Send the confirmation email again": "Pošalji e-mail za potvrdu ponovo", + "Send the report": "Pošalji izvještaj", + "Sent to {count} participants": "Poslano nijednom sudioniku|Poslano jednom sudioniku|Poslano {count} sudionicima", + "Set an URL to a page with your own privacy policy.": "Postavi URL na stranicu sa vašom osobnom politikom privatnosti.", + "Set an URL to a page with your own terms.": "Postavi URL za stranicu s tvojim uvjetima.", + "Settings": "Postavke", + "Share": "Dijeli", + "Share this event": "Podijeli ovaj događaj", + "Share this group": "Dijeli ovu grupu", + "Share this post": "Dijeli ovu objavu", + "Short bio": "Kratki opis", + "Show filters": "Prikaži filtre", + "Show map": "Prikaži kartu", + "Show me where I am": "Pokaži mi gdje se nalazim", + "Show remaining number of places": "Prikaži preostala slobodna mjesta", + "Show the time when the event begins": "Prikaži vrijeme kada događaj počinje", + "Show the time when the event ends": "Prikaži vrijeme kada događaj završava", + "Showing events before": "Prikaz događaja prije", + "Showing events starting on": "Prikaz događaja koji počinju", + "Sign Language": "Znakovni jezik", + "Sign in with": "Prijavi se sa", + "Sign up": "Upiši se", + "Since you are a new member, private content can take a few minutes to appear.": "Pošto ste novi član, privatni sadržaj će trebati vremena da se prikaže.", + "Skip to main content": "Prijeđi na glavni sadržaj", + "Smoke free": "Zabranjeno pušenje", + "Smoking allowed": "Pušenje je dozvoljeno", + "Social": "Društvene mreže", + "Software details: {software_details}": "Detalji softvera: {software_details}", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Neki tehnički ili drugi izrazi koji se koriste u donjem tekstu mogu pokrivati pojmove koji se teško razumiju. Za lakše razumijevanje pojmova postoji glosar:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Nažalost nismo uspjeli spremiti tvoje povratne informacije. Ne brini, pokušat ćemo riješiti ovaj problem.", + "Sort by": "Razvrstaj po", + "Starts on…": "Započinje…", + "Status": "Stanje", + "Statuses": "Stanja", + "Stop following instance": "Prekini pratiti instancu", + "Street": "Ulica", + "Submit": "Podnesi", + "Submit to Akismet": "Pošalji Akismetu", + "Subtitles": "Titlovi", + "Suggestions:": "Prijedlozi:", + "Suspend": "Suspendiraj", + "Suspend group": "Suspendiraj grupu", + "Suspend the account": "Suspendiraj račun", + "Suspend the account?": "Suspendirati račun?", + "Suspend the profile": "Suspendiraj profil", + "Suspend the profile?": "Suspendirati profil?", + "Suspended": "Obustavljeno", + "Tag search": "Pretraga oznakama", + "Task lists": "Popisi zadataka", + "Technical details": "Tehnički detalji", + "Tentative": "Privremeno", + "Tentative: Will be confirmed later": "Neodređeno: Potvrdit će se kasnije", + "Terms": "Uvjeti", + "Terms of service": "Uvjeti korištenja", + "Text": "Tekst", + "Thanks a lot, your feedback was submitted!": "Hvala ti. Tvoje povratne informacije su poslane!", + "That you follow or of which you are a member": "Koje pratiš ili čiji si član", + "The Big Blue Button video teleconference URL": "URL Big Blue Button videokonferencije", + "The Google Meet video teleconference URL": "URL Google Meet videokonferencije", + "The Jitsi Meet video teleconference URL": "URL Jitsi Meet videokonferencije", + "The Microsoft Teams video teleconference URL": "URL Microsoft Teams videokonferencije", + "The URL of a pad where notes are being taken collaboratively": "URL bloka bilješki za zapisivanje zajedničkih bilješki", + "The URL of a poll where the choice for the event date is happening": "URL ankete u kojoj se odvija biranje datuma događaja", + "The URL where the event can be watched live": "URL gdje se događaj može pratiti uživo", + "The URL where the event live can be watched again after it has ended": "URL gdje se događaj može ponovo gledati nakon što događaj završi", + "The Zoom video teleconference URL": "URL Zoom videokonferencije", + "The account's email address was changed. Check your emails to verify it.": "E-mail adresa računa je promijenjena. Provjeri svoj e-mailove za potvrđivanje adrese.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Pravi broj sudionika se može razlikovati jer se ovaj događaj vodi na drugoj instanci.", + "The calc will be created on {service}": "Proračunska tablica će se izraditi na {service}", + "The content came from another server. Transfer an anonymous copy of the report?": "Sadržaj je došao s jednog drugog servera. Želiš li prenijeti anonimnu kopiju izvještaja?", + "The device code is incorrect or no longer valid.": "Kȏd uređaja je neispravan ili više ne važi.", + "The draft event has been updated": "Ažuriran je događaj iz skice", + "The event has a sign language interpreter": "Događaj se prevodi na znakovni jezik", + "The event has been created as a draft": "Događaj je stvoren kao skica", + "The event has been published": "Događaj je objavljen", + "The event has been updated": "Događaj je ažuriran", + "The event has been updated and published": "Događaj je ažuriran i objavljen", + "The event hasn't got a sign language interpreter": "Događaj se ne prevodi na znakovni jezik", + "The event is fully online": "Događaj se održava online", + "The event live video contains subtitles": "Video događaja uživo sadrži titlove", + "The event live video does not contain subtitles": "Video događaja uživo ne sadrži titlove", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Organizatori su odlučili ručno odobriti svako sudjelovanje. Želite li dodati malu bilješku kako bi objasnili zašto želite sudjelovati u ovom događaju?", + "The event organizer didn't add any description.": "Organizator događaja nije dodao opis.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Organizatori ručno odobravaju sudjelovanja. Pošto ste se odlučili pridružiti bez računa, objasnite zašto želite sudjelovati u ovom događaju.", + "The event title will be ellipsed.": "Naslovu događaja će se dodati trotočka.", + "The event will show as attributed to this group.": "Ovaj će se događaj prikazati kao pripisan ovoj grupi.", + "The event will show as attributed to this profile.": "Ovaj će se događaj prikazati kao pripisan ovoj grupi.", + "The event will show as attributed to your personal profile.": "Ovaj će se događaj prikazati kao pripisan vašem profilu.", + "The event {event} was created by {profile}.": "{profile} su stvorili događaj {event}.", + "The event {event} was deleted by {profile}.": "{profile} su izbrisali događaj {event}.", + "The event {event} was updated by {profile}.": "{profile} su ažurirali događaj {event}.", + "The events you created are not shown here.": "Događaji koje ste stvorili nisu prikazani ovdje.", + "The following participants are groups, which means group members are able to reply to this conversation:": "Sljedeći sudionici su grupe, što znači da članovi grupe mogu odgovoriti na ovu konverzaciju:", + "The geolocation prompt was denied.": "Upit za geolokaliziranje je odbijen.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "Grupi se sada svatko može pridružiti, ali nove članove mora odobriti administrator.", + "The group can now be joined by anyone.": "Grupi se sada svatko može pridružiti.", + "The group can now only be joined with an invite.": "Grupi se sada može pridružiti samo s pozivnicom.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Grupa će se javno prikazati u pretraživanjima i može biti predložena u odjeljku istraživanja. Na stranici grupe će se prikazati samo javne informacije.", + "The group's avatar was changed.": "Promijenjena je profilna grupe.", + "The group's banner was changed.": "Promijenjena je pozadina grupe.", + "The group's physical address was changed.": "Promijenjena je fizička adresa grupe.", + "The group's short description was changed.": "Promijenjen je kratki opis grupe.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "Administrator instance je osoba ili oni koji vode ovu Mobilizon instancu.", + "The member was approved": "Član je odobren", + "The member was removed from the group {group}": "Član je izbačen iz grupe {group}", + "The membership request from {profile} was rejected": "Zahtjev za članstvo od {profile} je odbijen", + "The only way for your group to get new members is if an admininistrator invites them.": "Jedini način da vaša grupa dobije nove članove je da ih pozove adminitrator grupe.", + "The organiser has chosen to close comments.": "Organizatori su odlučili zatvoriti komentare.", + "The pad will be created on {service}": "Tekstualna datoteka će se izraditi na {service}", + "The page you're looking for doesn't exist.": "Stranica koju tražite ne postoji.", + "The password was successfully changed": "Lozinka je uspješno promijenjena", + "The post {post} was created by {profile}.": "{profile} su stvorili objavu {post}.", + "The post {post} was deleted by {profile}.": "{profile} su izbrisali objavu {post}.", + "The post {post} was updated by {profile}.": "{profile} su ažurirali objavu {post}.", + "The provided application was not found.": "Navedena aplikacija nije pronađena.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Prijava će biti poslana voditeljima instance. Ovdje možete objasniti zašto ste prijavili ovaj sadržaj.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "Odabrana slika je prevelika. Moraš odabrati datoteku manju od {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Tehnički detalji greške mogu pomoći programerima lakše riješiti problem. Dodaj ih u povratne informacije.", + "The user has been disabled": "Korisnik je deaktiviran", + "The videoconference will be created on {service}": "Video konferencija će se izraditi na {service}", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Koristit će se {default_privacy_policy}. Prevest će se na jezik korisnika.", + "The {default_terms} will be used. They will be translated in the user's language.": "Koristit će se {default_terms}. Prevest će se na jezik korisnika.", + "Theme": "Tema", + "There are {participants} participants.": "{participants} sudionika.", + "There is no activity yet. Start doing some things to see activity appear here.": "Još nema aktivnosti. Počnite nešto raditi kako bi se aktivnosti ovdje pojavile.", + "There will be no way to recover your data.": "Neće biti načina vratiti vaše podatke.", + "There's no announcements yet": "Još nema najava", + "There's no conversations yet": "Još nema konverzacija", + "There's no discussions yet": "Još nema rasprava", + "These apps can access your account through the API. If you see here apps that you don't recognize, that don't work as expected or that you don't use anymore, you can revoke their access.": "Ove aplikacije mogu pristupiti tvom računu putem API-ja. Ako ovdje vidiš aplikacije koje ne prepoznaješ, koje ne rade prema očekivanjima ili koje više ne koristiš, možeš im opozvati pristup.", + "These events may interest you": "Možda vas interesiraju ovi događaji", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Ovi feedovi sadrže podatke događaja za događaje za koje je ovaj specifični profil sudionik ili organizator. Trebali biste ih držati privatnim. Feedovi za sve vaše profile možete pronaći u stranici profila.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Ovi feedovi sadrže podatke događaja za događaje za koje je ovaj specifični profil sudionik ili organizator. Trebali biste ih držati privatnim. Feedovi za sve vaše profile možete pronaći u postavkama obavijesti.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Ova instanca i ovi organizatori dozvoljavaju anonimne prijave, ali očekuju ovjerenje kroz email potvrdu.", + "This URL doesn't seem to be valid": "Čini se da je ovaj URL neispravan", + "This URL is not supported": "Ovaj URL nije podržan", + "This announcement will be send to all participants with the statuses selected below. They will not be allowed to reply to your announcement, but they can create a new conversation with you.": "Ova će se najava poslati svim sudionicima s dolje odabranim stanjima. Neće moći odgovoriti na tvoju najavu, ali mogu stvoriti novu konverzaciju s tobom.", + "This application will be allowed to access all of the groups you're a member of": "Ova će aplikacija smjeti pristupiti svim grupama čiji si član", + "This application will be allowed to access group activities in all of the groups you're a member of": "Ova će aplikacija smjeti pristupiti grupnim aktivnostima u svim grupama čiji si član", + "This application will be allowed to access your user activity settings": "Ova će aplikacija smjeti pristupiti tvojim postavkama korisničke aktivnosti", + "This application will be allowed to access your user settings": "Ova će aplikacija smjeti pristupiti tvojim korisničkim postavkama", + "This application will be allowed to create feed tokens": "Ova će aplikacija smjeti generirati tokene feedova", + "This application will be allowed to create group discussions": "Ova će aplikacija smjeti stvarati grupne rasprave", + "This application will be allowed to create new profiles for your account": "Ova će aplikacija smjeti izraditi novi profil za tvoj račun", + "This application will be allowed to create resources in all of the groups you're a member of": "Ova će aplikacija smjeti stvarati resurse u svim grupama čiji si član", + "This application will be allowed to delete comments": "Ova će aplikacija smjeti izbrisati komentare", + "This application will be allowed to delete events": "Ova će aplikacija smjeti izbrisati događaje", + "This application will be allowed to delete feed tokens": "Ova će aplikacija smjeti izbrisati tokene feedova", + "This application will be allowed to delete group discussions": "Ova će aplikacija smjeti izbrisati grupne rasprave", + "This application will be allowed to delete group posts": "Ova će aplikacija smjeti izbrisati poruke grupe", + "This application will be allowed to delete resources in all of the groups you're a member of": "Ova će aplikacija smjeti izbrisati resurse u svim grupama čiji si član", + "This application will be allowed to delete your profiles": "Ova će aplikacija smjeti izbrisati tvoje profile", + "This application will be allowed to join and leave groups": "Ova će aplikacija smjeti odobriti pridruživanje i napuštanje grupa", + "This application will be allowed to list and access group discussions in all of the groups you're a member of": "Ova će aplikacija smjeti izraditi popis grupnih rasprava i pristupiti grupnim raspravama u svim grupama čiji si član", + "This application will be allowed to list and access group events in all of the groups you're a member of": "Ova će aplikacija smjeti izraditi popis grupnih događaja i pristupiti grupnim događajima u svim grupama čiji si član", + "This application will be allowed to list and access group todo-lists in all of the groups you're a member of": "Ova će aplikacija smjeti prikazati popise grupnih zadataka i pristupiti grupnim zadatcima u svim grupama čiji si član", + "This application will be allowed to list and view the events you're participating to": "Ova će aplikacija smjeti izraditi popis i prikazati događaje kojima sudjeluješ", + "This application will be allowed to list and view the groups you're a member of": "Ova će aplikacija smjeti izraditi popis i prikazati grupe čiji si član", + "This application will be allowed to list and view the groups you're following": "Ova će aplikacija smjeti izraditi popis i prikazati grupe koje pratiš", + "This application will be allowed to list and view your draft events": "Ova će aplikacija smjeti izraditi popis i prikazati tvoje nacrte događaja", + "This application will be allowed to list and view your organized events": "Ova će aplikacija smjeti izraditi popis i prikazati tvoje organizirane događaje", + "This application will be allowed to list group followers in all of the groups you're a member of": "Ova će aplikacija smjeti prikazati popis pratitelja grupe u svim grupama čiji si član", + "This application will be allowed to list group members in all of the groups you're a member of": "Ova će aplikacija smjeti izraditi popis članova grupe u svim grupama čiji si član", + "This application will be allowed to list the media you've uploaded": "Ova će aplikacija smjeti izraditi popis tvojih preuzetih medija", + "This application will be allowed to list your suggested group events": "Ova će aplikacija smjeti izraditi popis i prikazati tvoje predložene grupne događaje", + "This application will be allowed to manage events participations": "Ova će aplikacija smjeti upravljati sudjelovanjima u događajima", + "This application will be allowed to manage group members in all of the groups you're a member of": "Ova će aplikacija smjeti upravljati članovima grupe u svim grupama čiji si član", + "This application will be allowed to manage your account activity settings": "Ova će aplikacija smjeti upravljati postavkama aktivnosti na tvom računu", + "This application will be allowed to manage your account push notification settings": "Ova će aplikacija smjeti upravljati postavkama slanja obavijesti na tvom računu", + "This application will be allowed to post comments": "Ova će aplikacija smjeti objavljivati komentare", + "This application will be allowed to publish and manage events, post and manage comments, participate to events, manage all of your groups, including group events, resources, posts and discussions. It will also be allowed to manage your account and profile settings.": "Ova će aplikacija smjeti objavljivati i upravljati događajima, objavljivati i upravljati komentarima, sudjelovati u događajima, upravljati svim tvojim grupama, uključujući grupne događaje, resurse, objave i rasprave. Također će smjeti upravljati postavkama tvog računa i profila.", + "This application will be allowed to publish events": "Ova će aplikacija smjeti objavljivati događaje", + "This application will be allowed to publish group posts": "Ova će aplikacija smjeti objavljivati poruke grupe", + "This application will be allowed to remove uploaded media": "Ova će aplikacija smjeti ukloniti prenesene medije", + "This application will be allowed to see all of your events organized, the events you participate to, as well as every data from your groups.": "Ova će aplikacija smjeti vidjeti sve tvoje organizirane događaje, događaje u kojima sudjeluješ, kao i sve podatke tvojih grupa.", + "This application will be allowed to update comments": "Ova će aplikacija smjeti aktualizirati komentare", + "This application will be allowed to update events": "Ova će aplikacija smjeti aktualizirati događaje", + "This application will be allowed to update group discussions": "Ova će aplikacija smjeti aktualizirati grupne rasprave", + "This application will be allowed to update group posts": "Ova će aplikacija smjeti aktualizirati poruke grupe", + "This application will be allowed to update resources in all of the groups you're a member of": "Ova će aplikacija smjeti aktualizirati resurse u svim grupama čiji si član", + "This application will be allowed to update your profiles": "Ova će aplikacija smjeti aktualizirati tvoje profile", + "This application will be allowed to upload media": "Ova će aplikacija smjeti prenositi medije", + "This event has been cancelled.": "Ovaj je događaj otkazan.", + "This event is accessible only through it's link. Be careful where you post this link.": "Ovaj je događaj dostupan samo kroz njegovu poveznicu. Budite pažljivi gdje šaljete ovu poveznicu.", + "This group doesn't have a description yet.": "Ova grupa nema opis.", + "This group is accessible only through it's link. Be careful where you post this link.": "Ova je grupa dostupna samo putem njene poveznice. Pazi gdje objavljuješ ovu poveznicu.", + "This group is invite-only": "Ovoj grupi se ne možete pridružiti bez pozivnice", + "This group was not found": "Ova grupa nije pronađena", + "This identifier is unique to your profile. It allows others to find you.": "Ovaj identifikator jer jedinstven vašem profilu. Omogućuje drugima da vas nađu.", + "This information is saved only on your computer. Click for details": "Ove informacije su spremljene na vaše računalo. Kliknite za detalje", + "This instance doesn't follow yours.": "Ova instanca ne prati tvoju instancu.", + "This instance hasn't got push notifications enabled.": "Ova instanca nema aktivirane automatske obavijesti.", + "This instance isn't opened to registrations, but you can register on other instances.": "Ova instanca nije otvorena za registraciju, ali se možete registrirati na druge instance.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Ova instanca, {instanceName} ({domain}), je dom vašem profilu, zapamtite joj ime.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Ova instanca, {instanceName}, sadržava tvoj profil, stoga zapamti njeno ime.", + "This is a demonstration site to test Mobilizon.": "Ovo je demonstracijska stranica za isprobavanje Mobilizona.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Ovo je kao vaše korisničko ime ({username}) u federaciji, ali za grupe. Time se grupa može pronaći u federaciji i garantirano će biti jedinstveno.", + "This month": "Ovaj mjesec", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Ova objava je dostupna samo članovima. Imaš pristup u svrhu moderiranja budući da si moderator instance.", + "This post is accessible only through it's link. Be careful where you post this link.": "Ova je objava dostupna samo putem njene poveznice. Pazi gdje objavljuješ ovu poveznicu.", + "This profile is from another instance, the informations shown here may be incomplete.": "Ovaj profil je iz jedne druge instance, ovdje prikazane informacije mogu biti nepotpune.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Ovaj se profil nalazi na ovoj instanci, stoga moraš pristupiti {access_the_corresponding_account} da bi ga suspendirao/la.", + "This profile was not found": "Ovaj profil nije pronađen", + "This setting will be used to display the website and send you emails in the correct language.": "Ova postavka će se koristiti za prikazivanje web-stranice i slanje e-maila u ispravnom jeziku.", + "This user doesn't have any profiles": "Korisnik nema nijedan profil", + "This user was not found": "Ovaj korisnik nije pronađen", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Ova web-stranica nije moderirana te će se svi podatci koje upišete automatski izbirisati svaki dan u 00:01 (Pariška vremenska zona).", + "This week": "Ovaj tjedan", + "This weekend": "Ovaj vikend", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Ovo će izbrisati / anonimizirati sav sadržaj stvorene od ovog identiteta (događaje, komentare, poruke, sudjelovanja...).", + "Time in your timezone ({timezone})": "Vrijeme u tvojoj vremenskoj zoni ({timezone})", + "Times in your timezone ({timezone})": "Vremena u tvojoj vremenskoj zoni ({timezone})", + "Timezone": "Vremenska zona", + "Timezone detected as {timezone}.": "Vremenska zona prepoznata kao {timezone}.", + "Title": "Naslov", + "To activate more notifications, head over to the notification settings.": "Za aktiviranje više obavijesti, idi na postavke obavijesti.", + "To confirm, type your event title \"{eventTitle}\"": "Za potvrdu upiši naslov tvog događaja „{eventTitle}”", + "To confirm, type your identity username \"{preferredUsername}\"": "Za potvrdu upiši tvoje korisničko ime identiteta „{preferredUsername}”", + "To create and manage multiples identities from a same account": "Kako biste stvorili i vodili više identiteta sa istog računa", + "To create and manage your events": "Kako biste stvarali i vodili svoje događaje", + "To create or join an group and start organizing with other people": "Kako biste stvorili ili se pridružili grupi i organizirali sa drugim ljudima", + "To follow groups and be informed of their latest events": "Za praćenje grupe i dobivanje obavijeti o njihovim najnovijim događanjima", + "To register for an event by choosing one of your identities": "Kako biste se registrirali na događaj sa jednim od svojih identiteta", + "Today": "Danas", + "Tomorrow": "Sutra", + "Tools": "Alati", + "Total number of participations": "Ukupni broj sudjelovanja", + "Transfer to {outsideDomain}": "Prenesi na {outsideDomain}", + "Triggered profile refreshment": "Pokrenuto je aktualiziranje profila", + "Try different keywords.": "Pokušaj drugačije ključne riječi.", + "Try fewer keywords.": "Pokušaj manji broj ključnih riječi.", + "Try more general keywords.": "Pokušaj općenitije ključne riječi.", + "Twitch live": "Twitch uživo", + "Twitch replay": "Twitch repriza", + "Twitter account": "Twitter račun", + "Type": "Upišite", + "Type or select a date…": "Upišite ili izaberite datum…", + "URL": "URL", + "URL copied to clipboard": "URL kopiran u međuspremnik", + "Unable to copy to clipboard": "Neuspješno kopiranje u međuspremnik", + "Unable to create the group. One of the pictures may be too heavy.": "Nije moguće stvoriti grupu. Jedna od slika je možda prevelika.", + "Unable to create the profile. The avatar picture may be too heavy.": "Nije moguće stvoriti profil. Slika avatara je možda prevelika.", + "Unable to detect timezone.": "Vremenska zona nije prepoznata.", + "Unable to load event for participation. The error details are provided below:": "Neuspješno učitavanje događaja za sudjelovanje. Detalji greške:", + "Unable to save your participation in this browser.": "Neuspješno spremanje sudjelovanja u ovom pregledniku.", + "Unable to update the profile. The avatar picture may be too heavy.": "Nije moguće aktualizirati profil. Slika avatara je možda prevelika.", + "Underline": "Podcratno", + "Undo": "Poništi", + "Unfollow": "Prestani pratiti", + "Unfortunately, your participation request was rejected by the organizers.": "Nažalost, vaš je zahtjev za sudjelovanje bio odbijen od organizatora.", + "Unknown": "Nepoznato", + "Unknown actor": "Nepoznati akter", + "Unknown error.": "Nepoznata greška.", + "Unknown value for the openness setting.": "Nepoznata vrijednost za postavke otvorenosti.", + "Unlogged participation": "Sudjelovanje bez prijave", + "Unsaved changes": "Nespremljene izmjene", + "Unsubscribe to browser push notifications": "Odjavi pretplatu na automatske obavijesti preglednika", + "Unsuspend": "Poništi suspendiranje", + "Upcoming": "Nadolazeće", + "Upcoming events": "Nadolazeći događaji", + "Upcoming events from your groups": "Nadolazeći događaji iz tvojih grupa", + "Update": "Ažuriraj", + "Update app": "Aktualiziraj program", + "Update comments": "Aktualiziraj komentare", + "Update discussion title": "Aktualiziraj naslov rasprave", + "Update event {name}": "Ažuriraj događaj {name}", + "Update events": "Aktualiziraj događaje", + "Update group": "Ažuriraj grupu", + "Update group discussions": "Aktualiziraj grupne rasprave", + "Update group posts": "Aktualiziraj poruke grupe", + "Update group resources": "Aktualiziraj resurse grupe", + "Update my event": "Ažuriraj moj događaj", + "Update post": "Ažuriraj objavu", + "Update profiles": "Aktualiziraj profile", + "Updated": "Ažurirano", + "Updated at": "Aktualizirano", + "Upload media": "Prenesi medije", + "Uploaded media size": "Veličina učitanog medija", + "Uploaded media total size": "Ukupna veličina prenesenih medija", + "Use my location": "Koristi moju lokaciju", + "User": "Korisnik", + "User settings": "Postavke korisnika", + "Username": "Korisničko ime", + "Users": "Korisnici", + "Validating account": "Potvrđivanje računa", + "Validating email": "Potvrđivanje e-mail adrese", + "Video Conference": "Videokonferencija", + "View a reply": "Prikaži bez odgovora|Prikaži jedan odgovor|Prikaži {totalReplies} odgovora", + "View account on {hostname} (in a new window)": "Pokaži račun na {hostname} (u novom prozoru)", + "View all": "Prikaži sve", + "View all categories": "Prikaži sve kategorije", + "View all events": "Prikaži sve događaje", + "View all posts": "Prikaži sve objave", + "View event page": "Prikaži stranicu događaja", + "View everything": "Prikaži sve", + "View full profile": "Prikaži potpuni profil", + "View less": "Prikaži manje", + "View more": "Prikaži više", + "View more events": "Prikaži još događaja", + "View more events around {position}": "Prikaži više događaja u {position}", + "View more groups around {position}": "Prikaži više grupa u {position}", + "View more online events": "Prikaži još online događaja", + "View page on {hostname} (in a new window)": "Prikaži stranicu na {hostname} (u novom prozoru)", + "View past events": "Pogledaj prošle događaje", + "View the group profile on the original instance": "Pogledaj profil grupe na izvornoj instanci", + "Visibility was set to an unknown value.": "Vidljivost je postavljena na nepoznatu vrijednost.", + "Visibility was set to private.": "Vidljivost je postavljena na privatno.", + "Visibility was set to public.": "Vidljivost je postavljena na javno.", + "Visible everywhere on the web": "Vidljivo svima na internetu", + "Visible everywhere on the web (public)": "Vidljivo svima na internetu (javno)", + "Waiting for organization team approval.": "Iščekivanje odobrenja organizacijskog tima.", + "Warning": "Upozorenje", + "We collect your feedback and the error information in order to improve this service.": "Prikupljamo tvoje povratne informacije i informacije o pogrešci kako bismo poboljšali ovu uslugu.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Nismo mogli spremiti tvoje sudjelovanje u ovom pregledniku. Bez brige, tvoje je sudjelovanje potvrđeno, ali zbog tehničkog problema stanje nismo mogli spremiti.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Softver poboljšavamo pomoću vaše povratne informacije. Imate dvije mogućnosti kako bi nas obavijestili (obje nažalost zahtijevaju stvaranje korisničkog računa):", + "We just sent an email to {email}": "Upravo smo poslali e-mail na {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Koristimo tvoju vremensku zonu kako bi smo osigurali da dobiješ obavijesti o događaju u pravo vrijeme.", + "We will redirect you to your instance in order to interact with this event": "Preusmjeriti ćemo vas na vašu instancu kako biste mogli pregledati ovaj događaj", + "We will redirect you to your instance in order to interact with this group": "Preusmjerit ćemo vas na vašu instancu kako biste mogli pregledati ovu grupu", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Poslat ćemo vam e-mail jedan sat prije početka događaja, kako ga ne biste zaboravili.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Koristiti ćemo vaše postavke vremenske zone kako bi vam poslali sažetak jutra događaja.", + "Website": "Web stranica", + "Website / URL": "Web-stranica / URL", + "Weekly email summary": "E-mail tjednog sažetka", + "Welcome back {username}!": "Dobrodošli nazad {username}!", + "Welcome back!": "Dobrodošli nazad!", + "Welcome to Mobilizon, {username}!": "Dobrodošli na Mobilizon, {username}!", + "What can I do to help?": "Kako mogu pomoći?", + "What happened?": "Što se dogodilo?", + "Wheelchair accessibility": "Pristup invalidskim kolicima", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Kada moderator grupe stvori događaj i pripiše ga grupi, prikazati će se ovdje.", + "When the event is private, you'll need to share the link around.": "Kada je događaj privatan, morat ćeš dijeliti vezu s drugima.", + "When the post is private, you'll need to share the link around.": "Kada je objava privatna, morat ćeš dijeliti vezu s drugima.", + "Whether smoking is prohibited during the event": "Je li je pušenje zabranjeno tijekom događaja", + "Whether the event is accessible with a wheelchair": "Je li postoji pristup za osobe u invalidskim kolicima", + "Whether the event is interpreted in sign language": "Je li se događaj prevodi na znakovni jezik", + "Whether the event live video is subtitled": "Je li video događaja uživo titlovan", + "Who can post a comment?": "Tko smije komentirati?", + "Who can view this event and participate": "Tko može vidjeti ovaj događaj i sudjelovati", + "Who can view this post": "Tko može vidjeti ovu objavu", + "Who published {number} events": "Koji su objavili {number} događaja", + "Why create an account?": "Zašto kreirati račun?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Dozvoliti će uređivanje i prikazivanje tvog stanja sudjelovanja na stranici događaja kada koristiš ovaj uređaj. Deaktiviraj, ako koristiš javni uređaj.", + "With the most participants": "S najvećim brojem sudionika", + "With unknown participants": "S nepoznatim sudionicima", + "With {participants}": "Sa {participants}", + "Within {number} kilometers of {place}": "|Unutar jednog kilometra od {place}| Unutar {number} kilometra od {place}", + "Write a new comment": "Upiši novi komentar", + "Write a new message": "Upiši novu poruku", + "Write a new reply": "Upiši novi odgovor", + "Write something": "Upiši nešto", + "Write your post": "Upiši svoju objavu", + "Yesterday": "Jučer", + "You accepted the invitation to join the group.": "Prihvatili ste poziv u grupu.", + "You added the member {member}.": "Dodali ste člana {member}.", + "You approved {member}'s membership.": "Odobrio/la si članstvo za {member}.", + "You archived the discussion {discussion}.": "Arhivirao/la si raspravu {discussion}.", + "You are not an administrator for this group.": "Niste administrator ove grupe.", + "You are not part of any group.": "Niste član nijedne grupe.", + "You are offline": "Nemaš vezu s internetom", + "You are participating in this event anonymously": "Anonimno sudjelujete u ovom događaju", + "You are participating in this event anonymously but didn't confirm participation": "Anonimno sudjelujete u ovom događaju ali niste potvrdili sudjelovanje", + "You can add resources by using the button above.": "Resurse možeš dodati pomoću gornjeg gumba.", + "You can add tags by hitting the Enter key or by adding a comma": "Možete dodati oznake stiskom tipke Enter ili dodavanjem zareza", + "You can drag and drop the marker below to the desired location": "Sada možeš povući i ispustiti donju oznaku na željeno mjesto", + "You can pick your timezone into your preferences.": "Vašu vremensku zonu možete odabrati u postavkama.", + "You can put any arbitrary content in this element. URLs will be clickable.": "U ovaj element možeš umetnuti proizvoljan sadržaj. URL-ovi će se moći pritisnuti.", + "You can try another search term or add the address details manually below.": "Koristi jedan drugi pojam za pretraživanje ili ručno dodaj detalje adrese.", + "You can try another search term or drag and drop the marker on the map": "Možete dodati još jedan pojam za pretragu ili postaviti marker na kartu", + "You can't change your password because you are registered through {provider}.": "Ne možeš promijeniti svoju lozinku jer si registriran/a putem {provider}.", + "You can't use push notifications in this browser.": "Ne možeš koristiti automatske obavijesti u ovom pregledniku.", + "You changed your email or password": "Promijenio/la si svoju e-mail adresu ili lozinku", + "You created the discussion {discussion}.": "Stvorio/la si raspravu {discussion}.", + "You created the event {event}.": "Stvorili ste događaj {event}.", + "You created the folder {resource}.": "Stvorili ste mapu {resource}.", + "You created the group {group}.": "Stvorili ste grupu {group}.", + "You created the post {post}.": "Stvorili ste objavu {objava}.", + "You created the resource {resource}.": "Stvorili ste resurs {resource}.", + "You deleted the discussion {discussion}.": "Izbrisao/la si raspravu {discussion}.", + "You deleted the event {event}.": "Izbrisali ste događaj {event}.", + "You deleted the folder {resource}.": "Izbrisali ste mapu {resource}.", + "You deleted the post {post}.": "Izbrisali ste objavu {post}.", + "You deleted the resource {resource}.": "Izbrisali ste resurs {resource}.", + "You demoted the member {member} to an unknown role.": "Degradirao/la si člana {member} u nepoznatu ulogu.", + "You demoted {member} to moderator.": "Snizili ste {member} u moderatora.", + "You demoted {member} to simple member.": "Snizili ste {member} u člana.", + "You didn't create or join any event yet.": "Niste stvorili i se pridružili nijednom događaju.", + "You don't follow any instances yet.": "Ne pratite nijednu instancu.", + "You don't have any upcoming events. Maybe try another filter?": "Nemaš nijedan nadolazeći događaj. Želiš li probati jedan drugi filtar?", + "You excluded member {member}.": "Isključili ste člana {member}.", + "You have access to this conversation as a member of the {group} group": "Imaš pristup ovoj konverzaciji kao član grupe {group}", + "You have attended {count} events in the past.": "Broj događaja kojima si prisustvovao/la u prošlosti: 0.|Broj događaja kojima si prisustvovao/la u prošlosti: 1.|Broj događaja kojima si prisustvovao/la u prošlosti: {count}.", + "You have been invited by {invitedBy} to the following group:": "{invitedBy} su vas pozvali u grupu:", + "You have been logged-out": "Odjavljen/a si", + "You have been removed from this group's members.": "Izbačeni ste iz ove grupe.", + "You have cancelled your participation": "Otkazali ste svoje sudjelovanje", + "You have one event in {days} days.": "Nemate događaje za {days} dana| Imate jedan događaj za {days} dana| Imate {count} događaja za {days} dana", + "You have one event today.": "Danas nemate događaja | Danas imate jedan događaj. | Danas imate {count} događaja", + "You have one event tomorrow.": "Sutra nemate događaja | Sutra imate jedan događaj. | Sutra imate {count} događaja", + "You haven't interacted with other instances yet.": "Još nisi interagirao/la s drugim instancama.", + "You invited {member}.": "Pozvali ste {member}.", + "You joined the event {event}.": "Pridružio/la si se događaju {event}.", + "You may also:": "Također možeš:", + "You may clear all participation information for this device with the buttons below.": "Sa ovim gumbom možete očistiti sve informacije o sudjelovanju s ovog uređaja.", + "You may now close this page or {return_to_the_homepage}.": "Sada možeš zatvoriti ovu stranicu ili {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "Možete zatvoriti ovaj prozorčić, ili {return_to_event}.", + "You may show some members as contacts.": "Neke članove možeš prikazati kao kontakte.", + "You moved the folder {resource} into {new_path}.": "Premjestili ste mapu {resource} u {new_path}.", + "You moved the folder {resource} to the root folder.": "Premjestili ste mapu {resource} u glavnu mapu.", + "You moved the resource {resource} into {new_path}.": "Premjestili ste resurs {resource} u {new_path}.", + "You moved the resource {resource} to the root folder.": "Premjestili ste resurs {resource} u glavnu mapu.", + "You need to enter a text": "Moraš upisati neki tekst", + "You need to login.": "Morate se prijaviti.", + "You need to provide the following code to your application. It will only be valid for a few minutes.": "Tvojoj aplikaciji moraš dodati sljedeći kod. On će vrijediti samo nekoliko minuta.", + "You posted a comment on the event {event}.": "Objavio(la) si komentar o događaju {event}.", + "You promoted the member {member} to an unknown role.": "Promovirao/la si člana {member} u nepoznatu ulogu.", + "You promoted {member} to administrator.": "Promovirali ste {member} u administratora.", + "You promoted {member} to moderator.": "Promovirali ste člana {member} u moderatora.", + "You rejected {member}'s membership request.": "Odbio/la si zahtjev za članstvo za {member}.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Preimenovao/la si raspravu iz {old_discussion} u {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Preimenovali ste mapu iz {old_resource_title} u {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "preimenovali ste resurs iz {old_resource_title} u {resource}.", + "You replied to a comment on the event {event}.": "Odgovorio/la si na komentar o događaju %{event}.", + "You replied to the discussion {discussion}.": "Odgovorio/la si na raspravu {discussion}.", + "You requested to join the group.": "Poslali ste zahtjev za učlanjenje.", + "You updated the event {event}.": "Ažurirali ste događaj {event}.", + "You updated the group {group}.": "Ažurirali ste grupu {group}.", + "You updated the member {member}.": "Ažurirali ste člana {member}.", + "You updated the post {post}.": "Ažurirali ste objavu {post}.", + "You were demoted to an unknown role by {profile}.": "{profile} su vas snizili u nepoznatu ulogu.", + "You were demoted to moderator by {profile}.": "{profile} su vas snizili u moderatora.", + "You were demoted to simple member by {profile}.": "{profile} su vas snizili u člana.", + "You were promoted to administrator by {profile}.": "{profile} su vas promovirali u administratora.", + "You were promoted to an unknown role by {profile}.": "{profile} te je promovirao/la u nepoznatu ulogu.", + "You were promoted to moderator by {profile}.": "{profile} su vas promovirali u moderatora.", + "You will be able to add an avatar and set other options in your account settings.": "Moći ćete postaviti avatar i druge opcije u vašim postavkama računa.", + "You will be redirected to the original instance": "Biti ćete preusmjereni na originalnu instancu", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Ovdje ćete naći sve stvorene događaje i one u kojima sudjelujete, kao i one koji organiziraju grupe koje pratite/ste član.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Primat ćeš obavijesti o javnoj aktivnosti ove grupe ovisno o %{notification_settings}.", + "You wish to participate to the following event": "Želite sudjelovati u sljedećem događaju", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Svaki ponedjeljak ćete dobiti tjedni sažetak za nadolazeće događaje ako ih ima.", + "You'll need to change the URLs where there were previously entered.": "Morat ćeš promijeniti URL adrese gdje su prethodno bile upisane.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Trebate sami podijeliti URL grupe kako bi ostali mogli pristupiti grupnom profilu. Grupa neće biti vidljiva u pretraživanjima na Mobilizonu ili igdje drugdje.", + "You'll receive a confirmation email.": "Dobit ćete e-mail za potvrdu.", + "YouTube live": "YouTube uživo", + "YouTube replay": "YouTube repriza", + "Your account has been successfully deleted": "Vaš račun je uspješno izbrisan", + "Your account has been validated": "Vaš račun je ovjeren", + "Your account is being validated": "Vaš račun se ovjerava", + "Your account is nearly ready, {username}": "Vaš račun je uskoro spreman, {username}", + "Your application code": "Kȏd tvoje aplikacije", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Vaš grad/regija i radius će biti korišteni samo za predlaganje obližnjih događaja. Radiu događaja će razmatrati administrativni centar vašeg mjesta.", + "Your current email is {email}. You use it to log in.": "Tvoja aktualna e-mail adresa je {email}. Koristiš je za prijavu.", + "Your email": "Vaša e-mail adresa", + "Your email address was automatically set based on your {provider} account.": "Vaša e-mail adresa je automatski postavljena na osnovi vašeg {provider} računa.", + "Your email has been changed": "Vaš e-mail adresa je promijenjena", + "Your email is being changed": "Vaša e-mail adresa se mijenja", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Vaša e-mail adresa će se koristiti samo za potvrđivanje da ste stvarna osoba i za slanje eventualnih novosti za ovaj događaj. NEĆE SE proslijediti drugim instancama ili organizatorima događaja.", + "Your federated identity": "Vaš federalizirani identitet", + "Your membership is pending approval": "Tvoje članstvo čeka na odobrenje", + "Your membership was approved by {profile}.": "Tvoje članstvo je odobrio/la {profile}.", + "Your participation has been cancelled": "Tvoje sudjelovanje je otkazano", + "Your participation has been confirmed": "Vaše sudjelovanje je potvrđeno", + "Your participation has been rejected": "Vaše sudjelovanje je odbijeno", + "Your participation has been requested": "Poslan je zahtjev za vaše sudjelovanje", + "Your participation is being cancelled": "Tvoje sudjelovanje se otkazuje", + "Your participation request has been validated": "Vaše sudjelovanje je ovjereno", + "Your participation request is being validated": "Vaše sudjelovanje se ovjerava", + "Your participation status has been changed": "Vaš status sudjelovanja je promijenjen", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Vaš status sudjelovanja je spremljen samo na ovom uređaju i biti će izbrisan mjesec dana nakon završetka događaja.", + "Your participation still has to be approved by the organisers.": "Organizatori još trebaju odobriti vaše sudjelovanje.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Vaše će sudjelovanje biti potvrđeno kada pritisnete poveznicu za potvrdu u e-mailu i nakon što organizator ručno potvrdi vaše sudjelovanje.", + "Your participation will be validated once you click the confirmation link into the email.": "Vaše će sudjelovanje biti potvrđeno kada pritisnete poveznicu za potvrdu u e-mailu.", + "Your position was not available.": "Tvoja pozicija nije bila dostupna.", + "Your profile will be shown as contact.": "Vaš profil će biti prikazan kao kontakt.", + "Your timezone is currently set to {timezone}.": "Tvoja je vremenska zona trenutačno postavljena na {timezone}.", + "Your timezone was detected as {timezone}.": "Vaša vremenska zona je prepoznata kao {timezone}.", + "Your timezone {timezone} isn't supported.": "Vaša vremenska zona {timezone} nije podržana.", + "Your upcoming events": "Vaši nadolazeći događaji", + "Zoom": "Zoom", + "Zoom in": "Uvećaj prikaz", + "Zoom out": "Umanji prikaz", + "[This comment has been deleted by it's author]": "[Ovaj komentar je izbrisan od autora]", + "[This comment has been deleted]": "[Ovaj je komentar izbrisan]", + "[deleted]": "[izbrisano]", + "a non-existent report": "nepostojeći izvještaj", + "access the corresponding account": "pristupi odgovarajućem računu", + "access to the group's private content as well": "i pristup privatnom sadržaju grupe", + "and {number} groups": "dodaj {number} grupa", + "any distance": "bilo koja udaljenost", + "as {identity}": "kao {identity}", + "contact uninformed": "kontakt neinformiran", + "create a group": "stvoriti grupu", + "create an event": "stvori događaj", + "default Mobilizon privacy policy": "standardna Mobilizon politika privatnosti", + "default Mobilizon terms": "standardni Mobilizon uvjeti", + "detail": " ", + "e.g. 10 Rue Jangot": "npr. Varšavska ulica 10", + "e.g. Accessibility, Twitch, PeerTube": "npr.: pristup, Twitch, PeerTube", + "e.g. Nantes, Berlin, Cork, …": "npr. Nantes, Berlin, Cork, …", + "enable the feature": "aktivira funkciju", + "explore the events": "istraži događaje", + "explore the groups": "istražiti grupe", + "find, create and organise events": "pronađi, stvori i organiziraj događaje", + "full rules": "puna pravila", + "group's upcoming public events": "nadolazećim javnim događajima grupe", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/some-secret-token", + "iCal Feed": "iCal Feed", + "instance rules": "pravila instance", + "mobilizon-instance.tld": "mobilizon-instance.tld", + "more than 1360 contributors": "više od 1360 suradnika", + "multitude of interconnected Mobilizon websites": "mnoštvo međusobno povezanih Mobilizon web stranica", + "new{'@'}email.com": "novo{'@'}email.com", + "profile@instance": "profil@instanca", + "profile{'@'}instance": "profil{'@'}instanca", + "report #{report_number}": "prijava broj {report_number}", + "return to the event's page": "vrati se na stranicu događaja", + "return to the homepage": "vrati se na početnu web-stranicu", + "terms of service": "uvjeti korištenja", + "tool designed to serve you": "alat koji je stvoren da tebi služi", + "translation": " ", + "with another identity…": "s jednim drugim identitetom…", + "your notification settings": "tvoje postavke obavještavanja", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved} / {total} mjesta", + "{available}/{capacity} available places": "Nema slobodnih mjesta|{available}/{capacity} slobodnih mjesta", + "{count} events": "{count} događaja", + "{count} km": "{count} km", + "{count} members": "Nema članova|Jedan član|{count} člana/članova", + "{count} members or followers": "Nema članova ili pratilaca|Jedan član ili pratilac|{count} članova ili pratilaca", + "{count} participants": "Nema sudionika | Jedan sudionik | {count} sudionika", + "{count} requests waiting": "{count} zahtjeva na čekanju", + "{eventsCount} events found": "Nije pronađenen nijedan događaj|Pronađen je jedan događaj|Pronađena su {eventsCount} događaja", + "{folder} - Resources": "{folder} – resursi", + "{groupsCount} groups found": "Nije pronađenena nijedna grupa|Pronađena je jedna grupa|Pronađene su {eventsCount} grupe", + "{group} activity timeline": "Kronologija aktivnosti grupe {group}", + "{group} events": "Događaji grupe {group}", + "{group} posts": "{group} objave", + "{group}'s events": "Događaji grupe {group}", + "{group}'s todolists": "Popis zadataka grupe {group}", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} je instanca {mobilizon} software-a.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} je instanca od {mobilizon_link}, besplatnog softvera građen sa zajednicom.", + "{member} accepted the invitation to join the group.": "{member} su pristali poziv u grupu.", + "{member} joined the group.": "{member} su se pridružili grupi.", + "{member} rejected the invitation to join the group.": "{member} su odbili poziv u grupu.", + "{member} requested to join the group.": "{member} su poslali zahtjev za učlanjenje.", + "{member} was invited by {profile}.": "{profile} su pozvali {member}.", + "{moderator} added a note on {report}": "{moderator} je dodao/la bilješku za {report}", + "{moderator} closed {report}": "{moderator} je zatvorio/la {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} je izbrisao/la dagađaj „{title}”", + "{moderator} has deleted a comment from {author}": "{moderator} je izbrisoa/la komentar autora {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} je izbrisoa/la komentar autora {author} u događaju {event}", + "{moderator} has deleted user {user}": "{moderator} su suspendirali korisnika {user}", + "{moderator} has done an unknown action": "{moderator} je izvršio/la nepoznatu radnju", + "{moderator} has unsuspended group {profile}": "{moderator} je ponovo odobrio grupu {profile}", + "{moderator} has unsuspended profile {profile}": "{moderator} su suspendirali profil {profile}", + "{moderator} marked {report} as resolved": "{moderator} je označio/la {report} kao riješeno", + "{moderator} reopened {report}": "{moderator} je ponovo otvorio/la{report}", + "{moderator} suspended group {profile}": "{moderator} je suspendirao/la grupu {profile}", + "{moderator} suspended profile {profile}": "{moderator} su suspendirali profil {profile}", + "{nb} km": "{nb} km", + "{numberOfCategories} selected": "Odabrano: {numberOfCategories}", + "{numberOfLanguages} selected": "Odabrano: {numberOfLanguages}", + "{number} kilometers": "{number} km", + "{number} members": "{number} članova", + "{number} memberships": "{number} članstva", + "{number} organized events": "Nema organiziranih događaja|Jedan organizirani događaj|{number} organiziranih događaja", + "{number} participations": "Nema sudjelovanja|Jedno sudjelovanje|{number} sudjelovanja", + "{number} posts": "Nema objava|Jedna objava|{number} objava", + "{number} seats left": "Preostalih mjesta: {number}", + "{old_group_name} was renamed to {group}.": "{old_group_name} je preimenovano u {group}.", + "{profileName} (suspended)": "{profileName} (suspendirano)", + "{profile} (by default)": "{profile} (standardno)", + "{profile} added the member {member}.": "{profile} su dodali člana {member}.", + "{profile} approved {member}'s membership.": "{profile} je odobrio/la članstvo za {member}.", + "{profile} archived the discussion {discussion}.": "{profile} je arhivirao/la raspravu {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} je stvorio/la raspravu {discussion}.", + "{profile} created the folder {resource}.": "{profile} su stvorili mapu {resource}.", + "{profile} created the group {group}.": "{profile} su stvorili grupu {group}.", + "{profile} created the resource {resource}.": "{profile} su stvorili resurs {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} je izbrisao/la raspravu {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} su izbrisali mapu {resource}.", + "{profile} deleted the resource {resource}.": "{profile} su izbrisali resurs {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} je degradirao/la člana {member} u nepoznatu ulogu.", + "{profile} demoted {member} to moderator.": "{profile} su snizili {member} u moderatora.", + "{profile} demoted {member} to simple member.": "{profile} su snizili {member} u člana.", + "{profile} excluded member {member}.": "{profile} su isključili člana {member}.", + "{profile} joined the the event {event}.": "{profile} se pridružio/la događaju {event}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} su premjestili mapu {resource} u {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} su premjestili mapu {resource} u glavnu mapu.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} su premjestili resurs {resource} u {new path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} su premjestili resurs {resource} u glavnu mapu.", + "{profile} posted a comment on the event {event}.": "{profile} je objavio/la komentar o događaju {event}.", + "{profile} promoted {member} to administrator.": "{profile} su promovirali {member} u administratora.", + "{profile} promoted {member} to an unknown role.": "{profile} je promovirao/la člana {member} u nepoznatu ulogu.", + "{profile} promoted {member} to moderator.": "{profile} su promovirali {member} u moderatora.", + "{profile} quit the group.": "{profile} su izašli iz grupe.", + "{profile} rejected {member}'s membership request.": "{profile} je odbio/la zahtjev za članstvo za {member}.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} je preimenovao/la raspravu iz {old_discussion} u {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} su preimenovali mapu iz {old_resource_title} u {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} su preimenovali resurs iz {old_resource_title} u {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} je odgovorio/la na komentar o događaju %{event}.", + "{profile} replied to the discussion {discussion}.": "{profile} je odgovorio/la na raspravu {discussion}.", + "{profile} updated the group {group}.": "{profile} su ažurirali grupu {group}.", + "{profile} updated the member {member}.": "{profile} su ažurirali člana {member}.", + "{resultsCount} results found": "Nije pronađenen nijedan rezultat|Pronađen je jedan rezultat|Pronađena su {eventsCount} rezultata", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} zadatka)", + "{username} was invited to {group}": "{username} su pozvani u {grupu}", + "{user}'s follow request was accepted": "Zahtjev za praćenje od {user} je prihvaćen", + "{user}'s follow request was rejected": "Zahtjev za praćenje od {user} je odbijen", + "© The OpenStreetMap Contributors": "© OpenStreetMap suradnici" +}); diff --git a/res/locale/hu.js b/res/locale/hu.js new file mode 100644 index 0000000..1670859 --- /dev/null +++ b/res/locale/hu.js @@ -0,0 +1,1661 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Elfedve)", + "(this folder)": "(ez a mappa)", + "(this link)": "(ez a hivatkozás)", + "+ Add a resource": "+ Erőforrás hozzáadása", + "+ Create a post": "+ Bejegyzés létrehozása", + "+ Create an event": "+ Esemény létrehozása", + "+ Start a discussion": "+ Megbeszélés indítása", + "0 Bytes": "0 bájt", + "{contact} will be displayed as contact.": "{contact} meg lesz jelenítve kapcsolatként.|{contact} meg lesznek jelenítve kapcsolatokként.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "@{username} követési kérése el lett fogadva", + "@{username}'s follow request was rejected": "@{username} követési kérése vissza lett utasítva", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "A süti egy információt tartalmazó kis fájl, amelyet akkor küld el a számítógépe, ha meglátogat egy weboldalt. Amikor újra meglátogatja a weboldalt, akkor a süti lehetővé teszi annak az oldalnak, hogy felismerje a böngészőjét. A sütik tárolhatnak felhasználói beállításokat vagy egyéb információkat. Beállíthatja a böngészőjét úgy, hogy utasítson vissza minden sütit. Azonban ez azt eredményezheti, hogy néhány weboldalon a funkciók vagy a szolgáltatások csak részlegesen működnek. A helyi tároló hasonlóan működik, de több adat tárolását teszi lehetővé.", + "A discussion has been created or updated": "Egy megbeszélés létre lett hozva vagy frissítve lett", + "A federated software": "Egy föderált szoftver", + "A fediverse account URL to follow for event updates": "Egy Födiverzum-fiók webcíme az esemény frissítéseinek követéséhez", + "A few lines about your group": "Néhány sor a csoportjáról", + "A link to a page presenting the event schedule": "Az esemény ütemtervét bemutató oldalra mutató hivatkozás", + "A link to a page presenting the price options": "Az árválasztékot bemutató oldalra mutató hivatkozás", + "A member has been updated": "Egy tag frissítve lett", + "A member requested to join one of my groups": "Egy tag kérte a csoportjaim egyikéhez való csatlakozást", + "A new version is available.": "Új verzió érhető el.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Egy hely a magatartási kódexének, szabályainak és irányelveinek. Használhat HTML címkéket.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Egy hely annak elmagyarázásához, hogy kicsoda Ön, valamint azokat a dolgokat, amelyek megkülönböztetik az Ön példányát. Használhat HTML címkéket.", + "A place to publish something to the whole world, your community or just your group members.": "Egy hely, hogy közzétegyen valamit az egész világnak, a közösségének vagy csak a csoportja tagjainak.", + "A place to store links to documents or resources of any type.": "Egy hely dokumentumokra mutató hivatkozások vagy bármilyen típusú erőforrások tárolásához.", + "A post has been published": "Egy bejegyzés közzé lett téve", + "A post has been updated": "Egy bejegyzés frissítve lett", + "A practical tool": "Egy praktikus eszköz", + "A resource has been created or updated": "Egy erőforrás létre lett hozva vagy frissítve lett", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Egy rövid címkesor a példánya honlapjára. Alapértelmezetten „Összejövetel ⋅ Szervezés ⋅ Mozgósítás”", + "A twitter account handle to follow for event updates": "Egy Twitter-fiók kezelője az esemény frissítéseinek követéséhez", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Egy felhasználóbarát, felszabadító és etikus eszköz összejövetelekhez, szervezéshez és mozgósításhoz.", + "A validation email was sent to {email}": "Egy ellenőrző e-mail lett elküldve ide: {email}", + "API": "API", + "Abandon editing": "Szerkesztés elhagyása", + "About": "Névjegy", + "About Mobilizon": "A Mobilizon névjegye", + "About anonymous participation": "A névtelen részvételről", + "About instance": "A példány névjegye", + "About this event": "Az esemény névjegye", + "About this instance": "A példány névjegye", + "About {instance}": "A(z) {instance} névjegye", + "Accept": "Elfogadás", + "Accept follow": "Követés elfogadása", + "Accepted": "Elfogadva", + "Access drafts events": "Eseményvázlatok elérése", + "Access followed groups": "Követett csoportok elérése", + "Access group activities": "Csoport tevékenységeinek elérése", + "Access group discussions": "Csoport témáinak elérése", + "Access group events": "Csoport eseményeinek elérése", + "Access group followers": "Csoport követőinek elérése", + "Access group members": "Csoport tagjainak elérése", + "Access group memberships": "Csoporttagságok elérése", + "Access group suggested events": "Csoport javasolt eseményeinek elérése", + "Access group todo-lists": "Csoport teendőlistáinak elérése", + "Access organized events": "Szervezett események elérése", + "Access participations": "Résztvevők elérése", + "Access your group's resources": "A csoport erőforrásainak elérése", + "Accessibility": "Akadálymentesítés", + "Accessible only by link": "Csak hivatkozáson keresztül érhető el", + "Accessible only to members": "Csak tagoknak érhető el", + "Accessible through link": "Hivatkozáson keresztül érhető el", + "Account": "Fiók", + "Account settings": "Fiókbeállítások", + "Actions": "Műveletek", + "Activate browser push notifications": "A böngésző leküldéses értesítéseinek aktiválása", + "Activate notifications": "Értesítések bekapcsolása", + "Activated": "Aktiválva", + "Active": "Aktív", + "Activity": "Tevékenység", + "Actor": "Szereplő", + "Adapt to system theme": "Alkalmazkodás a rendszertémához", + "Add": "Hozzáadás", + "Add / Remove…": "Hozzáadás vagy eltávolítás…", + "Add a contact": "Kapcsolat hozzáadása", + "Add a new post": "Új bejegyzés hozzáadása", + "Add a note": "Jegyzet hozzáadása", + "Add a recipient": "Címzett hozzáadása", + "Add a todo": "Tennivaló hozzáadása", + "Add an address": "Cím hozzáadása", + "Add an instance": "Példány hozzáadása", + "Add link": "Hivatkozás hozzáadása", + "Add new…": "Új hozzáadása…", + "Add picture": "Kép hozzáadása", + "Add some tags": "Címkék hozzáadása", + "Add to my calendar": "Hozzáadás a saját naptárhoz", + "Additional comments": "További hozzászólások", + "Admin": "Adminisztrátor", + "Admin dashboard": "Adminisztrátori vezérlőpult", + "Admin settings": "Adminisztrátori beállítások", + "Admin settings successfully saved.": "Az adminisztrátori beállítások sikeresen mentve.", + "Administration": "Adminisztráció", + "Administrator": "Adminisztrátor", + "All": "Összes", + "All activities": "Összes tevékenység", + "All good, let's continue!": "Minden rendben, menjünk tovább!", + "All the places have already been taken": "Már az összes helyet elfoglalták", + "Allow all comments from users with accounts": "Az összes hozzászólás engedélyezése a bejelentkezett felhasználóktól", + "Allow registrations": "Regisztrációk engedélyezése", + "An URL to an external ticketing platform": "Egy külső jegyértékesítő platform webcíme", + "An anonymous profile joined the event {event}.": "Egy névtelen profil csatlakozott az eseményhez: {event}.", + "An error has occured while refreshing the page.": "Hiba történt az oldal frissítésekor.", + "An error has occured. Sorry about that. You may try to reload the page.": "Hiba történt. Sajnáljuk. Megpróbálhatja újratölteni az oldalt.", + "An ethical alternative": "Egy etikus alternatíva", + "An event I'm going to has been updated": "Frissítettek egy olyan eseményt, amelyre megyek", + "An event I'm going to has posted an announcement": "Közleményt küldött egy olyan eseményt, amelyre megyek", + "An event I'm organizing has a new comment": "Új hozzászólása van egy olyan eseménynek, amelyet szervezek", + "An event I'm organizing has a new participation": "Új részvétele van egy olyan eseménynek, amelyet szervezek", + "An event I'm organizing has a new pending participation": "Új függőben lévő részvétele van egy olyan eseménynek, amelyet szervezek", + "An event from one of my groups has been published": "Az egyik csoportomtól származó esemény közzé lett téve", + "An event from one of my groups has been updated or deleted": "Az egyik csoportomtól származó esemény frissítve vagy törölve lett", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "A példány a kiszolgálón futó Mobilizon szoftvernek egy telepített verziója. Egy példányt bárki futtathat a {mobilizon_software} vagy egyéb föderált alkalmazások (vagy más néven „födiverzum”) használatával. Ennek a példánynak a neve {instance_name}. A Mobilizon több példány föderált hálózata (hasonlóan a levelezési kiszolgálókhoz). A különböző példányokon regisztrált felhasználók még akkor is kommunikálhatnak egymással, ha nem regisztráltak ugyanarra a példányra.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "Az „alkalmazásprogramozási interfész” vagy „API” egy kommunikációs protokoll, amellyel a szoftverösszetevők kommunikálhatnak egymással. A Mobilizon API például lehetővé teszi, hogy külső szoftvereszközök kommunikálhassanak a Mobilizon-példányokkal, hogy műveleteket végezzenek el, például automatikusan és távolról tegyenek közzé eseményeket az Ön nevében.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events, automatically and remotely.": "Egy „alkalmazásprogramozási interfész” vagy „API” egy kommunikációs protokoll, amellyel a szoftverösszetevők kommunikálhatnak egymással. A Mobilizon API-val, például, harmadik féltől származó szoftvereszközök is kommunikálhatnak a Mobilizon példányokkal, és így végrehajthatnak bizonyos műveleteket, mint az események automatikus létrehozása távolról.", + "And {number} comments": "és {number} hozzászólást tettek közzé", + "Announcements": "Közlemények", + "Announcements and mentions notifications are always sent straight away.": "A közlemények és az említések értesítései mindig azonnal elküldésre kerülnek.", + "Announcements for {eventTitle}": "A(z) {eventTitle} közleményei", + "Anonymous participant": "Névtelen részvétel", + "Anonymous participants will be asked to confirm their participation through e-mail.": "A névtelen résztvevők arra lesznek kérve, hogy erősítsék meg a részvételüket e-mailen keresztül.", + "Anonymous participations": "Névtelen részvételek", + "Any category": "Bármelyik kategória", + "Any day": "Bármely nap", + "Any distance": "Tetszőleges távolság", + "Any type": "Bármely típus", + "Anyone can join freely": "Bárki szabadon csatlakozhat", + "Anyone can request being a member, but an administrator needs to approve the membership.": "Bárki kérheti, hogy tag lehessen, de egy adminisztrátornak jóvá kell hagynia a tagságot.", + "Anyone wanting to be a member from your group will be able to from your group page.": "Bárki, aki a csoportja tagja szeretne lenni, a csoportja oldaláról lesz képes csatlakozni.", + "Application": "Alkalmazás", + "Application authorized": "Alkalmazás engedélyezve", + "Application not found": "Az alkalmazás nem található", + "Application was revoked": "Az alkalmazás vissza lett vonva", + "Apply filters": "Szűrők alkalmazása", + "Approve member": "Tag jóváhagyása", + "Apps": "Alkalmazások", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Egészen biztos abban, hogy a teljes fiókot törölni szeretné? Mindent el fog veszíteni! A személyazonosságok, a beállítások, a létrehozott események, az üzenetek és a részvételek örökre eltűnnek.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Biztosan teljesen törölni szeretné ezt a csoportot? Az összes tag – beleértve a távoliakat is – értesítve lesz, és eltávolításra kerül a csoportból, valamint az összes csoportadat (események, bejegyzések, megbeszélések, tennivalók…) visszavonhatatlanul meg lesznek semmisítve.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Biztos, hogy törli ezt a hozzászólást? Ez a művelet nem vonható vissza.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Biztosan törölni szeretné ezt a hozzászólást? Ezt a műveletet nem lehet visszavonni.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator and ask them to edit their event instead.": "Biztos, hogy törli ezt az eseményt? Ez a művelet nem vonható vissza. Ehelyett beszélhet is az esemény létrehozójával, és megkérheti, hogy szerkessze az eseményt.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Biztosan törölni szeretné ezt az eseményt? Ezt a műveletet nem lehet visszavonni. Érdemes lenne megbeszélést kezdeményeznie az esemény létrehozójával, vagy az eseményét szerkeszteni inkább.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Biztosan fel szeretné függeszteni ezt a csoportot? Az összes tag – beleértve a távoliakat is – értesítve lesz, és eltávolításra kerül a csoportból, valamint az összes csoportadat (események, bejegyzések, megbeszélések, tennivalók…) visszavonhatatlanul meg lesznek semmisítve.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Biztosan fel szeretné függeszteni ezt a csoportot? Mivel ez a csoport a(z) {instance} példányról származik, ez csak a helyi tagokat távolítja el és a helyi adatokat törli, valamint visszautasítja az összes jövőbeli adatot.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Biztosan meg szeretné szakítani az esemény létrehozását? Az összes módosítást el fogja veszíteni.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Biztosan meg szeretné szakítani az esemény szerkesztését? Az összes módosítást el fogja veszíteni.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Biztosan meg szeretné szakítani a(z) „{title}” eseményen való részvételét?", + "Are you sure you want to delete this entire conversation?": "Biztos, hogy törli a teljes beszélgetést?", + "Are you sure you want to delete this entire discussion?": "Biztosan törölni szeretné ezt a teljes megbeszélést?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Biztosan törölni szeretné ezt az eseményt? Ezt a műveletet nem lehet visszavonni.", + "Are you sure you want to delete this post? This action cannot be reverted.": "Biztosan törölni szeretné ezt a bejegyzést? Ezt a műveletet nem lehet visszavonni.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Biztosan el szeretné hagyni a(z) {groupName} csoportot? El fogja veszíteni a hozzáférést a csoport magánjellegű tartalmához. Ezt a műveletet nem lehet visszavonni.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Mivel az esemény szervezője a részvételi kérések kézi ellenőrzését választotta, az Ön részvétele csak akkor lesz valóban megerősítve, ha megkapja azt az e-mailt, amely azt állítja, hogy el lett fogadva.", + "Ask your instance admin to {enable_feature}.": "Kérje meg a példány adminisztrátorát, hogy {enable_feature}.", + "Assigned to": "Hozzárendelve ehhez", + "Atom feed for events and posts": "Atom hírforrás az eseményekhez és a bejegyzésekhez", + "Attending": "Részvétel", + "Authorize": "Engedélyezés", + "Authorize application": "Alkalmazás engedélyezése", + "Authorized on {authorization_date}": "Engedélyezve: {authorization_date}", + "Autorize this application to access your account?": "Engedélyezi, hogy az alkalmazás hozzáférjen a fiókjához?", + "Avatar": "Profilkép", + "Back to group list": "Vissza a csoportokhoz", + "Back to homepage": "Vissza a kezdőlapra", + "Back to previous page": "Vissza az előző oldalra", + "Back to profile list": "Vissza a profilokhoz", + "Back to top": "Vissza a tetejére", + "Back to user list": "Vissza a felhasználókhoz", + "Banner": "Reklámcsík", + "Become part of the community and start organizing events": "Legyen része a közösségnek, és kezdjen el eseményeket szervezni", + "Before you can login, you need to click on the link inside it to validate your account.": "Mielőtt bejelentkezne, rá kell kattintania a benne lévő hivatkozásra a fiókja ellenőrzéséhez.", + "Begins on": "Ekkor kezdődik", + "Best match": "Legnagyobb egyezés", + "Big Blue Button": "Big Blue Button", + "Bold": "Félkövér", + "Booking": "Foglalás", + "Breadcrumbs": "Kenyérmorzsák", + "Browser notifications": "Böngészőértesítések", + "Browser tab icon and PWA icon of the instance. Defaults to the upstream Mobilizon icon.": "A példány böngészőlap- és PWA-ikonja. Alapértelmezés szerint a Mobilizon ikonja.", + "Bullet list": "Listajeles lista", + "By bike": "Kerékpárral", + "By car": "Autóval", + "By others": "Másoktól származó", + "By transit": "Tömegközlekedéssel", + "By {group}": "{group} által", + "By {username}": "{username} által", + "Calendar": "Naptár", + "Can be an email or a link, or just plain text.": "Lehet egy e-mail-cím vagy egy hivatkozás, vagy csak egyszerű szöveg.", + "Cancel": "Mégse", + "Cancel anonymous participation": "Névtelen részvétel megszakítása", + "Cancel creation": "Létrehozás megszakítása", + "Cancel discussion title edition": "Megbeszéléscím szerkesztésének megszakítása", + "Cancel edition": "Szerkesztés megszakítása", + "Cancel follow request": "Követési kérés megszakítása", + "Cancel membership request": "Tagsági kérés megszakítása", + "Cancel my participation request…": "Saját részvételi kérés visszavonása…", + "Cancel my participation…": "Saját részvétel visszavonása…", + "Cancel participation": "Részvétel lemondása", + "Cancelled": "Törölve", + "Cancelled: Won't happen": "Törölve: nem fog megtörténni", + "Categories": "Kategóriák", + "Category": "Kategória", + "Category illustrations credits": "Kategóriaillusztrációk köszönetnyilvánítása", + "Category list": "Kategóriák", + "Change": "Változtatás", + "Change email": "E-mail-cím megváltoztatása", + "Change my email": "Saját e-mail-cím megváltoztatása", + "Change my identity…": "Saját személyazonosság megváltoztatása…", + "Change my password": "Saját jelszó megváltoztatása", + "Change role": "Szerep megváltoztatása", + "Change the filters.": "Módosítsa a szűrőket.", + "Change timezone": "Időzóna megváltoztatása", + "Change user email": "Felhasználó e-mail-címének cseréje", + "Change user role": "Felhasználó szerepének megváltoztatása", + "Check your device to continue. You may now close this window.": "Ellenőrizze az eszközt a folytatáshoz. Bezárhatja ezt az ablakot.", + "Check your inbox (and your junk mail folder).": "Nézze meg a bejövő leveleit (és a levélszemét mappát is).", + "Choose the source of the instance's Privacy Policy": "Válassza ki a példány adatvédelmi irányelveinek forrását", + "Choose the source of the instance's Terms": "Válassza ki a példány feltételeinek forrását", + "City or region": "Település vagy régió", + "Clear": "Törlés", + "Clear address field": "Címmező törlése", + "Clear date filter field": "Dátumszűrőmező törlése", + "Clear participation data for all events": "Részvételi adatok törlése az összes eseménynél", + "Clear participation data for this event": "Részvételi adatok törlése ennél az eseménynél", + "Clear timezone field": "Időzónamező törlése", + "Click for more information": "Kattintson a további információkért", + "Click to upload": "Kattintson a feltöltéshez", + "Close": "Lezárás", + "Close comments for all (except for admins)": "Hozzászólások lezárása mindenkinél (kivéve az adminisztrátoroknál)", + "Close map": "Térkép bezárása", + "Closed": "Lezárva", + "Comment body": "Hozzászólás törzse", + "Comment deleted": "Hozzászólás törölve", + "Comment deleted and report resolved": "Hozzászólás törölve, jelentés megoldva", + "Comment from a private conversation": "Hozzászólás egy privát üzenetből", + "Comment from an event announcement": "Hozzászólás egy eseményközleményből", + "Comment from {'@'}{username} reported": "{'@'}{username} hozzászólása jelentve", + "Comment text can't be empty": "A hozzászólás szövege nem lehet üres", + "Comment under event {eventTitle}": "Hozzászólás a következő alatt: {eventTitle}", + "Comments": "Hozzászólások", + "Comments are closed for everybody else.": "A hozzászólások le vannak zárva mindenki más számára.", + "Confirm": "Megerősítés", + "Confirm my participation": "Részvétel megerősítése", + "Confirm my particpation": "Részvétel megerősítése", + "Confirm participation": "Részvétel megerősítése", + "Confirm user": "Felhasználó megerősítése", + "Confirmed": "Megerősítve", + "Confirmed at": "Megerősítve ekkor", + "Confirmed: Will happen": "Megerősítve: meg fog történni", + "Congratulations, your account is now created!": "Gratulálunk, a fiókja most létrejött!", + "Contact": "Kapcsolat", + "Continue": "Folytatás", + "Continue editing": "Szerkesztés folytatása", + "Conversation with {participants}": "Beszélgetés velük: {participants}", + "Conversations": "Beszélgetések", + "Cookies and Local storage": "Sütik és helyi tároló", + "Copy URL to clipboard": "Webcím másolás a vágólapra", + "Copy details to clipboard": "Részletek másolása a vágólapra", + "Country": "Ország", + "Create": "Létrehozás", + "Create a calc": "Táblázat létrehozása", + "Create a discussion": "Megbeszélés létrehozása", + "Create a folder": "Mappa létrehozása", + "Create a new event": "Új esemény létrehozása", + "Create a new group": "Új csoport létrehozása", + "Create a new identity": "Új személyazonosság létrehozása", + "Create a new list": "Új lista létrehozása", + "Create a new metadata element": "Új metaadatelem létrehozása", + "Create a new profile": "Új profil létrehozása", + "Create a pad": "Dokumentum létrehozása", + "Create a videoconference": "Videokonferencia létrehozása", + "Create an account": "Fiók létrehozása", + "Create discussion": "Megbeszélés létrehozása", + "Create event": "Esemény létrehozása", + "Create feed tokens": "Hírforrástokenek létrehozása", + "Create group": "Csoport létrehozása", + "Create group discussions": "Csoport témáinak létrehozása", + "Create group resources": "Csoport bejegyzéseinek létrehozása", + "Create identity": "Személyazonosság létrehozása", + "Create my event": "Saját esemény létrehozása", + "Create my group": "Saját csoport létrehozása", + "Create my profile": "Saját profil létrehozása", + "Create new links": "Új hivatkozások létrehozása", + "Create new profiles": "Új profilok létrehozása", + "Create resource": "Erőforrás létrehozása", + "Create the discussion": "A megbeszélés létrehozása", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Hozzon létre tennivalólistákat az összes elvégzendő feladathoz, rendelje hozzá őket, és állítson be a határidőket.", + "Create token": "Token létrehozása", + "Created by {name}": "{name} hozta létre", + "Created by {username}": "{username} hozta létre", + "Current identity has been changed to {identityName} in order to manage this event.": "A jelenlegi személyazonosság megváltozott {identityName} személyazonosságra az esemény kezelése érdekében.", + "Current page": "Jelenlegi oldal", + "Custom": "Egyéni", + "Custom URL": "Egyéni webcím", + "Custom text": "Egyéni szöveg", + "Daily email summary": "Napi e-mailes összegzés", + "Dark": "Sötét", + "Dashboard": "Vezérlőpult", + "Date": "Dátum", + "Date and time": "Dátum és idő", + "Date and time settings": "Dátum- és időbeállítások", + "Date parameters": "Dátumparaméterek", + "Deactivate notifications": "Értesítések kikapcsolása", + "Decline": "Elutasítás", + "Decrease": "Csökkentés", + "Default": "Alapértelmezett", + "Default Mobilizon privacy policy": "Alapértelmezett Mobilizon adatvédelmi irányelv", + "Default Mobilizon terms": "Alapértelmezett Mobilizon használati feltételek", + "Default Picture": "Alapértelmezett kép", + "Default picture when an event or group doesn't have one.": "Alapértelmezett kép, ha az eseménynek vagy csoportnak nincs ilyenje.", + "Delete": "Törlés", + "Delete account": "Fiók törlése", + "Delete comment": "Hozzászólás törlése", + "Delete comment and resolve report": "Hozzászólás törlése és a jelentés megoldása", + "Delete comments": "Hozzászólások törlése", + "Delete conversation": "Beszélgetés törlése", + "Delete discussion": "Megbeszélés törlése", + "Delete event": "Esemény törlése", + "Delete event and resolve report": "Esemény törlése és a jelentés megoldása", + "Delete events": "Események törlése", + "Delete everything": "Minden törlése", + "Delete feed tokens": "Hírforrástokenek törlése", + "Delete group": "Csoport törlése", + "Delete group discussions": "Csoport témáinak törlése", + "Delete group posts": "Csoport bejegyzéseinek törlése", + "Delete group resources": "Csoport erőforrásainak törlése", + "Delete my account": "Saját fiók törlése", + "Delete post": "Bejegyzés törlése", + "Delete profiles": "Profilok törlése", + "Delete this conversation": "Beszélgetés törlése", + "Delete this discussion": "A megbeszélés törlése", + "Delete this identity": "A személyazonosság törlése", + "Delete your identity": "Az Ön személyazonosságának törlése", + "Delete {eventTitle}": "{eventTitle} törlése", + "Delete {preferredUsername}": "{preferredUsername} törlése", + "Deleting comment": "Hozzászólás törlése", + "Deleting event": "Esemény törlése", + "Deleting my account will delete all of my identities.": "A saját fiókom törlése törölni fogja az összes személyazonosságomat is.", + "Deleting your Mobilizon account": "A saját Mobilizon-fiókjának törlése", + "Demote": "Lefokozás", + "Describe your event": "Írja le az eseményt", + "Description": "Leírás", + "Details": "Részletek", + "Device activation": "Eszköz aktiválása", + "Didn't receive the instructions?": "Nem kapta meg az utasításokat?", + "Disabled": "Letiltva", + "Discussions": "Megbeszélések", + "Discussions list": "Megbeszélések listája", + "Display name": "Név megjelenítése", + "Display participation price": "Részvételi díj megjelenítése", + "Displayed nickname": "Megjelenített becenév", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "A honlapon és a meta címkékben van megjelenítve. Leírja egyetlen bekezdésben, hogy mi a Mobilizon, és mi teszi ezt a példányt különlegessé.", + "Distance": "Távolság", + "Do not receive any mail": "Ne fogadjon egyetlen levelet sem", + "Do you really want to suspend the account « {emailAccount} » ?": "Biztos, hogy felfüggeszti a következő fiókot: »{emailAccount}«?", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Biztos, hogy felfüggeszti ezt a fiókot? A felhasználó összes profilja törölve lesz.", + "Do you really want to suspend this profile? All of the profiles content will be deleted.": "Biztos, hogy felfüggeszti a profilt? A profil összes tartalma törlésre kerül.", + "Do you wish to {create_event} or {explore_events}?": "Szeretne {create_event} vagy {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Szeretne {create_group} vagy {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "Az eseményt később meg kell erősíteni, vagy elmarad?", + "Domain": "Tartomány", + "Domain or instance name": "Domain vagy példány neve", + "Draft": "Piszkozat", + "Drafts": "Piszkozatok", + "Due on": "Határidő", + "Duplicate": "Kettőzés", + "Edit": "Szerkesztés", + "Edit post": "Bejegyzés szerkesztése", + "Edit profile {profile}": "A(z) {profile} profil szerkesztése", + "Edit user email": "Felhasználó e-mail-címének megváltoztatása", + "Edited {ago}": "Szerkesztve {ago}", + "Edited {relative_time} ago": "Szerkesztve ennyi ideje: {relative_time}", + "Eg: Stockholm, Dance, Chess…": "Például: Budapest, Tánc, Sakk…", + "Either on the {instance} instance or on another instance.": "Vagy a(z) {instance} példányon, vagy egy másik példányon.", + "Either the account is already validated, either the validation token is incorrect.": "A fiók már ellenőrizve lett vagy az ellenőrző token helytelen.", + "Either the email has already been changed, either the validation token is incorrect.": "Az e-mail-cím már meg lett változtatva vagy az ellenőrző token helytelen.", + "Either the participation request has already been validated, either the validation token is incorrect.": "A részvételi kérés már ellenőrizve lett vagy az ellenőrző token helytelen.", + "Either your participation has already been cancelled, either the validation token is incorrect.": "A részvétele már le lett mondva, vagy az érvényesítési token érvénytelen.", + "Element title": "Elem címe", + "Element value": "Elem értéke", + "Email": "E-mail", + "Email address": "E-mail-cím", + "Email validate": "E-mail érvényesítése", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "Az e-mail-címek általában nem tartalmaznak nagybetűt. Győződjön meg arról, hogy nem írta-e el.", + "Enabled": "Engedélyezve", + "Ends on…": "Befejeződik…", + "Enter the code displayed on your device": "Adja meg az eszközén megjelenített kódot", + "Enter the link URL": "Adja meg a hivatkozás webcímét", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Adja meg lent az e-mail-címét, és elküldjük e-mailben az utasításokat, hogy hogyan változtathatja meg a jelszavát.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Adja meg a saját adatvédelmi irányelveit. A HTML címkék engedélyezettek. A {mobilizon_privacy_policy} meg van adva sablonként.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Adja meg a saját használati feltételeit. A HTML címkék engedélyezettek. A {mobilizon_terms} meg van adva sablonként.", + "Error": "Hiba", + "Error details copied!": "Hibarészletek másolva!", + "Error message": "Hibaüzenet", + "Error stacktrace": "Hiba veremkiíratása", + "Error while adding tag: {error}": "Hiba a címke hozzáadása során: {error}", + "Error while cancelling your participation": "Hiba a részvétele lemondása során", + "Error while changing email": "Hiba az e-mail megváltoztatásakor", + "Error while loading the preview": "Hiba az előnézet betöltésekor", + "Error while login with {provider}. Retry or login another way.": "Hiba a(z) {provider} használatával történő bejelentkezés közben. Próbálja újra vagy jelentkezzen be más módon.", + "Error while login with {provider}. This login provider doesn't exist.": "Hiba a(z) {provider} használatával történő bejelentkezés közben. Ez a bejelentkezés-szolgáltató nem létezik.", + "Error while reporting group {groupTitle}": "Hiba a(z) {groupTitle} csoport jelentése közben", + "Error while subscribing to push notifications": "Hiba a leküldéses értesítésekre történő feliratkozáskor", + "Error while suspending group": "Hiba a csoport felfüggesztésekor", + "Error while updating participation status inside this browser": "Hiba a részvétel állapotának frissítésekor ezen böngészőn belül", + "Error while validating account": "Hiba a fiók ellenőrzésekor", + "Error while validating participation request": "Hiba a részvételi kérés ellenőrzésekor", + "Etherpad notes": "Etherpad jegyzetek", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Etikus alternatíva a Facebook eseményekre, csoportokra és oldalakra. A Mobilizon egy olyan eszköz, amelyet úgy terveztek, hogy Önt szolgálja. És pont.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "A facebookos események, csoportok és oldalak etikus alternatívája, a Mobilizon egy olyan {tool_designed_to_serve_you}. Pont.", + "Event": "Esemény", + "Event URL": "Esemény webcíme", + "Event already passed": "Az esemény már elmúlt", + "Event cancelled": "Esemény törölve", + "Event creation": "Eseménylétrehozás", + "Event date": "Esemény dátuma", + "Event deleted": "Esemény törölve", + "Event deleted and report resolved": "Esemény törölve, jelentés megoldva", + "Event description body": "Esemény leírásának törzse", + "Event edition": "Eseményszerkesztés", + "Event list": "Eseménylista", + "Event metadata": "Esemény metaadatai", + "Event page settings": "Eseményoldal beállításai", + "Event status": "Esemény állapota", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Az esemény időzónája alapértelmezetten az esemény címének időzónája lesz, ha van ilyen, vagy a saját időzóna-beállítása.", + "Event to be confirmed": "Megerősítendő esemény", + "Event {eventTitle} deleted": "A(z) {eventTitle} esemény törölve", + "Event {eventTitle} reported": "A(z) {eventTitle} esemény jelentve", + "Events": "Események", + "Events close to you": "Önhöz közeli események", + "Events nearby": "Közeli események", + "Events nearby {position}": "Események {position} közelében", + "Events tagged with {tag}": "{tag} címkével megjelölt események", + "Everything": "Minden", + "Ex: mobilizon.fr": "Például: mobilizon.fr", + "Ex: someone@mobilizon.org": "Például: valaki@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "Például: valaki{'@'}mobilizon.org", + "Explore": "Felfedezés", + "Explore events": "Események felfedezése", + "Explore!": "Felfedezés!", + "Export": "Exportálás", + "External provider URL": "Külső szolgáltató webcíme", + "External registration": "Külső regisztráció", + "Failed to get location.": "A hely lekérése sikertelen.", + "Failed to save admin settings": "Nem sikerült elmenteni az adminisztrátori beállításokat", + "Favicon": "Favikon", + "Featured events": "Kiemelt események", + "Federated Group Name": "Föderált csoportnév", + "Federation": "Föderáció", + "Fediverse account": "Födiverzum-fiók", + "Fetch more": "Több lekérése", + "Filter": "Szűrő", + "Filter by name": "Szűrés név szerint", + "Filter by profile or group name": "Szűrés profil vagy csoport neve szerint", + "Find an address": "Cím keresése", + "Find an instance": "Példány keresése", + "Find another instance": "Másik példány keresése", + "Find or add an element": "Elem keresése vagy hozzáadása", + "First steps": "Első lépések", + "Follow": "Követés", + "Follow a new instance": "Új példány követése", + "Follow instance": "Példány követése", + "Follow request pending approval": "A követési kérés elfogadásra vár", + "Follow requests will be approved by a group moderator": "A követési kéréseket egy csoportmoderátor fogja elfogadni", + "Follow status": "Követés állapota", + "Followed": "Követett", + "Followed, pending response": "Követett, válaszra vár", + "Follower": "Követő", + "Followers": "Követők", + "Followers will receive new public events and posts.": "A követők új nyilvános eseményeket és bejegyzéseket fognak kapni.", + "Following": "Követve", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "A csoport követése lehetővé teszi, hogy tájékozódjon a {group_upcoming_public_events}, mivel a csoporthoz való csatlakozás azt jelenti, hogy {access_to_group_private_content_as_well}, beleértve a csoport megbeszéléseit, a csoport erőforrásait és a csak tagoknak szóló bejegyzéseket.", + "Followings": "Követések", + "Follows us": "Követ minket", + "Follows us, pending approval": "Követ minket, elfogadásra vár", + "For instance: London": "Például: Budapest", + "For instance: London, Taekwondo, Architecture…": "Például: Budapest, Taekwondo, Építészet…", + "Forgot your password ?": "Elfelejtette a jelszavát?", + "Forgot your password?": "Elfelejtette a jelszavát?", + "Framadate poll": "Framadate szavazás", + "From my groups": "Saját csoportjaimtól", + "From the {startDate} at {startTime} to the {endDate}": "{startDate} {startTime} és {endDate} között", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "{startDate} {startTime} és {endDate} {endTime} között", + "From the {startDate} to the {endDate}": "{startDate} és {endDate} között", + "From this instance only": "Csak erről a példányról", + "From yourself": "Öntől származó", + "Fully accessible with a wheelchair": "Teljesen megközelíthető kerekesszékkel", + "Gather ⋅ Organize ⋅ Mobilize": "Összejövetel ⋅ Szervezés ⋅ Mozgósítás", + "General": "Általános", + "General information": "Általános információk", + "General settings": "Általános beállítások", + "Geolocate me": "Saját hely megtalálása", + "Geolocation was not determined in time.": "A földrajzi helymeghatározás nem lett időben meghatározva.", + "Get informed of the upcoming public events": "Tájékozódjon a közelgő nyilvános eseményekről", + "Getting location": "Hely lekérése", + "Getting there": "Megközelítés", + "Glossary": "Szójegyzék", + "Go": "Ugrás", + "Go to booking": "Ugrás a foglaláshoz", + "Go to the event page": "Ugrás az esemény oldalára", + "Go!": "Gyerünk!", + "Google Meet": "Google Meet", + "Group": "Csoport", + "Group Followers": "Követők csoportosítása", + "Group Members": "Csoporttagok", + "Group URL": "Csoport webcíme", + "Group activity": "Csoporttevékenység", + "Group address": "Csoport címe", + "Group description body": "Csoport leírásának törzse", + "Group display name": "Csoport megjelenített neve", + "Group members": "Csoporttagok", + "Group name": "Csoport neve", + "Group profiles": "Csoportprofilok", + "Group settings": "Csoport beállításai", + "Group settings saved": "A csoport beállításai elmentve", + "Group short description": "Csoport rövid leírása", + "Group visibility": "Csoport láthatósága", + "Group {displayName} created": "A(z) {displayName} csoport létrehozva", + "Group {groupTitle} reported": "A(z) {groupTitle} csoport jelentve", + "Groups": "Csoportok", + "Groups are not enabled on this instance.": "A csoportok nincsenek engedélyezve ezen a példányon.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "A csoportok a koordináció és a felkészülés terei az események jobb szervezéséhez és a közösség kezeléséhez.", + "Heading Level 1": "1. szintű címsor", + "Heading Level 2": "2. szintű címsor", + "Heading Level 3": "3. szintű címsor", + "Headline picture": "Főcím képe", + "Hide filters": "Szűrők elrejtése", + "Hide replies": "Válaszok elrejtése", + "Home": "Kezdőlap", + "Home to {number} users": "{number} felhasználónak ad otthont,", + "Homepage": "Honlap", + "Hourly email summary": "Óránkénti e-mailes összegzés", + "I agree to the {instanceRules} and {termsOfService}": "Elfogadom a {instanceRules} és a {termsOfService}", + "I create an identity": "Személyazonosságot hozok létre", + "I don't have a Mobilizon account": "Nincs Mobilizon-fiókom", + "I have a Mobilizon account": "Van Mobilizon-fiókom", + "I have an account on another Mobilizon instance.": "Van fiókom egy másik Mobilizon példányon.", + "I have an account on {instance}.": "Van fiókom ezen: {instance}.", + "I participate": "Részt veszek", + "I want to allow people to participate without an account.": "Lehetővé szeretném tenni az embereknek, hogy fiók nélkül vegyenek részt.", + "I want to approve every participation request": "Jóvá szeretnék hagyni minden részvételi kérést", + "I want to manage the registration with an external provider": "A regisztrációja külső szolgáltatón keresztüli kezelése", + "I've been mentionned in a comment under an event": "Megemlítettek egy hozzászólásban egy esemény alatt", + "I've been mentionned in a conversation": "Megemlítették egy beszélgetésben", + "I've been mentionned in a group discussion": "Megemlítettek egy csoportos megbeszélésben", + "I've clicked on X, then on Y": "Az X-re kattintottam, majd az Y-ra", + "ICS feed for events": "ICS hírforrás az eseményekhez", + "ICS/WebCal Feed": "ICS/WebCal hírforrás", + "IP Address": "IP-cím", + "Identities": "Személyazonosságok", + "Identity {displayName} created": "A(z) {displayName} személyazonosság létrehozva", + "Identity {displayName} deleted": "A(z) {displayName} személyazonosság törölve", + "Identity {displayName} updated": "A(z) {displayName} személyazonosság frissítve", + "If allowed by organizer": "Ha a szervező engedélyezi", + "If an account with this email exists, we just sent another confirmation email to {email}": "Ha létezik fiók ezzel az e-mail-címmel, akkor elküldtünk egy másik megerősítő e-mailt erre a címre: {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Ha ez a személyazonosság az egyetlen adminisztrátora néhány csoportnak, akkor törölnie kell azokat, mielőtt képes lenne törölni ezt a személyazonosságot.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Ha a föderált személyazonosságáról kérdezik, akkor az a felhasználónevéből és a példányából tevődik össze. Például az első profiljának föderált személyazonossága:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Ha a résztvevők kézi ellenőrzését választotta, akkor a Mobilizon küldeni fog Önnek egy e-mailt, hogy tájékoztassa Önt a feldolgozandó új részvételekről. Alább kiválaszthatja ezen értesítések gyakoriságát.", + "If you want, you may send a message to the event organizer here.": "Ha szeretné, itt küldhet üzenetet az esemény szervezőjének.", + "Ignore": "Mellőzés", + "Illustration picture for “{category}” by {author} on {source} ({license})": "{author} illusztrációs képe a(z) „{category}” kategóriához innen: {source} ({license})", + "In person": "Személyesen", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "A következő környezetben az alkalmazás egy, az Ön példányával történő interakcióra használt szoftver, amelyet vagy a Mobilizon csapat, vagy egy harmadik fél biztosít.", + "In the past": "A múltban", + "In this instance's network": "A példány hálózatában", + "Increase": "Növelés", + "Instance": "Példány", + "Instance Long Description": "Példány hosszú leírása", + "Instance Name": "Példány neve", + "Instance Privacy Policy": "Példány adatvédelmi irányelve", + "Instance Privacy Policy Source": "Példány adatvédelmi irányelvének forrása", + "Instance Privacy Policy URL": "Példány adatvédelmi irányelvének webcíme", + "Instance Rules": "Példány szabályai", + "Instance Short Description": "Példány rövid leírása", + "Instance Slogan": "Példány szlogenje", + "Instance Terms": "Példány használati feltételei", + "Instance Terms Source": "Példány használati feltételeinek forrása", + "Instance Terms URL": "Példány használati feltételeinek webcíme", + "Instance administrator": "Példány adminisztrátora", + "Instance configuration": "Példány beállítása", + "Instance feeds": "Példány hírforrásai", + "Instance languages": "Példány nyelvei", + "Instance rules": "Példány szabályai", + "Instance settings": "Példány beállításai", + "Instances": "Példányok", + "Instances following you": "Az Önt követő példányok", + "Instances you follow": "Az Ön által követett példányok", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Az esemény integrálása harmadik féltől származó eszközökkel, és az esemény metaadatainak megjelenítése.", + "Interact": "Interakció", + "Interact with a remote content": "Interakció egy távoli tartalommal", + "Invite a new member": "Új tag meghívása", + "Invite member": "Tag meghívása", + "Invited": "Meghívva", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Lehetséges, hogy a tartalom nem érhető el ezen a példányon, mert ez a példány letiltotta a tartalom mögötti profilokat vagy csoportokat.", + "Italic": "Dőlt", + "Jitsi Meet": "Jitsi Meet", + "Join": "Csatlakozás", + "Join {instance}, a Mobilizon instance": "Csatlakozás a(z) {instance} példányhoz, egy Mobilizon-példányhoz", + "Join group": "Csatlakozás a csoporthoz", + "Join group {group}": "Csatlakozás a(z) {group} csoporthoz", + "Join {instance}, a Mobilizon instance": "Csatlakozás a(z) {instance} Mobilizon-példányhoz", + "Keep the entire conversation about a specific topic together on a single page.": "Tartsa egy adott témával kapcsolatos teljes beszélgetést egyben egyetlen oldalon.", + "Key words": "Kulcsszavak", + "Keyword, event title, group name, etc.": "Kulcsszó, eseménycím, csoportnév, stb.", + "Language": "Nyelv", + "Languages": "Nyelvek", + "Last IP adress": "Utolsó IP-cím", + "Last group created": "Utolsó csoport létrehozva", + "Last published event": "Legutóbb közzétett esemény", + "Last published events": "Legutóbb közzétett események", + "Last seen on": "Legutóbb látva:", + "Last sign-in": "Utolsó bejelentkezés", + "Last used on {last_used_date}": "Legutóbb használva: {last_used_date}", + "Last week": "Múlt hét", + "Latest posts": "Legutóbbi bejegyzések", + "Learn more": "Tudjon meg többet", + "Learn more about Mobilizon": "Tudjon meg többet a Mobilizonról", + "Learn more about {instance}": "Tudjon meg többet a(z) {instance} példányról", + "Least recently published": "Legrégebben közzétéve", + "Leave": "Kilépés", + "Leave event": "Esemény elhagyása", + "Leave group": "Csoport elhagyása", + "Leaving event \"{title}\"": "A(z) „{title}” esemény elhagyása", + "Legal": "Jogi feltételek", + "Let's define a few settings": "Adjon meg néhány beállítást", + "License": "Licenc", + "Light": "Világos", + "Limited number of places": "A helyek száma korlátozott", + "List": "Lista", + "List of conversations": "Beszélgetések listája", + "List title": "Lista címe", + "Live": "Élő", + "Load more": "Több betöltése", + "Load more activities": "Több tevékenység betöltése", + "Loading comments…": "Hozzászólások betöltése…", + "Loading map": "Térkép betöltése", + "Local": "Helyi", + "Local time ({timezone})": "Helyi idő ({timezone})", + "Local times ({timezone})": "Helyik idők ({timezone})", + "Locality": "Hely", + "Location": "Hely", + "Log in": "Bejelentkezés", + "Log out": "Kijelentkezés", + "Login": "Bejelentkezés", + "Login on Mobilizon!": "Bejelentkezés a Mobilizonra!", + "Login on {instance}": "Bejelentkezés a(z) {instance} példányra", + "Login status": "Bejelentkezési állapot", + "Logo": "Logó", + "Logo of the instance. Defaults to the upstream Mobilizon logo.": "A példány logója. Alapértelmezés szerint a Mobilizon logó.", + "Main languages you/your moderators speak": "Fő nyelvek, amelyeken Ön vagy a moderátorai beszélnek", + "Make sure that all words are spelled correctly.": "Győződjön meg róla, hogy minden szót helyesen írt le.", + "Manage activity settings": "Tevékenységbeállítások kezelése", + "Manage event participations": "Eseményrészvételek kezelése", + "Manage group members": "Csoport tagjainak kezelése", + "Manage group memberships": "Csoporttagságok kezelése", + "Manage participations": "Részvételek kezelése", + "Manage push notification settings": "Leküldéses értesítések beállításainak kezelése", + "Manually approve new followers": "Új követők kézi jóváhagyása", + "Manually enter address": "Cím kézi megadása", + "Manually invite new members": "Új tagok meghívása kézzel", + "Map": "Térkép", + "Mark as resolved": "Megjelölés megoldottként", + "Maybe the content was removed by the author or a moderator": "Lehet, hogy a tartalmat a szerző vagy egy moderátor eltávolította", + "Member": "Tag", + "Members": "Tagok", + "Members will also access private sections like discussions, resources and restricted posts.": "A tagok hozzáférnek a privát szakaszokhoz is, mint a témák, az erőforrások és a korlátozott bejegyzések.", + "Members-only post": "Csak tagoknak szóló bejegyzés", + "Membership requests will be approved by a group moderator": "A tagsági kéréseket egy csoportmoderátor fogja elfogadni", + "Memberships": "Tagságok", + "Mentions": "Említések", + "Message": "Üzenet", + "Message body": "Üzenettörzs", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "A Mobilizon egy föderált hálózat. Interakcióba léphet ezzel az eseménnyel egy eltérő kiszolgálóról is.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "A Mobilizon egy föderált szoftver, ami azt jelenti, hogy az adminisztrátor föderációs beállításaitól függően interakcióba léphet más példányokról származó tartalommal, vagyis csatlakozhat olyan csoportokhoz vagy eseményekhez, amelyeket máshol hoztak létre.", + "Mobilizon is a tool that helps you find, create and organise events.": "A Mobilizon egy olyan eszköz, amely segít Önnek eseményeket keresni, létrehozni és szervezni.", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "A Mobilizon egy olyan eszköz, amely segít Önnek {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "A Mobilizon nem egy hatalmas platform, hanem kölcsönösen összekapcsolt Mobilizon weboldalak sokasága.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "A Mobilizon nem egy hatalmas platform, hanem {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "Mobilizon szoftver", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "A Mobilizon profilok rendszerét használja a tevékenységei beosztásához. Annyi profilt tud létrehozni, amennyit csak szeretne.", + "Mobilizon version": "Mobilizon verziója", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "A Mobilizon egy e-mail fog küldeni Önnek, ha fontos változtatások történnek azoknál az eseményeknél, amelyeken részt vesz: dátum és idő, cím, megerősítés vagy törlés stb.", + "Moderate new members": "Új tagok moderálása", + "Moderated comments (shown after approval)": "Moderált hozzászólások (jóváhagyás után megjelenítve)", + "Moderation": "Moderálás", + "Moderation log": "Moderálási napló", + "Moderation logs": "Moderálási naplók", + "Moderator": "Moderátor", + "Modify all of your account's data": "Az összes fiókadatának módosítása", + "More options": "További lehetőségek", + "Most recently published": "Legújabban közzétéve", + "Move": "Áthelyezés", + "Move \"{resourceName}\"": "„{resourceName}” áthelyezése", + "Move resource to the root folder": "Erőforrás áthelyezése a gyökérmappába", + "Move resource to {folder}": "Erőforrás áthelyezése ide: {folder}", + "My account": "Saját fiók", + "My events": "Saját események", + "My federated identity ends in {domain}": "A föderált személyazonosságom így végződik: {domain}", + "My groups": "Saját csoportok", + "My identities": "Saját személyazonosságok", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "MEGJEGYZÉS! Az alapértelmezett használati feltételek nem lettek jogász által ellenőrizve, és ennélfogva nem valószínű, hogy minden helyzetben teljes jogi védelmet biztosít az azt használó példány adminisztrátorának. Továbbá nem tér ki az összes országra és igazságszolgáltatásra. Ha nem biztos a dolgában, akkor ellenőriztesse egy jogásszal.", + "Name": "Név", + "Navigated to {pageTitle}": "Navigálva ide: {pageTitle}", + "Never used": "Sosem volt használva", + "New announcement": "Új közlemény", + "New discussion": "Új megbeszélés", + "New email": "Új e-mail", + "New folder": "Új mappa", + "New link": "Új hivatkozás", + "New members": "Új tagok", + "New note": "Új jegyzet", + "New password": "Új jelszó", + "New post": "Új bejegyzés", + "New private message": "Új privát üzenet", + "New profile": "Új profil", + "Next": "Következő", + "Next month": "Következő hónap", + "Next page": "Következő oldal", + "Next week": "Következő hét", + "No activities found": "Nem található tevékenység", + "No address defined": "Nincs cím megadva", + "No apps authorized yet": "Még nincsenek alkalmazások engedélyezve", + "No categories with public upcoming events on this instance were found.": "Nem találhatók olyan kategóriák, melyhez nyilvános közelgő események tartoznának.", + "No closed reports yet": "Még nincsenek lezárt jelentések", + "No comment": "Nincs hozzászólás", + "No comments yet": "Még nincsenek hozzászólások", + "No content found": "Nem található tartalom", + "No discussions yet": "Még nincsenek megbeszélések", + "No end date": "Nincs befejezési dátum", + "No event found at this address": "Nem található esemény ezen a címen", + "No events found": "Nem található esemény", + "No events found for {search}": "Nem találhatók események ehhez: {search}", + "No follower matches the filters": "Nincs a szűrőknek megfelelő követő", + "No group found": "Nem található csoport", + "No group matches the filters": "Nincs a szűrőknek megfelelő csoport", + "No group member found": "Nem találhatók csoporttagok", + "No groups found": "Nem található csoport", + "No groups found for {search}": "Nem találhatók csoportok ehhez: {search}", + "No information": "Nincs információ", + "No instance follows your instance yet.": "Még egyetlen példány sem követi az Ön példányát.", + "No instance found.": "Nem található példány.", + "No instance to approve|Approve instance|Approve {number} instances": "Nincs jóváhagyandó példány|Példány jóváhagyása|{number} példány jóváhagyása", + "No instance to reject|Reject instance|Reject {number} instances": "Nincs visszautasítandó példány|Példány visszautasítása|{number} példány visszautasítása", + "No instance to remove|Remove instance|Remove {number} instances": "Nincsenek eltávolítandó példányok|Példány eltávolítása|{number} példány eltávolítása", + "No instances match this filter. Try resetting filter fields?": "Nincs a szűrőnek megfelelő példány. Megpróbálja alaphelyzetbe állítani a szűrőmezőket?", + "No languages found": "Nem találhatók nyelvek", + "No member matches the filters": "Nincs a szűrőknek megfelelő tag", + "No members found": "Nem találhatók tagok", + "No memberships found": "Nem találhatók tagságok", + "No message": "Nincs üzenet", + "No moderation logs yet": "Még nincsenek moderálási naplók", + "No more activity to display.": "Nincs több megjelenítendő tevékenység.", + "No one is participating|One person participating|{going} people participating": "Senki sem vesz részt|Egy személy vesz részt|{going} személy vesz részt", + "No open reports yet": "Még nincsenek nyitott jelentések", + "No organized events found": "Nem találhatók megszervezett események", + "No organized events listed": "Nincsenek megszervezett események felsorolva", + "No participant matches the filters": "Nincs a szűrőknek megfelelő résztvevő", + "No participant to approve|Approve participant|Approve {number} participants": "Nincs jóváhagyandó résztvevő|Résztvevő jóváhagyása|{number} résztvevő jóváhagyása", + "No participant to reject|Reject participant|Reject {number} participants": "Nincs visszautasítandó résztvevő|Résztvevő visszautasítása|{number} résztvevő visszautasítása", + "No participations listed": "Nincsenek részvételek felsorolva", + "No posts found": "Nem találhatók bejegyzések", + "No posts yet": "Még nincsenek bejegyzések", + "No profile matches the filters": "Nincs a szűrőknek megfelelő profil", + "No public upcoming events": "Nincsenek nyilvános közelgő események", + "No resolved reports yet": "Még nincsenek megoldott jelentések", + "No resources in this folder": "Nincsenek erőforrások ebben a mappában", + "No resources selected": "Nincsenek erőforrások kijelölve|Egy erőforrás kijelölve|{count} erőforrás kijelölve", + "No resources yet": "Még nincsenek erőforrások", + "No results for \"{queryText}\"": "Nincs találat a(z) „{queryText}” kifejezésre", + "No results for {search}": "Nincs találat a(z) {search} kifejezésre", + "No results found": "Nincs találat", + "No results found for {search}": "Nincs találat erre: {search}", + "No rules defined yet.": "Még nincsenek szabályok meghatározva.", + "No user matches the filter": "Nincs a szűrőnek megfelelő felhasználó", + "No user matches the filters": "Nincs a szűrőnek megfelelő felhasználó", + "None": "Nincs", + "Not accessible with a wheelchair": "Nem közelíthető meg kerekesszékkel", + "Not approved": "Nincs jóváhagyva", + "Not confirmed": "Nincs megerősítve", + "Notes": "Jegyzetek", + "Notification before the event": "Értesítés az esemény előtt", + "Notification on the day of the event": "Értesítés az esemény napján", + "Notification settings": "Értesítési beállítások", + "Notifications": "Értesítések", + "Notifications for manually approved participations to an event": "Értesítések egy esemény kézzel jóváhagyott részvételeinél", + "Notify participants": "Résztvevők értesítése", + "Notify the user of the change": "Felhasználó értesítése a változásról", + "Now, create your first profile:": "Most hozza létre az első profilját:", + "Number of members": "Tagok száma", + "Number of places": "Helyek száma", + "OK": "Rendben", + "Old password": "Régi jelszó", + "On foot": "Gyalog", + "On the Fediverse": "A Födiverzumban", + "On {date}": "Ekkor: {date}", + "On {date} ending at {endTime}": "{date} {endTime}-kor fejeződik be", + "On {date} from {startTime} to {endTime}": "{date} {startTime} és {endTime} között", + "On {date} starting at {startTime}": "{date} {startTime}-kor kezdődik", + "On {instance} and other federated instances": "A(z) {instance} példányon és egyéb föderált példányokon", + "Online": "Elérhető", + "Online events": "Online események", + "Online ticketing": "Internetes jegyértékesítés", + "Online upcoming events": "Közelgő online események", + "Only Mobilizon instances can be followed": "Csak a Mobilizon példányok követhetők", + "Only accessible through link": "Csak hivatkozáson keresztül érhető el", + "Only accessible through link (private)": "Csak hivatkozáson keresztül érhető el (magánjellegű)", + "Only accessible to members of the group": "Csak a csoport tagjainak érhető el", + "Only alphanumeric lowercased characters and underscores are supported.": "Csak kis betűk, számok és aláhúzások támogatottak.", + "Only group members can access discussions": "Csak csoporttagok férhetnek hozzá a megbeszélésekhez", + "Only group moderators can create, edit and delete events.": "Csak a csoport moderátorai hozhatnak létre, szerkeszthetnek és törölhetnek eseményeket.", + "Only group moderators can create, edit and delete posts.": "Csak a csoport moderátorai hozhatnak létre, szerkeszthetnek és törölhetnek bejegyzéseket.", + "Only instances with an application actor can be followed": "Csak az alkalmazásszereplővel rendelkező példányok követhetőek", + "Only registered users may fetch remote events from their URL.": "Csak regisztrált felhasználók kérhetik le a távoli eseményeket a webcímükről.", + "Open": "Megnyitás", + "Open a topic on our forum": "Téma nyitása a fórumunkon", + "Open an issue on our bug tracker (advanced users)": "Jegy nyitása a hibakövetőnkben (haladó felhasználóknak)", + "Open conversations": "Beszélgetések megnyitása", + "Open main menu": "Főmenü megnyitása", + "Open user menu": "Felhasználói menü megnyitása", + "Opened reports": "Nyitott jelentések", + "Or": "Vagy", + "Ordered list": "Rendezett lista", + "Organized": "Megszervezve", + "Organized by": "Szervező", + "Organized by {name}": "{name} szervezte", + "Organized events": "Szervezett események", + "Organizer": "Szervező", + "Organizer notifications": "Szervezői értesítések", + "Organizers": "Szervezők", + "Other": "Egyéb", + "Other actions": "Egyéb műveletek", + "Other notification options:": "Egyéb értesítési lehetőségek:", + "Other software may also support this.": "Más szoftverek is támogathatják ezt.", + "Other users with the same IP address": "Más felhasználók ugyanezzel az IP-címmel", + "Other users with the same email domain": "Más felhasználók ugyanezzel az e-mail-domainnel", + "Otherwise this identity will just be removed from the group administrators.": "Egyébként ez a személyazonosság el lesz távolítva a csoport adminisztrátoraiból.", + "Owncast": "Owncast", + "Page": "Oldal", + "Page limited to my group (asks for auth)": "Az oldal korlátozva van a saját csoportomra (hitelesítést kér)", + "Page not found": "Az oldal nem található", + "Parent folder": "Szülőmappa", + "Partially accessible with a wheelchair": "Részlegesen közelíthető meg kerekesszékkel", + "Participant": "Résztvevő", + "Participants": "Résztvevők", + "Participants to {eventTitle}": "A(z) {eventTitle} résztvevői", + "Participate": "Részvétel", + "Participate using your email address": "Részvétel az e-mail-címe használatával", + "Participation approval": "Részvétel jóváhagyása", + "Participation confirmation": "Részvétel megerősítése", + "Participation notifications": "Részvételi értesítések", + "Participation requested!": "Részvétel kérve!", + "Participation with account": "Részvétel fiókkal", + "Participation without account": "Részvétel fiók nélkül", + "Participations": "Részvételek", + "Password": "Jelszó", + "Password (confirmation)": "Jelszó (megerősítés)", + "Password reset": "Jelszó visszaállítása", + "Past events": "Elmúlt események", + "PeerTube live": "PeerTube élő", + "PeerTube replay": "PeerTube ismétlés", + "Pending": "Függőben", + "Personal feeds": "Személyes hírforrások", + "Photo by {author} on {source}": "{author} fényképe innen: {source}", + "Pick": "Választás", + "Pick a profile or a group": "Válasszon profilt vagy csoportot", + "Pick an identity": "Válasszon személyazonosságot", + "Pick an instance": "Válasszon példányt", + "Please add as many details as possible to help identify the problem.": "Adja meg a lehető legtöbb részletet, hogy segítsen a probléma azonosításában.", + "Please check your spam folder if you didn't receive the email.": "Nézze meg a levélszemét mappát, ha nem kapta meg az e-mailt.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Vegye fel a kapcsolatot a példány Mobilizon adminisztrátorával, ha úgy gondolja, hogy ez hiba.", + "Please do not use it in any real way.": "Ne használja semmilyen valódi módon.", + "Please enter your password to confirm this action.": "Adja meg a jelszavát a művelet megerősítéséhez.", + "Please make sure the address is correct and that the page hasn't been moved.": "Győződjön meg arról, hogy a cím helyes és hogy az oldalt nem helyezték át.", + "Please read the {fullRules} published by {instance}'s administrators.": "Olvassa el a(z) {instance} adminisztrátorai által közzétett {fullRules}.", + "Popular groups close to you": "Önhöz közeli népszerű csoportok", + "Popular groups nearby {position}": "Népszerű csoportok {position} közelében", + "Post": "Bejegyzés", + "Post URL": "Bejegyzés webcíme", + "Post a comment": "Hozzászólás beküldése", + "Post a reply": "Válasz beküldése", + "Post body": "Bejegyzés törzse", + "Post comments": "Hozzászólások közzététele", + "Post {eventTitle} reported": "A(z) {eventTitle} bejegyzés jelentve", + "Postal Code": "Irányítószám", + "Posts": "Bejegyzések", + "Powered by Mobilizon": "A gépházban: Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "A gépházban: {mobilizon}. © 2018 - {date} A Mobilizon közreműködői – {contributors} pénzügyi támogatásával készült.", + "Preferences": "Beállítások", + "Previous": "Előző", + "Previous email": "Előző e-mail", + "Previous month": "Előző hónap", + "Previous page": "Előző oldal", + "Price sheet": "Árlista", + "Primary Color": "Elsődleges szín", + "Privacy": "Adatvédelem", + "Privacy Policy": "Adatvédelmi irányelv", + "Privacy policy": "Adatvédelmi irányelv", + "Private event": "Magánjellegű esemény", + "Private feeds": "Magánjellegű hírforrások", + "Profile": "Profil", + "Profile feeds": "Profil hírforrások", + "Profile suspended and report resolved": "Profil felfüggesztve, jelentés megoldva", + "Profiles": "Profilok", + "Profiles and federation": "Profilok és föderáció", + "Promote": "Előléptetés", + "Public": "Nyilvános", + "Public RSS/Atom Feed": "Nyilvános RSS/Atom hírforrás", + "Public comment moderation": "Nyilvános hozzászólás moderálása", + "Public event": "Nyilvános esemény", + "Public feeds": "Nyilvános hírforrások", + "Public iCal Feed": "Nyilvános iCal hírforrás", + "Public preview": "Nyilvános előnézet", + "Publication date": "Közzététel dátuma", + "Publish": "Közzététel", + "Publish events": "Események közzététele", + "Publish group posts": "Csoport bejegyzéseinek közzététele", + "Published by {name}": "Közzétette: {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Közzétett események {comments} hozzászólással és {participations} megerősített részvétellel", + "Published events with {comments} comments and {participations} confirmed participations": "Események közzétéve {comments} hozzászólással és {participations} megerősített résztvevővel", + "Push": "Leküldés", + "Quote": "Idézet", + "RSS/Atom Feed": "RSS/Atom hírforrás", + "Radius": "Sugár", + "Read all of your account's data": "Az összes fiókadatának olvasása", + "Read user activity settings": "Felhasználói tevékenységbeállítások olvasása", + "Read user media": "Felhasználói média olvasása", + "Read user memberships": "Felhasználó tagságainak olvasása", + "Read user participations": "Felhasználó részvételeinek olvasása", + "Read user settings": "Felhasználói beállítások olvasása", + "Recap every week": "Rövid összegzés minden héten", + "Receive one email for each activity": "Egy e-mail fogadása minden tevékenységnél", + "Receive one email per request": "Egy levél fogadása kérésenként", + "Redirecting in progress…": "Átirányítás folyamatban…", + "Redirecting to Mobilizon": "Átirányítás az Mobilizonra", + "Redirecting to content…": "Átirányítás a tartalomhoz…", + "Redo": "Ismétlés", + "Refresh profile": "Profil frissítése", + "Regenerate new links": "Új hivatkozások ismételt előállítása", + "Region": "Régió", + "Register": "Regisztráció", + "Register an account on {instanceName}!": "Regisztráljon egy fiókot a(z) {instanceName} páldányon!", + "Register on this instance": "Regisztrálás ezen a példányon", + "Registration is allowed, anyone can register.": "A regisztráció engedélyezve van, bárki regisztrálhat.", + "Registration is closed.": "A regisztráció le van zárva.", + "Registration is currently closed.": "A regisztráció jelenleg le van zárva.", + "Registrations": "Regisztrációk", + "Registrations are restricted by allowlisting.": "A regisztrációkat az engedélyezési lista korlátozza.", + "Reject": "Visszautasítás", + "Reject follow": "Követés visszautasítása", + "Reject member": "Tag visszautasítása", + "Rejected": "Visszautasítva", + "Remember my participation in this browser": "Emlékezzen a részvételemre ebben a böngészőben", + "Remove": "Eltávolítás", + "Remove link": "Hivatkozás eltávolítása", + "Remove uploaded media": "Feltöltött média törlése", + "Rename": "Átnevezés", + "Rename resource": "Erőforrás átnevezése", + "Reopen": "Újranyitás", + "Replay": "Ismétlés", + "Reply": "Válasz", + "Report": "Jelentés", + "Report #{reportNumber}": "#{reportNumber} jelentés", + "Report as ham": "Jelentés hasznosként", + "Report as spam": "Jelentés kéretlen tartalomként", + "Report as undetected spam": "Jelentés nem észlelt kéretlen tartalomként", + "Report reason": "Jelentés oka", + "Report status": "Állapotjelentés", + "Report this comment": "Hozzászólás jelentése", + "Report this event": "Esemény jelentése", + "Report this group": "A csoport jelentése", + "Report this post": "A bejegyzés jelentése", + "Reported": "Bejelentve", + "Reported at": "Jelentve:", + "Reported by": "Bejelentő", + "Reported by an unknown actor": "Ismeretlen szereplő által jelentve", + "Reported by someone anonymously": "Valaki névtelenül jelentette", + "Reported by someone on {domain}": "Valaki jelentette a(z) {domain} tartományon", + "Reported by {reporter}": "{reporter} jelentette", + "Reported content": "Tartalom jelentve", + "Reported group": "Csoport jelentve", + "Reported identity": "Bejelentett személyazonosság", + "Reports": "Jelentések", + "Reports list": "Jelentések listája", + "Request for participation confirmation sent": "A részvétel megerősítésének kérése elküldve", + "Resend confirmation email": "Megerősítő e-mail újraküldése", + "Resent confirmation email": "Megerősítő e-mail újraküldve", + "Reset": "Visszaállítás", + "Reset filters": "Szűrők alaphelyzetbe állítása", + "Reset my password": "Saját jelszó visszaállítása", + "Reset password": "Jelszó visszaállítása", + "Resolved": "Megoldva", + "Resource provided is not an URL": "A megadott erőforrás nem webcím", + "Resources": "Erőforrások", + "Restricted": "Korlátozott", + "Return to the event page": "Visszatérés az esemény oldalára", + "Return to the group page": "Visszatérés a csoport oldalára", + "Revoke": "Visszavonás", + "Right now": "Épp most", + "Role": "Szerep", + "Rules": "Szabályok", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "Az SSL és utódja, a TLS, titkosítási technológiák a szolgáltatás használatakor történő adatkommunikációk biztonságossá tételéhez. Arról ismerhet fel egy titkosított kapcsolatot a böngészője címsorában, hogy a webcím {https} kezdetű, és lakat ikon jelenik meg a böngészője címsávjában.", + "SSL/TLS": "SSL/TLS", + "Save": "Mentés", + "Save draft": "Piszkozat mentése", + "Schedule": "Ütemterv", + "Search": "Keresés", + "Search events, groups, etc.": "Események, csoportok stb. keresése", + "Search target": "Cél keresése", + "Searching…": "Keresés…", + "Secondary Color": "Másodlagos szín", + "Select a category": "Válasszon egy kategóriát", + "Select a language": "Nyelv kiválasztása", + "Select a radius": "Sugár kiválasztása", + "Select a timezone": "Válasszon egy időzónát", + "Select all resources": "Összes erőforrás kiválasztása", + "Select distance": "Távolság kiválasztása", + "Select languages": "Nyelvek kiválasztása", + "Select the activities for which you wish to receive an email or a push notification.": "Válassza ki azokat a tevékenységeket, amelyekhez e-mailt vagy leküldéses értesítést szeretne kapni.", + "Select this resource": "Ezen erőforrás kiválasztása", + "Send": "Küldés", + "Send email": "E-mail küldése", + "Send feedback": "Visszajelzés küldése", + "Send notification e-mails": "Értesítési e-mailek küldése", + "Send password reset": "Jelszó-visszaállítás küldése", + "Send the confirmation email again": "A megerősítő e-mail újraküldése", + "Send the report": "A jelentés küldése", + "Sent to {count} participants": "Egyetlen résztvevőnek sem lett elküldve|Egy résztvevőnek elküldve|{count} részvevőnek elküldve", + "Set an URL to a page with your own privacy policy.": "Állítsa be a webcímet a saját adatvédelmi irányelveit tartalmazó oldalra.", + "Set an URL to a page with your own terms.": "Állítsa be a webcímet a saját felhasználási feltételeit tartalmazó oldalra.", + "Settings": "Beállítások", + "Share": "Megosztás", + "Share this event": "Az esemény megosztása", + "Share this group": "A csoport megosztása", + "Share this post": "A bejegyzés megosztása", + "Short bio": "Rövid bemutatkozás", + "Show filters": "Szűrők megjelenítése", + "Show map": "Térkép megjelenítése", + "Show me where I am": "Mutassa meg, hogy hol vagyok", + "Show remaining number of places": "Fennmaradó helyek számának megjelenítése", + "Show the time when the event begins": "Az idő megjelenítése, amikor az esemény kezdődik", + "Show the time when the event ends": "Az idő megjelenítése, amikor az esemény befejeződik", + "Showing events before": "Az ez előtti események megjelenítése", + "Showing events starting on": "A következő időpontban kezdődő események megjelenítése", + "Sign Language": "Jelnyelv", + "Sign in with": "Bejelentkezés ezzel", + "Sign up": "Regisztráció", + "Since you are a new member, private content can take a few minutes to appear.": "Mivel Ön új tag, a magánjellegű tartalomnak kell pár perc, hogy megjelenjen.", + "Skip to main content": "Ugrás a fő tartalomhoz", + "Smoke free": "Tilos a dohányzás", + "Smoking allowed": "A dohányzás megengedett", + "Social": "Közösségi", + "Software details: {software_details}": "Szoftver részletei: {software_details}", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Az alábbi szövegben használt egyes műszaki vagy egyéb kifejezések nehezen megfogható fogalmakra terjedhetnek ki. Biztosítottunk itt egy szószedetet, hogy segítsen jobban megérteni azokat:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Sajnos nem tudtuk menteni a visszajelzését. Ne aggódjon, így is megpróbáljuk javítani a problémát.", + "Sort by": "Rendezés:", + "Starts on…": "Ekkor kezdődik…", + "Status": "Állapot", + "Statuses": "Állapotok", + "Stop following instance": "Példány követésének leállítása", + "Street": "Utca", + "Submit": "Elküldés", + "Submit to Akismet": "Beküldés az Akismetnek", + "Subtitles": "Feliratok", + "Suggestions:": "Javaslatok:", + "Suspend": "Felfüggesztés", + "Suspend group": "Csoport felfüggesztése", + "Suspend the account": "Fiók felfüggesztése", + "Suspend the account?": "Felfüggeszti a fiókot?", + "Suspend the profile": "Profil felfüggesztése", + "Suspend the profile?": "Felfüggeszti a profilt?", + "Suspended": "Felfüggesztve", + "Tag search": "Címke keresése", + "Task lists": "Feladatlisták", + "Technical details": "Műszaki részletek", + "Tentative": "Feltételes", + "Tentative: Will be confirmed later": "Feltételes: később lesz megerősítve", + "Terms": "Használati feltételek", + "Terms of service": "Szolgáltatás feltételei", + "Text": "Szöveg", + "Thanks a lot, your feedback was submitted!": "Köszönjük, beküldte a visszajelzést!", + "That you follow or of which you are a member": "Amelyet Ön követ, vagy amelynek Ön tagja", + "The Big Blue Button video teleconference URL": "A Big Blue Button videókonferencia webcíme", + "The Google Meet video teleconference URL": "A Google Meet videókonferencia webcíme", + "The Jitsi Meet video teleconference URL": "A Jitsi Meet videókonferencia webcíme", + "The Microsoft Teams video teleconference URL": "A Microsoft Teams videókonferencia webcíme", + "The URL of a pad where notes are being taken collaboratively": "A jegyzettömb webcíme, ahol a jegyzeteket közösen készítik el", + "The URL of a poll where the choice for the event date is happening": "Egy szavazás webcíme, ahol az esemény dátumának kiválasztása történik", + "The URL where the event can be watched live": "A webcím, ahol az esemény élőben nézhető", + "The URL where the event live can be watched again after it has ended": "A webcím, ahol az élő esemény újra megnézhető, miután befejeződött", + "The Zoom video teleconference URL": "A Zoom videókonferencia webcíme", + "The account's email address was changed. Check your emails to verify it.": "A fiók e-mail-címe megváltozott. Nézze meg az e-mailjeit az ellenőrzéséhez.", + "The actual number of participants may differ, as this event is hosted on another instance.": "A résztvevők tényleges száma eltérhet, mivel ez az esemény egy másik példányon van kiszolgálva.", + "The calc will be created on {service}": "A táblázat itt lesz létrehozva: {service}", + "The content came from another server. Transfer an anonymous copy of the report?": "A tartalom egy másik kiszolgálóról érkezik. Átviszi a jelentés egy névtelen másolatát?", + "The device code is incorrect or no longer valid.": "Az eszköz kódja érvénytelen, vagy már nem érvényes.", + "The draft event has been updated": "A piszkozatesemény frissítve lett", + "The event has a sign language interpreter": "Az eseménynek van jelnyelvi tolmácsa", + "The event has been created as a draft": "Az esemény létre lett hozva piszkozatként", + "The event has been published": "Az esemény közzé lett téve", + "The event has been updated": "A esemény frissítve lett", + "The event has been updated and published": "Az esemény frissítve lett és közzé lett téve", + "The event hasn't got a sign language interpreter": "Az eseménynek nincs jelnyelvi tolmácsa", + "The event is fully online": "Az esemény teljesen internetes", + "The event live video contains subtitles": "Az esemény élő videója tartalmaz feliratokat", + "The event live video does not contain subtitles": "Az esemény élő videója nem tartalmaz feliratokat", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Az esemény szerevezője a részvételek kézzel történő ellenőrzését választotta. Szeretne hozzáadni egy kis jegyzetet annak magyarázatára, hogy miért szeretne részt venni ezen az eseményen?", + "The event organizer didn't add any description.": "Az esemény szervezője nem adott hozzá semmilyen leírást.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Az esemény szervezője kézzel hagyja jóvá a részvételeket. Mivel azt választotta, hogy fiók nélkül vesz részt, magyarázza el, hogy miért szeretne részt venni ezen az eseményen.", + "The event title will be ellipsed.": "Az esemény címe hármasponttal lesz megjelenítve.", + "The event will show as attributed to this group.": "Az esemény ennek a csoportnak tulajdonítva lesz megjelenítve.", + "The event will show as attributed to this profile.": "Az esemény ennek a profilnak tulajdonítva lesz megjelenítve.", + "The event will show as attributed to your personal profile.": "Az esemény az Ön személyes profiljának tulajdonítva lesz megjelenítve.", + "The event {event} was created by {profile}.": "A(z) {event} eseményt {profile} hozta létre.", + "The event {event} was deleted by {profile}.": "A(z) {event} eseményt {profile} törölte.", + "The event {event} was updated by {profile}.": "A(z) {event} eseményt {profile} frissítette.", + "The events you created are not shown here.": "A létrehozott események nincsenek megjelenítve itt.", + "The following participants are groups, which means group members are able to reply to this conversation:": "A következő résztvevők csoportok, ez azt jelenti, hogy a csoport tagja fognak tudni válaszolni erre a beszélgetésre:", + "The following user's profiles will be deleted, with all their data:": "A következő felhasználó profilja törölve lesz, az összes adatával együtt:", + "The geolocation prompt was denied.": "A földrajzi helymeghatározási kérés elutasításra került.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "A csoporthoz mostantól bárki csatlakozhat, de az új tagokat jóvá kell hagynia egy adminisztrátornak.", + "The group can now be joined by anyone.": "A csoporthoz mostantól bárki csatlakozhat.", + "The group can now only be joined with an invite.": "A csoporthoz mostantól csak meghívással lehet csatlakozni.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "A csoport nyilvánosan fel lesz sorolva a keresési eredményekben, és ajánlva is lehet a felfedezés szakaszban. Csak nyilvános információk lesznek megjelenítve az oldalán.", + "The group's avatar was changed.": "A csoport profilképe megváltozott.", + "The group's banner was changed.": "A csoport reklámcsíkja megváltozott.", + "The group's physical address was changed.": "A csoport fizikai címe megváltozott.", + "The group's short description was changed.": "A csoport rövid leírása megváltozott.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "A példány adminisztrátora az a személy vagy jogi személy, aki ezt a Mobilizon példányt futtatja.", + "The member was approved": "A tag jóvá lett hagyva", + "The member was removed from the group {group}": "A tag el lett távolítva ebből a csoportból: {group}", + "The membership request from {profile} was rejected": "{profile} tagsági kérése vissza lett utasítva", + "The only way for your group to get new members is if an admininistrator invites them.": "Az egyetlen mód a csoportja számára, hogy új tagokat szerezzen, ha egy adminisztrátor meghívja őket.", + "The organiser has chosen to close comments.": "A szervező azt választotta, hogy lezárja a hozzászólásokat.", + "The pad will be created on {service}": "A szöveges dokumentum itt lesz létrehozva: {service}", + "The page you're looking for doesn't exist.": "A keresett oldal nem létezik.", + "The password was successfully changed": "A jelszó sikeresen meg lett változtatva", + "The post {post} was created by {profile}.": "A(z) {post} bejegyzést {profile} hozta létre.", + "The post {post} was deleted by {profile}.": "A(z) {post} bejegyzést {profile} törölte.", + "The post {post} was updated by {profile}.": "A(z) {post} bejegyzést {profile} frissítette.", + "The provided application was not found.": "A megadott alkalmazás nem található.", + "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.": "A jelentés tartalma (az esetleges hozzászólások és az esemény), valamint a jelentett profil részletei el lesznek küldve az Akismetnek.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "A jelentés el lesz küldve a példánya moderátorainak. Elmagyarázhatja alább, hogy miért jelenti ezt a tartalmat.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "A kiválasztott kép túl nagy. Egy {size} méretűnél kisebb fájlt kell kiválasztania.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "A hiba műszaki részletei segítenek a fejlesztőknek, hogy könnyebben megoldják a problémát. Adja hozzá a visszajelzéséhez.", + "The user has been disabled": "A felhasználót letiltották", + "The videoconference will be created on {service}": "A videókonferencia itt lesz létrehozva: {service}", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Az {default_privacy_policy} lesz használva. Ez le lesz fordítva a felhasználó nyelvére.", + "The {default_terms} will be used. They will be translated in the user's language.": "Az {default_terms} lesznek használva. Le lesz fordítva a felhasználó nyelvére.", + "Theme": "Téma", + "There are {participants} participants.": "{participants} résztvevő van.", + "There is no activity yet. Start doing some things to see activity appear here.": "Még nincs tevékenység. Kezdjen el valamit csinálni, hogy lássa az itt megjelenő tevékenységet.", + "There will be no way to recover your data.": "Nem lesz mód az adatai visszaállítására.", + "There will be no way to restore the profile's data!": "Nem fogja tudni helyreállítani a profil adatait!", + "There will be no way to restore the user's data!": "Nem fogja tudni helyreállítani a felhasználó adatait!", + "There's no announcements yet": "Még nincsenek közlemények", + "There's no conversations yet": "Még nincsenek beszélgetések", + "There's no discussions yet": "Még nincsenek megbeszélések", + "These apps can access your account through the API. If you see here apps that you don't recognize, that don't work as expected or that you don't use anymore, you can revoke their access.": "Ezek az alkalmazások érhetik el a fiókját az API-n keresztül. Ha olyan alkalmazásokat lát, melyeket nem ismer fel, nem az elvárt módon működik vagy már nem használja, akkor megvonhatja a hozzáférésüket.", + "These events may interest you": "Ez az események érdekelhetik Önt", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Ezek a hírforrások eseményadatokat tartalmaznak azon eseményekhez, amelyeknél a profiljai bármelyike résztvevő vagy létrehozó. Ezeket bizalmasan kell tartania. Adott profilokhoz találhat hírforrásokat az egyes profilszerkesztő oldalakon.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Ezek a hírforrások eseményadatokat tartalmaznak azon eseményekhez, amelyeknél ez a bizonyos profil résztvevő vagy létrehozó. Ezeket bizalmasan kell tartania. Az összes profiljához találhat hírforrásokat az értesítési beállításaiban.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Ez a Mobilizon példány és ez az eseményszervező megengedi a névtelen részvételeket, de ellenőrzés szükséges e-mailen keresztüli megerősítéssel.", + "This URL doesn't seem to be valid": "Ez a webcím nem tűnik érvényesnek", + "This URL is not supported": "Ez a webcím nem támogatott", + "This announcement will be send to all participants with the statuses selected below. They will not be allowed to reply to your announcement, but they can create a new conversation with you.": "Ez a közlemény el lesz küldve az összes, alábbiakban kiválasztott állapotú résztvevőnek. Nem fognak tudni válaszolni a közleményre, de új beszélgetést indíthatnak Önnel.", + "This application asks for the following permissions:": "Az alkalmazás a következő jogosultságokat kéri:", + "This application didn't ask for known permissions. It's likely the request is incorrect.": "Az alkalmazás nem kért ismert jogosultságokat. Valószínűleg a kérés helytelen.", + "This application will be able to access all of your informations and post content. Make sure you only approve applications you trust.": "Az alkalmazás eléri az összes információját és bejegyzését. Csak azokat az alkalmazásokat engedélyezze, melyekben megbízik.", + "This application will be allowed to access all of the groups you're a member of": "Az alkalmazás jogosult lesz a összes csoportjának elérésére", + "This application will be allowed to access group activities in all of the groups you're a member of": "Az alkalmazás jogosult lesz a csoport tevékenységeinek elérésére az összes csoportjában", + "This application will be allowed to access your user activity settings": "Az alkalmazás jogosult lesz a felhasználói tevékenységbeállításai elérésére", + "This application will be allowed to access your user settings": "Az alkalmazás jogosult lesz a felhasználói beállításai elérésére", + "This application will be allowed to create feed tokens": "Az alkalmazás jogosult lesz a hírforrástokenek létrehozására", + "This application will be allowed to create group discussions": "Az alkalmazás jogosult lesz a témák létrehozására a csoportjaiban", + "This application will be allowed to create new profiles for your account": "Az alkalmazás jogosult lesz új profilok létrehozására a fiókjához", + "This application will be allowed to create resources in all of the groups you're a member of": "Az alkalmazás jogosult lesz az erőforrások létrehozására az összes csoportjában", + "This application will be allowed to delete comments": "Az alkalmazás jogosult lesz a bejegyzések törlésére", + "This application will be allowed to delete events": "Az alkalmazás jogosult lesz az események törlésére", + "This application will be allowed to delete feed tokens": "Az alkalmazás jogosult lesz a hírforrástokenek törlésére", + "This application will be allowed to delete group discussions": "Az alkalmazás jogosult lesz a témák törlésére a csoportjaiban", + "This application will be allowed to delete group posts": "Az alkalmazás jogosult lesz a csoport bejegyzéseinek törlésére", + "This application will be allowed to delete resources in all of the groups you're a member of": "Az alkalmazás jogosult lesz az erőforrások törlésére az összes csoportjában", + "This application will be allowed to delete your profiles": "Az alkalmazás jogosult lesz a profiljai törlésére", + "This application will be allowed to join and leave groups": "Az alkalmazás jogosult lesz a csoportokhoz való csatlakozásra és azokból való kilépésre", + "This application will be allowed to list and access group discussions in all of the groups you're a member of": "Az alkalmazás jogosult lesz a csoport témáinak felsorolására és elérésére az összes csoportjában", + "This application will be allowed to list and access group events in all of the groups you're a member of": "Az alkalmazás jogosult lesz a csoport eseményeinek felsorolására és elérésére az összes csoportjában", + "This application will be allowed to list and access group todo-lists in all of the groups you're a member of": "Az alkalmazás jogosult lesz a csoport teendőlistáinak felsorolására és elérésére az összes csoportjában", + "This application will be allowed to list and view the events you're participating to": "Az alkalmazás jogosult lesz azoknak az eseményeknek a felsorolására és megtekintésére, melyeken részt vesz", + "This application will be allowed to list and view the groups you're a member of": "Az alkalmazás jogosult lesz azoknak a csoportoknak a felsorolására és megtekintésére, melyeknek a tagja", + "This application will be allowed to list and view the groups you're following": "Az alkalmazás jogosult lesz azoknak a csoportoknak a felsorolására és megtekintésére, melyeket követ", + "This application will be allowed to list and view your draft events": "Az alkalmazás jogosult lesz az eseményvázlatai felsorolására és megtekintésére", + "This application will be allowed to list and view your organized events": "Az alkalmazás jogosult lesz a szervezett eseményei felsorolására és megtekintésére", + "This application will be allowed to list group followers in all of the groups you're a member of": "Az alkalmazás jogosult lesz a csoport követőinek felsorolására az összes csoportjában", + "This application will be allowed to list group members in all of the groups you're a member of": "Az alkalmazás jogosult lesz a csoport tagjainak felsorolására az összes csoportjában", + "This application will be allowed to list the media you've uploaded": "Az alkalmazás jogosult lesz a feltöltött médiafájlok felsorolására", + "This application will be allowed to list your suggested group events": "Az alkalmazás jogosult lesz a javasolt csoportesemények felsorolására", + "This application will be allowed to manage events participations": "Az alkalmazás jogosult lesz az eseményrészvételei kezelésére", + "This application will be allowed to manage group members in all of the groups you're a member of": "Az alkalmazás jogosult lesz a csoport tagjainak kezelésére az összes csoportjában", + "This application will be allowed to manage your account activity settings": "Az alkalmazás jogosult lesz az tevékenységbeállításai kezelésére", + "This application will be allowed to manage your account push notification settings": "Az alkalmazás jogosult lesz az leküldéses értesítések beállításainak kezelésére", + "This application will be allowed to post comments": "Az alkalmazás jogosult lesz a bejegyzések létrehozására", + "This application will be allowed to publish and manage events, post and manage comments, participate to events, manage all of your groups, including group events, resources, posts and discussions. It will also be allowed to manage your account and profile settings.": "Az alkalmazás jogosult lesz arra, hogy kezelje és közzé tegyen eseményeket, hozzászólásokat tegyen közzé és kezeljen, részt vegyen az eseményeken, valamint kezelje az összes csoportját, erőforrását, bejegyzését és témáját. Továbbá kezelheti a fiókját és a profilbeállításait is.", + "This application will be allowed to publish events": "Az alkalmazás jogosult lesz az események közzétételére", + "This application will be allowed to publish events, participate to events": "Az alkalmazás jogosult lesz az események közzétételére, és az azokon való részvétel kezelésére", + "This application will be allowed to publish group posts": "Az alkalmazás jogosult lesz csoport bejegyzéseinek közzétételére", + "This application will be allowed to remove uploaded media": "Az alkalmazás jogosult lesz a feltöltött médiatartalmak törlésére", + "This application will be allowed to see all of your events organized, the events you participate to, as well as every data from your groups.": "Az alkalmazás jogosult lesz arra, hogy látssa az összes szervezett eseményét, az összes eseményt, melyen részt vesz, valamint a csoportjaiban lévő összes adatát.", + "This application will be allowed to see all of your events organized, the events you participate to, …": "Az alkalmazás megtekintheti azokat az eseményeket, amelyeket Ön szervez, vagy részt vesz rajtuk…", + "This application will be allowed to update comments": "Az alkalmazás jogosult lesz a bejegyzések frissítésére", + "This application will be allowed to update events": "Az alkalmazás jogosult lesz az események frissítésére", + "This application will be allowed to update group discussions": "Az alkalmazás jogosult lesz a témák frissítésére a csoportjaiban", + "This application will be allowed to update group posts": "Az alkalmazás jogosult lesz a csoport bejegyzéseinek frissítésére", + "This application will be allowed to update resources in all of the groups you're a member of": "Az alkalmazás jogosult lesz az erőforrások frissítésére az összes csoportjában", + "This application will be allowed to update your profiles": "Az alkalmazás jogosult lesz a fiókja profiljainak frissítésére", + "This application will be allowed to upload media": "Az alkalmazás jogosult lesz a médiatartalmak feltöltésére", + "This event has been cancelled.": "Ezt az eseményt törölték.", + "This event is accessible only through it's link. Be careful where you post this link.": "Ez az esemény csak a hivatkozásán keresztül érhető el. Legyen óvatos, hogy hova küldi be ezt a hivatkozást.", + "This group doesn't have a description yet.": "Ennek a csoportnak még nincs leírása.", + "This group is a remote group, it's possible the original instance has more informations.": "Ez egy távoli csoport, lehetséges, hogy az eredeti példányon több információ található.", + "This group is accessible only through it's link. Be careful where you post this link.": "Ez a csoport csak a hivatkozásán keresztül érhető el. Legyen óvatos, hogy hova küldi be ezt a hivatkozást.", + "This group is invite-only": "Ez a csoport csak meghívás alapú", + "This group was not found": "Ez a csoport nem található", + "This identifier is unique to your profile. It allows others to find you.": "Ez az azonosító egyedi az Ön profiljához. Lehetővé teszi másoknak, hogy megtalálják Önt.", + "This information is saved only on your computer. Click for details": "Ez az információ csak az Ön számítógépén van elmentve. Kattintson a részletekért", + "This instance doesn't follow yours.": "Ez a példány nem követi az Önét.", + "This instance hasn't got push notifications enabled.": "Ennél a példánynál nem lettek engedélyezve a leküldéses értesítések.", + "This instance isn't opened to registrations, but you can register on other instances.": "Ez a példány nincs megnyitva a regisztrációkhoz, de regisztrálhat más példányokon.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Ez a példány, a(z) {instanceName} ({domain}) tárolja az Ön profilját, szóval ne felejtse el a nevét.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Ez a példány, a(z) {instanceName}, szolgálja ki a profilját, így jegyezze meg a nevét.", + "This is a announcement from the organizers of event {event}. You can't reply to it, but you can send a private message to event organizers.": "Ez a(z) {event} esemény szervezőinek közleménye. Nem válaszolhat rá, de küldhet privát üzenetet az eseményszervezőknek.", + "This is a demonstration site to test Mobilizon.": "Ez egy bemutató oldal a Mobilizon kipróbálásához.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Ez olyan mint az Ön föderált felhasználóneve ({username}) a csoportoknál. Lehetővé teszi, hogy a csoport megtalálható legyen a föderációban, és garantálja az egyediséget.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Ez olyan, mintha a föderált felhasználóneve ({username}) lenne a csoportokhoz. Lehetővé teszi, hogy megtalálják a föderációban, és garantáltan egyedi.", + "This month": "Ez a hónap", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Ez a bejegyzés csak tagok számára érhető el. Ön csak moderálási célokkal fért hozzá, mert Ön a példány egy moderátora.", + "This post is accessible only through it's link. Be careful where you post this link.": "Ez a bejegyzés csak a hivatkozásán keresztül érhető el. Legyen óvatos, hogy hova küldi be ezt a hivatkozást.", + "This profile is from another instance, the informations shown here may be incomplete.": "Ez a profil egy másik példányról van, az itt megjelenített információk hiányosak lehetnek.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Ez a profil ezen a példányon található, így el kell {access_the_corresponding_account}, hogy felfüggessze azt.", + "This profile was not found": "Ez a profil nem található", + "This setting will be used to display the website and send you emails in the correct language.": "Ez a beállítás lesz használva a weboldal megfelelő nyelven való megjelenítéséhez és az e-mailek megfelelő nyelve történő küldéséhez.", + "This user doesn't have any profiles": "Ennek a felhasználónak nincsenek profilja", + "This user was not found": "Ez a felhasználó nem található", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Ez a weboldal nincs moderálva, és a beírt adatok automatikusan meg lesznek semmisítve minden nap 00:01-kor (Párizs időzóna).", + "This week": "Ezen a héten", + "This weekend": "Ezen a hétvégén", + "This will also resolve the report.": "Ez meg is oldja a jelentést.", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Ez törölni vagy névteleníteni fogja az ezzel a személyazonossággal létrehozott összes tartalmat (eseményeket, hozzászólásokat, üzeneteket, részvételeket…).", + "Time in your timezone ({timezone})": "Az idő az Ön időzónájában ({timezone})", + "Times in your timezone ({timezone})": "Az idők az Ön időzónájában ({timezone})", + "Timezone": "Időzóna", + "Timezone detected as {timezone}.": "Időzóna felismerve mint {timezone}.", + "Title": "Cím", + "To activate more notifications, head over to the notification settings.": "Több értesítés bekapcsolásához menjen az értesítési beállításokra.", + "To confirm, type your event title \"{eventTitle}\"": "A megerősítéshez gépelje be az esemény nevét: „{eventTitle}”", + "To confirm, type your identity username \"{preferredUsername}\"": "A megerősítéshez gépelje be a személyazonossága felhasználónevét: „{preferredUsername}”", + "To create and manage multiples identities from a same account": "Több személyazonosság létrehozásához és kezeléséhez ugyanabból a fiókból", + "To create and manage your events": "Az eseményei létrehozásához és kezeléséhez", + "To create or join an group and start organizing with other people": "Egy csoport létrehozásához vagy ahhoz csatlakozáshoz, valamint más emberekkel való szervezés elkezdéséhez", + "To follow groups and be informed of their latest events": "Csoportok követéséhez és hogy tájékoztatva legyen a legújabb eseményeikről", + "To register for an event by choosing one of your identities": "Egy eseményre történő regisztrációhoz a személyazonosságai egyikének választásával", + "Today": "Ma", + "Tomorrow": "Holnap", + "Tools": "Eszközök", + "Total number of participations": "A résztvevők összlétszáma", + "Transfer to {outsideDomain}": "Átvitel ide: {outsideDomain}", + "Triggered profile refreshment": "Aktivált profilfrissítés", + "Try different keywords.": "Próbálkozzon más kulcsszavakkal.", + "Try fewer keywords.": "Próbálkozzon kevesebb kulcsszóval.", + "Try more general keywords.": "Próbálkozzon általánosabb kulcsszavakkal.", + "Twitch live": "Twitch élő", + "Twitch replay": "Twitch ismétlés", + "Twitter account": "Twitter-fiók", + "Type": "Típus", + "Type or select a date…": "Gépeljen be vagy válasszon egy dátumot…", + "URL": "Webcím", + "URL copied to clipboard": "Webcím a vágólapra másolva", + "Unable to copy to clipboard": "Nem lehet a vágólapra másolni", + "Unable to create the group. One of the pictures may be too heavy.": "Nem lehet létrehozni a csoportot. A képek egyike esetleg túl nagy.", + "Unable to create the profile. The avatar picture may be too heavy.": "Nem lehet létrehozni a profilt. A profilkép esetleg túl nagy.", + "Unable to detect timezone.": "Nem sikerült felismerni az időzónát.", + "Unable to load event for participation. The error details are provided below:": "Nem lehet betölteni az eseményt a részvételhez. A hiba részletei lent olvashatók:", + "Unable to save your participation in this browser.": "Nem lehet elmenteni a részvételét ebben a böngészőben.", + "Unable to update the profile. The avatar picture may be too heavy.": "Nem lehet frissíteni a profilt. A profilkép esetleg túl nagy.", + "Underline": "Aláhúzott", + "Undo": "Visszavonás", + "Unfollow": "Követés megszüntetése", + "Unfortunately, your participation request was rejected by the organizers.": "Sajnálatos módon a részvételi kérést visszautasították a szervezők.", + "Unknown": "Ismeretlen", + "Unknown actor": "Ismeretlen szereplő", + "Unknown error.": "Ismeretlen hiba.", + "Unknown value for the openness setting.": "Ismeretlen érték a nyitottság beállításnál.", + "Unlogged participation": "Bejelentkezés nélküli részvétel", + "Unsaved changes": "Mentetlen változtatások", + "Unsubscribe to browser push notifications": "Leiratkozás a böngésző leküldéses értesítéseiről", + "Unsuspend": "Felfüggesztés visszavonása", + "Upcoming": "Közelgő", + "Upcoming events": "Közelgő események", + "Upcoming events from your groups": "Közelgő események a csoportjaitól", + "Update": "Frissítés", + "Update app": "Alkalmazás frissítése", + "Update comments": "Hozzászólások frissítése", + "Update discussion title": "Megbeszélés címének frissítése", + "Update event {name}": "A(z) {name} esemény frissítése", + "Update events": "Események frissítése", + "Update group": "Csoport frissítése", + "Update group discussions": "Csoport témáinak frissítése", + "Update group posts": "Csoport bejegyzéseinek frissítése", + "Update group resources": "Csoport erőforrásainak frissítése", + "Update my event": "Saját esemény frissítése", + "Update post": "Bejegyzés frissítése", + "Update profiles": "Profilok frissítése", + "Updated": "Frissítve", + "Updated at": "Frissítve:", + "Upload media": "Média feltöltése", + "Uploaded media size": "Feltöltött média mérete", + "Uploaded media total size": "Feltöltött média összmérete", + "Use my location": "Saját hely használata", + "User": "Felhasználó", + "User settings": "Felhasználói beállítások", + "User suspended and report resolved": "Felhasználó felfüggesztve, jelentés megoldva", + "Username": "Felhasználónév", + "Users": "Felhasználók", + "Validating account": "Fiók ellenőrzése", + "Validating email": "E-mail ellenőrzése", + "Video Conference": "Videokonferencia", + "View a reply": "Nulla válasz megtekintése|Egy válasz megtekintése|{totalReplies} válasz megtekintése", + "View account on {hostname} (in a new window)": "Fiók megtekintése a(z) {hostname} gépen (új ablakban)", + "View all": "Összes megtekintése", + "View all categories": "Összes kategória megtekintése", + "View all events": "Összes esemény megtekintése", + "View all posts": "Összes bejegyzés megtekintése", + "View event page": "Eseményoldal megtekintése", + "View everything": "Minden megtekintése", + "View full profile": "Teljes profil megtekintése", + "View less": "Kevesebb megtekintése", + "View more": "Továbbiak megtekintése", + "View more events": "További események megtekintése", + "View more events around {position}": "További események megtekintése {position} közelében", + "View more groups around {position}": "További csoportok megtekintése {position} közelében", + "View more online events": "További online események megtekintése", + "View page on {hostname} (in a new window)": "Oldal megtekintése a(z) {hostname} gépen (új ablakban)", + "View past events": "Múltbeli események megtekintése", + "View the group profile on the original instance": "A csoport profiljának megtekintése az eredeti példányon", + "Visibility was set to an unknown value.": "A láthatóság egy ismeretlen értékre lett állítva.", + "Visibility was set to private.": "A láthatóság magánjellegűre lett állítva.", + "Visibility was set to public.": "A láthatóság nyilvánosra lett állítva.", + "Visible everywhere on the web": "Látható bárhol a világhálón", + "Visible everywhere on the web (public)": "Mindenhol látható a világhálón (nyilvános)", + "Visit {instance_domain}": "A(z) {instance_domain} felkeresése", + "Waiting for organization team approval.": "Várakozás a szervezői csapat jóváhagyására.", + "Warning": "Figyelmeztetés", + "We collect your feedback and the error information in order to improve this service.": "Összegyűjtjük a visszajelzését és a hibainformációkat, hogy fejlesszünk a szolgáltatáson.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Nem sikerült elmentenünk a részvételét ezen böngészőn belül. Ne aggódjon, sikeresen megerősítette a részvételét, csak egyszerűen nem tudtuk elmenteni az állapotát ebben a böngészőben egy műszaki probléma miatt.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "A visszajelzésének köszönhetően javítunk a szoftveren. Két lehetősége van, hogy tudassa velünk a problémát (sajnos mind a kettőhöz fiók létrehozása szükséges):", + "We just sent an email to {email}": "Most küldtünk egy e-mailt erre a címre: {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Az időzónáját használjuk annak biztosításához, hogy a megfelelő időben kapja meg egy esemény értesítéseit.", + "We will redirect you to your instance in order to interact with this event": "Át fogjuk irányítani a saját példányára az eseménnyel való interakció érdekében", + "We will redirect you to your instance in order to interact with this group": "Át fogjuk irányítani a saját példányára a csoporttal való interakció érdekében", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Egy e-mailt fogunk küldeni Önnek az esemény kezdete előtt egy órával, hogy biztosan ne felejtse el azt.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Az Ön időzóna-beállításait fogjuk használni az esemény reggeli rövid összegzésének küldéséhez.", + "Website": "Weboldal", + "Website / URL": "Weboldal vagy webcím", + "Weekly email summary": "Heti e-mailes összegzés", + "Welcome back {username}!": "Üdvözöljük, {username}!", + "Welcome back!": "Üdvözöljük!", + "Welcome to Mobilizon, {username}!": "Üdvözli a Mobilizon, {username}!", + "What can I do to help?": "Mit tehetek, hogy segítsek?", + "What happened?": "Mi történt?", + "Wheelchair accessibility": "Kerekesszékkel való megközelíthetőség", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Ha a csoportból egy moderátor létrehoz egy eseményt és a csoportnak tulajdonítja azt, akkor az itt fog megjelenni.", + "When the event is private, you'll need to share the link around.": "Ha az esemény magánjellegű, akkor meg kell osztania a hivatkozást a többiekkel.", + "When the post is private, you'll need to share the link around.": "Ha a bejegyzés magánjellegű, akkor meg kell osztania a hivatkozást a többiekkel.", + "Whether smoking is prohibited during the event": "Az eseményen tilos-e a dohányzás", + "Whether the event is accessible with a wheelchair": "Az esemény megközelíthető-e kerekesszékkel", + "Whether the event is interpreted in sign language": "Az eseményt tolmácsolják-e jelnyelven", + "Whether the event live video is subtitled": "Az esemény élő videója feliratozva van-e", + "Who can post a comment?": "Ki küldhet be hozzászólást?", + "Who can view this event and participate": "Ki láthatja ezt az eseményt és ki vehet részt", + "Who can view this post": "Ki láthatja ezt a bejegyzést", + "Who published {number} events": "akik {number} eseményt", + "Why create an account?": "Miért hozzon létre fiókot?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Lehetővé fogja tenni a részvételi állapotának megjelenítést és kezelését az esemény oldalán, ha ezt az eszközt használja. Törölje a bejelölést, ha nyilvános eszközt használ.", + "With the most participants": "Legtöbb résztvevő", + "With unknown participants": "Ismeretlen résztvevőkkel", + "With {participants}": "Velük: {participants}", + "Within {number} kilometers of {place}": "|{place} egy kilométeres körzetén belül|{place} {number} kilométeres körzetén belül", + "Write a new comment": "Új hozzászólás írása", + "Write a new message": "Új üzenet írása", + "Write a new reply": "Új válasz írása", + "Write something": "Írjon valamit", + "Write your post": "Írja meg a bejegyzését", + "Yesterday": "Tegnap", + "You accepted the invitation to join the group.": "Ön elfogadta a meghívást a csoporthoz való csatlakozáshoz.", + "You added the member {member}.": "Ön hozzáadta {member} tagot.", + "You approved {member}'s membership.": "Ön jóváhagyta {member} tagságát.", + "You archived the discussion {discussion}.": "Ön archiválta a(z) {discussion} megbeszélést.", + "You are not an administrator for this group.": "Ön nem adminisztrátor ennél a csoportnál.", + "You are not part of any group.": "Ön nem tagja egyetlen csoportnak sem.", + "You are offline": "Ön kapcsolat nélkül van", + "You are participating in this event anonymously": "Névtelenül vesz részt ezen az eseményen", + "You are participating in this event anonymously but didn't confirm participation": "Névtelenül vesz részt ezen az eseményen, de nem erősítette meg a részvételét", + "You can add resources by using the button above.": "A fenti gombbal adhat hozzá erőforrásokat.", + "You can add tags by hitting the Enter key or by adding a comma": "Hozzáadhat címkéket az Enter billentyű lenyomásával vagy egy vessző hozzáadásával", + "You can drag and drop the marker below to the desired location": "Az alábbiakban a kívánt helyre húzhatja a jelölőt", + "You can pick your timezone into your preferences.": "Kiválaszthatja az időzónát a beállításaiban.", + "You can put any arbitrary content in this element. URLs will be clickable.": "Tetszőleges tartalmat tehet ebbe az elembe. A webcím kattintható lesz.", + "You can try another search term or add the address details manually below.": "Próbálkozzon másik keresési kifejezéssel, vagy az alábbiakban adja meg kézileg a cím részleteit.", + "You can try another search term or drag and drop the marker on the map": "Megpróbálhat egy másik keresési kifejezést, vagy fogd és vidd módon tegye a jelölőt a térképre", + "You can't change your password because you are registered through {provider}.": "Nem tudja megváltoztatni a jelszavát, mert {provider} használatával regisztrált.", + "You can't use push notifications in this browser.": "Nem tudja használni a leküldéses értesítéseket ebben a böngészőben.", + "You changed your email or password": "Megváltoztatta az e-mail-címét vagy a jelszavát", + "You created the discussion {discussion}.": "Ön létrehozta a(z) {discussion} megbeszélést.", + "You created the event {event}.": "Ön létrehozta a(z) {event} eseményt.", + "You created the folder {resource}.": "Ön létrehozta a(z) {resource} mappát.", + "You created the group {group}.": "Ön létrehozta a(z) {group} csoportot.", + "You created the post {post}.": "Ön létrehozta a(z) {post} bejegyzést.", + "You created the resource {resource}.": "Ön létrehozta a(z) {resource} erőforrást.", + "You deleted the discussion {discussion}.": "Ön törölte a(z) {discussion} megbeszélést.", + "You deleted the event {event}.": "Ön törölte a(z) {event} eseményt.", + "You deleted the folder {resource}.": "Ön törölte a(z) {resource} mappát.", + "You deleted the post {post}.": "Ön törölte a(z) {post} bejegyzést.", + "You deleted the resource {resource}.": "Ön törölte a(z) {resource} erőforrást.", + "You demoted the member {member} to an unknown role.": "Ön lefokozta {member} tagot egy ismeretlen szerepre.", + "You demoted {member} to moderator.": "Ön lefokozta {member} tagot moderátorrá.", + "You demoted {member} to simple member.": "Ön lefokozta {member} tagot egyszerű taggá.", + "You didn't create or join any event yet.": "Még nem hozott létre vagy nem csatlakozott egyetlen eseményhez sem.", + "You don't follow any instances yet.": "Még nem követ egyetlen példányt sem.", + "You don't have any upcoming events. Maybe try another filter?": "Nincsenek közelgő eseményei. Esetleg megpróbál egy másik szűrőt?", + "You excluded member {member}.": "Ön kizárta {member} tagot.", + "You have access to this conversation as a member of the {group} group": "A(z) {group} csoport tagjaként hozzáfér ehhez a beszélgetéshez", + "You have attended {count} events in the past.": "Ön nem vett részt semmilyen eseményen a múltban.|Ön egy eseményen vett részt a múltban.|Ön {count} eseményen vett részt a múltban.", + "You have been invited by {invitedBy} to the following group:": "{invitedBy} meghívta Önt a következő csoportba:", + "You have been logged-out": "Ki lett jelentkeztetve", + "You have been removed from this group's members.": "El lett távolítva a csoport tagjai közül.", + "You have cancelled your participation": "Törölte a részvételét", + "You have one event in {days} days.": "Nincsenek eseményei {days} napon belül | Egy eseménye van {days} napon belül. | {count} eseménye van {days} napon belül", + "You have one event today.": "Nincsenek eseményei ma | Egy eseménye van ma. | {count} eseménye van ma", + "You have one event tomorrow.": "Nincsenek eseményei holnap | Egy eseménye van holnap. | {count} eseménye van holnap", + "You haven't interacted with other instances yet.": "Még nem lépett kapcsolatba más példányokkal.", + "You invited {member}.": "Ön meghívta {member} tagot.", + "You joined the event {event}.": "Csatlakozott az eseményhez: {event}.", + "You may also:": "A következőket is teheti:", + "You may clear all participation information for this device with the buttons below.": "Törölheti az összes részvételi információját ennél az eszköznél a lenti gombokkal.", + "You may now close this page or {return_to_the_homepage}.": "Bezárhatja ezt az oldalt, és {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "Most már bezárhatja ezt az ablakot, vagy {return_to_event}.", + "You may show some members as contacts.": "Megjeleníthet néhány tagot kapcsolatokként.", + "You moved the folder {resource} into {new_path}.": "Ön áthelyezte a(z) {resource} mappát erre a helyre: {new_path}.", + "You moved the folder {resource} to the root folder.": "Ön áthelyezte a(z) {resource} mappát a gyökérmappába.", + "You moved the resource {resource} into {new_path}.": "Ön áthelyezte a(z) {resource} erőforrást erre a helyre: {new_path}.", + "You moved the resource {resource} to the root folder.": "Ön áthelyezte a(z) {resource} erőforrást a gyökérmappába.", + "You need to enter a text": "Meg kell adnia egy szöveget", + "You need to login.": "Be kell jelentkeznie.", + "You need to provide the following code to your application. It will only be valid for a few minutes.": "Meg kell adnia a következő kódot az alkalmazásának. Csak néhány percig érvényes.", + "You posted a comment on the event {event}.": "Ön hozzászólást küldött a(z) {event} eseményhez.", + "You promoted the member {member} to an unknown role.": "Ön előléptette {member} tagot egy ismeretlen szerepre.", + "You promoted {member} to administrator.": "Ön előléptette {member} tagot adminisztrátorrá.", + "You promoted {member} to moderator.": "Ön előléptette {member} tagot moderátorrá.", + "You rejected {member}'s membership request.": "Ön visszautasította {member} tagsági kérését.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Ön átnevezte a megbeszélést {old_discussion} névről {discussion} névre.", + "You renamed the folder from {old_resource_title} to {resource}.": "Ön átnevezte a mappát {old_resource_title} névről {resource} névre.", + "You renamed the resource from {old_resource_title} to {resource}.": "Ön átnevezte az erőforrást {old_resource_title} névről {resource} névre.", + "You replied to a comment on the event {event}.": "Ön válaszolt egy hozzászólásra a(z) {event} eseménynél.", + "You replied to the discussion {discussion}.": "Ön válaszolt a(z) {discussion} megbeszélésre.", + "You requested to join the group.": "Ön kérelmezte a csoporthoz való csatlakozást.", + "You updated the event {event}.": "Ön frissítette a(z) {event} eseményt.", + "You updated the group {group}.": "Ön frissítette a(z) {group} csoportot.", + "You updated the member {member}.": "Ön frissítette {member} tagot.", + "You updated the post {post}.": "Ön frissítette a(z) {post} bejegyzést.", + "You were demoted to an unknown role by {profile}.": "Önt {profile} lefokozta egy ismeretlen szerepre.", + "You were demoted to moderator by {profile}.": "Önt {profile} lefokozta moderátorrá.", + "You were demoted to simple member by {profile}.": "Önt {profile} lefokozta egyszerű taggá.", + "You were promoted to administrator by {profile}.": "Önt {profile} előléptette adminisztrátorrá.", + "You were promoted to an unknown role by {profile}.": "Önt {profile} előléptette egy ismeretlen szerepre.", + "You were promoted to moderator by {profile}.": "Önt {profile} előléptette moderátorrá.", + "You will be able to add an avatar and set other options in your account settings.": "Lehetősége lesz hozzáadni egy profilképet, és más lehetőségeket beállítani a fiókja beállításaiban.", + "You will be redirected to the original instance": "Át lesz irányítva az eredeti példányra", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Itt megtalálja az összes eseményt, amelyeket létrehozott vagy amelyeknél Ön résztvevő, illetve az olyan csoportok által szervezett eseményeket, amelyeket Ön követ vagy amelyeknek tagja.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Értesítéseket fog kapni ennek a csoportnak a nyilvános tevékenységéről az %{notification_settings} függően.", + "You wish to participate to the following event": "Részt kíván venni a következő eseményen", + "You'll be able to revoke access for this application in your account settings.": "Az alkalmazás hozzáférése a fiókbeállításokban vonható vissza.", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Heti rövid összegzést fog kapni minden hétfőn a közelgő eseményekről, ha van ilyen.", + "You'll need to change the URLs where there were previously entered.": "Meg kell majd változtatnia az webcímeket, ahol korábban meg lettek adva.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Át kell küldenie a csoport webcímét, hogy az emberek hozzáférhessenek a csoport profiljához. A csoport nem lesz megtalálható a Mobilizon keresőjében vagy a szokásos keresőmotorokban.", + "You'll receive a confirmation email.": "Kapni fog egy megerősítő e-mailt.", + "YouTube live": "YouTube élő", + "YouTube replay": "YouTube ismétlés", + "Your account has been successfully deleted": "A fiókja sikeresen törölve lett", + "Your account has been validated": "A fiókja ellenőrizve lett", + "Your account is being validated": "A fiókja ellenőrizés alatt van", + "Your account is nearly ready, {username}": "A fiókja majdnem készen, {username}", + "Your application code": "Az alkalmazáskódja", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "A települése vagy a régiója és a sugár csak a közeli események ajánlásához lesz használva. Az esemény sugara a terület adminisztratív középpontját veszi figyelembe.", + "Your current email is {email}. You use it to log in.": "A jelenlegi e-mail-címe {email}. Használja ezt a bejelentkezéshez.", + "Your email": "Az e-mail címe", + "Your email address was automatically set based on your {provider} account.": "Az e-mail-címe automatikusan be lett állítva a(z) {provider} fiókja alapján.", + "Your email has been changed": "Az e-mail-címe megváltozott", + "Your email is being changed": "Az e-mail-címe megváltozik", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Az e-mail-címét csak annak megerősítéshez fogják használni, hogy Ön valódi személy, valamint az esemény végleges frissítéseinek küldéséhez. NEM lesz átküldve más példányoknak vagy az esemény szervezőjének.", + "Your federated identity": "Az Ön föderált személyazonossága", + "Your membership is pending approval": "A tagsága elfogadásra vár", + "Your membership was approved by {profile}.": "Az Ön tagságát {profile} jóváhagyta.", + "Your participation has been cancelled": "A részvétele le lett mondva", + "Your participation has been confirmed": "A részvétele meg lett erősítve", + "Your participation has been rejected": "A részvétele vissza lett utasítva", + "Your participation has been requested": "A részvétele kérve lett", + "Your participation is being cancelled": "A részvétele lemondás alatt van", + "Your participation request has been validated": "A részvétele ellenőrizve lett", + "Your participation request is being validated": "A részvétele ellenőrzés alatt van", + "Your participation status has been changed": "A részvételi állapota meg lett változtatva", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "A részvételi állapota csak ezen az eszközön van elmentve, és törölve lesz egy hónappal az esemény elmúltát követően.", + "Your participation still has to be approved by the organisers.": "A részvételét továbbra is jóvá kell hagynia a szervezőknek.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "A részvétele akkor lesz ellenőrizve, ha rákattint az e-mailben lévő megerősítő hivatkozásra, és miután a szervező kézzel ellenőrizte a részvételét.", + "Your participation will be validated once you click the confirmation link into the email.": "A részvétele akkor lesz ellenőrizve, ha rákattint az e-mailben lévő megerősítő hivatkozásra.", + "Your position was not available.": "A helyzete nem volt elérhető.", + "Your profile will be shown as contact.": "Az Ön profilja meg lesz jelenítve kapcsolatként.", + "Your timezone is currently set to {timezone}.": "Az Ön időzónája jelenleg erre van állítva: {timezone}.", + "Your timezone was detected as {timezone}.": "Az Ön időzónája úgy lett felismerve mint {timezone}.", + "Your timezone {timezone} isn't supported.": "A(z) {timezone} időzónája nem támogatott.", + "Your upcoming events": "A közelgő eseményei", + "Zoom": "Zoom", + "Zoom in": "Nagyítás", + "Zoom out": "Kicsinyítés", + "[This comment has been deleted by it's author]": "[Ezt a hozzászólást törölte a szerzője]", + "[This comment has been deleted]": "[Ezt a hozzászólást törölték]", + "[deleted]": "[törölve]", + "a non-existent report": "egy nem létező jelentés", + "access the corresponding account": "érnie a megfelelő fiókot", + "access to the group's private content as well": "hozzáfér a csoport magánjellegű tartalmaihoz is", + "and {number} groups": "és {number} csoportnak", + "any distance": "bármilyen távolság", + "as {identity}": "mint {identity}", + "contact uninformed": "informális kapcsolatfelvétel", + "create a group": "csoportot létrehozni", + "create an event": "eseményt létrehozni", + "default Mobilizon privacy policy": "alapértelmezett Mobilizon adatvédelmi irányelv", + "default Mobilizon terms": "alapértelmezett Mobilizon használati feltételek", + "detail": " ", + "e.g. 10 Rue Jangot": "például Budapest, I. kerület", + "e.g. Accessibility, Twitch, PeerTube": "például akadálymentesítés, Twitch, PeerTube", + "e.g. Nantes, Berlin, Cork, …": "például Nantes, Berlin, Cork…", + "enable the feature": "engedélyezze a funkciót", + "explore the events": "eseményeket felfedezni", + "explore the groups": "csoportokat felfedezni", + "find, create and organise events": "eseményeket találni, létrehozni és megszervezni", + "full rules": "szabályokat", + "group's upcoming public events": "csoport közelgő nyilvános eseményeiről", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/titkos-jelsor", + "iCal Feed": "iCal hírforrás", + "instance rules": "példány szabályait", + "mobilizon-instance.tld": "mobilizon-példány.tld", + "more than 1360 contributors": "Több mint 1360 hozzájáruló", + "multitude of interconnected Mobilizon websites": "összekapcsolt Mobilizon weboldalak hálózata", + "new{'@'}email.com": "uj{'@'}example.com", + "profile@instance": "profil@példány", + "profile{'@'}instance": "profil{'@'}példány", + "report #{report_number}": "#{report_number} jelentés", + "return to the event's page": "visszatérhet az esemény oldalára", + "return to the homepage": "visszatérhet a kezdőlapra", + "terms of service": "szolgáltatás feltételeit", + "tool designed to serve you": "eszköz, amelyet arra terveztek, hogy Önt szolgálja", + "translation": " ", + "with another identity…": "egy másik személyazonossággal…", + "your notification settings": "értesítési beállításaitól", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved} / {total} ülés", + "{available}/{capacity} available places": "Nincsenek szabad helyek|{available}/{capacity} elérhető hely|{available}/{capacity} elérhető hely", + "{count} events": "{count} esemény", + "{count} km": "{count} km", + "{count} members": "Nincsenek tagok|Egy tag|{count} tag", + "{count} members or followers": "Nincsenek tagok vagy követők|Egy tag vagy követő|{count} tag vagy követő", + "{count} participants": "Még nincsenek résztvevők | Egy résztvevő | {count} résztvevő", + "{count} requests waiting": "{count} kérés várakozik", + "{eventsCount} activities found": "Nem található tevékenység|Egy tevékenység található|{eventsCount} tevékenység található", + "{eventsCount} events found": "Nem található esemény|Egy esemény található|{eventsCount} esemény található", + "{folder} - Resources": "{folder} – Erőforrások", + "{groupsCount} groups found": "Nem található csoport|Egy csoport található|{groupsCount} csoport található", + "{group} activity timeline": "{group} tevékenységi idővonala", + "{group} events": "{group} eseményei", + "{group} posts": "{group} bejegyzései", + "{group}'s events": "{group} eseményei", + "{group}'s todolists": "{group} tennivalólistái", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "A(z) {instanceName} a {mobilizon} szoftver egy példánya.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "A(z) {instanceName} a {mobilizon_link} egy példánya, amely egy közösség által készített szabad szoftver.", + "{member} accepted the invitation to join the group.": "{member} elfogadta a meghívását a csoporthoz való csatlakozáshoz.", + "{member} joined the group.": "{member} csatlakozott a csoporthoz.", + "{member} rejected the invitation to join the group.": "{member} visszautasította a meghívását a csoporthoz való csatlakozáshoz.", + "{member} requested to join the group.": "{member} kérelmezte a csoporthoz való csatlakozást.", + "{member} was invited by {profile}.": "{member} tagot meghívta {profile}.", + "{moderator} added a note on {report}": "{moderator} jegyzetet adott ehhez: {report}", + "{moderator} closed {report}": "{moderator} lezárta ezt: {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} törölt egy „{title}” nevű eseményt", + "{moderator} has deleted a comment from {author}": "{moderator} törölte {author} egyik hozzászólását", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} törölte {author} egyik hozzászólását a(z) {event} esemény alól", + "{moderator} has deleted user {user}": "{moderator} törölte ezt a felhasználót: {user}", + "{moderator} has done an unknown action": "{moderator} ismeretlen műveletet hajtott végre", + "{moderator} has unsuspended group {profile}": "{moderator} megszüntette a(z) {profile} csoport felfüggesztését", + "{moderator} has unsuspended profile {profile}": "{moderator} visszavonta ennek a profilnak felfüggesztését: {profile}", + "{moderator} marked {report} as resolved": "{moderator} megjelölte megoldottként ezt: {report}", + "{moderator} reopened {report}": "{moderator} újranyitotta ezt: {report}", + "{moderator} suspended group {profile}": "{moderator} felfüggesztette a(z) {profile} csoportot", + "{moderator} suspended profile {profile}": "{moderator} felfüggesztette ezt a profilt: {profile}", + "{nb} km": "{nb} km", + "{numberOfCategories} selected": "{numberOfCategories} kiválasztva", + "{numberOfLanguages} selected": "{numberOfLanguages} kiválasztva", + "{number} kilometers": "{number} kilométer", + "{number} members": "{number} tag", + "{number} memberships": "{number} tagság", + "{number} organized events": "Nincsenek szervezett események|Egy szervezett esemény|{number} szervezett esemény", + "{number} participations": "Nincsenek részvételek|Egy részvétel|{number} részvétel", + "{number} posts": "Nincsenek bejegyzések|Egy bejegyzés|{number} bejegyzés", + "{number} seats left": "Nem maradt szabad hely|Egy hely maradt|{number} hely maradt", + "{old_group_name} was renamed to {group}.": "A(z) {old_group_name} csoport át lett nevezve {group} névre.", + "{profileName} (suspended)": "{profileName} (felfüggesztve)", + "{profile} (by default)": "{profile} (alapértelmezetten)", + "{profile} added the member {member}.": "{profile} hozzáadta {member} tagot.", + "{profile} approved {member}'s membership.": "{profile} jóváhagyta {member} tagságát.", + "{profile} archived the discussion {discussion}.": "{profile} archiválta a(z) {discussion} megbeszélést.", + "{profile} created the discussion {discussion}.": "{profile} létrehozta a(z) {discussion} megbeszélést.", + "{profile} created the folder {resource}.": "{profile} létrehozta a(z) {resource} mappát.", + "{profile} created the group {group}.": "{profile} létrehozta a(z) {group} csoportot.", + "{profile} created the resource {resource}.": "{profile} létrehozta a(z) {resource} erőforrást.", + "{profile} deleted the discussion {discussion}.": "{profile} törölte a(z) {discussion} megbeszélést.", + "{profile} deleted the folder {resource}.": "{profile} törölte a(z) {resource} mappát.", + "{profile} deleted the resource {resource}.": "{profile} törölte a(z) {resource} erőforrást.", + "{profile} demoted {member} to an unknown role.": "{profile} lefokozta {member} tagot egy ismeretlen szerepre.", + "{profile} demoted {member} to moderator.": "{profile} lefokozta {member} tagot moderátorrá.", + "{profile} demoted {member} to simple member.": "{profile} lefokozta {member} tagot egyszerű taggá.", + "{profile} excluded member {member}.": "{profile} kizárta {member} tagot.", + "{profile} joined the the event {event}.": "{profile} csatlakozott az eseményhez: {event}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} áthelyezte a(z) {resource} mappát erre a helyre: {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} áthelyezte a(z) {resource} mappát a gyökérmappába.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} áthelyezte a(z) {resource} erőforrást erre a helyre: {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} áthelyezte a(z) {resource} erőforrást a gyökérmappába.", + "{profile} posted a comment on the event {event}.": "{profile} hozzászólást küldött a(z) {event} eseményhez.", + "{profile} promoted {member} to administrator.": "{profile} előléptette {member} tagot adminisztrátorrá.", + "{profile} promoted {member} to an unknown role.": "{profile} előléptette {member} tagot egy ismeretlen szerepre.", + "{profile} promoted {member} to moderator.": "{profile} előléptette {member} tagot moderátorrá.", + "{profile} quit the group.": "{profile} kilépett a csoportból.", + "{profile} rejected {member}'s membership request.": "{profile} visszautasította {member} tagsági kérését.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} átnevezte a megbeszélést {old_discussion} névről {discussion} névre.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} átnevezte a mappát {old_resource_title} névről {resource} névre.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} átnevezte az erőforrást {old_resource_title} névről {resource} névre.", + "{profile} replied to a comment on the event {event}.": "{profile} válaszolt egy hozzászólásra a(z) {event} eseménynél.", + "{profile} replied to the discussion {discussion}.": "{profile} válaszolt a(z) {discussion} megbeszélésre.", + "{profile} updated the group {group}.": "{profile} frissítette a(z) {group} csoportot.", + "{profile} updated the member {member}.": "{profile} frissítette {member} tagot.", + "{resultsCount} results found": "Nincs találat|Egy találat|{resultsCount} találat", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} tennnivaló)", + "{username} was invited to {group}": "{username} meg lett hívva ide: {group}", + "{user}'s follow request was accepted": "{user} követési kérése elfogadva", + "{user}'s follow request was rejected": "{user} követési kérése elutasítva", + "© The OpenStreetMap Contributors": "© Az OpenStreetMap közreműködői" +}); diff --git a/res/locale/id.js b/res/locale/id.js new file mode 100644 index 0000000..db62d3c --- /dev/null +++ b/res/locale/id.js @@ -0,0 +1,1268 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "", + "(this folder)": "(folder ini)", + "(this link)": "(tautan ini)", + "+ Add a resource": "", + "+ Create a post": "+ Buat sebuah postingan", + "+ Create an event": "+ Buat sebuah acara", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "Tautan ke halaman yang menunjukkan jadwal acara", + "A link to a page presenting the price options": "", + "A member has been updated": "Seorang anggota telah diperbarui", + "A member requested to join one of my groups": "Seorang anggota ingin bergabung ke salah satu kelompok saya", + "A new version is available.": "Versi baru tersedia.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "Sebuah postingan telah dipublikasikan", + "A post has been updated": "Sebuah postingan telah diperbarui", + "A practical tool": "Alat yang praktis", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "", + "A validation email was sent to {email}": "Email validasi telah dikirim ke {email}", + "API": "API", + "Abandon editing": "", + "About": "Tentang", + "About Mobilizon": "Tentang Mobilizon", + "About anonymous participation": "Tentang keikutsertaan anonim", + "About instance": "Tentang instansi", + "About this event": "Tentang acara ini", + "About this instance": "Tentang instansi ini", + "About {instance}": "Tentang {instance}", + "Accept": "Terima", + "Accepted": "Disetujui", + "Accessibility": "Aksesibilitas", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "Akun", + "Account settings": "Pengaturan akun", + "Actions": "", + "Activate browser push notifications": "Aktifkan notifikasi push browser", + "Activated": "Diaktifkan", + "Active": "Aktif", + "Activity": "Aktivitas", + "Actor": "", + "Add": "Tambahkan", + "Add / Remove…": "Tambah / Hapus…", + "Add a contact": "", + "Add a new post": "Tambahkan postingan baru", + "Add a note": "Tambahkan catatan", + "Add a todo": "", + "Add an address": "Tambahkan alamat", + "Add an instance": "Tambahkan instansi", + "Add link": "Tambahkan tautan", + "Add new…": "Tambahkan…", + "Add picture": "Tambahkan gambar", + "Add some tags": "Tambahkan sejumlah tag", + "Add to my calendar": "Tambahkan ke kalender saya", + "Additional comments": "Komentar tambahan", + "Admin": "Admin", + "Admin dashboard": "Dasbor admin", + "Admin settings": "Pengaturan admin", + "Admin settings successfully saved.": "Pengaturan admin berhasil disimpan.", + "Administration": "Administrasi", + "Administrator": "Administrator", + "All activities": "Semua aktivitas", + "All good, let's continue!": "Semuanya bagus, ayo lanjut!", + "All the places have already been taken": "Semua tempat telah diambil", + "Allow all comments from users with accounts": "Izinkan komentar dari pengguna yang telah masuk", + "Allow registrations": "Izinkan pendaftaran", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "Sebuah kesalahan terjadi ketika memuat ulang halaman.", + "An error has occured. Sorry about that. You may try to reload the page.": "Terjadi suatu kesalahan. Maaf. Anda dapat mencoba memuat ulang halaman.", + "An ethical alternative": "Alternatif yang etis", + "An event I'm going to has been updated": "Sebuah acara yang saya ikuti telah diperbarui", + "An event I'm going to has posted an announcement": "Sebuah acara yang saya ikuti memposting sebuah pengumuman", + "An event I'm organizing has a new comment": "Sebuah acara yang saya selenggarakan memiliki komentar baru", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "Dan {number} komentar", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "Peserta anonim", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Peserta-peserta anonim akan diminta untuk mengkonfirmasi keikutsertaannya melalui email.", + "Anonymous participations": "Peserta anonim", + "Any day": "Kapanpun", + "Any type": "", + "Anyone can join freely": "Siapapun dapat bergabung", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "Aplikasi", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Apakah Anda yakin ingin menghapus akun Anda? Anda akan kehilangan semuanya. Identitas, pengaturan, acara yang dibuat, pesan dan keikutsertaan akan hilang selamanya.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "Apakah Anda yakin ingin menghapus komentar ini? Tindakan ini tidak dapat dibatalkan.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Apakah Anda yakin ingin membatalkan pembuatan acara? Anda akan kehilangan semua perubahan.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Apakah Anda yakin ingin membatalkan keikutsertaan Anda dalam acara \"{title}\"?", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "Apakah Anda yakin ingin menghapus acara ini? Tindakan ini tidak dapat dibatalkan.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "Minta admin instansi ini untuk {enable_feature}.", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "Avatar", + "Back to group list": "", + "Back to previous page": "Kembali ke halaman sebelumnya", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "Banner", + "Before you can login, you need to click on the link inside it to validate your account.": "", + "Begins on": "Dimulai pada", + "Big Blue Button": "Big Blue Button", + "Bold": "Tebal", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "Notifikasi browser", + "Bullet list": "", + "By others": "Dari orang lain", + "By {group}": "Oleh {group}", + "By {username}": "Oleh {username}", + "Can be an email or a link, or just plain text.": "Dapat berbentuk email atau tautan, atau hanya teks biasa.", + "Cancel": "Batalkan", + "Cancel anonymous participation": "Batalkan keikutsertaan anonim", + "Cancel creation": "Batalkan pembuatan", + "Cancel discussion title edition": "", + "Cancel edition": "Batalkan penyuntingan", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "Batalkan permintaan keikutsertaan saya…", + "Cancel my participation…": "Batalkan keikutsertaan saya…", + "Cancelled": "Dibatalkan", + "Cancelled: Won't happen": "Dibatalkan: Tidak akan terjadi", + "Change": "Ubah", + "Change email": "Ubah email", + "Change my email": "Ubah email saya", + "Change my identity…": "Ubah identitas saya…", + "Change my password": "Ubah kata sandi saya", + "Change timezone": "Ubah zona waktu", + "Change user email": "Ubah email pengguna", + "Check your inbox (and your junk mail folder).": "Periksa kotak masuk (inbox) Anda (dan folder junk surat Anda).", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "Kota atau wilayah", + "Clear": "", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "Klik untuk informasi lebih lanjut", + "Click to upload": "Klik untuk mengunggah", + "Close": "Tutup", + "Close comments for all (except for admins)": "Tutup komentar untuk semua orang (kecuali admin)", + "Closed": "Ditutup", + "Comment body": "Isi komentar", + "Comment deleted": "Komentar dihapus", + "Comment from {'@'}{username} reported": "Komentar dari {'@'}{username} dilaporkan", + "Comment text can't be empty": "Teks komentar tidak boleh kosong", + "Comments": "Komentar", + "Comments are closed for everybody else.": "", + "Confirm my participation": "Konfirmasi keikutsertaan saya", + "Confirm my particpation": "Konfirmasi keikutsertaan saya", + "Confirm participation": "Konfirmasi keikutsertaan", + "Confirm user": "Konfirmasi pengguna", + "Confirmed": "Dikonfirmasi", + "Confirmed at": "Dikonfirmasi pada", + "Confirmed: Will happen": "Dikonfirmasi: Akan terjadi", + "Congratulations, your account is now created!": "Selamat, akun Anda sudah dibuat!", + "Contact": "Hubungi", + "Continue editing": "Lanjutkan menyunting", + "Cookies and Local storage": "", + "Copy URL to clipboard": "Salin URL ke papan klip", + "Copy details to clipboard": "Salin keterangan ke papan klip", + "Country": "Negara", + "Create": "Buat", + "Create a calc": "", + "Create a discussion": "Buat sebuah diskusi", + "Create a folder": "", + "Create a new event": "Buat acara baru", + "Create a new group": "Buat kelompok baru", + "Create a new identity": "Buat identitas baru", + "Create a new list": "", + "Create a new profile": "Buat profil baru", + "Create a pad": "", + "Create a videoconference": "Buat telekonferensi", + "Create an account": "Buat sebuah akun", + "Create discussion": "", + "Create event": "Buat acara", + "Create group": "Buat kelompok", + "Create identity": "Buat identitas", + "Create my event": "", + "Create my group": "", + "Create my profile": "", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "Buat token", + "Created by {name}": "DIbuat oleh {name}", + "Created by {username}": "Dibuat oleh {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "", + "Current page": "", + "Custom": "", + "Custom URL": "", + "Custom text": "", + "Daily email summary": "", + "Dashboard": "Dasbor", + "Date": "Tanggal", + "Date and time": "Tanggal dan waktu", + "Date and time settings": "Pengaturan tanggal dan waktu", + "Date parameters": "", + "Decline": "Tolak", + "Decrease": "", + "Default": "Default", + "Default Mobilizon privacy policy": "", + "Default Mobilizon terms": "Persyaratan default Mobilizon", + "Delete": "Hapus", + "Delete account": "Hapus akun", + "Delete conversation": "Hapus percakapan", + "Delete discussion": "", + "Delete event": "Hapus acara", + "Delete everything": "Hapus segalanya", + "Delete group": "Hapus kelompok", + "Delete my account": "Hapus akun saya", + "Delete post": "Hapus postingan", + "Delete this discussion": "", + "Delete this identity": "Hapus identitas ini", + "Delete your identity": "Hapus identitas Anda", + "Delete {eventTitle}": "Hapus {eventTitle}", + "Delete {preferredUsername}": "Hapus {preferredUsername}", + "Deleting comment": "Menghapus komentar", + "Deleting event": "Menghapus acara", + "Deleting my account will delete all of my identities.": "Menghapus akun saya akan menghapus semua identitas saya.", + "Deleting your Mobilizon account": "Menghapus akun Mobilizon Anda", + "Demote": "", + "Description": "Keterangan", + "Details": "Keterangan", + "Didn't receive the instructions?": "Tidak menerima instruksinya?", + "Disabled": "Dinonaktifkan", + "Discussions": "Diskusi", + "Discussions list": "", + "Display name": "", + "Display participation price": "", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "Apakah Anda ingin {create_event} atau {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Apakah Anda ingin {create_group} atau {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "Domain", + "Draft": "Draf", + "Drafts": "Draf", + "Due on": "", + "Duplicate": "", + "Edit": "Sunting", + "Edit post": "Sunting postingan", + "Edit profile {profile}": "Sunting profil {profile}", + "Edit user email": "Ubah email pengguna", + "Edited {ago}": "Disunting {ago}", + "Edited {relative_time} ago": "Disunting {relative_time} yang lalu", + "Eg: Stockholm, Dance, Chess…": "Contoh: Stockholm, Menari, Catur…", + "Either on the {instance} instance or on another instance.": "", + "Either the account is already validated, either the validation token is incorrect.": "", + "Either the email has already been changed, either the validation token is incorrect.": "", + "Either the participation request has already been validated, either the validation token is incorrect.": "", + "Element title": "", + "Element value": "", + "Email": "Email", + "Email address": "Alamat email", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "Diaktifkan", + "Ends on…": "Berakhir pada…", + "Enter the link URL": "Masukkan URL tautan", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Masukkan alamat email Anda di bawah, dan kami akan mengirimkan Anda email instruksi tentang bagaimana cara mengubah kata sandi Anda.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Masukkan kebijakan privasi Anda. HTML tag diizinkan. {mobilizon_privacy_policy} akan disediakan sebagai template.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "Terjadi kesalahan", + "Error details copied!": "Keterangan kesalahan disalin!", + "Error message": "Pesan kesalahan", + "Error stacktrace": "Stacktrace kesalahan", + "Error while changing email": "Terjadi kesalahan ketika mengubah email", + "Error while loading the preview": "Terjadi kesalahan ketika memuat tinjauan", + "Error while login with {provider}. Retry or login another way.": "Terjadi kesalahan ketika ingin masuk dengan {provider}. Coba lagi atau masuk dengan cara lain.", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "Terjadi kesalahan melaporkan kelompok {groupTitle}", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "Terjadi kesalahan ketika memvalidasi akun", + "Error while validating participation request": "Terjadi kesalahan ketika memvalidasi permintaan keikutsertaan", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Alternatif yang etis untuk Facebook events, groups dan pages, Mobilizon adalah alat yang didesain untuk melayani Anda. Titik.", + "Event": "Acara", + "Event URL": "URL Acara", + "Event already passed": "Acara sudah berlalu", + "Event cancelled": "Acara dibatalkan", + "Event creation": "Pembuatan acara", + "Event description body": "Isi keterangan acara", + "Event edition": "Penyuntingan acara", + "Event list": "Daftar acara", + "Event metadata": "Metadata acara", + "Event page settings": "Pengaturan halaman acara", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "", + "Event {eventTitle} deleted": "Acara {eventTitle} dihapus", + "Event {eventTitle} reported": "Acara {eventTitle} dilaporkan", + "Events": "Acara", + "Events nearby": "Acara-acara terdekat", + "Events tagged with {tag}": "", + "Everything": "Segalanya", + "Ex: mobilizon.fr": "Contoh: mobilizon.fr", + "Ex: someone@mobilizon.org": "Contoh: seseorang@mobilizon.org", + "Explore": "Jelajahi", + "Explore events": "", + "Export": "Ekspor", + "Failed to get location.": "Gagal mendapatkan lokasi.", + "Failed to save admin settings": "Gagal menyimpan pengaturan admin", + "Featured events": "", + "Federated Group Name": "", + "Federation": "", + "Fediverse account": "Akun fediverse", + "Fetch more": "", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "", + "Find an instance": "Cari instansi", + "Find another instance": "Cari instansi lain", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Followed": "Diikuti", + "Follower": "Pengikut", + "Followers": "Pengikut", + "Followers will receive new public events and posts.": "", + "Following": "Mengikuti", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "Diikuti", + "For instance: London": "Contoh: London", + "For instance: London, Taekwondo, Architecture…": "Contoh: London, Taekwondo, Arsitektur…", + "Forgot your password ?": "Lupa kata sandi Anda ?", + "Forgot your password?": "Lupa kata sandi Anda?", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "", + "From the {startDate} to the {endDate}": "", + "From yourself": "Dari Anda", + "Fully accessible with a wheelchair": "Sepenuhnya dapat diakses dengan kursi roda", + "Gather ⋅ Organize ⋅ Mobilize": "", + "General": "Umum", + "General information": "Informasi umum", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "Mendapatkan lokasi", + "Getting there": "", + "Glossary": "", + "Go": "", + "Go to the event page": "Pergi ke halaman acara", + "Google Meet": "Google Meet", + "Group": "Kelompok", + "Group Followers": "Pengiku-pengikut Kelompok", + "Group Members": "Anggota Kelompok", + "Group URL": "URL Kelompok", + "Group activity": "Aktivitas kelompok", + "Group address": "", + "Group description body": "Isi keterangan kelompok", + "Group display name": "", + "Group name": "Nama kelompok", + "Group profiles": "", + "Group settings": "Pengaturan kelompok", + "Group settings saved": "Pengaturan kelompok disimpan", + "Group short description": "Keterangan singkat kelompok", + "Group visibility": "Visibilitas", + "Group {displayName} created": "Kelompok {displayName} dibuat", + "Group {groupTitle} reported": "Kelompok {groupTitle} dilaporkan", + "Groups": "Kelompok-kelompok", + "Groups are not enabled on this instance.": "Kelompok tidak diaktifkan di instansi ini.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "", + "Hide replies": "Sembunyikan balasan", + "Home": "Beranda", + "Home to {number} users": "Rumah untuk {number} pengguna", + "Homepage": "Beranda", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "Saya setuju dengan {instanceRules} dan {termsOfService}", + "I create an identity": "", + "I don't have a Mobilizon account": "Saya tidak punya akun Mobilizon", + "I have a Mobilizon account": "Saya memiliki akun Mobilizon", + "I have an account on another Mobilizon instance.": "Saya memiliki akun di instansi Mobilizon lain.", + "I participate": "Saya ikut serta", + "I want to allow people to participate without an account.": "Saya ingin mengizinkan orang-orang ikut serta tanpa akun.", + "I want to approve every participation request": "", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "Feed ICS/WebCal", + "IP Address": "Alamat IP", + "Identities": "", + "Identity {displayName} created": "Identitas {displayName} dibuat", + "Identity {displayName} deleted": "Identitas {displayName} dihapus", + "Identity {displayName} updated": "Identitas {displayName} diperbarui", + "If allowed by organizer": "Jika diizinkan oleh penyelenggara", + "If an account with this email exists, we just sent another confirmation email to {email}": "", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "Jika Anda mau, Anda dapat mengirim pesan ke penyelenggara acara di sini.", + "Ignore": "Abaikan", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "Di konteks berikut, sebuah aplikasi adalah suatu perangkat lunak, baik disediakan oleh tim Mobilizon atau oleh pihak ke-3, yang digunakan untuk berinteraksi dengan instansi Anda.", + "In the past": "", + "Increase": "", + "Instance": "Instansi", + "Instance Long Description": "Keterangan Panjang Instansi", + "Instance Name": "Nama Instansi", + "Instance Privacy Policy": "Kebijakan Privasi Instansi", + "Instance Privacy Policy Source": "Sumber Kebijakan Privasi Instansi", + "Instance Privacy Policy URL": "URL Kebijakan Privasi Instansi", + "Instance Rules": "Peraturan Instansi", + "Instance Short Description": "Keterangan Singkat Instansi", + "Instance Slogan": "Slogan Instansi", + "Instance Terms": "", + "Instance Terms Source": "", + "Instance Terms URL": "", + "Instance administrator": "Administrator instansi", + "Instance configuration": "Konfigurasi instansi", + "Instance feeds": "", + "Instance languages": "Bahasa-bahasa instansi", + "Instance rules": "Peraturan instansi", + "Instance settings": "Pengaturan instansi", + "Instances": "", + "Instances following you": "Instansi-instansi yang mengikuti Anda", + "Instances you follow": "Instansi-instansi yang Anda ikuti", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "Berinteraksi", + "Interact with a remote content": "", + "Invite a new member": "Undang anggota baru", + "Invite member": "Undang anggota", + "Invited": "Diundang", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "Miring", + "Jitsi Meet": "Jitsi Meet", + "Join {instance}, a Mobilizon instance": "Bergabung ke {instance}, sebuah instansi Mobilizon", + "Join group": "", + "Join group {group}": "Bergabung ke kelompok {group}", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "Kata kunci", + "Language": "Bahasa", + "Last IP adress": "Alamat IP terakhir", + "Last group created": "", + "Last published event": "", + "Last published events": "", + "Last seen on": "Terakhir dilihat pada", + "Last sign-in": "", + "Last week": "Pekan lalu", + "Latest posts": "Postingan-postingan terakhir", + "Learn more": "Pelajari lebih lanjut", + "Learn more about Mobilizon": "Pelajari lebih lanjut tentang Mobilizon", + "Learn more about {instance}": "Pelajari lebih lanjut tentang {instance}", + "Leave": "Keluar", + "Leave event": "Tinggalkan acara", + "Leave group": "", + "Leaving event \"{title}\"": "Meninggalkan acara \"{title}\"", + "Legal": "Legal", + "Let's define a few settings": "Ayo kita atur beberapa pengaturan", + "License": "Lisensi", + "Limited number of places": "", + "List title": "", + "Live": "Siaran Langsung", + "Load more": "Muat lebih banyak", + "Load more activities": "Muat lebih banyak aktivitas", + "Loading comments…": "Memuat komentar…", + "Local": "", + "Local time ({timezone})": "", + "Locality": "", + "Location": "Lokasi", + "Log in": "Masuk", + "Log out": "Keluar", + "Login": "Masuk", + "Login on Mobilizon!": "Masuk ke Mobilizon!", + "Login on {instance}": "Masuk di {instansi}", + "Login status": "Status login", + "Main languages you/your moderators speak": "", + "Manage participations": "", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "", + "Member": "Anggota", + "Members": "Anggota", + "Members-only post": "Postingan hanya-anggota", + "Memberships": "Keanggotaan", + "Mentions": "", + "Message": "Pesan", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon adalah alat yang membantu Anda untuk mencari, membuat dan menyelenggarakan acara-acara.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "Perangkat lunak Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "Versi Mobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon akan mengirimkan Anda email ketika acara-acara yang Anda hadiri memiliki perubahan penting: tanggal dan waktu, alamat, konfirmasi atau pembatalan, dll.", + "Moderate new members": "", + "Moderated comments (shown after approval)": "", + "Moderation": "Moderasi", + "Moderation log": "Log moderasi", + "Moderation logs": "Catatan moderasi", + "Moderator": "Moderator", + "Move": "Pindahkan", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "Akun saya", + "My events": "Acara-acara saya", + "My groups": "Kelompok-kelompok saya", + "My identities": "Identitas-identitas saya", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "Nama", + "Navigated to {pageTitle}": "", + "New discussion": "Diskusi baru", + "New email": "Email baru", + "New folder": "Folder baru", + "New link": "Tautan baru", + "New members": "Anggota baru", + "New note": "Catatan baru", + "New password": "Kata sandi baru", + "New post": "Postingan baru", + "New profile": "", + "Next": "Berikutnya", + "Next month": "Bulan depan", + "Next page": "Halaman selanjutnya", + "Next week": "Pekan depan", + "No address defined": "", + "No closed reports yet": "", + "No comment": "Tidak ada komentar", + "No comments yet": "Belum ada komentar", + "No discussions yet": "Belum ada diskusi", + "No end date": "", + "No events found": "Tidak ada acara yang ditemukan", + "No follower matches the filters": "", + "No group found": "", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "", + "No information": "Tidak ada informasi", + "No instance follows your instance yet.": "", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "", + "No member matches the filters": "", + "No members found": "Tidak ada anggota yang ditemukan", + "No memberships found": "", + "No message": "Tidka ada pesan", + "No moderation logs yet": "Belum ada log moderasi", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "Tidak ada yang ikut serta|Satu orang ikut serta|{going} orang ikut serta", + "No open reports yet": "", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "Tidak ada peserta yang perlu ditolak|Tolak peserta|Tolak {number} peserta", + "No participations listed": "", + "No posts found": "Tak ada postingan yang ditemukan", + "No posts yet": "Belum ada postingan", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "", + "No results for {search}": "Tidak ada hasil untuk {search}", + "No rules defined yet.": "Belum ada peraturan yang ditetapkan.", + "None": "Tidak ada", + "Not accessible with a wheelchair": "Tidak dapat diakses dengan kursi roda", + "Not approved": "", + "Not confirmed": "Belum dikonfirmasi", + "Notes": "Catatan", + "Notification before the event": "Notifikasi sebelum acara", + "Notification on the day of the event": "Notifikasi di hari acara", + "Notification settings": "Pengaturan notifikasi", + "Notifications": "Notifikasi", + "Notifications for manually approved participations to an event": "", + "Notify participants": "Kirimkan notifikasi ke para peserta", + "Now, create your first profile:": "Sekarang, buat profil pertama Anda:", + "Number of places": "", + "OK": "Baik", + "Old password": "Kata sandi lama", + "On {date}": "", + "On {date} ending at {endTime}": "", + "On {date} from {startTime} to {endTime}": "", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "Hanya dapat diakses melalui tautan", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "Hanya dapat di akses oleh anggota kelompok", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "Hanya moderator-moderator kelompok yang dapat membuat, menyunting dan menghapus postingan.", + "Only registered users may fetch remote events from their URL.": "", + "Open": "", + "Open a topic on our forum": "Buat sebuah topik di forum kami", + "Open an issue on our bug tracker (advanced users)": "Buat sebuah masalah di pelacak bug kami (pengguna lanjutan)", + "Opened reports": "", + "Or": "", + "Ordered list": "", + "Organized": "Diselenggarakan", + "Organized by": "Diselenggarakan oleh", + "Organized by {name}": "Diselenggarakan oleh {name}", + "Organizer": "Penyelenggara", + "Organizer notifications": "", + "Organizers": "Penyelenggara-penyelenggara", + "Other": "Lainnya", + "Other actions": "Tindakan lain", + "Other notification options:": "", + "Other software may also support this.": "Perangkat lunak lain mungkin juga mendukung ini.", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "Halaman", + "Page limited to my group (asks for auth)": "", + "Page not found": "Halaman tidak ditemukan", + "Parent folder": "", + "Partially accessible with a wheelchair": "", + "Participant": "Peserta", + "Participants": "Peserta-peserta", + "Participate": "Ikut serta", + "Participate using your email address": "Ikut serta menggunakan alamat email Anda", + "Participation approval": "", + "Participation confirmation": "Konfirmasi keikutsertaan", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "Ikut serta dengan akun", + "Participation without account": "Ikut serta tanpa akun", + "Participations": "Keikutsertaan", + "Password": "Kata sandi", + "Password (confirmation)": "Kata sandi (konfirmasi)", + "Password reset": "", + "Past events": "Acara yang telah lalu", + "PeerTube live": "Siaran langsung PeerTube", + "PeerTube replay": "", + "Pending": "Tertunda", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "Pilih identitas", + "Pick an instance": "Pilih sebuah instansi", + "Please add as many details as possible to help identify the problem.": "Harap tambahkan keterangan sebanyak mungkin untuk membantu mengidentifikasi masalahnya.", + "Please check your spam folder if you didn't receive the email.": "Harap periksa folder spam Anda jika Anda tidak menerima emailnya.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Harap hubungi admin instansi Mobilizon ini jika Anda pikir ini adalah sebuah kesalahan.", + "Please do not use it in any real way.": "", + "Please enter your password to confirm this action.": "Harap masukkan kata sandi untuk mengkonfirmasi tindakan ini.", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "Harap baca {fullRules} yang dipublikasikan oleh administrator-administrator {instance}.", + "Post": "Postingan", + "Post URL": "", + "Post a comment": "Posting sebuah komentar", + "Post a reply": "Posting sebuah balasan", + "Post body": "Isi postingan", + "Post {eventTitle} reported": "", + "Postal Code": "Kode Pos", + "Posts": "Postingan-postingan", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Didukung oleh {mobilizon}. © 2018 - {date} Kontributor Mobilizon - Dibuat dengan dukungan finansial dari {contributors}.", + "Preferences": "Preferensi", + "Previous": "Sebelumnya", + "Previous email": "Email sebelumnya", + "Previous month": "", + "Previous page": "Halaman sebelumnya", + "Price sheet": "", + "Privacy": "Privasi", + "Privacy Policy": "Kebijakan Privasi", + "Privacy policy": "Kebijakan privasi", + "Private event": "", + "Private feeds": "", + "Profile": "Profil", + "Profile feeds": "", + "Profiles": "", + "Profiles and federation": "", + "Promote": "Promosikan", + "Public": "Publik", + "Public RSS/Atom Feed": "Feed RSS/Atom Publik", + "Public comment moderation": "", + "Public event": "Acara publik", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "Tanggal publikasi", + "Publish": "Publikasikan", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "", + "Radius": "Radius", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "Membawa Anda ke konten…", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "", + "Register": "Daftar", + "Register an account on {instanceName}!": "", + "Register on this instance": "Daftar di instansi ini", + "Registration is allowed, anyone can register.": "Pendaftaran diizinkan, semua orang dapat mendaftar.", + "Registration is closed.": "Pendaftaran ditutup.", + "Registration is currently closed.": "Pendaftaran ditutup saat ini.", + "Registrations": "Pendaftaran", + "Registrations are restricted by allowlisting.": "", + "Reject": "Tolak", + "Reject member": "", + "Rejected": "Ditolak", + "Remember my participation in this browser": "Ingat keikutsertaan saya di browser ini", + "Remove": "Hapus", + "Remove link": "Hapus tautan", + "Rename": "Ubah nama", + "Rename resource": "", + "Reopen": "Buka kembali", + "Replay": "Siaran Ulang", + "Reply": "Balas", + "Report": "Laporkan", + "Report #{reportNumber}": "", + "Report this comment": "Laporkan komentar ini", + "Report this event": "Laporkan acara ini", + "Report this group": "Laporkan kelompok ini", + "Report this post": "", + "Reported": "Dilaporkan", + "Reported by": "Dilaporkan oleh", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "Dilaporkan oleh {reporter}", + "Reported group": "", + "Reported identity": "", + "Reports": "", + "Reports list": "Daftar laporan", + "Request for participation confirmation sent": "", + "Resend confirmation email": "Kirim ulang email konfirmasi", + "Resent confirmation email": "Email konfirmasi dikirim ulang", + "Reset": "", + "Reset my password": "", + "Reset password": "Atur ulang kata sandi", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "", + "Restricted": "Dibatasi", + "Return to the group page": "Kembali ke halaman kelompok", + "Right now": "Sekarang", + "Role": "", + "Rules": "Peraturan", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "SSL/TLS", + "Save": "Simpan", + "Save draft": "Simpan draf", + "Schedule": "Jadwal", + "Search": "Cari", + "Search events, groups, etc.": "Cari acara, kelompok, dll.", + "Searching…": "Mencari…", + "Select a language": "Pilih bahasa", + "Select a radius": "Pilih radius", + "Select a timezone": "Pilih zona waktu", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "Kirim email", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "Kirim email konfirmasi lagi", + "Send the report": "Kirim laporan", + "Set an URL to a page with your own privacy policy.": "Tetapkan URL ke halaman dengan kebijakan privasi Anda.", + "Set an URL to a page with your own terms.": "", + "Settings": "Pengaturan", + "Share": "Bagikan", + "Share this event": "Bagikan acara ini", + "Share this group": "Bagikan kelompok ini", + "Share this post": "", + "Short bio": "Bio singkat", + "Show map": "Tampilkan peta", + "Show me where I am": "Tampilkan di mana saya sekarang", + "Show remaining number of places": "", + "Show the time when the event begins": "Tampilkan waktu acara dimulai", + "Show the time when the event ends": "Tampilkan waktu acara berakhir", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "Bahasa Isyarat", + "Sign in with": "Masuk dengan", + "Sign up": "Daftar", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "Dimulai pada…", + "Status": "Status", + "Street": "", + "Submit": "Kirim", + "Subtitles": "Subtitel", + "Suspend": "", + "Suspend group": "", + "Suspended": "", + "Tag search": "", + "Task lists": "", + "Technical details": "Keterangan teknis", + "Tentative": "Tentative", + "Tentative: Will be confirmed later": "Tentative: Akan dikonfirmasi nanti", + "Terms": "", + "Terms of service": "Persyaratan layanan", + "Text": "Teks", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "URL telekonferensi Big Blue Button", + "The Google Meet video teleconference URL": "URL telekonferensi Google Meet", + "The Jitsi Meet video teleconference URL": "URL telekonferensi Jitsi Meet", + "The Microsoft Teams video teleconference URL": "URL telekonferensi Microsoft Teams", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "URL di mana acara dapat ditonton secara langsung", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "URL telekonferensi Zoom", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "Jumlah asli peserta mungkin berbeda, karena acara ini diselenggarakan instansi lain.", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "Draf acara telah diperbarui", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "Acara ini telah dibuat sebagai draf", + "The event has been published": "Acara ini telah dipublikasikan", + "The event has been updated": "Acara ini telah diperbarui", + "The event has been updated and published": "Acara ini telah diperbarui dan dipublikasikan", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "Video siaran langsung acara mengandung subtitel", + "The event live video does not contain subtitles": "Video siaran langsung acara tidak mengandung subtitel", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "Penyelenggara acara tidak menambahkan keterangan.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "Acara {event} dibuat oleh {profile}.", + "The event {event} was deleted by {profile}.": "Acara {event} dihapus oleh {profile}.", + "The event {event} was updated by {profile}.": "Acara {event} diperbarui oleh {profile}.", + "The events you created are not shown here.": "Acara-acara yang Anda buat tidak ditampilkan di sini.", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "Avatar kelompok ini diubah.", + "The group's banner was changed.": "Banner kelompok ini diubah.", + "The group's physical address was changed.": "", + "The group's short description was changed.": "Keterangan singkat kelompok ini diubah.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "Administrator instansi adalah seseorang atau suatu kesatuan yang menjalankan instansi Mobilizon ini.", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "Penyelenggara telah memilih untuk menutup komentar.", + "The page you're looking for doesn't exist.": "Halaman yang sedang Anda cari tidak ada.", + "The password was successfully changed": "Kata sandi berhasil diubah", + "The post {post} was created by {profile}.": "Postingan {post} dibuat oleh {profile}.", + "The post {post} was deleted by {profile}.": "Postingan {post} dihapus oleh {profile}.", + "The post {post} was updated by {profile}.": "Postingan {post} diperbarui oleh {profile}.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Laporan akan dikirim ke moderator instansi Anda. Anda dapat menjelaskan mengapa Anda melaporkan konten ini di bawah.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "Gambar yang dipilih terlalu berat. Anda harus memilih sebuah berkas yang lebih kecil dari {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Keterangan teknis dari kesalahan dapat membantu pengembang memecahkan masalahnya dengan lebih mudah. Harap tambahkan keterangan teknisnya ke umpan balik Anda.", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "Ada {participants} peserta.", + "There is no activity yet. Start doing some things to see activity appear here.": "Belum ada aktivitas. Mulai melakukan sesuatu untuk melihat aktivitas muncul di sini.", + "There will be no way to recover your data.": "Tidak akan ada cara untuk memulihkan data Anda.", + "There's no discussions yet": "", + "These events may interest you": "Acara-acara ini mungkin menarik untuk Anda", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Instansi Mobilizon ini dan penyelenggara ini mengizinkan peserta anonim, tetapi membutuhkan validasi melalui konfirmasi email.", + "This URL doesn't seem to be valid": "URL tidak terlihat valid", + "This URL is not supported": "URL ini tidak didukung", + "This event has been cancelled.": "Acara ini telah dibatalkan.", + "This event is accessible only through it's link. Be careful where you post this link.": "Acara ini hanya dapat diakses melalui tautannya. Berhati-hatilah di mana Anda memposting tautan ini.", + "This group doesn't have a description yet.": "Kelompok ini belum memiliki keterangan.", + "This group is accessible only through it's link. Be careful where you post this link.": "Kelompok ini hanya dapat diakses melalui tautannya. Berhati-hatilah di mana Anda memposting tautan ini.", + "This group is invite-only": "Kelompok ini adalah kelompok undang-saja", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "Informasi ini disimpan hanya di komputer Anda. Klik untuk keterangan", + "This instance hasn't got push notifications enabled.": "Instansi ini belum mengaktifkan notifikasi push.", + "This instance isn't opened to registrations, but you can register on other instances.": "Pendaftaran tidak dibuka untuk instansi ini, tetapi Anda dapat mendaftar di instansi lain.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "Ini adalah situs demonstrasi untuk menguji Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "Bulan ini", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "Pengaturan ini digunakan untuk menampilkan situs web dan mengirimkan Anda email dengan bahasa yang benar.", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Situs web ini tidak dimoderasi dan data yang Anda masukkan akan secara otomatis dihancurkan setiap hari pada pukul 00:01 (zona waktu Paris).", + "This week": "Pekan ini", + "This weekend": "Akhir pekan ini", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "Waktu dalam zona waktu Anda ({timezone})", + "Times in your timezone ({timezone})": "Waktu dalam zona waktu Anda ({timezone})", + "Timezone": "Zona waktu", + "Timezone detected as {timezone}.": "Zona waktu {timezone} terdeteksi.", + "Title": "Judul", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "Untuk mengkonfirmasi, ketik judul acara Anda \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "", + "To create and manage your events": "Untuk membuat dan mengelola acara-acara Anda", + "To create or join an group and start organizing with other people": "Untuk membuat atau bergabung ke suatu kelompok dan mulai menyelenggarakan bersama orang lain", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "", + "Today": "Hari Ini", + "Tomorrow": "Besok", + "Tools": "Alat", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "Siaran langsung Twitch", + "Twitch replay": "", + "Twitter account": "Akun Twitter", + "Type": "Jenis", + "Type or select a date…": "Ketik atau pilih suatu tanggal…", + "URL": "URL", + "URL copied to clipboard": "URL disalin ke papan klip", + "Unable to copy to clipboard": "Tidak dapat menyalin ke papan klip", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "Tidak dapat membuat profil. Gambar avatarnya mungkin terlalu berat.", + "Unable to detect timezone.": "Tidak dapat mendeteksi zona waktu.", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "Gagal menyimpan keikutsertaan Anda di browser ini.", + "Unable to update the profile. The avatar picture may be too heavy.": "Tidak dapat memperbarui profil. Gambar avatarnya mungkin terlalu berat.", + "Underline": "Garis Bawah", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "Sayangnya, permintaan keikutsertaan Anda ditolak oleh penyelenggara.", + "Unknown": "Tak diketahui", + "Unknown actor": "", + "Unknown error.": "Kesalahan tak dikenal.", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "Perubahan belum tersimpan", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "Akan datang", + "Upcoming events": "Acara-acara yang akan datang", + "Upcoming events from your groups": "", + "Update": "Perbarui", + "Update app": "Perbarui aplikasi", + "Update discussion title": "", + "Update event {name}": "Perbarui acara {name}", + "Update group": "Perbarui kelompok", + "Update my event": "Perbarui acara saya", + "Update post": "Perbarui postingan", + "Updated": "Diperbarui", + "Uploaded media size": "Ukuran media yang diunggah", + "Use my location": "Gunakan lokasi saya", + "User": "Pengguna", + "User settings": "Pengaturan pengguna", + "Username": "", + "Users": "", + "Validating account": "Memvalidasi akun", + "Validating email": "Memvalidasi email", + "Video Conference": "Telekonferensi", + "View a reply": "|Lihat satu balasan|Lihat {totalReplies} balasan", + "View account on {hostname} (in a new window)": "Lihat akun di {hostname} (di jendela baru)", + "View all": "Lihat semua", + "View all events": "Lihat semua acara", + "View all posts": "Lihat semua postingan", + "View event page": "Lihat halaman acara", + "View everything": "Lihat semuanya", + "View full profile": "", + "View less": "Lihat lebih sedikit", + "View more": "Lihat lebih banyak", + "View page on {hostname} (in a new window)": "Lihat halaman di {hostname} (di jendela baru)", + "Visibility was set to an unknown value.": "Visibilitas diatur menjadi nilai yang tak dikenal.", + "Visibility was set to private.": "", + "Visibility was set to public.": "Visibilitas diatur menjadi publik.", + "Visible everywhere on the web": "Terlihat di mana saja di web", + "Visible everywhere on the web (public)": "Terlihat di mana saja di web (publik)", + "Waiting for organization team approval.": "", + "Warning": "Peringatan", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Kami meningkatkan perangkat lunak terima kasih kepada umpan balik Anda. Untuk memberitahu kami tentang masalah ini, ada dua kemungkinan (keduanya sayangnya membutuhkan pembuatan akun):", + "We just sent an email to {email}": "Kami baru saja mengirim email ke {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Kami menggunakan zona waktu Anda untuk memastikan Anda mendapatkan notifikasi untuk suatu acara di waktu yang benar.", + "We will redirect you to your instance in order to interact with this event": "Kami akan membawa Anda ke instansi Anda untul berinteraksi dengan acara ini", + "We will redirect you to your instance in order to interact with this group": "Kami akan membawa Anda ke instansi Anda untuk berinteraksi dengan kelompok ini", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Kami akan mengirimkan Anda sebuah email satu jam sebelum acara dimulai, untuk memastikan Anda tidak akan melupakan acaranya.", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "Situs Web", + "Website / URL": "Situs Web / URL", + "Weekly email summary": "", + "Welcome back {username}!": "Selamat datang kembali {username}!", + "Welcome back!": "Selamat datang kembali!", + "Welcome to Mobilizon, {username}!": "Selamat datang di Mobilizon, {username}!", + "What can I do to help?": "Apa yang dapat saya lakukan untuk membantu?", + "Wheelchair accessibility": "Aksesibilitas kursi roda", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "Apakah acaranya dapat diakses menggunakan kursi roda", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "Apakah subtitel tersedia pada video siaran langsung acara", + "Who can post a comment?": "Siapa yang dapat berkomentar?", + "Who can view this event and participate": "Siapa yang dapat melihat acara ini dan ikut serta", + "Who can view this post": "Siapa yang dapat melihat postingan ini", + "Who published {number} events": "Yang mempublikasikan {number} acara", + "Why create an account?": "Kenapa buat sebuah akun?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "|Satu kilometer dari {place}|{number} kilometer dari {place}", + "Yesterday": "Kemarin", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "Anda menambahkan anggota {member}.", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "Anda bukan administrator dari kelompok ini.", + "You are not part of any group.": "Anda tidak dalam kelompok apapun.", + "You are offline": "Anda luring", + "You are participating in this event anonymously": "Anda ikut serta pada acara ini secara anonim", + "You are participating in this event anonymously but didn't confirm participation": "Anda ikut serta pada acara ini secara anonim tetapi Anda tidak mengkonfirmasi keikutsertaan", + "You can add tags by hitting the Enter key or by adding a comma": "Anda dapat menambahkan tag dengan menekan tombol Enter atau dengan menambahkan koma", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "Anda tidak dapat mengubah kata sandi Anda karena Anda mendaftar melalui {provider}.", + "You can't use push notifications in this browser.": "Anda tidak dapat menggunakan notifikasi push di browser ini.", + "You changed your email or password": "Anda mengubah email atau kata sandi Anda", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "Anda membuat acara {acara}.", + "You created the folder {resource}.": "", + "You created the group {group}.": "Anda membuat kelompok {group}.", + "You created the post {post}.": "Anda membuat postingan {post}.", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "Anda menghapus acara {event}.", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "Anda menghapus postingan {post}.", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "Anda belum membuat atau bergabung ke suatu acara.", + "You don't follow any instances yet.": "Anda belum mengikuti instansi apapun.", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "Anda telah diundang oleh {invitedBy} ke kelompok berikut:", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "Anda telah membatalkan keikutsertaan Anda", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "Anda mengundang {member}.", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "Anda dapat menutup jendela ini sekarang, atau {return_to_event}.", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "Anda harus masuk.", + "You posted a comment on the event {event}.": "Anda memposting komentar ke acara {event}.", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "Anda mempromosikan {member} menjadi administrator.", + "You promoted {member} to moderator.": "Anda mempromosikan {member} menjadi moderator.", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "Anda membalas suatu komentar di acara {event}.", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "Anda memperbarui acara {event}.", + "You updated the group {group}.": "Anda memperbarui kelompok {group}.", + "You updated the member {member}.": "Anda memperbarui anggota {member}.", + "You updated the post {post}.": "Anda memperbarui postingan {post.", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "Anda dipromosikan menjadi administrator oleh {profile}.", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "Anda dipromosikan menjadi moderator oleh {profile}.", + "You will be able to add an avatar and set other options in your account settings.": "", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "Anda ingin ikut serta dalam acara berikut", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "Anda akan menerima email konfirmasi.", + "YouTube live": "Siaran langsung YouTube", + "YouTube replay": "", + "Your account has been successfully deleted": "Akun Anda berhasil dihapus", + "Your account has been validated": "Akun Anda telah divalidasi", + "Your account is being validated": "Akun Anda sedang di validasi", + "Your account is nearly ready, {username}": "Akun Anda hampir siap, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "Email Anda saat ini adalah {email}. Anda menggunakannya untuk masuk.", + "Your email": "Email Anda", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "Email Anda telah diubah", + "Your email is being changed": "Email Anda sedang diubah", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Email Anda hanya digunakan untuk mengkonfirmasi bahwa Anda benar-benar seseorang dan untuk mengirimkan Anda kabar tentang acara ini. Itu TIDAK akan dibagikan ke instansi lain atau ke penyelengi acara.", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "Keikutsertaan Anda telah dikonfirmasi", + "Your participation has been rejected": "Keikutsertaan Anda telah ditolak", + "Your participation has been requested": "", + "Your participation request has been validated": "Keikutsertaan Anda telah divalidasi", + "Your participation request is being validated": "Keikutsertaan Anda sedang divalidasi", + "Your participation status has been changed": "Status keikutsertaan Anda telah diubah", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Status keikutsertaan Anda disimpan hanya di perangkat ini dan akan dihapus satu bulan setelah acara berlalu.", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "Posisi Anda tidak tersedia.", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "Zona waktu Anda saat ini ditetapkan menjadi {timezone}.", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "Zona waktu Anda {timezone} tidak didukung.", + "Your upcoming events": "", + "Zoom": "Zoom", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "[Komentar ini telah dihapus oleh penulisnya]", + "[This comment has been deleted]": "[Komentar ini telah dihapus]", + "[deleted]": "[dihapus]", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "sebagai {identity}", + "contact uninformed": "", + "create a group": "buat kelompok", + "create an event": "membuat sebuah acara", + "default Mobilizon privacy policy": "kebijakan privasi default Mobilizon", + "default Mobilizon terms": "", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "mengaktifkan fiturnya", + "explore the events": "jelajahi acara-acara", + "explore the groups": "jelajahi kelompok-kelompok", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "Feed iCal", + "instance rules": "peraturan instansi", + "more than 1360 contributors": "lebih dari 1360 kontributor", + "profile@instance": "profil@instansi", + "report #{report_number}": "laporan #{report_number}", + "return to the event's page": "kembali ke halaman acara", + "terms of service": "persyaratan layanan", + "with another identity…": "dengan identitas lain…", + "your notification settings": "", + "{'@'}{username}": "{'@'}{username}", + "{approved} / {total} seats": "", + "{available}/{capacity} available places": "", + "{count} km": "{count} km", + "{count} members": "Tidak ada anggota|Satu anggota|{count} anggota", + "{count} members or followers": "", + "{count} participants": "Belum ada peserta | Satu peserta | {count} peserta", + "{count} requests waiting": "{count} permintaan menunggu", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "Postingan-postingan {group}", + "{group}'s events": "Acara-acara {group}", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} adalah sebuah instansi perangkat lunak {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} adalah sebuah instansi {mobilizon_link}, perangkat lunak gratis dari masyarakat.", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "{member} diundang oleh {profile}.", + "{moderator} added a note on {report}": "{moderator} menambahkan catatan pada {report}", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "{moderator} menghapus acara bernama \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} telah menghapus sebuah komentar dari {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} telah menghapus sebuah komentar dari {author} di acara {event}", + "{moderator} has deleted user {user}": "{moderator} telah menghapus pengguna {user}", + "{moderator} has done an unknown action": "{moderator} telah melakukan tindakan yang tak dikenal", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "{moderator} menandai {report} sebagai selesai", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "{nb} km", + "{number} members": "{number} anggota", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "Tidak pernah ikut serta|Satu keikutsertaan|{number} keikutsertaan", + "{number} posts": "Tidak ada postingan|Satu postingan|{number} postingan", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "{old_group_name} telah berubah nama menjadi {group}.", + "{profile} (by default)": "", + "{profile} added the member {member}.": "{profile} menambahkan anggota {member}.", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "{profile} membuat kelompok {group}.", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "{profile} memposting komentar di acara {event}.", + "{profile} promoted {member} to administrator.": "{profile} mempromosikan {member} menjadi administrator.", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "{profile} mempromosikan {member} menjadi moderator.", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "{profile} membalas suatu komentar di acara {event}.", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "{profile} memperbarui kelompok {group}.", + "{profile} updated the member {member}.": "{profile} memperbarui anggota {member}.", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "{username} diundang ke {group}", + "© The OpenStreetMap Contributors": "© Kontributor OpenStreetMap" +}); diff --git a/res/locale/it.js b/res/locale/it.js new file mode 100644 index 0000000..3d6e22a --- /dev/null +++ b/res/locale/it.js @@ -0,0 +1,1658 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Nascosto)", + "(this folder)": "(questa cartella)", + "(this link)": "(questo link)", + "+ Add a resource": "+ Aggiungi una risorsa", + "+ Create a post": "+ Crea un messaggio", + "+ Create an event": "+ Crea un evento", + "+ Start a discussion": "+ Inizia una discussione", + "0 Bytes": "0 Bytes", + "{contact} will be displayed as contact.": "{contact} verrà visualizzato come contatto.|{contact} verranno visualizzati come contatti.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "La richiesta di poter seguire da parte dell'utente @{username} è stata accettata", + "@{username}'s follow request was rejected": "La richiesta di follow a @{username} è stata respinta", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Un cookie è un piccolo file contenente informazioni che vengono inviate al tuo computer quando visiti un sito web. Quando visiti nuovamente il sito, il cookie consente a quel sito di riconoscere il tuo browser. I cookie possono memorizzare le preferenze dell'utente e altre informazioni. Puoi configurare il tuo browser per rifiutare tutti i cookie. Tuttavia, ciò potrebbe comportare il funzionamento parziale di alcune funzionalità o servizi del sito Web. L'archiviazione locale funziona allo stesso modo ma consente di archiviare più dati.", + "A discussion has been created or updated": "Una discussione è stata creata o aggiornata", + "A federated software": "Un software federato", + "A fediverse account URL to follow for event updates": "Un URL dell'account Fediverso da seguire per gli aggiornamenti sull'evento", + "A few lines about your group": "Qualche riga sul tuo gruppo", + "A link to a page presenting the event schedule": "Un link a una pagina che presenta il programma dell'evento", + "A link to a page presenting the price options": "Un link a una pagina che presenta le opzioni di prezzo", + "A member has been updated": "Un membro è stato aggiornato", + "A member requested to join one of my groups": "Un membro ha richiesto di poter unirsi ad uno dei miei gruppi", + "A new version is available.": "Una nuova versione è disponibile.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Un posto per il codice di condotta, le regole o le linee guida. Puoi uare tag HTML.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Un posto per spiegare chi sei e cosa rende la tua istanza particolare. Puoi usare tag HTML.", + "A place to publish something to the whole world, your community or just your group members.": "Un luogo per pubblicare qualcosa in tutto il mondo, nella tua comunità o solo nei membri del tuo gruppo.", + "A place to store links to documents or resources of any type.": "Un luogo in cui archiviare collegamenti a documenti o risorse di qualsiasi tipo.", + "A post has been published": "Un messaggio è stato pubblicato", + "A post has been updated": "Un messaggio è stato aggiornato", + "A practical tool": "Uno strumento pratico", + "A resource has been created or updated": "Una risorsa è stata creata o aggiornata", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Un breve slogan per la pagina principale della tua istanza. Il valore predefinito è \"Raccogli ⋅ Organizza ⋅ Mobilita\"", + "A twitter account handle to follow for event updates": "Un account Twitter da seguire per gli aggiornamenti sull'evento", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Uno strumento facile da usare, emancipatore ed etico per riunirsi, organizzarsi e mobilitarsi.", + "A validation email was sent to {email}": "Una email di convalida è stata spedita a {email}", + "API": "API", + "Abandon editing": "Abbandona la modifica", + "About": "Info Istanza", + "About Mobilizon": "Su Mobilizon", + "About anonymous participation": "Riguardo la partecipazione anonima", + "About instance": "Informazioni sull'istanza", + "About this event": "Su questo evento", + "About this instance": "Su questa istanza", + "About {instance}": "Informazioni su {instance}", + "Accept": "Accetta", + "Accept follow": "Accetta di essere seguito", + "Accepted": "Accettato", + "Access drafts events": "Accedi agli eventi in bozza", + "Access followed groups": "Accesso ai gruppi seguiti", + "Access group activities": "Accedi alle attività di gruppo", + "Access group discussions": "Accedi alle discussioni di gruppo", + "Access group events": "Accesso agli eventi del gruppo", + "Access group followers": "Accedi ai follower del gruppo", + "Access group members": "Accedi ai membri del gruppo", + "Access group memberships": "Accesso alle sottoscrizioni ai gruppi", + "Access group suggested events": "Accesso agli eventi suggeriti dal gruppo", + "Access group todo-lists": "Accedi agli elenchi di cose da fare (liste to-do) del gruppo", + "Access organized events": "Accesso agli eventi organizzati", + "Access participations": "Accesso alle partecipazioni", + "Access your group's resources": "Accedi alle risorse del tuo gruppo", + "Accessibility": "Accessibilità", + "Accessible only by link": "Accessibile solo tramite link", + "Accessible only to members": "Accessibile solo ai membri", + "Accessible through link": "Accessibile tramite il collegamento", + "Account": "Account", + "Account settings": "Impostazioni dell'account", + "Actions": "Azioni", + "Activate browser push notifications": "Attiva le notifiche push dal browser", + "Activate notifications": "Attivare le notifiche", + "Activated": "Attivato", + "Active": "Attivo", + "Activity": "Attività", + "Actor": "Partecipante", + "Adapt to system theme": "Segui il tema di sistema", + "Add": "Aggiungi", + "Add / Remove…": "Aggiunti / Rimuovi…", + "Add a contact": "Aggiungi un contatto", + "Add a new post": "Aggiungi un nuovo post", + "Add a note": "Aggiungi una nota", + "Add a recipient": "Aggiungi un destinatario", + "Add a todo": "Aggiungi una cosa da fare", + "Add an address": "Aggiungi un indirizzo", + "Add an instance": "Aggiungi un'istanza", + "Add link": "Aggiungi collegamento", + "Add new…": "Aggiungi nuovo…", + "Add picture": "Aggiungi immagine", + "Add some tags": "Aggiungi alcuni tags", + "Add to my calendar": "Aggiungi al mio calendario", + "Additional comments": "Commenti aggiuntivi", + "Admin": "Amministratore", + "Admin dashboard": "Pannello di amministrazione", + "Admin settings": "Impostazioni dell'amministratore", + "Admin settings successfully saved.": "Impostazioni dell'amministratore salvate con successo.", + "Administration": "Amministrazione", + "Administrator": "Amministratore", + "All": "Tutti", + "All activities": "Tutte le attività", + "All good, let's continue!": "Tutto a posto, continuiamo!", + "All the places have already been taken": "Tutti i posti sono stati già occupati", + "Allow all comments from users with accounts": "Consenti tutti i commenti degli utenti che hanno effettuato l'accesso", + "Allow registrations": "Consenti registrazioni", + "An URL to an external ticketing platform": "Un URL a una piattaforma di biglietteria esterna", + "An anonymous profile joined the event {event}.": "Un profilo anonimo si è unito all'evento {event}.", + "An error has occured while refreshing the page.": "Si è verificato un errore durante il ricaricamento della pagina.", + "An error has occured. Sorry about that. You may try to reload the page.": "Si è verificato un errore. Ci scusiamo. Potresti provare a ricaricare la pagina.", + "An ethical alternative": "Un'alternativa etica", + "An event I'm going to has been updated": "Un evento di cui sarò aggiornato", + "An event I'm going to has posted an announcement": "Un evento di cui sarò aggiornato ha inviato un annuncio", + "An event I'm organizing has a new comment": "Un evento che sto organizzando ha un nuovo commento", + "An event I'm organizing has a new participation": "Un evento che sto organizzando ha una nuova partecipazione", + "An event I'm organizing has a new pending participation": "Un evento che sto organizzando ha una nuova richiesta di partecipazione", + "An event from one of my groups has been published": "Un evento di uno dei miei gruppi è stato pubblicato", + "An event from one of my groups has been updated or deleted": "Un evento di uno dei miei gruppi è stato aggiornato o eliminato", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Un'istanza è una versione installata del software Mobilizon in esecuzione su un server. Un istanza può essere gestita da chiunque utilizzi il {mobilizon_software} o un altre apps federate, note anche come \"fediverso\". Il nome di quest'istanza è {instance_name}. Mobilizon è una rete federata di più istanze (roprio come i server e-mail), utenti registrati su istanze diverse possono comunque comunicare anche se non si sono registrati nella stessa istanza.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "Una \"interfaccia di programmazione dell'applicazione\" o \"API\" è un protocollo di comunicazione che consente ai componenti software di comunicare tra loro. L'API Mobilizon, ad esempio, può consentire a strumenti software di terze parti di comunicare con le istanze Mobilizon per eseguire determinate azioni, come la pubblicazione di eventi per tuo conto, automaticamente e da remoto.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events, automatically and remotely.": "Una \"interfaccia di programmazione dell'applicazione\" o \"API\" è un protocollo di comunicazione che consente ai componenti software di comunicare tra loro. L'API Mobilizon, ad esempio, può consentire a strumenti software di terze parti di comunicare con le istanze Mobilizon per eseguire determinate azioni, come la pubblicazione di eventi, automaticamente e da remoto.", + "And {number} comments": "E {number} commenti", + "Announcements": "Annunci", + "Announcements and mentions notifications are always sent straight away.": "Le notifiche di annunci e menzioni vengono inviate sempre istantaneamente.", + "Announcements for {eventTitle}": "Annunci per {eventTitle}", + "Anonymous participant": "Partecipante anonimo", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Ai partecipanti anonimi verrà chiesto di confermare la loro partecipazione tramite e-mail.", + "Anonymous participations": "Partecipante anonimo", + "Any category": "Qualsiasi categoria", + "Any day": "Qualunque giorno", + "Any distance": "Qualsiasi distanza", + "Any type": "Qualsiasi tipo", + "Anyone can join freely": "Chiunque può iscriversi liberamente", + "Anyone can request being a member, but an administrator needs to approve the membership.": "Chiunque può richiedere di diventare membro, ma un amministratore deve approvare l'iscrizione.", + "Anyone wanting to be a member from your group will be able to from your group page.": "Chiunque desideri essere un membro del tuo gruppo potrà farlo dalla pagina del tuo gruppo.", + "Application": "Applicazione", + "Application authorized": "Applicazione autorizzata", + "Application not found": "Applicazione non trovata", + "Application was revoked": "L'applicazione è stata revocata", + "Apply filters": "Applica i filtri", + "Approve member": "Approva membro", + "Apps": "Applicazioni", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Sei davvero sicuro di voler eliminare l'intero account? Perderai tutto. Identità, impostazioni, eventi creati, messaggi e partecipazioni verranno eliminati per sempre.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Sei sicuro di voler eliminare completamente questo gruppo? Tutti i membri, inclusi quelli remoti, verranno avvisati e rimossi dal gruppo e tutti i dati del gruppo (eventi, post, discussioni, cose da fare ...) verranno irrimediabilmente distrutti.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Sei sicuro di voler eliminare questo commento? Questa azione non può essere annullata.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Sei sicuro di voler eliminare questo commento? Questa azione non può essere annullata.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator and ask them to edit their event instead.": "Sei sicuro di voler eliminare questo evento? Questa azione non può essere annullata. In laternativa potresti avviare un discussione con il creatore dell'evento e chiedergli di modificarlo.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Sei sicuro di voler cancellare questo evento? L'azione non può essere annullata. Potresti parlarne con il creatore dell'evento o piuttosto modificare il suo evento.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Sei sicuro di voler sospendere questo gruppo? Tutti i membri, inclusi quelli remoti, verranno avvisati e rimossi dal gruppo e tutti i dati del gruppo (eventi, post, discussioni, cose da fare ...) verranno irrimediabilmente distrutti.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Sei sicuro di voler sospendere questo gruppo? Poiché questo gruppo ha origine dall'istanza {instance}, rimuoverà solo i membri locali ed eliminerà i dati locali, oltre a rifiutare tutti i dati futuri.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Sei sicuro di voler annullare la creazione dell'evento? Perderai tutte le modifiche.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Sei sicuro di voler annullare l'edizione dell'evento? Perderai tutte le modifiche.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Sei sicuro di voler annullare la tua partecipazione all'evento \"{title}\"?", + "Are you sure you want to delete this entire conversation?": "Sei sicuro di voler eliminare l'intera conversazione?", + "Are you sure you want to delete this entire discussion?": "Sicuri di voler eliminare questa intera discussione?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Sei sicuro di voler cancellare questo evento? Questa azione è irreversibile.", + "Are you sure you want to delete this post? This action cannot be reverted.": "Sei sicuro di voler cancellare questo post? Questa azione non può essere annullata.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Sei sicuro di voler lasciare il gruppo {groupName}? Perderai l'accesso ai contenuti privati di questo gruppo. Questa azione non può essere annullata.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Poiché chi organizza l'evento ha scelto di approvare manualmente le richieste di partecipazione, la tua partecipazione sarà realmente confermata una volta che riceverai una mail che indica che è stata accettata.", + "Ask your instance admin to {enable_feature}.": "Chiedi all'amministratore della tua istanza di {enable_feature}.", + "Assigned to": "Assegnato a", + "Atom feed for events and posts": "Atom feed per eventi e messaggi", + "Attending": "Partecipanti", + "Authorize": "Autorizza", + "Authorize application": "Autorizza l'applicazione", + "Authorized on {authorization_date}": "Autorizzato il {authorization_date}", + "Autorize this application to access your account?": "Autorizzi questa applicazione ad accedere al tuo account?", + "Avatar": "Avatar", + "Back to group list": "Torna all'elenco dei gruppi", + "Back to homepage": "Torna alla pagina principale", + "Back to previous page": "Torna alla pagina precedente", + "Back to profile list": "Torna all'elenco dei profili", + "Back to top": "Torna all'inizio", + "Back to user list": "Torna all'elenco degli utenti", + "Banner": "Banner", + "Become part of the community and start organizing events": "Entra a far parte della comunità e inizia a organizzare eventi", + "Before you can login, you need to click on the link inside it to validate your account.": "Prima di poter accedere, è necessario cliccare sul collegamento al suo interno per convalidare il tuo account.", + "Begins on": "Comincia a", + "Best match": "Miglior corrispondenza", + "Big Blue Button": "Big Blue Button", + "Bold": "Grassetto", + "Booking": "Prenotazione", + "Breadcrumbs": "Breadcrumb", + "Browser notifications": "Notifiche del browser", + "Browser tab icon and PWA icon of the instance. Defaults to the upstream Mobilizon icon.": "Icona della scheda del browser e icona PWA dell'istanza. Il valore predefinito è l'icona Mobilizon upstream.", + "Bullet list": "Elenco puntato", + "By bike": "In bicicletta", + "By car": "In macchina", + "By others": "Da altri", + "By transit": "Con trasporto pubblico", + "By {group}": "Da {group}", + "By {username}": "Da {username}", + "Calendar": "Calendario", + "Can be an email or a link, or just plain text.": "Può essere un'email o un collegamento, oppure testo semplice.", + "Cancel": "Cancella", + "Cancel anonymous participation": "Cancella partecipante anonimo", + "Cancel creation": "Cancella creazione", + "Cancel discussion title edition": "Cancella il titolo della discussione", + "Cancel edition": "Cancella edizione", + "Cancel follow request": "Annulla la richiesta di seguire", + "Cancel membership request": "Annulla la richiesta di iscrizione", + "Cancel my participation request…": "Cancella la mia richiesta di partecipazione…", + "Cancel my participation…": "Cancella la mia partecipazione…", + "Cancel participation": "Annulla la partecipazione", + "Cancelled": "Cancellato", + "Cancelled: Won't happen": "Annullato: Non si svolgerà", + "Categories": "Categorie", + "Category": "Catagoria", + "Category illustrations credits": "Crediti per le illustrazioni delle categorie", + "Category list": "Elenco delle categorie", + "Change": "Cambia", + "Change email": "Cambia email", + "Change my email": "Cambia la mia email", + "Change my identity…": "Cambia la mia identità…", + "Change my password": "Cambia la mia password", + "Change role": "Cambia ruolo", + "Change the filters.": "Cambia i filtri.", + "Change timezone": "Cambia il fuso orario", + "Change user email": "Cambiare l'email dell'utente", + "Change user role": "Modifica il ruolo dell'utente", + "Check your device to continue. You may now close this window.": "Controlla il tuo dispositivo per continuare. Ora puoi chiudere questa finestra.", + "Check your inbox (and your junk mail folder).": "Controlla la tua casella di posta (e la cartella della posta indesiderata).", + "Choose the source of the instance's Privacy Policy": "Scegliere la fonte dell'Informativa sulla privacy dell'istanza", + "Choose the source of the instance's Terms": "Scegliere la fonte dei Termini dell'istanza", + "City or region": "Città o regione", + "Clear": "Sgombra", + "Clear address field": "Cancella il campo dell'indirizzo", + "Clear date filter field": "Cancella il campo del filtro della data", + "Clear participation data for all events": "Rimuovi dati di partecipazione per tutti gli eventi", + "Clear participation data for this event": "Rimuovi dati di partecipazione per questo evento", + "Clear timezone field": "Cancella il campo fuso orario", + "Click for more information": "Clicca per più informazioni", + "Click to upload": "Clicca per caricare", + "Close": "Chiudi", + "Close comments for all (except for admins)": "Chiudi i commenti per tutti (eccetto per amministratori)", + "Close map": "Chiudere la mappa", + "Closed": "Chiuso", + "Comment body": "Corpo del commento", + "Comment deleted": "Commento eliminato", + "Comment deleted and report resolved": "Commento eliminato e segnalazione risolta", + "Comment from a private conversation": "Commento da una conversazione privata", + "Comment from an event announcement": "Commento dall'avviso di un evento", + "Comment from {'@'}{username} reported": "Commento da {'@'}{username} segnalato", + "Comment text can't be empty": "Il testo di commento non può essere vuoto", + "Comment under event {eventTitle}": "Commenta sotto l'evento {eventTitle}", + "Comments": "Commenti", + "Comments are closed for everybody else.": "I commenti sono disabilitati per tutti gli altri.", + "Confirm": "Conferma", + "Confirm my participation": "Conferma la mia partecipazione", + "Confirm my particpation": "Conferma la mia partecipazione", + "Confirm participation": "Conferma partecipazione", + "Confirm user": "Conferma utente", + "Confirmed": "Confermato", + "Confirmed at": "Confermato a", + "Confirmed: Will happen": "Confermato: si svolgerà", + "Congratulations, your account is now created!": "Congratulazioni, il tuo account è ora creato!", + "Contact": "Contatta", + "Continue": "Continua", + "Continue editing": "Continua la modifica", + "Conversation with {participants}": "Conversazione con {participants}", + "Conversations": "Conversazioni", + "Cookies and Local storage": "Cookie e memoria locale", + "Copy URL to clipboard": "Copia URL negli appunti", + "Copy details to clipboard": "Copia i dettagli negli appunti", + "Country": "Paese", + "Create": "Crea", + "Create a calc": "Crea un calc", + "Create a discussion": "Crea una discussione", + "Create a folder": "Crea una cartella", + "Create a new event": "Crea un nuovo evento", + "Create a new group": "Creare un nuovo gruppo", + "Create a new identity": "Crea una nuova identità", + "Create a new list": "Crea una nuova lista", + "Create a new metadata element": "Crea un nuovo elemento di metadati", + "Create a new profile": "Crea un nuovo profilo", + "Create a pad": "Crea un pad", + "Create a videoconference": "Crea una videoconferenza", + "Create an account": "Crea un account", + "Create discussion": "Crea Discussione", + "Create event": "Crea un evento", + "Create feed tokens": "Creare token del feed", + "Create group": "Crea gruppo", + "Create group discussions": "Creare discussioni di gruppo", + "Create group resources": "Creare risorse di gruppo", + "Create identity": "Crea identità", + "Create my event": "Crea il mio evento", + "Create my group": "Crea il mio gruppo", + "Create my profile": "Crea il mio profilo", + "Create new links": "Crea nuovi collegamenti", + "Create new profiles": "Creare nuovi profili", + "Create resource": "Crea risorsa", + "Create the discussion": "Crea la discussione", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Crea liste delle cose da fare (to-do) per tutte le mansioni di cui hai bisogno, fissa e configura le date in cui farle.", + "Create token": "Crea gettone", + "Created by {name}": "Creato da {name}", + "Created by {username}": "Creato da {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "L'attuale identità è stata cambiata in {identityName} per gestire questo evento.", + "Current page": "Pagina corrente", + "Custom": "Personalizzato", + "Custom URL": "URL personalizzato", + "Custom text": "Testo personalizzato", + "Daily email summary": "Riepilogo email giornaliero", + "Dark": "Scuro", + "Dashboard": "Pannello di controllo", + "Date": "Data", + "Date and time": "Data e ora", + "Date and time settings": "Impostazioni data e ora", + "Date parameters": "Parametri data", + "Deactivate notifications": "Disattivare le notifiche", + "Decline": "Rifiuta", + "Decrease": "Riduci", + "Default": "Predefinito", + "Default Mobilizon privacy policy": "Informativa sulla riservatezza predefinita di Mobilizon", + "Default Mobilizon terms": "Termini di Mobilizon predefiniti", + "Default Picture": "Immagine predefinita", + "Default picture when an event or group doesn't have one.": "Immagine predefinita quando un evento o un gruppo non ne ha una propria.", + "Delete": "Elimina", + "Delete account": "Elimina account", + "Delete comment": "Elimina commento", + "Delete comment and resolve report": "Elimina il commento e chiudi il report", + "Delete comments": "Eliminare i commenti", + "Delete conversation": "Elimina la conversazione", + "Delete discussion": "Elimina discussione", + "Delete event": "Elimina evento", + "Delete event and resolve report": "Elimina l'evento e risolvi il report", + "Delete events": "Elimina eventi", + "Delete everything": "Elimina tutto", + "Delete feed tokens": "Eliminare token del feed", + "Delete group": "Elimina gruppo", + "Delete group discussions": "Eliminare le discussioni di gruppo", + "Delete group posts": "Elimina i post del gruppo", + "Delete group resources": "Elimina le risorse del gruppo", + "Delete my account": "Elimina il mio account", + "Delete post": "Elimina post", + "Delete profiles": "Eliminare profili", + "Delete this conversation": "Elimina questa conversazione", + "Delete this discussion": "Elimina questa discussione", + "Delete this identity": "Elimina questa identità", + "Delete your identity": "Elimina la tua identità", + "Delete {eventTitle}": "Elimina {eventTitle}", + "Delete {preferredUsername}": "Elimina {preferredUsername}", + "Deleting comment": "Eliminazione commento", + "Deleting event": "Eliminazione evento", + "Deleting my account will delete all of my identities.": "L'eliminazione del mio account eliminerà tutte le mie identità.", + "Deleting your Mobilizon account": "Eliminazione del tuo account Mobilizon", + "Demote": "Retrocedi", + "Describe your event": "Descrivi il tuo evento", + "Description": "Descrizione", + "Details": "Dettagli", + "Device activation": "Attivazione del dispositivo", + "Didn't receive the instructions?": "Non hai ricevuto le istruzioni?", + "Disabled": "Disattivato", + "Discussions": "Discussioni", + "Discussions list": "Lista discussione", + "Display name": "Nome da visualizzare", + "Display participation price": "Mostra il prezzo di partecipazione", + "Displayed nickname": "Nickname visualizzato", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Visualizzato sulla home page e nei meta tag. Descrivi cos'è Mobilizon e cosa rende speciale questa istanza in un solo paragrafo.", + "Distance": "Distanza", + "Do not receive any mail": "Non ricevere email", + "Do you really want to suspend the account « {emailAccount} » ?": "Vuoi davvero sospendere l'account « {emailAccount} » ?", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Vuoi davvero sospendere questo account? Tutti i profili dell'utente saranno cancellati.", + "Do you really want to suspend this profile? All of the profiles content will be deleted.": "Vuoi davvero sospendere questo profilo? Tutto il contenuto del profilo verrà eliminato.", + "Do you wish to {create_event} or {explore_events}?": "Desideri {create_event} o {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Desideri {create_group} o {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "L'evento deve essere confermato in seguito o è stato cancellato?", + "Domain": "Dominio", + "Domain or instance name": "Nome del dominio o dell'istanza", + "Draft": "Bozza", + "Drafts": "Bozze", + "Due on": "Scade il", + "Duplicate": "Duplicare", + "Edit": "Modifica", + "Edit post": "Modifica post", + "Edit profile {profile}": "Modifica il profilo {profile}", + "Edit user email": "Edita l'email dell'utente", + "Edited {ago}": "Modificato {ago}", + "Edited {relative_time} ago": "Modificato {relative_time} fa", + "Eg: Stockholm, Dance, Chess…": "Es: Stoccolma, ballo, scacchi…", + "Either on the {instance} instance or on another instance.": "O nell'istanza {instance} o in un'altra.", + "Either the account is already validated, either the validation token is incorrect.": "L'account è già stato convalidato o il token di validazione non è corretto.", + "Either the email has already been changed, either the validation token is incorrect.": "L'email è già stata cambiata o il token di validazione non è corretto.", + "Either the participation request has already been validated, either the validation token is incorrect.": "O la richiesta di partecipazione è stata validata, oppure il token di validazione è sbagliato.", + "Either your participation has already been cancelled, either the validation token is incorrect.": "O la tua partecipazione è già stata annullata, oppure il token di convalida non è corretto.", + "Element title": "Titolo dell'elemento", + "Element value": "Valore dell'elemento", + "Email": "Email", + "Email address": "Indirizzo e-mail", + "Email validate": "Convalida dell'email", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "Le email di solito non contengono maiuscole, assicuratevi di non aver commesso un errore di battitura.", + "Enabled": "Abilitato", + "Ends on…": "Finisce il…", + "Enter the code displayed on your device": "Inserisci il codice visualizzato sul tuo dispositivo", + "Enter the link URL": "Inserisci l'URL del link", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Inserisci il tuo indirizzo email qui sotto, e ti invieremo un'email con le istruzioni su come modificare la password.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Inserisci la tua politica sulla riservatezza. Tag HTML consentiti. La {mobilizon_privacy_policy} viene fornita come modello.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Inserisci i tuoi termini. Tag HTML consentiti. I {mobilizon_terms} sono forniti come modello.", + "Error": "Errore", + "Error details copied!": "Dettagli dell'errore copiati!", + "Error message": "Messaggio di errore", + "Error stacktrace": "Stacktrace dell'errore", + "Error while adding tag: {error}": "Errore durante l'aggiunta del tag: {error}", + "Error while cancelling your participation": "Errore durante l'annullamento della tua partecipazione", + "Error while changing email": "Errore nel cambiamento della mail", + "Error while loading the preview": "Errore nel caricamento dell'anteprima", + "Error while login with {provider}. Retry or login another way.": "Si è verifcato un errore durante il login con {providel}. Riprova o fai il login in altro modo.", + "Error while login with {provider}. This login provider doesn't exist.": "Si è verificato un errore durante il login con {provider}. Questo provider non esiste.", + "Error while reporting group {groupTitle}": "Errore durante la segnalazione del gruppo {groupTitle}", + "Error while subscribing to push notifications": "Errore nel sottoscrivere le notifiche push", + "Error while suspending group": "Errore nel sospendere un gruppo", + "Error while updating participation status inside this browser": "Errore durante l'aggiornamento dello stato di partecipazione nel browser", + "Error while validating account": "Errore nella validazione dell'account", + "Error while validating participation request": "Errore nella validazione della richiesta di partecipazione", + "Etherpad notes": "Etherpad notes", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Alternativa etica agli eventi, ai gruppi e alle pagine di Facebook, Mobilizon è uno strumento progettato per servirti. Punto.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Alternativa etica agli eventi, ai gruppi e alle pagine di Facebook, Mobilizon è uno {tool_designed_to_serve_you}.", + "Event": "Evento", + "Event URL": "URL evento", + "Event already passed": "Evento già trascorso", + "Event cancelled": "Evento cancellato", + "Event creation": "Creazione evento", + "Event date": "Data dell'evento", + "Event deleted": "Evento eliminato", + "Event deleted and report resolved": "Evento eliminato e segnalazione conclusa", + "Event description body": "Corpo descrizione evento", + "Event edition": "Versione evento", + "Event list": "Lista eventi", + "Event metadata": "Metadata dell'evento", + "Event page settings": "Configurazione della pagina dell'evento", + "Event status": "Sato dell'evento", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Il fuso orario dell'evento sarà impostato di default sul fuso orario dell'indirizzo dell'evento, se presente, o sul fuso orario impostato dall'utente.", + "Event to be confirmed": "Evento da confermare", + "Event {eventTitle} deleted": "Evento {eventTitle} rimosso", + "Event {eventTitle} reported": "Evento {eventTitle} segnalato", + "Events": "Eventi", + "Events close to you": "Eventi vicini a te", + "Events nearby": "Eventi nelle vicinanze", + "Events nearby {position}": "Eventi vicino a {position}", + "Events tagged with {tag}": "Eventi contrassegnati con {tag}", + "Everything": "Tutti", + "Ex: mobilizon.fr": "Es: mobilizon.fr", + "Ex: someone@mobilizon.org": "Esempio: qualcuno@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "Es: qualcuno{'@'}mobilizon.org", + "Explore": "Esplora", + "Explore events": "Esplora eventi", + "Explore!": "Esplora!", + "Export": "Esporta", + "External provider URL": "URL del servizio esterno", + "External registration": "Registrazione esterna", + "Failed to get location.": "Impossibile ottenere la posizione.", + "Failed to save admin settings": "Salvataggio delle impostazioni di amministrazione non riuscita", + "Favicon": "Favicon", + "Featured events": "Eventi in evidenza", + "Federated Group Name": "Nome gruppo federato", + "Federation": "Federazione", + "Fediverse account": "Account Fediverso", + "Fetch more": "Carica più", + "Filter": "Filtra", + "Filter by name": "Filtra per nome", + "Filter by profile or group name": "Filtra per nome del profilo o del gruppo", + "Find an address": "Cerca un indirizzo", + "Find an instance": "Cerca un'istanza", + "Find another instance": "Trova un'altra istanza", + "Find or add an element": "Trova o aggiungi un elemento", + "First steps": "Primi passi", + "Follow": "Segui", + "Follow a new instance": "Segui una nuova istanza", + "Follow instance": "Segui l'istanza", + "Follow request pending approval": "Richiesta di follow in attesa di approvazione", + "Follow requests will be approved by a group moderator": "Le richieste di follow saranno approvate da un moderatore del gruppo", + "Follow status": "Segui lo stato", + "Followed": "Seguito", + "Followed, pending response": "Seguito, in attesa di risposta", + "Follower": "Che segue", + "Followers": "Seguaci", + "Followers will receive new public events and posts.": "Gli utenti che seguono riceveranno comunicazione di nuovi messaggi e eventi pubblici.", + "Following": "Seguendo", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Seguire il gruppo vi consentirà di essere informati sui {group_upcoming_public_events}, mentre unirvi al gruppo significa che avrete {access_to_group_private_content_as_well}, comprese le discussioni del gruppo, le risorse del gruppo e i post riservati ai membri.", + "Followings": "Chi segui", + "Follows us": "Seguici", + "Follows us, pending approval": "Seguici, in attesa di approvazione", + "For instance: London": "Ad esempio: Londra", + "For instance: London, Taekwondo, Architecture…": "Es: Londra, Taekwondo, Architettura…", + "Forgot your password ?": "Password dimenticata?", + "Forgot your password?": "Dimenticato la tua password?", + "Framadate poll": "Sondaggio Framadate", + "From my groups": "Dai miei gruppi", + "From the {startDate} at {startTime} to the {endDate}": "Dal {startDate} alle {startTime} al {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Dal {startDate} alle {startTime} al {endDate} alle {endTime}", + "From the {startDate} to the {endDate}": "Dal {startDate} al {endDate}", + "From this instance only": "Solo da questa istanza", + "From yourself": "Da te stesso", + "Fully accessible with a wheelchair": "Completamente accessibile con una sedia a rotelle", + "Gather ⋅ Organize ⋅ Mobilize": "Coinvolgi ⋅ Organizza ⋅ Mobilita", + "General": "Generali", + "General information": "Informazioni generali", + "General settings": "Impostazioni generali", + "Geolocate me": "Geolocalizzami", + "Geolocation was not determined in time.": "La geolocalizzazione non è stata determinata in tempo.", + "Get informed of the upcoming public events": "Informatevi sui prossimi eventi pubblici", + "Getting location": "Ottieni posizione", + "Getting there": "Arrivarci", + "Glossary": "Glossario", + "Go": "Vai", + "Go to booking": "Vai alla prenotazione", + "Go to the event page": "Vai alla pagina dell'evento", + "Go!": "Vai!", + "Google Meet": "Google Meet", + "Group": "Gruppo", + "Group Followers": "Che seguono il gruppo", + "Group Members": "Membri del gruppo", + "Group URL": "URL del gruppo", + "Group activity": "Attività di gruppo", + "Group address": "Indirizzo del gruppo", + "Group description body": "Corpo descrizione del gruppo", + "Group display name": "Nome visualizzato del gruppo", + "Group members": "Membri del gruppo", + "Group name": "Nome del gruppo", + "Group profiles": "Profili del gruppo", + "Group settings": "Impostazioni di gruppo", + "Group settings saved": "Impostazioni del gruppo salvate", + "Group short description": "Breve descrizione del gruppo", + "Group visibility": "Visibilità del gruppo", + "Group {displayName} created": "Gruppo {displayName} creato", + "Group {groupTitle} reported": "Gruppo {groupTitle} segnalato", + "Groups": "Gruppi", + "Groups are not enabled on this instance.": "I gruppi non sono abilitati su questa istanza.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "I gruppi sono spazi di coordinamento e preparazione per organizzare al meglio gli eventi e gestire la tua comunità.", + "Heading Level 1": "Intestazione livello 1", + "Heading Level 2": "Intestazione livello 2", + "Heading Level 3": "Intestazione livello 3", + "Headline picture": "immagine della prima pagina", + "Hide filters": "Nascondi i filtri", + "Hide replies": "Nascondi risposte", + "Home": "Casa", + "Home to {number} users": "Sede di {number} utenti", + "Homepage": "Pagina principale", + "Hourly email summary": "Riepilogo email ogni ora", + "I agree to the {instanceRules} and {termsOfService}": "Accetto le {instanceRules} e i {termsOfService}", + "I create an identity": "Creo un'identità", + "I don't have a Mobilizon account": "Non ho un account Mobilizon", + "I have a Mobilizon account": "Ho un account Mobilizon", + "I have an account on another Mobilizon instance.": "Ho un account su un'altra istanza Mobilizon.", + "I have an account on {instance}.": "Ho un account su {instance}.", + "I participate": "Parteciperò", + "I want to allow people to participate without an account.": "Voglio permettere alle persone di partecipare senza un account.", + "I want to approve every participation request": "Voglio approvare ogni richiesta di partecipazione", + "I want to manage the registration with an external provider": "Voglio gestire la registrazione con un servizio esterno", + "I've been mentionned in a comment under an event": "Sono stato menzionato in un commento ad un evento", + "I've been mentionned in a conversation": "Sono stato menzionato in una conversazione", + "I've been mentionned in a group discussion": "Sono stato menzionato in una discussione di gruppo", + "I've clicked on X, then on Y": "Ho cliccato su X, poi su Y", + "ICS feed for events": "Feed ICS per eventi", + "ICS/WebCal Feed": "Feed ICS/WebCal", + "IP Address": "Indirizzo IP", + "Identities": "Identità", + "Identity {displayName} created": "Identità {displayName} creata", + "Identity {displayName} deleted": "Identità {displayName} eliminata", + "Identity {displayName} updated": "Identità {displayName} aggiornata", + "If allowed by organizer": "Se consentito dall'organizzatore", + "If an account with this email exists, we just sent another confirmation email to {email}": "Se esiste un account con questa mail, abbiamo appena inviato un'altra email di conferma a {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Se questa identità è la sola amministratrice per alcuni gruppi, devi cancellarli prima di poter cancellare l'identità a sua volta.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Se ti viene richiesta la tua identità federata, è composta dal tuo nome utente e dalla tua istanza. Ad esempio, l'identità federata per il tuo primo profilo è:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Se hai optato per la convalida manuale dei partecipanti, Mobilizon ti invierà un'e-mail per informarti di nuove partecipazioni da elaborare. Puoi scegliere la frequenza di queste notifiche di seguito.", + "If you want, you may send a message to the event organizer here.": "Se vuoi puoi inviare un messaggio all'organizzatore dell'evento da qui.", + "Ignore": "Ignora", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Immagine illustrativa per \"{category}\" di {author} su {source} ({license})", + "In person": "Di persona", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "Nel seguente contesto, un'applicazione è un software, fornito dal team di Mobilizon o da una terza parte, utilizzato per interagire con la tua istanza.", + "In the past": "Nel passato", + "In this instance's network": "Nella rete di questa istanza", + "Increase": "Aumenta", + "Instance": "Istanza", + "Instance Long Description": "Descrizione lunga dell'istanza", + "Instance Name": "Nome dell'istanza", + "Instance Privacy Policy": "Informativa sulla riservatezza dell'istanza", + "Instance Privacy Policy Source": "Fonte della politica sulla riservatezza dell'istanza", + "Instance Privacy Policy URL": "URL dell'informativa sulla riservatezza dell'istanza", + "Instance Rules": "Regole dell'istanza", + "Instance Short Description": "Descrizione breve dell'istanza", + "Instance Slogan": "Slogan dell'istanza", + "Instance Terms": "Termini dell'istanza", + "Instance Terms Source": "Origine dei termini dell'istanza", + "Instance Terms URL": "URL dei termini dell'istanza", + "Instance administrator": "Amministratore/Amministratrice di un'istanza", + "Instance configuration": "Configurazione dell'istanza", + "Instance feeds": "Feed dell'istanza", + "Instance languages": "Lingue dell'istanza", + "Instance rules": "Regole di istanza", + "Instance settings": "Impostazioni dell'istanza", + "Instances": "Istanze", + "Instances following you": "Istanze che ti seguono", + "Instances you follow": "Istanze che segui", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Integrare questo evento con strumenti di terze parti e mostrare i metadati dell'evento.", + "Interact": "Interagire", + "Interact with a remote content": "Interagisci con un contenuto remoto", + "Invite a new member": "Invita un nuovo membro", + "Invite member": "Invita membro", + "Invited": "Invitato", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "È possibile che il contenuto non sia accessibile su questa istanza, perché questa istanza ha bloccato i profili o i gruppi che stanno dietro questo contenuto.", + "Italic": "Corsivo", + "Jitsi Meet": "Jitsi Meet", + "Join": "Unisciti", + "Join {instance}, a Mobilizon instance": "Entra in {instance}, un'istanza di Mobilizon", + "Join group": "Unisciti al gruppo", + "Join group {group}": "Unisciti al gruppo {group}", + "Join {instance}, a Mobilizon instance": "Entra in {instance}, un'istanza di Mobilizon", + "Keep the entire conversation about a specific topic together on a single page.": "Mantieni l'intera conversazione su un argomento specifico insieme su una singola pagina.", + "Key words": "Parole chiave", + "Keyword, event title, group name, etc.": "Parola chiave, titolo dell'evento, nome del gruppo, ecc.", + "Language": "Lingua", + "Languages": "Lingue", + "Last IP adress": "Ultimo indirizzo IP", + "Last group created": "Ultimo gruppo creato", + "Last published event": "Ultimo evento pubblicato", + "Last published events": "Ultimi eventi pubblicati", + "Last seen on": "Visto l'ultima volta il", + "Last sign-in": "Ultimo accesso", + "Last used on {last_used_date}": "Ultimo utilizzo il {last_used_date}", + "Last week": "Ultima settimana", + "Latest posts": "Ultimi post", + "Learn more": "Scopri di più", + "Learn more about Mobilizon": "Scopri di più su Mobilizon", + "Learn more about {instance}": "Impara di più riguardo {instance}", + "Least recently published": "Pubblicato meno di recente", + "Leave": "Abbandona", + "Leave event": "Lascia l'evento", + "Leave group": "Abbandona gruppo", + "Leaving event \"{title}\"": "Lascia l'evento \"{title}\"", + "Legal": "Legale", + "Let's define a few settings": "Definiamo alcune impostazioni", + "License": "Licenza", + "Light": "Chiaro", + "Limited number of places": "Posti a numero chiuso", + "List": "Elenco", + "List of conversations": "Elenco delle conversazioni", + "List title": "Titolo elenco", + "Live": "Live", + "Load more": "Carica di più", + "Load more activities": "Caricare più attività", + "Loading comments…": "Caricando i commenti…", + "Loading map": "Caricando la mappa", + "Local": "Locale", + "Local time ({timezone})": "Ora locale ({timezone})", + "Local times ({timezone})": "Orario locale ({timezone})", + "Locality": "Località", + "Location": "Posizione", + "Log in": "Log in", + "Log out": "Esci", + "Login": "Accesso", + "Login on Mobilizon!": "Accedi a Mobilizon!", + "Login on {instance}": "Accedi a {instance}", + "Login status": "Stato di accesso", + "Logo": "Logo", + "Logo of the instance. Defaults to the upstream Mobilizon logo.": "Logo dell'istanza. Per impostazione predefinita è il logo Mobilizon upstream.", + "Main languages you/your moderators speak": "Lingue principali parlate da te/dai tuoi moderatori", + "Make sure that all words are spelled correctly.": "Assicurati che tutte le parole siano scritte correttamente.", + "Manage activity settings": "Gestisci le impostazioni delle attività", + "Manage event participations": "Gestire le partecipazioni agli eventi", + "Manage group members": "Gestisci i membri del gruppo", + "Manage group memberships": "Gestire le sottoscrizioni ai gruppi", + "Manage participations": "Gestisci partecipazioni", + "Manage push notification settings": "Gestire le impostazioni delle notifiche push", + "Manually approve new followers": "Approva manualmente i nuovi utenti che seguono", + "Manually enter address": "Inserisci manualmente l'indirizzo", + "Manually invite new members": "Invita manualmente nuovi membri", + "Map": "Mappa", + "Mark as resolved": "Segna come risolto", + "Maybe the content was removed by the author or a moderator": "Forse il contenuto è stato rimosso dall'autore o da un moderatore", + "Member": "Membro", + "Members": "Membri", + "Members will also access private sections like discussions, resources and restricted posts.": "I membri accederanno anche a sezioni private come discussioni, risorse e post riservati.", + "Members-only post": "Messaggi solo dai membri", + "Membership requests will be approved by a group moderator": "Le richieste di adesione saranno approvate da un moderatore del gruppo", + "Memberships": "Iscrizioni", + "Mentions": "Menzioni", + "Message": "Messaggio", + "Message body": "Corpo del messaggio", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon è una rete federata. Puoi interagire con questo evento da altri server.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon è un software federato, il che significa che puoi interagire, a seconda delle impostazioni di federazione dell'amministratore, con i contenuti di altre istanze, come l'adesione a gruppi o eventi creati altrove.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon è uno strumento che ti aiuta a trovare, creare e organizzare eventi.", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon è uno strumento che vi aiuta a {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon non è una piattaforma gigante, ma una moltitudine di siti web Mobilizon interconnessi.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon non è una piattaforma gigante, ma una {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "software Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon utilizza un sistema di profili per compartimentare le tue attività. Potrai creare tutti i profili che desideri.", + "Mobilizon version": "Versione Mobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon ti invierà un'e-mail quando gli eventi a cui stai partecipando hanno cambiamenti importanti: data e ora, indirizzo, conferma o cancellazione, ecc.", + "Moderate new members": "Modera i nuovi membri", + "Moderated comments (shown after approval)": "Commenti moderati (mostrati dopo l'approvazione)", + "Moderation": "Moderazione", + "Moderation log": "Registro di moderazione", + "Moderation logs": "Registri di moderazione", + "Moderator": "Moderatore", + "Modify all of your account's data": "Modifica tutti i dati del tuo account", + "More options": "Altre opzioni", + "Most recently published": "Pubblicati più recentemente", + "Move": "Sposta", + "Move \"{resourceName}\"": "Sposta \"{resourceName}\"", + "Move resource to the root folder": "Sposta risorsa alla cartella radice", + "Move resource to {folder}": "Sposta questa risorsa in {folder}", + "My account": "Mio account", + "My events": "Miei eventi", + "My federated identity ends in {domain}": "La mia identità federata termina in {domain}", + "My groups": "Miei gruppi", + "My identities": "Mie identità", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "NOTA! I termini predefiniti non sono stati verificati da un avvocato e quindi è improbabile che forniscano una protezione legale completa per tutte le situazioni per un amministratore dell'istanza che li utilizza. Inoltre, non sono specifici per tutti i paesi e le giurisdizioni. In caso di dubbi, consultare un avvocato.", + "Name": "Nome", + "Navigated to {pageTitle}": "Navigato verso", + "Never used": "Mai usato", + "New announcement": "Nuovo annuncio", + "New discussion": "Nuova discussione", + "New email": "Nuova email", + "New folder": "Nuova cartella", + "New link": "Nuovo collegamento", + "New members": "Nuovi membri", + "New note": "Nuova nota", + "New password": "Nuova password", + "New post": "Nuovo messaggio", + "New private message": "Nuovo messaggio privato", + "New profile": "Nuovo profilo", + "Next": "Successivo", + "Next month": "Il prossimo mese", + "Next page": "Pagina successiva", + "Next week": "La prossima settimana", + "No activities found": "Nessuna attività trovata", + "No address defined": "Nessun indirizzo definito", + "No apps authorized yet": "Nessuna app autorizzata al momento", + "No categories with public upcoming events on this instance were found.": "Non sono state trovate categorie con eventi pubblici imminenti su questa istanza.", + "No closed reports yet": "Ancora nessuna segnalazione chiusa", + "No comment": "Nessun commento", + "No comments yet": "Ancora nessun commento", + "No content found": "Nessun contenuto trovato", + "No discussions yet": "Ancora nessuna discussione", + "No end date": "Nessuna data di fine", + "No event found at this address": "Nessun evento trovato a questo indirizzo", + "No events found": "Nessun evento trovato", + "No events found for {search}": "Nessun evento trovato per {search}", + "No follower matches the filters": "Nessuno che segue corrisponde ai filtri", + "No group found": "Nessun gruppo trovato", + "No group matches the filters": "Nessun gruppo corrisponde ai fitri", + "No group member found": "Nessun membro del gruppo trovato", + "No groups found": "Non sono stati trovati gruppi", + "No groups found for {search}": "Nessun gruppo trovato per {search}", + "No information": "Nessuna informazione", + "No instance follows your instance yet.": "Ancora nessuna istanza segue la tua istanza.", + "No instance found.": "Nessuna istanza trovata.", + "No instance to approve|Approve instance|Approve {number} instances": "Nessuna istanza da approvare|Approva istanza|Approva {number} istanze", + "No instance to reject|Reject instance|Reject {number} instances": "Nessuna istanza da rifiutare|Rifiuta istanza|Rifiuta {number} istanze", + "No instance to remove|Remove instance|Remove {number} instances": "Nessuna istanza da rimuovere|Rimuovi istanza|Rimuovi {number} istanze", + "No instances match this filter. Try resetting filter fields?": "Nessuna istanza corrisponde a questo filtro. Provare a reimpostare i campi del filtro?", + "No languages found": "Nessuna lingua trovata", + "No member matches the filters": "Nessun membro corrisponde ai filtri", + "No members found": "Nessun membro trovato", + "No memberships found": "Nessun iscritto trovato", + "No message": "Nessun messaggio", + "No moderation logs yet": "Ancora nessun registro di moderazione", + "No more activity to display.": "Non ci sono più attività da visualizzare.", + "No one is participating|One person participating|{going} people participating": "Nessuno sta partecipando|Una persona sta partecipando|{going} persone stanno partecipando", + "No open reports yet": "Ancora nessuna segnalazione aperta", + "No organized events found": "Nessun evento organizzato trovato", + "No organized events listed": "Nessun evento organizzato elencato", + "No participant matches the filters": "Nessun partecipante corrisponde ai filtri", + "No participant to approve|Approve participant|Approve {number} participants": "Nessun partecipante da approvare|Approva partecipante|Approva {number} partecipanti", + "No participant to reject|Reject participant|Reject {number} participants": "Nessun partecipante da rifiutare|Rifiuta partecipante|Rifiuta {number} partecipanti", + "No participations listed": "Nessuna partecipazione elencata", + "No posts found": "Nessun post trovato", + "No posts yet": "Ancora nessun post", + "No profile matches the filters": "Nessun profilo corrisponde ai filtri", + "No public upcoming events": "Nessun evento pubblico imminente", + "No resolved reports yet": "Ancora nessun report risolto", + "No resources in this folder": "Nessuna risorsa in questa cartella", + "No resources selected": "Nessuna risorsa selezionata|Una risorsa selezionata|{count} risorse selezionate", + "No resources yet": "Ancora nessuna risorsa", + "No results for \"{queryText}\"": "Nessun risultato per \"{queryText}\"", + "No results for {search}": "Nessun risultato per {search}", + "No results found": "Nessun risultato trovato", + "No results found for {search}": "Nessun risultato trovato per {search}", + "No rules defined yet.": "Nessuna regola definita finora.", + "No user matches the filter": "Nessun utente corrisponde al filtro", + "No user matches the filters": "Nessun utente corrisponde ai filtri", + "None": "Nessuno", + "Not accessible with a wheelchair": "Non accessibile con sedia a rotelle", + "Not approved": "Non approvato", + "Not confirmed": "Non confermati", + "Notes": "Note", + "Notification before the event": "Notifica prima dell'evento", + "Notification on the day of the event": "Notifica il giorno dell'evento", + "Notification settings": "Impostazioni delle notifiche", + "Notifications": "Notifiche", + "Notifications for manually approved participations to an event": "Notifiche per partecipazioni approvate manualmente a un evento", + "Notify participants": "Notifica ai partecipanti", + "Notify the user of the change": "Notifica la modifica all'utente", + "Now, create your first profile:": "Ora, crea il tuo primo profilo:", + "Number of members": "Numero di membri", + "Number of places": "Numero di posti", + "OK": "OK", + "Old password": "Vecchia password", + "On foot": "A piedi", + "On the Fediverse": "Nel Fediverso", + "On {date}": "Il {date}", + "On {date} ending at {endTime}": "Il {date} finendo alle {endTime}", + "On {date} from {startTime} to {endTime}": "Il {date} dalle {startTime} alle {endTime}", + "On {date} starting at {startTime}": "Il {date} iniziando alle {startTime}", + "On {instance} and other federated instances": "Su {instance} ed altre istanze federate", + "Online": "In linea", + "Online events": "Eventi online", + "Online ticketing": "Biglietteria online", + "Online upcoming events": "Prossimi eventi online", + "Only Mobilizon instances can be followed": "Si possono seguire solo le istanze Mobilizon", + "Only accessible through link": "Accessibile solo attraverso il collegamento", + "Only accessible through link (private)": "Accessibile solo tramite link (privato)", + "Only accessible to members of the group": "Accessibile solo ai membri del gruppo", + "Only alphanumeric lowercased characters and underscores are supported.": "Sono accettati solo caratteri alfanumerici in minuscolo, e il tratto basso (underscore).", + "Only group members can access discussions": "Solo i membri del gruppo possono accedere alle discussioni", + "Only group moderators can create, edit and delete events.": "Solo i moderatori del gruppo possono creare, modificare ed eliminare eventi.", + "Only group moderators can create, edit and delete posts.": "Solo i moderatori del gruppo possono creare, modificare ed eliminare i post.", + "Only instances with an application actor can be followed": "È possibile seguire solo le istanze con un attore dell'applicazione", + "Only registered users may fetch remote events from their URL.": "Solo gli utenti registrati possono recuperare gli eventi remoti dal loro URL.", + "Open": "Aperto/a", + "Open a topic on our forum": "Apri una discussione sul nostro forum", + "Open an issue on our bug tracker (advanced users)": "Apri una issue sul nostro bug tracker (utenti avanzati)", + "Open conversations": "Conversazioni aperte", + "Open main menu": "Aprire il menu principale", + "Open user menu": "Aprire il menu utente", + "Opened reports": "Segnalazioni aperte", + "Or": "Oppure", + "Ordered list": "Elenco numerato", + "Organized": "Organizzato", + "Organized by": "Organizzato da", + "Organized by {name}": "Organizzato da {name}", + "Organized events": "Eventi organizzati", + "Organizer": "Organizzatore", + "Organizer notifications": "Notifiche dell'organizzatore", + "Organizers": "Organizzatori", + "Other": "Altro", + "Other actions": "Altre azioni", + "Other notification options:": "Altre opzioni di notifica:", + "Other software may also support this.": "Anche un altro software potrebbe supportarlo.", + "Other users with the same IP address": "Altri utenti con lo stesso indirizzo IP", + "Other users with the same email domain": "Altri utenti con lo stesso dominio email", + "Otherwise this identity will just be removed from the group administrators.": "Altrimenti quest'identità sarà solo rimossa dal gruppo di amministrazione.", + "Owncast": "Owncast", + "Page": "Pagin", + "Page limited to my group (asks for auth)": "Pagina limitata dal mio gruppo (chiedi autenticazone)", + "Page not found": "Pagina non trovata", + "Parent folder": "Cartella principale", + "Partially accessible with a wheelchair": "Parzialmente accessibile con sedia a rotelle", + "Participant": "Partecipante", + "Participants": "Partecipanti", + "Participants to {eventTitle}": "Partecipanti a {eventTitle}", + "Participate": "Partecipa", + "Participate using your email address": "Partecipa usando il tuo indirizzo email", + "Participation approval": "Approvazione della partecipazione", + "Participation confirmation": "Conferma della partecipazione", + "Participation notifications": "Notifiche di partecipazione", + "Participation requested!": "Partecipazione richiesta!", + "Participation with account": "Partecipazione con account", + "Participation without account": "Partecipazione senza account", + "Participations": "Partecipazione", + "Password": "Password", + "Password (confirmation)": "Password (conferma)", + "Password reset": "Azzera password", + "Past events": "Eventi passati", + "PeerTube live": "Live su Peertube", + "PeerTube replay": "Replay su Peertube", + "Pending": "In sospeso", + "Personal feeds": "Feed personali", + "Photo by {author} on {source}": "Foto di {author} su {source}", + "Pick": "Scegli", + "Pick a profile or a group": "Scegli un profilo o un gruppo", + "Pick an identity": "Scegli un'identità", + "Pick an instance": "Scegli un'istanza", + "Please add as many details as possible to help identify the problem.": "Si prega di aggiungere quanti più dettagli possibili per aiutare a identificare il problema.", + "Please check your spam folder if you didn't receive the email.": "Per favore verifica la tua cartella di posta indesiderata (spam) se non hai ricevuto la mail.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Per favore contatta l'amministrazione di Mobilizon di questa istanza se pensi che questo sia un errore.", + "Please do not use it in any real way.": "Si prega di non utilizzarlo in alcun modo reale.", + "Please enter your password to confirm this action.": "Per favore inserisci la tua password per confermare questa azione.", + "Please make sure the address is correct and that the page hasn't been moved.": "Per favore assicurati che l'indirizzo sia corretto e che la pagina non sia stata trasferita.", + "Please read the {fullRules} published by {instance}'s administrators.": "Si prega di leggere le {fullRules} pubblicate dagli amministratori di {instance}.", + "Popular groups close to you": "Gruppi popolari vicini a te", + "Popular groups nearby {position}": "Gruppi popolari vicino {position}", + "Post": "Post", + "Post URL": "URL del post", + "Post a comment": "Pubblica un commento", + "Post a reply": "Pubblica una risposta", + "Post body": "Corpo del post", + "Post comments": "Pubblicare commenti", + "Post {eventTitle} reported": "Post {eventTitle} segnalato", + "Postal Code": "CAP", + "Posts": "Post", + "Powered by Mobilizon": "Alimentato da Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Offerto da {mobilizon}. © 2018 - {date} I contributori di Mobilizon - Realizzato con il supporto finanziario di {contributors}.", + "Preferences": "Preferenze", + "Previous": "Precedente", + "Previous email": "Email precedente", + "Previous month": "Mese precedente", + "Previous page": "Pagina precedente", + "Price sheet": "Listino prezzi", + "Primary Color": "Colore primario", + "Privacy": "Privacy", + "Privacy Policy": "Politica sulla riservatezza", + "Privacy policy": "Politica sulla riservatezza", + "Private event": "Evento privato", + "Private feeds": "Feed privati", + "Profile": "Profilo", + "Profile feeds": "Feed del profilo", + "Profile suspended and report resolved": "Profilo sospeso e segnalazione conclusa", + "Profiles": "Profili", + "Profiles and federation": "Profili e federazione", + "Promote": "Promuovi", + "Public": "Pubblica", + "Public RSS/Atom Feed": "RSS pubblico/Feed Atom", + "Public comment moderation": "Moderazione dei commenti pubblici", + "Public event": "Eventi pubblici", + "Public feeds": "Feed pubblici", + "Public iCal Feed": "Feed iCal pubblico", + "Public preview": "Anteprima pubblica", + "Publication date": "Data di pubblicazione", + "Publish": "Pubblica", + "Publish events": "Pubblica eventi", + "Publish group posts": "Pubblica post di gruppo", + "Published by {name}": "Pubblicato da {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Eventi pubblicati con {comments} commenti e {participations} partecipanti confermati", + "Published events with {comments} comments and {participations} confirmed participations": "Eventi pubblicati con {comments} commenti e {participations} partecipazioni confermate", + "Push": "Push", + "Quote": "Citazione", + "RSS/Atom Feed": "Feed RSS/Atom", + "Radius": "Raggio", + "Read all of your account's data": "Leggi tutti i dati del tuo account", + "Read user activity settings": "Leggere le impostazioni dell'attività dell'utente", + "Read user media": "Leggere i media dell'utente", + "Read user memberships": "Leggi le sottoscrizioni dell'utente", + "Read user participations": "Leggi le partecipazioni dell'utente", + "Read user settings": "Leggi le impostazioni dell'utente", + "Recap every week": "Fai un riassunto ogni settimana", + "Receive one email for each activity": "Ricevi una email per ogni attività", + "Receive one email per request": "Ricevi un e-mail per richiesta", + "Redirecting in progress…": "Reindirizzamento in corso…", + "Redirecting to Mobilizon": "Reindirizzamento a Mobilizon", + "Redirecting to content…": "Reindirizzando al contenuto…", + "Redo": "Ripeti", + "Refresh profile": "Aggiorna profilo", + "Regenerate new links": "Rigenera nuovi collegamenti", + "Region": "Regione", + "Register": "Registra", + "Register an account on {instanceName}!": "Registra un account su {instanceName}!", + "Register on this instance": "Registrati su questa istanza", + "Registration is allowed, anyone can register.": "La registrazione è permessa, chiunque può registrarsi.", + "Registration is closed.": "La registrazione è chiusa.", + "Registration is currently closed.": "La registrazione è chiusa al momento.", + "Registrations": "Registrazioni", + "Registrations are restricted by allowlisting.": "Le registrazioni sono a un elenco consentito.", + "Reject": "Rifiuta", + "Reject follow": "Rifiuta di essere seguito", + "Reject member": "Rifiuta membro", + "Rejected": "Rifiutato", + "Remember my participation in this browser": "Ricorda la mia partecipazione su questo browser", + "Remove": "Rimuovi", + "Remove link": "Rimuovi collegamento", + "Remove uploaded media": "Rimuovi i media caricati", + "Rename": "Rinomina", + "Rename resource": "Rinomina risorsa", + "Reopen": "Ri-apri", + "Replay": "Rivedi", + "Reply": "Risposta", + "Report": "Segnala", + "Report #{reportNumber}": "Report #{reportNumber}", + "Report as ham": "Segnala come non-spam", + "Report as spam": "Segnala come spam", + "Report as undetected spam": "Segnala come spam non rilevato", + "Report reason": "Motivo della segnalazione", + "Report status": "Segnala stato", + "Report this comment": "Segnala questo commento", + "Report this event": "Segnala questo evento", + "Report this group": "Segnala questo gruppo", + "Report this post": "Segnala questo post", + "Reported": "Segnalato", + "Reported at": "Segnalato a", + "Reported by": "Segnalato da", + "Reported by an unknown actor": "Segnalato da un autore sconosciuto", + "Reported by someone anonymously": "Segnalato da qualcuno in forma anonima", + "Reported by someone on {domain}": "Segnalato da qualcuno su {domain}", + "Reported by {reporter}": "Segnalato da {reporter}", + "Reported content": "Contenuto segnalato", + "Reported group": "Gruppo segnalato", + "Reported identity": "Identità segnalata", + "Reports": "Segnalazioni", + "Reports list": "Elenco delle segnalazioni", + "Request for participation confirmation sent": "Richiesta di conferma di partecipazione inviata", + "Resend confirmation email": "Reinvia email di conferma", + "Resent confirmation email": "Reinvio dell'email di conferma", + "Reset": "Resetta", + "Reset filters": "Resetta i filtri", + "Reset my password": "Reimposta la mia password", + "Reset password": "Reimpostare la password", + "Resolved": "Risolto", + "Resource provided is not an URL": "La risorsa data non è un URL", + "Resources": "Risorse", + "Restricted": "Limitato", + "Return to the event page": "Ritorna alla pagina dell'evento", + "Return to the group page": "Ritorna alla pagina del gruppo", + "Revoke": "Revoca", + "Right now": "Proprio adesso", + "Role": "Ruolo", + "Rules": "Regole", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL e il suo successore TLS sono tecnologie di crittografia per proteggere le comunicazioni di dati quando si utilizza il servizio. Puoi riconoscere una connessione crittografata nella riga degli indirizzi del tuo browser quando l'URL inizia con {https} e l'icona del lucchetto è visualizzata nella barra degli indirizzi del browser.", + "SSL/TLS": "SSL/TLS", + "Save": "Salva", + "Save draft": "Salva bozza", + "Schedule": "Programma", + "Search": "Cerca", + "Search events, groups, etc.": "Cerca eventi, gruppi, ecc.", + "Search target": "Target di ricerca", + "Searching…": "Ricerca…", + "Secondary Color": "Colore secondario", + "Select a category": "Selezionare una categoria", + "Select a language": "Seleziona una lingua", + "Select a radius": "Seleziona un raggio", + "Select a timezone": "Seleziona un fuso orario", + "Select all resources": "Seleziona tutte le risorse", + "Select languages": "Seleziona lingue", + "Select the activities for which you wish to receive an email or a push notification.": "Seleziona le attività per le quali si desidera ricevere una email o una notifica push.", + "Select this resource": "Seleziona questa risorsa", + "Send": "Invia", + "Send email": "Manda email", + "Send feedback": "Invia un feedback", + "Send notification e-mails": "Invia notifiche email", + "Send password reset": "Invia la reimpostazione della password", + "Send the confirmation email again": "Invia la conferma email di nuovo", + "Send the report": "Manda la segnalazione", + "Sent to {count} participants": "Inviato a nessun partecipante|Inviato a un partecipante|Inviato a {count} partecipanti", + "Set an URL to a page with your own privacy policy.": "Imposta un URL a una pagina con la tua politica sulla riservatezza.", + "Set an URL to a page with your own terms.": "Stabilisci un URL a una pagina con le tue condizioni d'uso.", + "Settings": "Impostazioni", + "Share": "Condividi", + "Share this event": "Condividi questo evento", + "Share this group": "Condividi questo gruppo", + "Share this post": "Condividi questo post", + "Short bio": "Breve biografia", + "Show filters": "Mostra filtri", + "Show map": "Mostra mappa", + "Show me where I am": "Mostrami dove sono", + "Show remaining number of places": "Mostra il numero restante di posti", + "Show the time when the event begins": "Mostra l'ora di inizio dell'evento", + "Show the time when the event ends": "Mostra l'ora di fine dell'evento", + "Showing events before": "Mostra gli eventi precedenti", + "Showing events starting on": "Mostra gli eventi che iniziano il", + "Sign Language": "Linguaggio dei segni", + "Sign in with": "Entra con", + "Sign up": "Regìstrati", + "Since you are a new member, private content can take a few minutes to appear.": "Poiché sei un nuovo membro, la visualizzazione dei contenuti privati può richiedere alcuni minuti.", + "Skip to main content": "Salta al contenuto principale", + "Smoke free": "Non fumatori", + "Smoking allowed": "È consentito fumare", + "Social": "Social", + "Software details: {software_details}": "Dettagli del software: {software_details}", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Alcuni termini, tecnici e non, usati nel testo sottostante potrebbero rappresentare concetti difficili da comprendere. Abbiamo messo a disposizione un glossario per aiutarti a capire meglio:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Siamo spiacenti, non siamo riusciti a salvare il suo feedback. Non preoccuparti, cercheremo comunque di risolvere il problema.", + "Sort by": "Ordina per", + "Starts on…": "Inizia il…", + "Status": "Stato", + "Statuses": "Stati", + "Stop following instance": "Smetti di seguire l'istanza", + "Street": "Via", + "Submit": "Sottoponi", + "Submit to Akismet": "Invia ad Akismet", + "Subtitles": "Sottotitoli", + "Suggestions:": "Suggerimenti:", + "Suspend": "Sospendi", + "Suspend group": "Sospendi gruppo", + "Suspend the account": "Sospendi l'account", + "Suspend the account?": "Sospendere l'account?", + "Suspend the profile": "Sospendere il profilo", + "Suspend the profile?": "Sospendere il profilo?", + "Suspended": "Sospeso", + "Tag search": "Ricerca per tag", + "Task lists": "Elenchi di attività", + "Technical details": "Dettagli tecnici", + "Tentative": "Provvisorio", + "Tentative: Will be confirmed later": "Provvisorio: sarà confermato più tardi", + "Terms": "Condizioni", + "Terms of service": "Termini di servizio", + "Text": "Testo", + "Thanks a lot, your feedback was submitted!": "Grazie mille, il tuo feedback è stato inviato!", + "That you follow or of which you are a member": "Che segui o di cui sei membro", + "The Big Blue Button video teleconference URL": "URL alla video conferenza Big Blue Button", + "The Google Meet video teleconference URL": "URL alla video conferenza Google Meet", + "The Jitsi Meet video teleconference URL": "URL alla video conferenza Jitsi Meet", + "The Microsoft Teams video teleconference URL": "URL alla video conferenza Microsoft Teams", + "The URL of a pad where notes are being taken collaboratively": "L'URL ad un pad in cui si prendono appunti in modo collaborativo", + "The URL of a poll where the choice for the event date is happening": "L'URL di un sondaggio in cui viene effettuata la scelta della data dell'evento", + "The URL where the event can be watched live": "L'URL da dove è possibile seguire l'evento in diretta", + "The URL where the event live can be watched again after it has ended": "L'URL da cui è possibile rivedere l'evento in diretta dopo la sua conclusione", + "The Zoom video teleconference URL": "URL alla video conferenza Zoom", + "The account's email address was changed. Check your emails to verify it.": "L'indirizzo email dell'account è stato cambiato. Controlla le tue email per verificarlo.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Il numero reale di partecipanti può essere diverso poiché questo evento è ospitato su un'altra istanza.", + "The calc will be created on {service}": "Il foglio di calcolo verrà creato su {service}", + "The content came from another server. Transfer an anonymous copy of the report?": "Il contenuto viene da un altro server. Trasferire una copia anonima della segnalazione?", + "The device code is incorrect or no longer valid.": "Il codice del dispositivo non è corretto o non è più valido.", + "The draft event has been updated": "La bozza dell'evento è stata aggiornata", + "The event has a sign language interpreter": "L'evento dispone di un interprete della lingua dei segni", + "The event has been created as a draft": "L'evento è stato creato come bozza", + "The event has been published": "L'evento è stato pubblicato", + "The event has been updated": "L'evento è stato aggiornato", + "The event has been updated and published": "L'evento è stato aggiornato e pubblicato", + "The event hasn't got a sign language interpreter": "L'evento non ha un interprete del linguaggio dei segni", + "The event is fully online": "L'evento è interamente online", + "The event live video contains subtitles": "Il video live dell'evento è sottotitolato", + "The event live video does not contain subtitles": "Il video live dell'evento non è sottotitolato", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Chi organizza l'evento ha scelto di validare chi partecipa manualmente. Vuoi aggiungere un appunto per spiegare perché vuoi partecipare a questo evento?", + "The event organizer didn't add any description.": "Chi organizza l'evento non ha aggiunto nessuna descrizione.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Chi organizza l'evento approva manualmente chi partecipa. Poiché hai scelto di partecipare senza account, spiega perché vuoi partecipare a questo evento.", + "The event title will be ellipsed.": "Il titolo dell'evento sarà eclissato.", + "The event will show as attributed to this group.": "L'evento verrà visualizzato come attribuito a questo gruppo.", + "The event will show as attributed to this profile.": "L'evento verrà mostrato come attribuito a questo profilo.", + "The event will show as attributed to your personal profile.": "L'evento verrà visualizzato come attribuito al tuo profilo personale.", + "The event {event} was created by {profile}.": "L'evento {event} è stato creato da {profile}.", + "The event {event} was deleted by {profile}.": "L'evento {event} è stato cancellato da {profile}.", + "The event {event} was updated by {profile}.": "L'evento {event} è stato aggiornato da {profile}.", + "The events you created are not shown here.": "Gli eventi che hai creato non vengono mostrati qui.", + "The following participants are groups, which means group members are able to reply to this conversation:": "I seguenti partecipanti sono gruppi, il che significa che i membri del gruppo possono rispondere a questa conversazione:", + "The following user's profiles will be deleted, with all their data:": "Verranno cancellati i profili del seguente utente, con tutti i suoi dati:", + "The geolocation prompt was denied.": "La richiesta di geolocalizzazione è stata rifiutata.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "Al gruppo può ora aderire chiunque, ma i nuovi membri devono essere approvati da un amministratore.", + "The group can now be joined by anyone.": "Ora chiunque può unirsi al gruppo.", + "The group can now only be joined with an invite.": "Ora è possibile unirsi al gruppo tramite invito.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Il gruppo verrà elencato pubblicamente nei risultati di ricerca e potrebbe essere suggerito nella sezione Esplora. Nella sua pagina verranno mostrate solo le informazioni pubbliche.", + "The group's avatar was changed.": "L'avatar del gruppo è cambiato.", + "The group's banner was changed.": "Il banner del gruppo è cambiato.", + "The group's physical address was changed.": "L'indirizzo fisico del gruppo è cambiato.", + "The group's short description was changed.": "La descrizione corta del gruppo è cambiata.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "L'amministratore dell'istanza è la persona o entità che gestisce quest'istanza Mobilizon.", + "The member was approved": "Il membro è stato approvato", + "The member was removed from the group {group}": "Il membro è stato rimosso dal gruppo {group}", + "The membership request from {profile} was rejected": "La richiesta di adesione di {profile} è stata respinta", + "The only way for your group to get new members is if an admininistrator invites them.": "L'unico modo per il tuo gruppo di ottenere nuovi membri è se un amministratore li invita.", + "The organiser has chosen to close comments.": "L'organizzatore ha scelto di disabilitare i commenti.", + "The pad will be created on {service}": "Il blocco di appunti verrà creato su {service}", + "The page you're looking for doesn't exist.": "La pagina che stai cercando non esiste.", + "The password was successfully changed": "La password è stata cambiata con successo", + "The post {post} was created by {profile}.": "Il post {post} è stato creato da {profile}.", + "The post {post} was deleted by {profile}.": "Il post {post} è stato cancellato da {profile}.", + "The post {post} was updated by {profile}.": "Il post {post} è stato aggiornato da {profile}.", + "The provided application was not found.": "L'applicazione fornita non è stata trovata.", + "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.": "Il contenuto di questa segnalazione (eventuali commenti ed eventi) e i dettagli del profilo segnalato saranno trasmessi ad Akismet.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "La segnalazione sarà inviata a chi modera la tua istanza. Puoi spiegare perché segnali questo contenuto qua sotto.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "L'immagine selezionata è troppo pesante. Selezionare un file di dimensione inferiore a {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "I dettagli tecnici dell'errore possono aiutare gli sviluppatori a risolvere il problema più facilmente. Per favore aggiungili al tuo feedback.", + "The user has been disabled": "L'utente è stato disabilitato", + "The videoconference will be created on {service}": "La videoconferenza verrà creata su {service}", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Verrà utilizzata la {default_privacy_policy}. Verranno tradotti nella lingua dell'utente.", + "The {default_terms} will be used. They will be translated in the user's language.": "Saranno usate le {default_terms}. Saranno tradotte nel linguaggio dell'utente.", + "Theme": "Tema", + "There are {participants} participants.": "Ci sono {participants} partecipanti.", + "There is no activity yet. Start doing some things to see activity appear here.": "Non sono ancora presenti attività. Inizia a fare qualcosa per veder apparire le attività.", + "There will be no way to recover your data.": "Non c'è modo di recuperare i tuoi dati.", + "There will be no way to restore the profile's data!": "Non ci sarà modo di ripristinare i dati del profilo!", + "There will be no way to restore the user's data!": "Non ci sarà modo di ripristinare i dati dell'utente!", + "There's no announcements yet": "Non ci sono annunci al momento", + "There's no conversations yet": "Non ci sono conversazioni al momento", + "There's no discussions yet": "Non sono presenti discussioni", + "These apps can access your account through the API. If you see here apps that you don't recognize, that don't work as expected or that you don't use anymore, you can revoke their access.": "Queste app possono accedere al tuo account tramite l'API. Se qui vedi app che non conosci, che non funzionano come previsto o che non usi più, puoi revocarne l'accesso.", + "These events may interest you": "Questo evento potrebbe interessarti", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Questi feed contengono i dati degli eventi per i quali uno dei vostri profili è un partecipante o un creatore. È consigliabile mantenerli privati. È possibile trovare i feed per profili specifici in ogni pagina di edizione del profilo.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Questi feed contengono i dati degli eventi per i quali questo profilo specifico è un partecipante o un creatore. È consigliabile mantenerli privati. È possibile trovare i feed per tutti i vostri profili nelle impostazioni delle notifiche.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Questa istanza Mobilizon e chi organizza questo evento permettono la partecipazione anonima, ma richiedono una validazione tramite email di conferma.", + "This URL doesn't seem to be valid": "Questo URL non sembra essere valido", + "This URL is not supported": "Questo URL non è supportato", + "This announcement will be send to all participants with the statuses selected below. They will not be allowed to reply to your announcement, but they can create a new conversation with you.": "Questo annuncio verrà inviato a tutti i partecipanti con gli stati selezionati di seguito. Non potranno rispondere al tuo annuncio, ma potranno creare una nuova conversazione con te.", + "This application asks for the following permissions:": "Questa applicazione richiede le seguenti autorizzazioni:", + "This application didn't ask for known permissions. It's likely the request is incorrect.": "Questa applicazione non ha richiesto autorizzazioni note. È probabile che la richiesta non sia corretta.", + "This application will be able to access all of your informations and post content. Make sure you only approve applications you trust.": "Questa applicazione sarà in grado di accedere a tutte le tue informazioni e pubblicare contenuti. Assicurati di approvare solo le applicazioni di cui ti fidi.", + "This application will be allowed to access all of the groups you're a member of": "Questa applicazione potrà accedere a tutti i gruppi di cui sei membro", + "This application will be allowed to access group activities in all of the groups you're a member of": "Questa applicazione potrà accedere alle attività di gruppo in tutti i gruppi di cui sei membro", + "This application will be allowed to access your user activity settings": "Questa applicazione potrà accedere alle impostazioni dell'attività dell'utente", + "This application will be allowed to access your user settings": "Questa applicazione potrà accedere alle tue impostazioni utente", + "This application will be allowed to create feed tokens": "Questa applicazione potrà creare token del feed", + "This application will be allowed to create group discussions": "Questa applicazione potrà creare discussioni di gruppo", + "This application will be allowed to create new profiles for your account": "Questa applicazione potrà creare nuovi profili per il tuo account", + "This application will be allowed to create resources in all of the groups you're a member of": "Questa applicazione potrà creare risorse in tutti i gruppi di cui sei membro", + "This application will be allowed to delete comments": "Questa applicazione potrà eliminare i commenti", + "This application will be allowed to delete events": "Questa applicazione potrà eliminare eventi", + "This application will be allowed to delete feed tokens": "Questa applicazione potrà eliminare i token del feed", + "This application will be allowed to delete group discussions": "Questa applicazione potrà eliminare le discussioni di gruppo", + "This application will be allowed to delete group posts": "Questa applicazione potrà eliminare i post del gruppo", + "This application will be allowed to delete resources in all of the groups you're a member of": "Questa applicazione potrà eliminare risorse in tutti i gruppi di cui sei membro", + "This application will be allowed to delete your profiles": "Questa applicazione potrà eliminare i tuoi profili", + "This application will be allowed to join and leave groups": "Questa applicazione consentirà di unirsi e abbandonare gruppi", + "This application will be allowed to list and access group discussions in all of the groups you're a member of": "Questa applicazione potrà elencare e accedere alle discussioni di gruppo in tutti i gruppi di cui sei membro", + "This application will be allowed to list and access group events in all of the groups you're a member of": "Questa applicazione potrà elencare e accedere agli eventi di gruppo in tutti i gruppi di cui sei membro", + "This application will be allowed to list and access group todo-lists in all of the groups you're a member of": "Questa applicazione potrà elencare e accedere alle liste to-do di gruppo in tutti i gruppi di cui sei membro", + "This application will be allowed to list and view the events you're participating to": "Questa applicazione potrà elencare e visualizzare gli eventi a cui partecipi", + "This application will be allowed to list and view the groups you're a member of": "Questa applicazione potrà elencare e visualizzare i gruppi di cui sei membro", + "This application will be allowed to list and view the groups you're following": "Questa applicazione potrà elencare e visualizzare i gruppi che stai seguendo", + "This application will be allowed to list and view your draft events": "Questa applicazione potrà elencare e visualizzare i tuoi eventi in bozza", + "This application will be allowed to list and view your organized events": "Questa applicazione potrà elencare e visualizzare gli eventi organizzati", + "This application will be allowed to list group followers in all of the groups you're a member of": "Questa applicazione potrà elencare i follower del gruppo in tutti i gruppi di cui sei membro", + "This application will be allowed to list group members in all of the groups you're a member of": "Questa applicazione potrà elencare i membri del gruppo in tutti i gruppi di cui sei membro", + "This application will be allowed to list the media you've uploaded": "Questa applicazione potrà elencare i media che hai caricato", + "This application will be allowed to list your suggested group events": "Questa applicazione potrà elencare gli eventi di gruppo suggeriti", + "This application will be allowed to manage events participations": "Questa applicazione potrà gestire le partecipazioni agli eventi", + "This application will be allowed to manage group members in all of the groups you're a member of": "Questa applicazione potrà gestire i membri del gruppo in tutti i gruppi di cui sei membro", + "This application will be allowed to manage your account activity settings": "Questa applicazione sarà autorizzata a gestire le impostazioni dell'attività del tuo account", + "This application will be allowed to manage your account push notification settings": "Questa applicazione sarà autorizzata a gestire le impostazioni delle notifiche push del tuo account", + "This application will be allowed to post comments": "Questa applicazione sarà autorizzata a pubblicare commenti", + "This application will be allowed to publish and manage events, post and manage comments, participate to events, manage all of your groups, including group events, resources, posts and discussions. It will also be allowed to manage your account and profile settings.": "Questa applicazione potrà pubblicare e gestire eventi, pubblicare e gestire commenti, partecipare a eventi, gestire tutti i tuoi gruppi, inclusi eventi di gruppo, risorse, post e discussioni. Le sarà inoltre consentito gestire le impostazioni del tuo account e del profilo.", + "This application will be allowed to publish events": "Questa applicazione sarà autorizzata a pubblicare eventi", + "This application will be allowed to publish group posts": "Questa applicazione sarà autorizzata a pubblicare post di gruppo", + "This application will be allowed to remove uploaded media": "Questa applicazione potrà rimuovere i media caricati", + "This application will be allowed to see all of your events organized, the events you participate to, as well as every data from your groups.": "Questa applicazione potrà vedere tutti i tuoi eventi organizzati, gli eventi a cui partecipi, nonché tutti i dati dei tuoi gruppi.", + "This application will be allowed to update comments": "Questa applicazione sarà autorizzata ad aggiornare i commenti", + "This application will be allowed to update events": "Questa applicazione sarà autorizzata ad aggiornare gli eventi", + "This application will be allowed to update group discussions": "Questa applicazione potrà aggiornare le discussioni di gruppo", + "This application will be allowed to update group posts": "Questa applicazione potrà aggiornare i post del gruppo", + "This application will be allowed to update resources in all of the groups you're a member of": "Questa applicazione potrà aggiornare le risorse in tutti i gruppi di cui sei membro", + "This application will be allowed to update your profiles": "Questa applicazione sarà autorizzata ad aggiornare i tuoi profili", + "This application will be allowed to upload media": "Questa applicazione sarà autorizzata a caricare contenuti multimediali", + "This event has been cancelled.": "Quest'evento è stato cancellato.", + "This event is accessible only through it's link. Be careful where you post this link.": "Quest'evento è accessibile solo attraverso il suo collegamento. Stai attento dove posti questo collegamento.", + "This group doesn't have a description yet.": "Questo gruppo non ha ancora una descrizione.", + "This group is a remote group, it's possible the original instance has more informations.": "Questo gruppo è un gruppo remoto, è possibile che l'istanza originale abbia più informazioni.", + "This group is accessible only through it's link. Be careful where you post this link.": "Questo gruppo è accessibile solo tramite il suo collegamento. Attenzione a dove inviate questo collegamento.", + "This group is invite-only": "Questo gruppo è solo su invito", + "This group was not found": "Questo gruppo non è stato trovato", + "This identifier is unique to your profile. It allows others to find you.": "Questo identificatore è univoco per il tuo profilo. Permette agli altri di trovarti.", + "This information is saved only on your computer. Click for details": "Queste informazioni sono salvate solo sul tuo computer. Clicca per dettagli", + "This instance doesn't follow yours.": "Questa istanza non segue la tua.", + "This instance hasn't got push notifications enabled.": "Questa istanza non ha le notifiche push abilitate.", + "This instance isn't opened to registrations, but you can register on other instances.": "Questa istanza non è aperta a registrazioni, ma puoi registrarti su altre istanze.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Questa istanza, {instanceName} ({domain}), ospita il tuo profilo, quindi ricorda il suo nome.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Questa istanza, {instanceName}, ospita il vostro profilo, quindi ricordate il suo nome.", + "This is a announcement from the organizers of event {event}. You can't reply to it, but you can send a private message to event organizers.": "Questo è un annuncio da parte degli organizzatori dell'evento {event}. Non puoi rispondere, ma puoi inviare un messaggio privato agli organizzatori dell'evento.", + "This is a demonstration site to test Mobilizon.": "Questo è un sito di dimostrazione per provare Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Questo è come il tuo nome utente federato ({username}) per i gruppi. Ciò consentirà al gruppo di essere trovato nella federazione ed è garantito per essere unico.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Questo è come il tuo nome utente federato ({username}) per i gruppi. Ciò consentirà al gruppo di essere trovato nella federazione ed è garantito essere unico.", + "This month": "Questo mese", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Questo messaggio è accessibile solo dai membri. Hai accesso ad esso a scopi di moderazione solo perché sei un moderatore di istanza.", + "This post is accessible only through it's link. Be careful where you post this link.": "Questo post è accessibile solo attraverso il suo link. Fate attenzione a dove pubblicate questo link.", + "This profile is from another instance, the informations shown here may be incomplete.": "Questo profilo proviene da un'altra istanza, le informazioni qui riportate potrebbero essere incomplete.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Questo profilo si trova su questa istanza, quindi è necessario {access_the_corresponding_account} per sospenderlo.", + "This profile was not found": "Questo profilo non è stato trovato", + "This setting will be used to display the website and send you emails in the correct language.": "Questa impostazione verrà utilizzata per visualizzare il sito web e inviarti email nella lingua corretta.", + "This user doesn't have any profiles": "Questo utente non ha alcun profilo", + "This user was not found": "Questo utente non è stato trovato", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Questo sito Web non è moderato e i dati inseriti verranno automaticamente distrutti ogni giorno alle 00:01 (fuso orario di Parigi).", + "This week": "Questa settimana", + "This weekend": "Questo fine settimana", + "This will also resolve the report.": "Ciò chiuderà anche il report.", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Questa operazione eliminerà / anonimizzerà tutti i contenuti (eventi, commenti, messaggi, partecipazioni, …) creati da questa identità.", + "Time in your timezone ({timezone})": "Ora nel vostro fuso orario ({timezone})", + "Times in your timezone ({timezone})": "Orari nel vostro fuso orario ({timezone})", + "Timezone": "Fuso orario", + "Timezone detected as {timezone}.": "Fuso orario rilevato come {timezone}.", + "Title": "Titolo", + "To activate more notifications, head over to the notification settings.": "Per attivare più notifiche, vai alle impostazioni di notifica.", + "To confirm, type your event title \"{eventTitle}\"": "Per confermare, scrivi il titolo del tuo eveno \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "Per confermare, scrivi il nome utente ella tua identità \"{preferredUsername}\"", + "To create and manage multiples identities from a same account": "Per creare e gestire più identità da uno stesso account", + "To create and manage your events": "Per creare e gestire i tuoi eventi", + "To create or join an group and start organizing with other people": "Per creare o partecipare a un gruppo e iniziare a organizzarsi con altre persone", + "To follow groups and be informed of their latest events": "Per seguire i gruppi ed essere informati sui loro ultimi eventi", + "To register for an event by choosing one of your identities": "Per registrarti a un evento scegliendo una delle tue identità", + "Today": "Oggi", + "Tomorrow": "Domani", + "Tools": "Strumenti", + "Total number of participations": "Numero totale di partecipazioni", + "Transfer to {outsideDomain}": "Trasferire a {outsideDomain}", + "Triggered profile refreshment": "Innescato ricaricamento profilo", + "Try different keywords.": "Prova con parole chiave diverse.", + "Try fewer keywords.": "Prova con meno parole chiave.", + "Try more general keywords.": "Prova con parole chiave più generiche.", + "Twitch live": "Live su Twitch", + "Twitch replay": "Replay su Twitch", + "Twitter account": "Account Twitter", + "Type": "Tipo", + "Type or select a date…": "Digita o seleziona una data…", + "URL": "URL", + "URL copied to clipboard": "URL copiato negli appunti", + "Unable to copy to clipboard": "Impossibile copiare negli appunti", + "Unable to create the group. One of the pictures may be too heavy.": "Impossibile creare il gruppo. Una delle immagini potrebbe essere troppo pesante.", + "Unable to create the profile. The avatar picture may be too heavy.": "Impossibile creare il profilo. L'immagine dell'avatar potrebbe essere troppo pesante.", + "Unable to detect timezone.": "Impossibile rilevare il fuso orario.", + "Unable to load event for participation. The error details are provided below:": "Impossibile caricare l'evento per la partecipazione. Di seguito vengono forniti i dettagli dell'errore:", + "Unable to save your participation in this browser.": "Impossibile salvare la tua partecipazione in questo browser.", + "Unable to update the profile. The avatar picture may be too heavy.": "Impossibile aggiornare il profilo. L'immagine dell'avatar potrebbe essere troppo pesante.", + "Underline": "Sottolinea", + "Undo": "Annulla", + "Unfollow": "Smetti di seguire", + "Unfortunately, your participation request was rejected by the organizers.": "Sfortunatamente, la tua richiesta di partecipazione è stata rifiutata da chi organizza l'evento.", + "Unknown": "Sconosciuto", + "Unknown actor": "Agente sconosciuto", + "Unknown error.": "Errore sconosciuto.", + "Unknown value for the openness setting.": "Valore sconosciuto di impostazioni di apertura.", + "Unlogged participation": "Partecipazione senza registrazione", + "Unsaved changes": "Cambiamenti non salvati", + "Unsubscribe to browser push notifications": "Disiscrivi le notifiche push dal browser", + "Unsuspend": "Annulla sospensione", + "Upcoming": "Prossimamente", + "Upcoming events": "Prossimi eventi", + "Upcoming events from your groups": "I prossimi eventi dei tuoi gruppi", + "Update": "Aggiorna", + "Update app": "Aggiorna app", + "Update comments": "Aggiornare i commenti", + "Update discussion title": "Aggiorna il titolo della discussione", + "Update event {name}": "Aggiorna evento {name}", + "Update events": "Aggiorna eventi", + "Update group": "Aggiorna gruppo", + "Update group discussions": "Aggiornare le discussioni di gruppo", + "Update group posts": "Aggiorna i post del gruppo", + "Update group resources": "Aggiorna le risorse del gruppo", + "Update my event": "Aggiorna il mio evento", + "Update post": "Aggiorna post", + "Update profiles": "Aggiornare profili", + "Updated": "Aggiornato", + "Updated at": "Aggiornato a", + "Upload media": "Carica contenuti multimediali", + "Uploaded media size": "Dimensioni del media caricato", + "Uploaded media total size": "Dimensione totale dei media caricati", + "Use my location": "Usa la mia posizione", + "User": "Utente", + "User settings": "Impostazioni utente", + "User suspended and report resolved": "Utente sospeso e segnalazione conclusa", + "Username": "Nome utente", + "Users": "Utenti", + "Validating account": "Convalida dell'account", + "Validating email": "Convalida dell'email", + "Video Conference": "Video conferenza", + "View a reply": "Nessuna risposta|Mostra una risposta|Mostra {totalReplies} risposte", + "View account on {hostname} (in a new window)": "Visualizza l'account su {hostname} (in una nuova finestra)", + "View all": "Visualizza tutto", + "View all categories": "Visualizza tutte le categorie", + "View all events": "Visualizza tutti gli eventi", + "View all posts": "Visualizza tutti i post", + "View event page": "Vedi pagina evento", + "View everything": "Vedi tutto", + "View full profile": "Mostra il profilo completo", + "View less": "Mostra di meno", + "View more": "Mostra di più", + "View more events": "Vedi altri eventi", + "View more events around {position}": "Mostra altri eventi vicino a {position}", + "View more groups around {position}": "Visualizza più gruppi vicino a {position}", + "View more online events": "Visualizza altri eventi online", + "View page on {hostname} (in a new window)": "Vedi pagina su {hostname} (in una nuova finestra)", + "View past events": "Visualizza gli eventi passati", + "View the group profile on the original instance": "Visualizzare il profilo del gruppo sull'istanza originale", + "Visibility was set to an unknown value.": "Visibilità impostata su un valore sconosciuto.", + "Visibility was set to private.": "Visibilità impostata su privato.", + "Visibility was set to public.": "Visibilità impostata su pubblico.", + "Visible everywhere on the web": "Visibile ovunque sul web", + "Visible everywhere on the web (public)": "Visibile ovunque dalla rete (pubblico)", + "Visit {instance_domain}": "Visita {instance_domain}", + "Waiting for organization team approval.": "In attesa dell'approvazione dal gruppo di organizzazione.", + "Warning": "Avviso", + "We collect your feedback and the error information in order to improve this service.": "Raccogliamo il vostro feedback e le informazioni sugli errori per migliorare questo servizio.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Non è stato possibile salvare la tua partecipazione all'interno di questo browser. Non preoccuparti, hai confermato con successo la tua partecipazione, semplicemente non siamo riusciti a salvarne lo stato in questo browser a causa di un problema tecnico.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Miglioriamo questo software grazie ai tuoi feedback. Per comunicarci questo problema hai due possibilità (entrambe purtroppo richiedono la creazione di un account utente):", + "We just sent an email to {email}": "Abbiamo appena mandato una mail a {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Usiamo il tuo fuso orario per fare in modo che le notifiche per un evento ti arrivino al momento giusto.", + "We will redirect you to your instance in order to interact with this event": "Ti reindirizzeremo alla tua istanza in modo da interagire con questo evento", + "We will redirect you to your instance in order to interact with this group": "Ti reindirizzeremo alla tua istanza per interagire con questo gruppo", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Ti invieremo un'e-mail un'ora prima dell'inizio dell'evento, per essere sicuri che non te ne dimentichi.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Useremo il tuo fuso orario per spedirti un riassunto la mattina dell'evento.", + "Website": "Sito web", + "Website / URL": "Sito web / URL", + "Weekly email summary": "Riepilogo email settimanale", + "Welcome back {username}!": "Bentrovatə {username}!", + "Welcome back!": "Bentrovatə!", + "Welcome to Mobilizon, {username}!": "Benvenutə su Mobilizon, {username}!", + "What can I do to help?": "Che posso fare per aiutarti?", + "What happened?": "Che cosa è successo?", + "Wheelchair accessibility": "Accessibilità con sedia a rotelle", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Quando un moderatore del gruppo crea un evento e lo attribuisce al gruppo, verrà visualizzato qui.", + "When the event is private, you'll need to share the link around.": "Quando l'evento è privato, è necessario condividere il link", + "When the post is private, you'll need to share the link around.": "Quando il post è privato, dovrete condividere il link", + "Whether smoking is prohibited during the event": "Se è vietato fumare durante l'evento", + "Whether the event is accessible with a wheelchair": "Se l'evento è accessibile con una sedia a rotelle", + "Whether the event is interpreted in sign language": "Se l'evento è interpretato nel linguaggio dei segni", + "Whether the event live video is subtitled": "Se il video live dell'evento è sottotitolato", + "Who can post a comment?": "Chi può postare un commento?", + "Who can view this event and participate": "Chi può vedere questo evento e partecipare", + "Who can view this post": "Chi può visualizzare questo post", + "Who published {number} events": "Che hanno pubblicato {number} eventi", + "Why create an account?": "Perché creare un account?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Consentirà di visualizzare e gestire lo stato di partecipazione sulla pagina dell'evento quando si utilizza questo dispositivo. Deseleziona se stai utilizzando un dispositivo pubblico.", + "With the most participants": "Con il maggior numero di partecipanti", + "With unknown participants": "Con partecipanti anonimi", + "With {participants}": "Con {participants}", + "Within {number} kilometers of {place}": "|Entro un chilometro da {place}|Entro {number} chilometri da {place}", + "Write a new comment": "Scrivi un nuovo commento", + "Write a new message": "Scrivi un nuovo messaggio", + "Write a new reply": "Scrivi una nuova risposta", + "Write something": "Scrivi qualcosa", + "Write your post": "Scrivi il tuo post", + "Yesterday": "Ieri", + "You accepted the invitation to join the group.": "Hai accettato l'invito a iscriverti al gruppo.", + "You added the member {member}.": "Hai aggiunto il membro {member}.", + "You approved {member}'s membership.": "Avete approvato l'iscrizione di {member}.", + "You archived the discussion {discussion}.": "Hai archiviato la discussione {discussion}.", + "You are not an administrator for this group.": "Non sei un amministratore di questo gruppo.", + "You are not part of any group.": "Non fai parte di nessun gruppo.", + "You are offline": "Sei fuori linea", + "You are participating in this event anonymously": "Stai partecipando a questo evento in forma anonima", + "You are participating in this event anonymously but didn't confirm participation": "Stai partecipando a questo evento in forma anonima ma non hai confermato la partecipazione", + "You can add resources by using the button above.": "Puoi aggiungere risorse usando il pulsante sopra.", + "You can add tags by hitting the Enter key or by adding a comma": "Puoi aggiungere etichette premendo il tasto Invio o aggiungendo una virgola", + "You can drag and drop the marker below to the desired location": "Puoi cliccare e rilasciare il marcatore qui sotto nella posizione desiderata", + "You can pick your timezone into your preferences.": "Puoi scegliere il tuo fuso orario nelle preferenze.", + "You can put any arbitrary content in this element. URLs will be clickable.": "Puoi inserire qualsiasi contenuto arbitrario in questo elemento. Gli URL saranno cliccabili.", + "You can try another search term or add the address details manually below.": "Puoi provare un altro termine di ricerca o aggiungere manualmente i dettagli dell'indirizzo qui sotto.", + "You can try another search term or drag and drop the marker on the map": "Puoi provare un altro termine di ricerca o trascinare il marcatore sulla mappa", + "You can't change your password because you are registered through {provider}.": "Non puoi cambiare la tua password perché sei registrato con {provider}.", + "You can't use push notifications in this browser.": "Impossibile inviare notifiche push a questo browser.", + "You changed your email or password": "Hai cambiato la email o la password", + "You created the discussion {discussion}.": "Hai creato la discussione {discussion}.", + "You created the event {event}.": "Hai creato l'evento {event}.", + "You created the folder {resource}.": "Hai creato la cartella {resource}.", + "You created the group {group}.": "Hai creato il gruppo {group}.", + "You created the post {post}.": "Hai creato il post {post}.", + "You created the resource {resource}.": "Hai creato la risorsa {resource}.", + "You deleted the discussion {discussion}.": "Hai eliminato la discussione {discussion}.", + "You deleted the event {event}.": "Hai cancellato l'evento {event}.", + "You deleted the folder {resource}.": "Hai eliminato la cartella {resource}.", + "You deleted the post {post}.": "Hai cancellato il post {post}.", + "You deleted the resource {resource}.": "Hai eliminato la risorsa {resource}.", + "You demoted the member {member} to an unknown role.": "Hai degradato {member} a un ruolo sconosciuto.", + "You demoted {member} to moderator.": "Hai degradato {member} a moderatore.", + "You demoted {member} to simple member.": "Hai degradato {member} a membro semplice.", + "You didn't create or join any event yet.": "Non hai ancora creato o partecipato a nessun evento.", + "You don't follow any instances yet.": "Non segui ancora nessuna istanza.", + "You don't have any upcoming events. Maybe try another filter?": "Non ci sono eventi imminenti. Forse si può provare con un altro filtro?", + "You excluded member {member}.": "Hai escluso il membro {member}.", + "You have access to this conversation as a member of the {group} group": "Hai accesso a questa conversazione come membro del gruppo {group}", + "You have attended {count} events in the past.": "Non hai ancora partecipato ad alcun evento.|Hai partecipato ad un evento.|Hai partecipato a {count} eventi.", + "You have been invited by {invitedBy} to the following group:": "Sei stato invitato da {invitedBy} al seguente gruppo:", + "You have been logged-out": "Sei stato disconnesso", + "You have been removed from this group's members.": "Sei stato rimosso dai membri di questo gruppo.", + "You have cancelled your participation": "Hai cancellato la tua partecipazione", + "You have one event in {days} days.": "Non hai eventi in {days} giorni | Hai un evento in {days} giorni. | Hai {count} eventi in {days} giorni", + "You have one event today.": "Non hai eventi oggi | Hai un evento oggi. | Hai {count} eventi oggi", + "You have one event tomorrow.": "Non hai eventi domani | Hai un evento domani | Hai {count} eventi domani", + "You haven't interacted with other instances yet.": "Non hai ancora interagito con altre istanze.", + "You invited {member}.": "Hai invitato {member}.", + "You joined the event {event}.": "Ti sei iscritto all'evento {event}.", + "You may also:": "Si può anche:", + "You may clear all participation information for this device with the buttons below.": "Puoi rimuovere tutte le informazioni di partecipazione da questo dispositivo col bottone qui sotto.", + "You may now close this page or {return_to_the_homepage}.": "A questo punto potete chiudere questa pagina o {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "Ora puoi chiudere questa finestra, o {return_to_event}.", + "You may show some members as contacts.": "Puoi mostrare alcuni membri come contatti.", + "You moved the folder {resource} into {new_path}.": "Hai spostato la cartella {resource} in {new_path}.", + "You moved the folder {resource} to the root folder.": "Hai spostato la cartella {resource} nella cartella principale.", + "You moved the resource {resource} into {new_path}.": "Hai spostato la risorsa {resource} in {new_path}.", + "You moved the resource {resource} to the root folder.": "Hai spostato la risorsa {resource} nella cartella principale.", + "You need to enter a text": "È necessario inserire un testo", + "You need to login.": "Devi accedere.", + "You need to provide the following code to your application. It will only be valid for a few minutes.": "È necessario fornire il seguente codice all'applicazione. Sarà valido solo per pochi minuti.", + "You posted a comment on the event {event}.": "Hai inviato un commento sull'evento {event}.", + "You promoted the member {member} to an unknown role.": "Hai promosso l'utente {member} a un ruolo sconosciuto.", + "You promoted {member} to administrator.": "Hai promosso {member} ad amministratore.", + "You promoted {member} to moderator.": "Hai promosso {member} a moderatore.", + "You rejected {member}'s membership request.": "Hai respinto l'adesione di {member}.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Hai rinominato la discussione da {old_discussion} a {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Hai rinominato la cartella da {old_resource_title} a {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Hai rinominato la risorsa da {old_resource_title} a {resource}.", + "You replied to a comment on the event {event}.": "Hai replicato ad un commento sull'evento {event}.", + "You replied to the discussion {discussion}.": "Hai risposto alla discussione {discussion}.", + "You requested to join the group.": "Hai richiesto di unirti al gruppo.", + "You updated the event {event}.": "Hai aggiornato l'evento {event}.", + "You updated the group {group}.": "Hai aggiornato il gruppo {group}.", + "You updated the member {member}.": "Hai aggiornato il membro {member}.", + "You updated the post {post}.": "Hai aggiornato il post {post}.", + "You were demoted to an unknown role by {profile}.": "Sei stato retrocesso ad un ruolo sconosciuto da {profile}.", + "You were demoted to moderator by {profile}.": "Sei stato declassato a moderatore da {profile}.", + "You were demoted to simple member by {profile}.": "Sei stato declassato a semplice membro da {profile}.", + "You were promoted to administrator by {profile}.": "Sei stato promosso ad amministratore da {profile}.", + "You were promoted to an unknown role by {profile}.": "Sei stato promosso ad un ruolo sconosciuto da {profile}.", + "You were promoted to moderator by {profile}.": "Sei stato promosso a moderatore da {profile}.", + "You will be able to add an avatar and set other options in your account settings.": "Potrai aggiungere un avatar e impostare altre opzioni nelle impostazioni del tuo account.", + "You will be redirected to the original instance": "Sarai reindirizzato verso l'istanza originale", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Troverai qui tutti gli eventi che hai creato o a cui stai partecipando, nonché gli eventi organizzati dai gruppi che segui o di cui sei membro.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Si riceveranno notifiche sull'attività pubblica di questo gruppo in base alla %{notification_settings}.", + "You wish to participate to the following event": "Desideri partecipare all'evento seguente", + "You'll be able to revoke access for this application in your account settings.": "Potrai revocare l'accesso a questa applicazione nelle impostazioni del tuo account.", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Rivecerai un riassunto settimanale degli eventi in arrivo ogni Lunedì, se ce ne sono.", + "You'll need to change the URLs where there were previously entered.": "Dovrai modificare gli URL dove erano stati inseriti in precedentemente.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Dovrai trasmettere l'URL del gruppo in modo che le persone possano accedere al profilo del gruppo. Il gruppo non sarà rintracciabile nella ricerca di Mobilizon o nei normali motori di ricerca.", + "You'll receive a confirmation email.": "Riceverai un'email di conferma.", + "YouTube live": "Live su Youtube", + "YouTube replay": "Replay su Youtube", + "Your account has been successfully deleted": "Il tuo account è stato eliminato con successo", + "Your account has been validated": "Il tuo account è stato validato", + "Your account is being validated": "Il tuo account è in via di validazione", + "Your account is nearly ready, {username}": "Il tuo account è quasi pronto, {username}", + "Your application code": "Il codice della tua applicazione", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "La tua città o regione e il raggio saranno usati solo per suggerirti eventi nelle vicinanze. Il raggio dell'evento considererà il centro amministrativo della zona.", + "Your current email is {email}. You use it to log in.": "La tua email attuale è {email}. La usi per accedere.", + "Your email": "La tua email", + "Your email address was automatically set based on your {provider} account.": "Il tuo indirizzo email è stato impostato automaticamente in base al tuo account {provider}.", + "Your email has been changed": "La tua email è stata cambiata", + "Your email is being changed": "La tua email sta per essere cambiata", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "La tua email sarà usata solo per confermare che sei una persona reale e per mandarti aggiornamenti successivi a questo evento. NON verrà trasmessa ad altre istanze o a chi organizza l'evento.", + "Your federated identity": "La tua identità federata", + "Your membership is pending approval": "L'iscrizione è in attesa di approvazione", + "Your membership was approved by {profile}.": "La tua iscrizione è stata approvata da {profile}.", + "Your participation has been cancelled": "La tua partecipazione è stata annullata", + "Your participation has been confirmed": "La tua partecipazione è stata confermata", + "Your participation has been rejected": "La tua partecipazione è stata rifiutata", + "Your participation has been requested": "La tua partecipazione è stata richiesta", + "Your participation is being cancelled": "La tua partecipazione verrà annullata", + "Your participation request has been validated": "La tua partecipazione è stata validata", + "Your participation request is being validated": "La tua partecipazione è in via di validazione", + "Your participation status has been changed": "Lo stato della tua partecipazione è cambiato", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Il tuo stato di partecipazione è salvato solo su questo dispositivo e sarà cancellato un mese dopo che l'evento si è concluso.", + "Your participation still has to be approved by the organisers.": "La tua partecipazione deve ancora essere approvata dagli organizzatori.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "La tua partecipazione verrà convalidata dopo aver fatto clic sul collegamento di conferma nell'email, e dopo che l'organizzatore ha convalidato manualmente la tua partecipazione.", + "Your participation will be validated once you click the confirmation link into the email.": "La tua partecipazione verrà convalidata dopo aver fatto clic sul collegamento di conferma nell'email.", + "Your position was not available.": "La sua posizione non era disponibile.", + "Your profile will be shown as contact.": "Il tuo profilo sarà mostrato come contatto.", + "Your timezone is currently set to {timezone}.": "Il fuso orario è attualmente impostato su {timezone}.", + "Your timezone was detected as {timezone}.": "Il tuo fuso orario è stato rilevato come {timezone}.", + "Your timezone {timezone} isn't supported.": "Il tuo fuso orario {timezone} non è supportato.", + "Your upcoming events": "I tuoi prossimi eventi", + "Zoom": "Zoom", + "Zoom in": "Zoom in", + "Zoom out": "Zoom out", + "[This comment has been deleted by it's author]": "[Questo commento è stato eliminato dal suo autore]", + "[This comment has been deleted]": "[Questo commento è stato eliminato]", + "[deleted]": "[cancellato]", + "a non-existent report": "una relazione inesistente", + "access the corresponding account": "Accedi all'account corrispondente", + "access to the group's private content as well": "Accedi anche ai contenuti privati del gruppo", + "and {number} groups": "e {number} gruppi", + "any distance": "qualsiasi distanza", + "as {identity}": "come {identità}", + "contact uninformed": "contatto disinformato", + "create a group": "creare un gruppo", + "create an event": "crea un evento", + "default Mobilizon privacy policy": "Politica predefinita di Mobilizon sulla riservatezza", + "default Mobilizon terms": "condizioni predefinite di Mobilizon", + "detail": "dettaglio", + "e.g. 10 Rue Jangot": "ad es. via Jangot, 10", + "e.g. Accessibility, Twitch, PeerTube": "Ad esempio, Accessibilità, Twitch, PeerTube", + "e.g. Nantes, Berlin, Cork, …": "Ad esempio Nantes, Berlino, Cork, …", + "enable the feature": "abilita la caratteristica", + "explore the events": "esplora gli eventi", + "explore the groups": "esplorare i gruppi", + "find, create and organise events": "trova, crea e organizza eventi", + "full rules": "regole complete", + "group's upcoming public events": "Prossimi eventi pubblici del gruppo", + "https://mensuel.framapad.org/p/some-secret-token": "https://etherpad.devol.it/p/qualche-token-segreto", + "iCal Feed": "Feed iCal", + "instance rules": "regole dell'istanza", + "mobilizon-instance.tld": "istanza-mobilizon.tld", + "more than 1360 contributors": "più di 1360 donatori", + "multitude of interconnected Mobilizon websites": "una moltitudine di siti web Mobilizon interconnessi", + "new{'@'}email.com": "nuova{'@'}email.com", + "profile@instance": "profilo@istanza", + "profile{'@'}instance": "profilo{'@'}istanza", + "report #{report_number}": "relazione", + "return to the event's page": "torna alla pagina dell'evento", + "return to the homepage": "tornare alla pagina iniziale", + "terms of service": "termini di servizio", + "tool designed to serve you": "strumento progettato per servirvi", + "translation": "Traduzione", + "with another identity…": "con altra identità…", + "your notification settings": "le tue impostazioni di notifica", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved} / {total} posti", + "{available}/{capacity} available places": "Nessun posto rimasto|{available}/{capacity} posti rimasti", + "{count} events": "{count} eventi", + "{count} km": "{count} km", + "{count} members": "Nessun membro|Un membro|{count} membri", + "{count} members or followers": "Nessun membro o seguace|Un membro o seguace|{count} membri o seguaci", + "{count} participants": "Ancora nessun partecipante | Un partecipante | {counts} partecipanti", + "{count} requests waiting": "{count} richieste in attesa", + "{eventsCount} activities found": "Nessuna attività trovata|Un'attività trovata|{eventsCount} attività trovate", + "{eventsCount} events found": "Nessun evento trovato|Un evento trovato|{eventsCount} eventi trovati", + "{folder} - Resources": "{folder} - Risorse", + "{groupsCount} groups found": "Nessun gruppo trovato|Un gruppo trovato|{groupsCount} gruppi trovati", + "{group} activity timeline": "{group} cronologia delle attività", + "{group} events": "eventi {group}", + "{group} posts": "Post di {group}", + "{group}'s events": "{group} eventi", + "{group}'s todolists": "elenchi di cose da fare di {group}", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} è un'istanza del software {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} è un'istanza di {mobilizon_link}, un software libero costruito con la comunità.", + "{member} accepted the invitation to join the group.": "{member} ha accettato l'invito a iscriversi al gruppo.", + "{member} joined the group.": "{member} si è unito al gruppo.", + "{member} rejected the invitation to join the group.": "{member} ha rifiutato l'invito a iscriversi al gruppo.", + "{member} requested to join the group.": "{member} ha richiesto di unirsi al gruppo.", + "{member} was invited by {profile}.": "{member} è stato invitato da {profile}.", + "{moderator} added a note on {report}": "{moderator} ha aggiunto una nota su {report}", + "{moderator} closed {report}": "{moderator} ha chiuso {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} ha cancellato un evento denominato \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} ha cancellato un commento di {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} ha eliminato un commento di {author} all'evento {event}", + "{moderator} has deleted user {user}": "{moderator} ha cancellato l'utente {user}", + "{moderator} has done an unknown action": "{moderator} ha fatto un'azione sconosciuta", + "{moderator} has unsuspended group {profile}": "{moderator} ha tolto la sospensione al gruppo {profile}", + "{moderator} has unsuspended profile {profile}": "{moderator} ha annullato la sospensione del profilo {profile}", + "{moderator} marked {report} as resolved": "{moderator} ha contrassegnato {report} come risolto", + "{moderator} reopened {report}": "{moderator} ha riaperto {report}", + "{moderator} suspended group {profile}": "{moderator} ha sospeso il gruppo {profile}", + "{moderator} suspended profile {profile}": "{moderator} ha sospeso il profilo {profile}", + "{nb} km": "{nb} chilometri", + "{numberOfCategories} selected": "{numberOfCategories} selezionate", + "{numberOfLanguages} selected": "{numberOfLanguages} selezionate", + "{number} kilometers": "{number} chilometri", + "{number} members": "{number} membri", + "{number} memberships": "{number} iscritti", + "{number} organized events": "Nessun evento organizzato|Un evento organizzato|{number} eventi organizzati", + "{number} participations": "Nessuna partecipazione|Una partecipazione|{number} partecipazioni", + "{number} posts": "Nessun post|Un post|{number} di post", + "{number} seats left": "{number} posti rimasti", + "{old_group_name} was renamed to {group}.": "{old_group_name} è stato rinominato in {group}.", + "{profileName} (suspended)": "{profileName} (sospeso)", + "{profile} (by default)": "{profile} (per impostazione predefinita)", + "{profile} added the member {member}.": "{profile} ha aggiunto il membro {member}.", + "{profile} approved {member}'s membership.": "{profile} ha approvato l'iscrizione di {member}.", + "{profile} archived the discussion {discussion}.": "{profile} ha archiviato la discussione {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} ha creato la discussione {discussion}.", + "{profile} created the folder {resource}.": "{profile} ha creato la cartella {resource}.", + "{profile} created the group {group}.": "{profile} ha creato il gruppo {group}.", + "{profile} created the resource {resource}.": "{profile} ha creato la risorsa {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} ha eliminato la discussione {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} ha eliminato la cartella {resource}.", + "{profile} deleted the resource {resource}.": "{profile} ha eliminato la risorsa {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} ha degradato {member} a un ruolo sconosciuto.", + "{profile} demoted {member} to moderator.": "{profile} ha degradato {member} a moderatore.", + "{profile} demoted {member} to simple member.": "{profile} ha degradato {member} a membro semplice.", + "{profile} excluded member {member}.": "{profile} ha escluso il membro {member}.", + "{profile} joined the the event {event}.": "{profile} si è unito all'evento {event}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} ha spostato la cartella {resource} in {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} ha spostato la cartella {resource} nella cartella principale.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} ha spostato la risorsa {resource} in {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} ha spostato la risorsa {resource} nella cartella principale.", + "{profile} posted a comment on the event {event}.": "{profile} ha inviato un commento sull'evento {event}.", + "{profile} promoted {member} to administrator.": "{profile} ha promosso {member} ad amministratore.", + "{profile} promoted {member} to an unknown role.": "{profile} ha promosso {member} a un ruolo sconosciuto.", + "{profile} promoted {member} to moderator.": "{profile} ha promosso {member} a moderatore.", + "{profile} quit the group.": "{profile} ha abbandonato il gruppo.", + "{profile} rejected {member}'s membership request.": "{profile} ha respinto la richiesta di adesione di {member}.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} ha rinominato la discussione da {old_discussion} a {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} ha rinominato la cartella da {old_resource_title} a {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} ha rinominato la risorsa da {old_resource_title} a {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} ha replicato ad un commento sull'evento {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} ha risposto alla discussione {discussion}.", + "{profile} updated the group {group}.": "{profile} ha aggiornato il gruppo {group}.", + "{profile} updated the member {member}.": "{profile} ha aggiornato il membro {member}.", + "{resultsCount} results found": "Nessun risultato trovato|Un risultato trovato|{resultsCount} risultati trovati", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} tutti)", + "{username} was invited to {group}": "{username} è stato invitato a {group}", + "{user}'s follow request was accepted": "La richiesta di follow di {user} è stata accettata", + "{user}'s follow request was rejected": "La richiesta di follow di {user} è stata rifiutata", + "© The OpenStreetMap Contributors": "© The OpenStreetMap Contributors" +}); diff --git a/res/locale/ja.js b/res/locale/ja.js new file mode 100644 index 0000000..e60a5bc --- /dev/null +++ b/res/locale/ja.js @@ -0,0 +1,1293 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "+ リンクを追加する", + "+ Create a post": "+ 投稿を作成する", + "+ Create an event": "+ イベントを作成する", + "+ Start a discussion": "+ 議論を始める", + "0 Bytes": "0バイト", + "{contact} will be displayed as contact.": "", + "@{group}": "", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "@{username}のフォローリクエストが受け入れられました", + "@{username}'s follow request was rejected": "@{username}のフォローリクエストは拒否されました", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "Mobilizionの新しいバージョンが利用可能です。", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "グループ内限定、サーバー内限定、またはインターネット全体に投稿できるスペースです。", + "A place to store links to documents or resources of any type.": "インターネットにあるもののリンクを記録できるページです。", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "実用的なツール", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "人を集めて計画して動員するための開放的で取り扱いが簡単で倫理的なソフトです。", + "A validation email was sent to {email}": "{email}に検証メールを送信しました", + "API": "API", + "Abandon editing": "編集中止", + "About": "Mobilizonについて", + "About Mobilizon": "Mobilizonについて", + "About anonymous participation": "匿名参加について", + "About instance": "インスタンスについて", + "About this event": "このイベントについて", + "About this instance": "このサーバーについて", + "About {instance}": "{instance}について", + "Accept": "受け入れる", + "Accepted": "受入済", + "Accessibility": "アクセスビリティ", + "Accessible only by link": "", + "Accessible only to members": "メンバーのみアクセス可能", + "Accessible through link": "", + "Account": "アカウント", + "Account settings": "アカウント設定", + "Actions": "アクション", + "Activate browser push notifications": "ブラウザーでのプッシュ通知を有効にする", + "Activate notifications": "通知を有効にする", + "Activated": "有効化", + "Active": "アクティブ", + "Activity": "", + "Actor": "役割", + "Add": "追加", + "Add / Remove…": "追加/削除…", + "Add a contact": "連絡先を追加する", + "Add a new post": "新しい投稿をする", + "Add a note": "ノートを追加", + "Add a todo": "TODOを追加する", + "Add an address": "住所を追加", + "Add an instance": "インスタンスを追加", + "Add link": "リンクを追加する", + "Add new…": "", + "Add picture": "画像を追加する", + "Add some tags": "タグを追加", + "Add to my calendar": "カレンダーに追加", + "Additional comments": "追加のコメント", + "Admin": "管理者", + "Admin dashboard": "管理者画面", + "Admin settings": "管理者設定", + "Admin settings successfully saved.": "管理設定を保存されました。", + "Administration": "管理", + "Administrator": "管理者", + "All": "全て", + "All activities": "全てのアクティビティ", + "All good, let's continue!": "", + "All the places have already been taken": "すでに満員になりました", + "Allow all comments from users with accounts": "ログインしているユーザーはコメントができる", + "Allow registrations": "アカウント新規登録", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "ページを更新中にエラーが発生しました。", + "An error has occured. Sorry about that. You may try to reload the page.": "申し訳ありません、エラーが発生しました。再度ページを読み込んでみてください。", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "匿名の参加者", + "Anonymous participants will be asked to confirm their participation through e-mail.": "匿名参加者の参加の確認はメールで確認します。", + "Anonymous participations": "匿名の参加者", + "Any category": "全てのカテゴリー", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "アプリケーション", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "本当にアカウントのすべてを削除しますか?すべてのデータが削除されます。設定、アイデンティティー、作成したイベント、投稿、参加記録のすべてを削除したら取り戻すことができません。", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "本当にこのコメントを削除しますか?取り戻すことはできません。", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "本当にこのイベントを削除しますか?取り戻すことができません。イベントの主催者と確認するか、イベントを編集することもあります。", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "イベント作成をやめますか?入力した情報がなくなります。", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "イベントの編集をやめますか?今までの変更した情報がなくなります。", + "Are you sure you want to cancel your participation at event \"{title}\"?": "イベントの「{title}」の参加を取り消しますか?", + "Are you sure you want to delete this entire discussion?": "本当に全ての議論を削除しますか?", + "Are you sure you want to delete this event? This action cannot be reverted.": "本当にこのイベントを削除しますか?取り戻すことはできません。", + "Are you sure you want to delete this post? This action cannot be reverted.": "本当にこの投稿を削除しますか?このアクションは取り消しできません。", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "本当に {groupName} から抜けますか?このグループのプライベート情報を見られなくなります。抜けたら取り戻すことができません。", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "{enable_feature}についてはインスタンス管理者にお問い合わせ下さい。", + "Assigned to": "", + "Atom feed for events and posts": "イベントや投稿へのAtomフィード", + "Attending": "", + "Avatar": "アバター", + "Back to group list": "グループリストに戻る", + "Back to previous page": "前のページに戻る", + "Back to profile list": "", + "Back to top": "ページトップに戻る", + "Back to user list": "ユーザーリストに戻る", + "Banner": "バナー", + "Before you can login, you need to click on the link inside it to validate your account.": "ログインができるため、検証メールに書かれているリンクをクリックしてアカウントを検証する必要があります。", + "Begins on": "", + "Big Blue Button": "", + "Bold": "太字", + "Booking": "予約", + "Breadcrumbs": "", + "Browser notifications": "ブラウザー通知", + "Bullet list": "", + "By others": "", + "By {group}": "", + "By {username}": "{username}より", + "Can be an email or a link, or just plain text.": "", + "Cancel": "キャンセル", + "Cancel anonymous participation": "匿名参加をキャンセル", + "Cancel creation": "作成をキャンセル", + "Cancel discussion title edition": "議論タイトルの編集を止める", + "Cancel edition": "編集を取り消す", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "", + "Cancel my participation…": "", + "Cancelled": "キャンセルされました", + "Cancelled: Won't happen": "イベント中止:キャンセル", + "Category": "カテゴリー", + "Change": "変更", + "Change email": "メールアドレスを変更する", + "Change my email": "自分のメールアドレスを変更", + "Change my identity…": "自分のアイデンティティを変更…", + "Change my password": "パスワードを変更", + "Change role": "役割を変更する", + "Change timezone": "タイムゾーンを変更", + "Change user email": "ユーザーのメールアドレスを変更する", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "市または地域", + "Clear": "取り消し", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "全てのイベントへの参加データを削除する", + "Clear participation data for this event": "このイベントへの参加データを削除する", + "Clear timezone field": "", + "Click for more information": "クリックして詳しい情報を知る", + "Click to upload": "クリックしてアップロードする", + "Close": "閉じる", + "Close comments for all (except for admins)": "管理者以外のアカウントはコメントが不可にする", + "Closed": "停止", + "Comment body": "", + "Comment deleted": "コメントが削除されました。", + "Comment text can't be empty": "コメントのテキストは空白にはできません", + "Comments": "コメント", + "Comments are closed for everybody else.": "他の方はコメント不可です。", + "Confirm my participation": "", + "Confirm my particpation": "参加希望を確認する", + "Confirm participation": "", + "Confirmed": "確認されました", + "Confirmed at": "に確認されました", + "Confirmed: Will happen": "確認済み:行う予定", + "Congratulations, your account is now created!": "おめでとうございます!あなたのアカウントが作成されました!", + "Contact": "お問い合わせ", + "Continue editing": "編集を続ける", + "Cookies and Local storage": "クッキーとローカルストレージ", + "Copy URL to clipboard": "URLをクリップボードにコピーする", + "Copy details to clipboard": "エラーの詳細をクリップボードにコピーする", + "Country": "国", + "Create": "作成", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "フォルダーを作成する", + "Create a new event": "新規イベントを作成", + "Create a new group": "新規グループを作成", + "Create a new identity": "新規アイデンティティを作成", + "Create a new list": "新しいリストを作成", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "アカウントを作成する", + "Create discussion": "議論を作成する", + "Create event": "自分のイベントを作成", + "Create group": "グループを作成", + "Create identity": "アイデンティティを作成する", + "Create my event": "自分のイベントを作成", + "Create my group": "自分のグループを作成", + "Create my profile": "自分のプロフィールを作成", + "Create new links": "新しいリンクを作成する", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "トークンを作成", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "", + "Current page": "現在のページ", + "Custom": "カスタム", + "Custom URL": "カスタムURL", + "Custom text": "カスタムテキスト", + "Daily email summary": "", + "Dashboard": "ダッシュボード", + "Date": "日付", + "Date and time": "日付と時刻", + "Date and time settings": "日付と時刻の設定", + "Date parameters": "", + "Deactivate notifications": "通知を無効にする", + "Decline": "", + "Decrease": "", + "Default": "デフォルト", + "Default Mobilizon privacy policy": "デフォルトのMobilizionのプライバシーポリシー", + "Default Mobilizon terms": "デフォルトのMobilizionの利用規約", + "Delete": "削除", + "Delete account": "アカウントを削除", + "Delete conversation": "会話を削除する", + "Delete discussion": "議論を削除する", + "Delete event": "イベントを削除", + "Delete everything": "全て削除する", + "Delete group": "グループを削除する", + "Delete my account": "アカウントを削除する", + "Delete post": "投稿を削除する", + "Delete this discussion": "議論を削除する", + "Delete this identity": "このアイデンティティを削除", + "Delete your identity": "自分のアイデンティティーを削除する", + "Delete {eventTitle}": "{eventTitle}を削除する", + "Delete {preferredUsername}": "{preferredUsername}を削除する", + "Deleting comment": "コメントが削除されました", + "Deleting event": "イベントを削除しています", + "Deleting my account will delete all of my identities.": "自分のアカウントを削除すると全てのアイデンティティを削除することになります。", + "Deleting your Mobilizon account": "Mobilizionのアカウントを削除しています", + "Demote": "", + "Description": "説明", + "Details": "詳細", + "Didn't receive the instructions?": "説明のメールが届いていないのですか?", + "Disabled": "無効", + "Discussions": "議論", + "Discussions list": "議論リスと", + "Display name": "表示名", + "Display participation price": "参加料金を表示する", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "本当にこのアカウントを凍結しますか?ユーザーのプロフィールが全て削除されます。", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "ドメイン", + "Draft": "下書き", + "Drafts": "下書き", + "Due on": "", + "Duplicate": "イベントを複製する", + "Edit": "編集", + "Edit post": "投稿を編集する", + "Edit profile {profile}": "", + "Edit user email": "ユーザーのメールアドレスを編集する", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "", + "Either on the {instance} instance or on another instance.": "", + "Either the account is already validated, either the validation token is incorrect.": "すでにアカウント検証済みか不正確な検証コードです。", + "Either the email has already been changed, either the validation token is incorrect.": "", + "Either the participation request has already been validated, either the validation token is incorrect.": "", + "Element title": "", + "Element value": "", + "Email": "メールアドレス", + "Email address": "メールアドレス", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "有効", + "Ends on…": "...終了時間・日付", + "Enter the link URL": "URLのリンクを入力する", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "エラー", + "Error details copied!": "エラーの詳細をコピーしました!", + "Error message": "エラーメッセージ", + "Error stacktrace": "スタックトレースのエラー", + "Error while changing email": "メールアドレスを変更中にエラーが発生しました", + "Error while loading the preview": "プレビューを読み込み中にエラーが発生しました", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "グループ{groupTitle}を通報中にエラーが発生しました", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "アカウントを認証中にエラーが発生しました", + "Error while validating participation request": "参加者のリクエストを認証中にエラーが発生しました", + "Etherpad notes": "Etherpadのノート", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "イベント", + "Event URL": "イベントURL", + "Event already passed": "", + "Event cancelled": "キャンセルされたイベント", + "Event creation": "イベントの作成", + "Event description body": "", + "Event edition": "イベントの編集", + "Event list": "イベントのリスト", + "Event metadata": "イベントのメタデータ", + "Event page settings": "イベントページの設定", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "", + "Event {eventTitle} deleted": "{eventTitle}のイベントは削除されました", + "Event {eventTitle} reported": "{eventTitle}のイベントは通報されました", + "Events": "イベント", + "Events nearby": "近くのイベント", + "Events tagged with {tag}": "", + "Everything": "全て", + "Ex: mobilizon.fr": "例えば: mobilizon.fr", + "Ex: someone@mobilizon.org": "", + "Explore": "探す", + "Explore events": "イベントを探す", + "Export": "エクスポート", + "Failed to get location.": "", + "Failed to save admin settings": "管理者設定の保存に失敗しました", + "Featured events": "注目のイベント", + "Federated Group Name": "連合されたグループ名", + "Federation": "他インスタンスとの連合", + "Fediverse account": "Fediverseアカウント", + "Fetch more": "", + "Filter": "フィルター", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "住所を追加", + "Find an instance": "サーバーを追加", + "Find another instance": "その他のインスタンスを探す", + "Find or add an element": "", + "First steps": "", + "Follow": "フォロー", + "Follow a new instance": "新しいインスタンスをフォローする", + "Follow instance": "インスタンスをフォローする", + "Follow status": "フォローの状態", + "Follower": "フォロワー", + "Followers": "フォロワー", + "Followers will receive new public events and posts.": "", + "Following": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "フォロー", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "", + "Forgot your password ?": "パスワードを忘れましたか?", + "Forgot your password?": "パスワードをお忘れですか?", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "開始:{startDate} の{startTime}時から、終了:{endDate}の{endTime}時まで", + "From the {startDate} to the {endDate}": "{startDate}から{endDate}まで", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "", + "General": "一般", + "General information": "一般情報", + "General settings": "一般設定", + "Geolocation was not determined in time.": "", + "Getting location": "場所検索中", + "Getting there": "", + "Glossary": "", + "Go": "実行", + "Go to the event page": "イベントページにアクセス", + "Google Meet": "", + "Group": "グループ", + "Group Followers": "グループフォロワー", + "Group Members": "", + "Group URL": "GroupURL", + "Group activity": "グループのアクティビティ", + "Group address": "", + "Group description body": "", + "Group display name": "グループの表示名", + "Group name": "グループ名", + "Group profiles": "グループのプロフィール", + "Group settings": "グループの設定", + "Group settings saved": "グループの設定が保存されました", + "Group short description": "グループの短い説明", + "Group visibility": "グループの公開範囲", + "Group {displayName} created": "{displayName} のグループが作成されました", + "Group {groupTitle} reported": "グループ{groupTitle}は通報されました", + "Groups": "グループ", + "Groups are not enabled on this instance.": "このインスタンスではグループ機能は有効になっていません。", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "", + "Hide replies": "返信を隠す", + "Home": "ホーム", + "Home to {number} users": "", + "Homepage": "ホームページ", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "私は{instanceRules}と {termsOfService}に同意します", + "I create an identity": "アイデンティティーを作成する", + "I don't have a Mobilizon account": "私はMobizilionアカウントを持っていません", + "I have a Mobilizon account": "私はMobizilionアカウントを持っています", + "I have an account on another Mobilizon instance.": "私は別のMobizilionインスタンスにアカウントを持っています。", + "I have an account on {instance}.": "{instance}のアカウントを持っています。", + "I participate": "", + "I want to allow people to participate without an account.": "アカウントなしで参加可能に設定する。", + "I want to approve every participation request": "すべての参加希望依頼を手動で許可する", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "イベントへのICSフィード", + "ICS/WebCal Feed": "ICS/WebCalフィード", + "IP Address": "IPアドレス", + "Identities": "アイデンティティ", + "Identity {displayName} created": "{displayName}のアイデンティティが作成されました", + "Identity {displayName} deleted": "{displayName}のアイデンティティが削除されました", + "Identity {displayName} updated": "{displayName}のアイデンティティが更新されました", + "If allowed by organizer": "イベントの主催者が決める", + "If an account with this email exists, we just sent another confirmation email to {email}": "", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "連合のアイデンティティー、また連合のアカウントの場合はあなたのユーバー名とインスタンスのドメインです。例えば、一番最初に作成したプロフィールの連合のアイデンティティーは:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "", + "Ignore": "無視する", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "インスタンス", + "Instance Long Description": "インスタンスの長い説明", + "Instance Name": "インスタンス名", + "Instance Privacy Policy": "インスタンスのプライバシーポリシー", + "Instance Privacy Policy Source": "", + "Instance Privacy Policy URL": "インスタンスのプライバシーポリシーのURL", + "Instance Rules": "インスタンスルール", + "Instance Short Description": "インスタンスの簡単な説明", + "Instance Slogan": "インスタンスのスローガン", + "Instance Terms": "インスタンスの利用規約", + "Instance Terms Source": "", + "Instance Terms URL": "インスタンス利用規約のURL", + "Instance administrator": "インスタンス管理者", + "Instance configuration": "インスタンスの設定", + "Instance feeds": "インスタンスフィード", + "Instance languages": "インスタンスの言語", + "Instance rules": "インスタンスルール", + "Instance settings": "インスタンスの設定", + "Instances": "インスタンス", + "Instances following you": "あなたをフォローしているインスタンス", + "Instances you follow": "あなたがフォローしているインスタンス", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "新しいメンバーを招待する", + "Invite member": "メンバーを招待する", + "Invited": "招待されました", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "イタリック", + "Jitsi Meet": "", + "Join": "参加する", + "Join {instance}, a Mobilizon instance": "Mobilizonで運している{instance}に参加しましょう", + "Join group": "グループに参加する", + "Join group {group}": "グループ{group}に参加する", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "キーワード", + "Language": "言語", + "Last IP adress": "最後にログインした時のIPアドレス", + "Last group created": "直近新規作成されたグループ", + "Last published event": "最近投稿した順", + "Last published events": "最後に作成されたイベント", + "Last sign-in": "最後のログイン", + "Last week": "先週", + "Latest posts": "最新の投稿", + "Learn more": "", + "Learn more about Mobilizon": "Mobilizonについて詳しく知る", + "Learn more about {instance}": "{instance}について詳しく知る", + "Leave": "抜ける", + "Leave event": "イベント参加を取り消す", + "Leave group": "グループから抜ける", + "Leaving event \"{title}\"": "「{title}」というイベント参加を取り消しています", + "Legal": "", + "Let's define a few settings": "", + "License": "ライセンス", + "Limited number of places": "参加可能の人数制限あり", + "List title": "", + "Live": "", + "Load more": "もっと見る", + "Load more activities": "", + "Loading comments…": "コメントを読み込んでいます…", + "Local": "ローカル", + "Local time ({timezone})": "ローカルタイム({timezone})", + "Locality": "地方・エリア", + "Location": "場所", + "Log in": "ログイン", + "Log out": "ログアウト", + "Login": "ログイン", + "Login on Mobilizon!": "Mobilizionにログインしましょう!", + "Login on {instance}": "{instance} にログイン", + "Login status": "ログイン状態", + "Main languages you/your moderators speak": "このインスタンスのモデレーターとあなたが話す言語", + "Manage participations": "参加者の管理", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "解決済みとしてマークする", + "Member": "メンバー", + "Members": "メンバー", + "Members-only post": "", + "Memberships": "メンバーシップ", + "Mentions": "言及", + "Message": "メッセージ", + "Microsoft Teams": "", + "Mobilizon": "Mobilizion", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "「Mobillizon」はイベントの作成、計画、探す、または管理できるツールです。", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "Mobilizionソフトウェア", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "Mobilizonのバージョン", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "新しいメンバーをモデレートする", + "Moderated comments (shown after approval)": "(管理人の承知した後に表示されている)承認済みの投稿", + "Moderation": "モデレーション", + "Moderation log": "モデレーションログ", + "Moderation logs": "モデレーションログ", + "Moderator": "モデレーター", + "Move": "", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "自分のアカウント", + "My events": "自分のイベント", + "My federated identity ends in {domain}": "連合のアカウントの最後の部分は{domain}", + "My groups": "自分のグループ", + "My identities": "自分のアイデンティティー", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "アイテム名", + "Navigated to {pageTitle}": "", + "New discussion": "新しい議論", + "New email": "新しいメールアドレス", + "New folder": "新しいフォルダー", + "New link": "新しいリンク", + "New members": "新しいメンバー", + "New note": "新規ノート", + "New password": "新しいパスワード", + "New post": "新しい投稿", + "New profile": "新しいプロフィール", + "Next": "次", + "Next month": "来月", + "Next page": "次のページ", + "Next week": "来週", + "No address defined": "住所なし", + "No closed reports yet": "", + "No comment": "コメントがありません。", + "No comments yet": "まだコメントがありません", + "No discussions yet": "議論はまだありません", + "No end date": "", + "No events found": "イベントは見つかりませんでした", + "No follower matches the filters": "", + "No group found": "グループは見つかりませんでした", + "No group matches the filters": "", + "No group member found": "グループのメンバーは見つかりませんでした", + "No groups found": "グループは見つかりませんでした", + "No information": "", + "No instance follows your instance yet.": "まだあなたのインスタンスは他のインスタンスからフォローされていません。", + "No instance found.": "インスタンスは見つかりませんでした。", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "言語は見つかりませんでした", + "No member matches the filters": "", + "No members found": "メンバーは見つかりませんでした", + "No memberships found": "", + "No message": "メッセージはありません", + "No moderation logs yet": "モデレーションログはまだありません", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "参加者0人|参加者1人|参加者 {going} 人", + "No open reports yet": "", + "No organized events found": "主催しているイベントは見つかりませんでした", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "投稿は見つかりませんでした", + "No posts yet": "投稿はまだありません", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "まだ解決した通報はありません", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "\"{queryText}\"の検索結果は見つかりませんでした", + "No results for {search}": "{search}の検索結果はありませんでした", + "No rules defined yet.": "まだルールが定められていません。", + "No user matches the filter": "フィルターに一致するユーザーは見つかりませんでした", + "No user matches the filters": "フィルターに一致するユーザーは見つかりませんでした", + "None": "無し", + "Not accessible with a wheelchair": "", + "Not approved": "", + "Not confirmed": "確認されていません", + "Notes": "補足:", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "通知設定", + "Notifications": "通知", + "Notifications for manually approved participations to an event": "", + "Notify participants": "", + "Now, create your first profile:": "", + "Number of places": "参加可能の人の数", + "OK": "OK", + "Old password": "古いパスワード", + "On {date}": "{date} に行う", + "On {date} ending at {endTime}": "{date} の {endTime} 時に終了", + "On {date} from {startTime} to {endTime}": "{date} の {startTime} 時から {endTime} 時まで", + "On {date} starting at {startTime}": "{date} の {startTime} 時から", + "On {instance} and other federated instances": "", + "Online": "オンライン", + "Online ticketing": "", + "Online upcoming events": "これからオンラインで行っているうイベント", + "Only accessible through link": "", + "Only accessible through link (private)": "直接リンクのみで表示可能(非公開イベント)", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "グループメンバーのみ議論に参加することができます", + "Only group moderators can create, edit and delete events.": "グループのモデレーターのみがイベントを作成、編集、削除できます。", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "", + "Open": "可能", + "Open a topic on our forum": "フォーラムでトピックを作成する", + "Open an issue on our bug tracker (advanced users)": "(上級ユーザー向け)バグトラッカー上でissueを開く", + "Opened reports": "", + "Or": "または", + "Ordered list": "", + "Organized": "", + "Organized by": "", + "Organized by {name}": "", + "Organizer": "主催者", + "Organizer notifications": "", + "Organizers": "主催者", + "Other": "その他", + "Other actions": "その他のアクション", + "Other notification options:": "その他の通知オプション:", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "ページ", + "Page limited to my group (asks for auth)": "", + "Page not found": "ページは見つかりませんでした", + "Parent folder": "親フォルダー", + "Partially accessible with a wheelchair": "", + "Participant": "参加者", + "Participants": "参加者", + "Participate": "参加する", + "Participate using your email address": "あなたのメールアドレスを使って参加する", + "Participation approval": "参加希望依頼の許可設定", + "Participation confirmation": "参加確認", + "Participation notifications": "", + "Participation requested!": "参加のリクエストをしました!", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "パスワード", + "Password (confirmation)": "パスワード(確認)", + "Password reset": "パスワードのリセット", + "Past events": "", + "PeerTube live": "PeerTubeのライブ配信", + "PeerTube replay": "", + "Pending": "結果待ち", + "Personal feeds": "", + "Pick": "選ぶ", + "Pick a profile or a group": "", + "Pick an identity": "", + "Pick an instance": "インスタンスを選ぶ", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "誤りがある場合、サーバーのMobilizonの管理人と連絡してください。", + "Please do not use it in any real way.": "本格的に利用することはご遠慮ください。", + "Please enter your password to confirm this action.": "このアクションの確認のため、パスワードを入力してください。", + "Please make sure the address is correct and that the page hasn't been moved.": "リンクが正しいか、またはページが移動されていないかを確かめてください。", + "Please read the {fullRules} published by {instance}'s administrators.": "{instance}の管理者によって作成された {fullRules} をお読み下さい。", + "Post": "投稿", + "Post URL": "投稿URL", + "Post a comment": "コメントを投稿する", + "Post a reply": "返信をする", + "Post body": "", + "Post {eventTitle} reported": "投稿{eventTitle}は通報されました", + "Postal Code": "郵便番号", + "Posts": "投稿", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "{mobilizon}でサーバーが運用しています。© 2018 - {date} The Mobilizon Contributors - {contributors}の支援で作られています。", + "Preferences": "設定", + "Previous": "前", + "Previous month": "先月", + "Previous page": "前のページ", + "Price sheet": "", + "Privacy": "投稿範囲", + "Privacy Policy": "プライバシーポリシー", + "Privacy policy": "プライバシーポリシー", + "Private event": "プライベートイベント", + "Private feeds": "プライベートフィード", + "Profile": "プロフィール", + "Profile feeds": "", + "Profiles": "プロファイル", + "Profiles and federation": "プロファイルと連合", + "Promote": "", + "Public": "公開", + "Public RSS/Atom Feed": "公開RSS/Atomフィード", + "Public comment moderation": "公表の投稿の調整設定", + "Public event": "公開イベント", + "Public feeds": "公開フィード", + "Public iCal Feed": "公開iCalフィード", + "Public preview": "公開プレビュー", + "Publication date": "", + "Publish": "投稿", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "引用", + "RSS/Atom Feed": "RSS/Atomフィード", + "Radius": "", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "Mobilizionへリダイレクトしています", + "Redirecting to content…": "コンテンツにリダイレクトしています…", + "Redo": "やり直す", + "Refresh profile": "プロフィールを新しくする", + "Regenerate new links": "", + "Region": "地域", + "Register": "アカウント作成", + "Register an account on {instanceName}!": "", + "Register on this instance": "", + "Registration is allowed, anyone can register.": "制限なくアカウントの新規登録可能です。", + "Registration is closed.": "アカウントの新規登録が停止されています。", + "Registration is currently closed.": "アカウントの新規登録が停止中です。", + "Registrations": "アカウントの新規登録", + "Registrations are restricted by allowlisting.": "新規登録は管理者と事前連絡済みの方のみができます。", + "Reject": "拒否する", + "Reject member": "", + "Rejected": "拒否されました", + "Remember my participation in this browser": "", + "Remove": "削除/除外", + "Remove link": "リンクを削除する", + "Rename": "", + "Rename resource": "", + "Reopen": "", + "Replay": "もう一回見る", + "Reply": "返信", + "Report": "通報", + "Report #{reportNumber}": "通報#{reportNumber}", + "Report this comment": "このコメントを通報", + "Report this event": "このイベントを通報する", + "Report this group": "このグループを通報する", + "Report this post": "この投稿を通報する", + "Reported": "", + "Reported by": "", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "", + "Reported group": "通報したグループ", + "Reported identity": "通報されたアイデンティティ", + "Reports": "通報", + "Reports list": "通報リスト", + "Request for participation confirmation sent": "", + "Resend confirmation email": "確認メールを再送する", + "Resent confirmation email": "", + "Reset": "リセット", + "Reset filters": "フィルターをリセットする", + "Reset my password": "パスワードをリセットする", + "Reset password": "パスワードのリセット", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "リンクの一覧表", + "Restricted": "", + "Return to the group page": "グループページに戻る", + "Right now": "", + "Role": "権限", + "Rules": "ルール", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "", + "Save": "保存", + "Save draft": "下書きを保存する", + "Schedule": "スケジュール", + "Search": "検索する", + "Search events, groups, etc.": "イベントやグループなどを検索する", + "Searching…": "検索中…", + "Select a category": "カテゴリーを選ぶ", + "Select a language": "言語を選ぶ", + "Select a radius": "", + "Select a timezone": "タイムゾーンを選択", + "Select languages": "言語を選ぶ", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "送信する", + "Send email": "メールを送信する", + "Send feedback": "フィードバックを送信する", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "", + "Send the report": "通報する", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "設定", + "Share": "シェア", + "Share this event": "このイベントをシェアする", + "Share this group": "このグループをシェアする", + "Share this post": "この投稿をシェアする", + "Short bio": "", + "Show map": "地図を表示", + "Show me where I am": "", + "Show remaining number of places": "残りの参加できる人の数を表示する", + "Show the time when the event begins": "イベントの開始時刻を表示", + "Show the time when the event ends": "イベントの終了時刻を表示", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "", + "Sign up": "新規登録", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "ソーシャル", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "開始は…", + "Status": "状態", + "Stop following instance": "インスタンスへのフォローを止める", + "Street": "通り", + "Submit": "送信", + "Subtitles": "字幕", + "Suspend": "", + "Suspend group": "", + "Suspend the account": "アカウントを凍結する", + "Suspend the account?": "アカウントを凍結しますか?", + "Suspended": "", + "Tag search": "タグ検索", + "Task lists": "タスクリスト", + "Technical details": "技術的詳細", + "Tentative": "未定", + "Tentative: Will be confirmed later": "仮参加:確認待ち", + "Terms": "利用規約", + "Terms of service": "利用規約", + "Text": "文字", + "Thanks a lot, your feedback was submitted!": "フィードバックを提出頂き、本当にありがとうございます!", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "Big Blue Buttonでのテレビ会議用URL", + "The Google Meet video teleconference URL": "Google Meetでのテレビ会議用URL", + "The Jitsi Meet video teleconference URL": "Jitsi Meetでのテレビ会議用URL", + "The Microsoft Teams video teleconference URL": "Microsoft Teamsでのテレビ会議用URL", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "Zoomでのテレビ会議用URL", + "The account's email address was changed. Check your emails to verify it.": "アカウントのメールアドレスが変更されました。メールをチェックして、メールアドレスの認証を行ってください。", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "通報の内容は他のサーバーから送信されました。匿名で通報を送信しますか?", + "The draft event has been updated": "", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "", + "The event has been published": "", + "The event has been updated": "", + "The event has been updated and published": "", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "イベントの主催者は記述を書いてない。", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "イベントのタイトルは省略されます。", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "イベント{event}は{profile}によって作成されました。", + "The event {event} was deleted by {profile}.": "イベント{event}は{profile}によって削除されました。", + "The event {event} was updated by {profile}.": "イベント{event}は{profile}によって更新されました。", + "The events you created are not shown here.": "あなたが作成したイベントはここには表示されません。", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "グループのアバターが変更されました。", + "The group's banner was changed.": "グループのバナーが変更されました。", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "グループ{group}からメンバーが除外されました", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "イベントの主催者がコメント不可に設定しています。", + "The page you're looking for doesn't exist.": "探しているページを見つかりません。", + "The password was successfully changed": "", + "The post {post} was created by {profile}.": "投稿{post}は{profile}によって作成されました。", + "The post {post} was deleted by {profile}.": "投稿{post}は{profile}によって削除されました。", + "The post {post} was updated by {profile}.": "投稿{post}は{profile}によって更新されました。", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "通報はあなたのサーバーの管理者に送信されます。通報の理由は下記で説明できます。", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "{participants} 人の参加者がいます。", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no discussions yet": "まだ議論はありません", + "These events may interest you": "お勧めのイベント", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "このサーバーとこのイベントの主催者が匿名参加可に設定していますが、検証メールで確認する必要があります。", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "このURLはサポートされていません", + "This event has been cancelled.": "このイベントはキャンセルされました。", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "このグループにはまだ説明がありません。", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "このグループは招待制です", + "This group was not found": "このグループは見つかりませんでした", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "", + "This instance doesn't follow yours.": "このインスタンスはあなたをフォローしていません", + "This instance hasn't got push notifications enabled.": "このインスタンスではプッシュ通知が有効化されていません。", + "This instance isn't opened to registrations, but you can register on other instances.": "このサーバーに新規登録できないのですが、ほかのサーバーに新規登録できます。", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "今月", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "このユーザーは見つかりませんでした。", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "今週", + "This weekend": "今週末", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "あなたのタイムゾーン ({timezone})", + "Times in your timezone ({timezone})": "あなたのタイムゾーン ({timezone})", + "Timezone": "タイムゾーン", + "Timezone detected as {timezone}.": "", + "Title": "タイトル", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "一つのアカウントで複数のプロフィールを作成と管理できる", + "To create and manage your events": "グループとイベントの作成と管理しやすい", + "To create or join an group and start organizing with other people": "新規グループ作成やあるグループに加入すると他人と計画を立つ", + "To follow groups and be informed of their latest events": "グループをフォローしてグループのイベントの通知もできる", + "To register for an event by choosing one of your identities": "作成したアイデンティティーでイベント参加できる", + "Today": "今日", + "Tomorrow": "明日", + "Tools": "ツール", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "Twitchのライブ配信", + "Twitch replay": "", + "Twitter account": "Twitterのアカウント", + "Type": "種類", + "Type or select a date…": "日付を入力する・選ぶ…", + "URL": "URL", + "URL copied to clipboard": "URLがクリップボードにコピーされました", + "Unable to copy to clipboard": "クリップボードにコピーできませんでした", + "Unable to create the group. One of the pictures may be too heavy.": "グループを作成できませんでした。一つの写真のサイズが大きすぎるからかもしれません。", + "Unable to create the profile. The avatar picture may be too heavy.": "プロフィールを作成できませんでした。アバターの画像のサイズが大きすぎるからかもしれません。", + "Unable to detect timezone.": "タイムゾーンを検知できませんでした。", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "プロフィールを更新できませんでした。アバターの画像のサイズが大きすぎるからかもしれません。", + "Underline": "", + "Undo": "取り消す", + "Unfollow": "フォロー解除", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "不明", + "Unknown actor": "", + "Unknown error.": "不明なエラーが発生しました。", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "まだ保存されていない編集があります", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "", + "Upcoming events": "次のイベント", + "Upcoming events from your groups": "あなたのグループでの次のイベント", + "Update": "編集", + "Update app": "アプリを更新する", + "Update discussion title": "議論タイトルを更新する", + "Update event {name}": "イベント{name}を更新する", + "Update group": "グループを更新する", + "Update my event": "イベントを更新する", + "Update post": "投稿を更新する", + "Updated": "更新されました", + "Uploaded media size": "アップロードされたメディアのサイズ", + "Use my location": "", + "User": "ユーザー", + "User settings": "ユーザー設定", + "Username": "ユーザ名", + "Users": "ユーザー", + "Validating account": "", + "Validating email": "", + "Video Conference": "ビデオ会議", + "View a reply": "", + "View account on {hostname} (in a new window)": "{hostname}でアカウントを見る (新しいウィンドウで開く)", + "View all": "全て見る", + "View all categories": "すべてのカテゴリーを表示する", + "View all events": "全てのイベントを見る", + "View all posts": "全ての投稿を見る", + "View event page": "イベントページを表示", + "View everything": "全て表示する", + "View full profile": "", + "View less": "", + "View more": "", + "View more online events": "オンラインのイベントをもっと見る", + "View page on {hostname} (in a new window)": "", + "View past events": "過去のイベントを見る", + "Visibility was set to an unknown value.": "公開範囲の設定に不明な値が設定されています。", + "Visibility was set to private.": "", + "Visibility was set to public.": "公開範囲がパブリックに設定されました。", + "Visible everywhere on the web": "全インターネットから検索で見つけられることができる", + "Visible everywhere on the web (public)": "全インターネットから検索で見つけられることができる( 公開)", + "Waiting for organization team approval.": "", + "Warning": "警告", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "ウェブサイト", + "Website / URL": "ウェブサイト / URL", + "Weekly email summary": "", + "Welcome back {username}!": "{username}さん、おかえりなさい!", + "Welcome back!": "おかえりなさい!", + "Welcome to Mobilizon, {username}!": "{username}さん 、Mobilizonへようこそ!", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "グループの管理人がグループで管理する新規イベントを作成してら、ここで表示されます。", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "誰がコメントを投稿できますか?", + "Who can view this event and participate": "", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "なぜアカウントを作成しましたか?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Yesterday": "昨日", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "あなたはこのグループの管理者ではありません。", + "You are not part of any group.": "あなたはどのグループの一員でもありません。", + "You are offline": "あなたはオフラインです", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "", + "You can't use push notifications in this browser.": "このブラウザーではプッシュ通知は利用できません。", + "You changed your email or password": "メールアドレスまたはパスワードを変更しました", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "あなたはイベント{event}を作成しました。", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "あなたは投稿{post}を作成しました。", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "あなたはイベント{event}を削除しました。", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "あなたは投稿{profile}を削除しました。", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "あなたはまだイベントを作成またはイベントに参加していません。", + "You don't follow any instances yet.": "", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "あなたはこのグループのメンバーから除外されました。", + "You have cancelled your participation": "", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "ログインする必要があります。", + "You posted a comment on the event {event}.": "あなたはイベント{event}にコメントを投稿しました。", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "あなたはイベント{event}のコメントに返信しました。", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "あなたはイベント{event}を更新しました。", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "あなたは投稿{post}を更新しました。", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "アカウント設定でアバターを加えたり、その他のオプションを設定できます。", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "", + "YouTube live": "Youtubeのライブ配信", + "YouTube replay": "", + "Your account has been successfully deleted": "あなたのアカウントの削除に成功しました", + "Your account has been validated": "あなたのアカウントは認証されました", + "Your account is being validated": "", + "Your account is nearly ready, {username}": "", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "現在のメールアドレスは{email}です。このアドレスを利用してログインしましょう", + "Your email": "メールアドレス", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "あなたのEメールは変更されました", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "あなたの連合のアイデンティティーです", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "現在あなたのタイムゾーンは{timezone}で設定されています。", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "あなたのタイムゾーン{timezone}はサポートされていません。", + "Your upcoming events": "次のイベント", + "Zoom": "", + "Zoom in": "拡大する", + "Zoom out": "縮小する", + "[This comment has been deleted by it's author]": "[このコメントは投稿者によって削除されました]", + "[This comment has been deleted]": "[このコメントが削除されました]", + "[deleted]": "[削除された]", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "全てのインスタンス", + "as {identity}": "{identity} として", + "contact uninformed": "", + "create a group": "自分のグループを作成", + "create an event": "イベントを作成する", + "default Mobilizon privacy policy": "デフォルトのMobilizionのプライバシーポリシー", + "default Mobilizon terms": "デフォルトのMobilizionの利用規約", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "機能を有効にする", + "explore the events": "イベントを探す", + "explore the groups": "グループを探す", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "iCalフェード", + "instance rules": "インスタンスルール", + "more than 1360 contributors": "1,360人以上のコントリビューター", + "profile@instance": "", + "report #{report_number}": "通報#{report_number}", + "return to the event's page": "イベントページに戻る", + "return to the homepage": "ホームページに戻る", + "terms of service": "利用規約", + "with another identity…": "", + "your notification settings": "あなたの通知設定", + "{'@'}{username}": "", + "{approved} / {total} seats": "{approved} / {total} 人まで", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "まだ参加者いない | 参加者1人 | 参加者 {count} 人", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "{group}のイベント", + "{group} posts": "{group}の投稿", + "{group}'s events": "{group}のイベント", + "{group}'s todolists": "{group}のTODOリスト", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName}は {mobilizon}のソフトウェアが使われているインスタンスです。", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "{moderator}はユーザー{user}を削除しました", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "{nb}km", + "{number} members": "{number} 人のメンバー", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "{profile}はイベント{event}にコメントを投稿しました。", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "{profile}はイベント{event}のコメントに返信しました。", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "{username}が{group}に招待されました", + "© The OpenStreetMap Contributors": "" +}); diff --git a/res/locale/kab.js b/res/locale/kab.js new file mode 100644 index 0000000..cfa21d1 --- /dev/null +++ b/res/locale/kab.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "", + "+ Create a post": "", + "+ Create an event": "", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "", + "A validation email was sent to {email}": "", + "API": "", + "Abandon editing": "", + "About": "Γef", + "About Mobilizon": "", + "About anonymous participation": "", + "About instance": "", + "About this event": "", + "About this instance": "", + "About {instance}": "", + "Accept": "Qbel", + "Accepted": "Yettwaqbel", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "Amiḍan", + "Account settings": "", + "Actions": "Actions", + "Activate browser push notifications": "", + "Activated": "Irmed", + "Active": "Urmid", + "Activity": "Armud", + "Actor": "", + "Add": "Rnu", + "Add / Remove…": "", + "Add a contact": "", + "Add a new post": "", + "Add a note": "Rnu tazmilt", + "Add a todo": "", + "Add an address": "", + "Add an instance": "", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "", + "Add to my calendar": "", + "Additional comments": "", + "Admin": "Anedbal", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "", + "Administration": "Tadbelt", + "Administrator": "Anedbal", + "All activities": "", + "All good, let's continue!": "", + "All the places have already been taken": "", + "Allow all comments from users with accounts": "", + "Allow registrations": "", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "", + "Anonymous participants will be asked to confirm their participation through e-mail.": "", + "Anonymous participations": "", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "Application", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "", + "Are you sure you want to cancel your participation at event \"{title}\"?": "", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "Avaṭar", + "Back to group list": "", + "Back to previous page": "", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "Aγarrac", + "Before you can login, you need to click on the link inside it to validate your account.": "", + "Begins on": "", + "Big Blue Button": "", + "Bold": "Tira tazurant", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "", + "By {group}": "", + "By {username}": "", + "Can be an email or a link, or just plain text.": "", + "Cancel": "Annuler", + "Cancel anonymous participation": "", + "Cancel creation": "", + "Cancel discussion title edition": "", + "Cancel edition": "", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "", + "Cancel my participation…": "", + "Cancelled": "Ittwasefsex", + "Cancelled: Won't happen": "", + "Change": "Beddel", + "Change my email": "", + "Change my identity…": "", + "Change my password": "Abeddel n awal-iw uffir", + "Change timezone": "", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "Tiγremt neγ tamnaḍt", + "Clear": "Sfeḍ", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "Sit i wugar n telɣut", + "Click to upload": "", + "Close": "Mdel", + "Close comments for all (except for admins)": "", + "Closed": "Yemdel", + "Comment body": "", + "Comment deleted": "", + "Comment text can't be empty": "", + "Comments": "Iwenniten", + "Comments are closed for everybody else.": "", + "Confirm my participation": "", + "Confirm my particpation": "", + "Confirm participation": "", + "Confirmed": "Yettwaqbel", + "Confirmed at": "", + "Confirmed: Will happen": "", + "Congratulations, your account is now created!": "", + "Contact": "Anermes", + "Continue editing": "", + "Cookies and Local storage": "", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "Country", + "Create": "Rnu", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "", + "Create a new event": "", + "Create a new group": "", + "Create a new identity": "", + "Create a new list": "Rnu tabdert tamaynut", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "Rnu amiḍan", + "Create discussion": "", + "Create event": "", + "Create group": "Snulfu-d agraw", + "Create identity": "", + "Create my event": "", + "Create my group": "", + "Create my profile": "", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "", + "Current page": "", + "Custom": "Udmawan", + "Custom URL": "URL yugnen", + "Custom text": "", + "Daily email summary": "", + "Dashboard": "Tafelwit n usenqed", + "Date": "Azemz", + "Date and time": "Azemz aked usrag", + "Date and time settings": "", + "Date parameters": "", + "Decline": "Agwi", + "Decrease": "", + "Default": "Amezwar", + "Default Mobilizon privacy policy": "", + "Default Mobilizon terms": "", + "Delete": "Kkes", + "Delete account": "Kkes amiḍan", + "Delete conversation": "", + "Delete discussion": "", + "Delete event": "Kkes tadyant", + "Delete everything": "", + "Delete group": "", + "Delete my account": "", + "Delete post": "", + "Delete this discussion": "", + "Delete this identity": "", + "Delete your identity": "", + "Delete {eventTitle}": "", + "Delete {preferredUsername}": "", + "Deleting comment": "", + "Deleting event": "", + "Deleting my account will delete all of my identities.": "", + "Deleting your Mobilizon account": "", + "Demote": "Ṣubb deg usellun", + "Description": "Asnummel", + "Details": "", + "Didn't receive the instructions?": "", + "Disabled": "Yensa", + "Discussions": "", + "Discussions list": "", + "Display name": "Isem n uskan", + "Display participation price": "", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "Taɣult", + "Draft": "Arewway", + "Drafts": "Irewwayen", + "Due on": "", + "Duplicate": "Sisleg", + "Edit": "Édition", + "Edit post": "", + "Edit profile {profile}": "", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "", + "Either on the {instance} instance or on another instance.": "", + "Either the account is already validated, either the validation token is incorrect.": "", + "Either the email has already been changed, either the validation token is incorrect.": "", + "Either the participation request has already been validated, either the validation token is incorrect.": "", + "Element title": "", + "Element value": "", + "Email": "Imayl", + "Email address": "Tansa imayl", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "Irmed", + "Ends on…": "", + "Enter the link URL": "", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "Tuccḍa", + "Error details copied!": "", + "Error message": "Izen n tuccḍa", + "Error stacktrace": "", + "Error while changing email": "", + "Error while loading the preview": "", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "", + "Error while validating participation request": "", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "Événement", + "Event URL": "", + "Event already passed": "", + "Event cancelled": "", + "Event creation": "", + "Event description body": "", + "Event edition": "", + "Event list": "", + "Event metadata": "", + "Event page settings": "", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "", + "Event {eventTitle} deleted": "", + "Event {eventTitle} reported": "", + "Events": "Tidyanin", + "Events nearby": "", + "Events tagged with {tag}": "", + "Everything": "Kulec", + "Ex: mobilizon.fr": "", + "Ex: someone@mobilizon.org": "", + "Explore": "Snirem", + "Explore events": "", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "", + "Featured events": "", + "Federated Group Name": "", + "Federation": "", + "Fediverse account": "", + "Fetch more": "", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "", + "Find an instance": "", + "Find another instance": "", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "", + "Followers": "", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "", + "Forgot your password ?": "", + "Forgot your password?": "Tettuḍ awal uffir?", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "", + "From the {startDate} to the {endDate}": "", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "", + "General": "Amatu", + "General information": "", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "", + "Getting there": "", + "Glossary": "Amawal n yilɣiten", + "Go": "Ddu", + "Go to the event page": "", + "Google Meet": "", + "Group": "", + "Group Followers": "", + "Group Members": "", + "Group URL": "", + "Group activity": "", + "Group address": "", + "Group description body": "", + "Group display name": "", + "Group name": "Isem n ugraw", + "Group profiles": "", + "Group settings": "Iγewwaṛen nu graw", + "Group settings saved": "", + "Group short description": "", + "Group visibility": "", + "Group {displayName} created": "", + "Group {groupTitle} reported": "", + "Groups": "Igrawen", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "", + "Hide replies": "Ffer tiririyin", + "Home": "Asnubeg", + "Home to {number} users": "", + "Homepage": "", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "", + "I create an identity": "", + "I don't have a Mobilizon account": "", + "I have a Mobilizon account": "", + "I have an account on another Mobilizon instance.": "", + "I participate": "", + "I want to allow people to participate without an account.": "", + "I want to approve every participation request": "", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "", + "Identity {displayName} created": "", + "Identity {displayName} deleted": "", + "Identity {displayName} updated": "", + "If allowed by organizer": "", + "If an account with this email exists, we just sent another confirmation email to {email}": "", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "", + "Instance Long Description": "", + "Instance Name": "", + "Instance Privacy Policy": "", + "Instance Privacy Policy Source": "", + "Instance Privacy Policy URL": "", + "Instance Rules": "", + "Instance Short Description": "", + "Instance Slogan": "", + "Instance Terms": "", + "Instance Terms Source": "", + "Instance Terms URL": "", + "Instance administrator": "", + "Instance configuration": "", + "Instance feeds": "", + "Instance languages": "", + "Instance rules": "", + "Instance settings": "", + "Instances": "", + "Instances following you": "", + "Instances you follow": "", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "", + "Invite member": "", + "Invited": "Yettwancad", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "Uknan", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "", + "Join group": "", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "", + "Language": "Tutlayt", + "Last IP adress": "", + "Last group created": "", + "Last published event": "", + "Last published events": "", + "Last sign-in": "", + "Last week": "Dduṛt yezrin", + "Latest posts": "", + "Learn more": "", + "Learn more about Mobilizon": "", + "Learn more about {instance}": "", + "Leave": "Eǧǧ", + "Leave event": "", + "Leave group": "", + "Leaving event \"{title}\"": "", + "Legal": "Usḍif", + "Let's define a few settings": "", + "License": "Licence", + "Limited number of places": "", + "List title": "", + "Live": "", + "Load more": "Sali ugar", + "Load more activities": "", + "Loading comments…": "", + "Local": "Adigan", + "Local time ({timezone})": "", + "Locality": "Amḍiq", + "Location": "Adig", + "Log in": "Qqen", + "Log out": "Tuffɣa", + "Login": "Aseqdac", + "Login on Mobilizon!": "", + "Login on {instance}": "", + "Login status": "", + "Main languages you/your moderators speak": "", + "Manage participations": "", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "", + "Member": "Amedraw", + "Members": "Imttekkiyen", + "Members-only post": "", + "Mentions": "", + "Message": "Izen", + "Microsoft Teams": "", + "Mobilizon": "", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "", + "Moderated comments (shown after approval)": "", + "Moderation": "", + "Moderation log": "", + "Moderation logs": "", + "Moderator": "Amaẓrag", + "Move": "Senkez", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "", + "My events": "", + "My groups": "", + "My identities": "", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "Isem", + "Navigated to {pageTitle}": "", + "New discussion": "", + "New email": "", + "New folder": "Akaram amaynut", + "New link": "", + "New members": "", + "New note": "Tazmilt tamaynut", + "New password": "Awal uffir amaynut", + "New post": "", + "New profile": "Nouveau profil", + "Next": "Uḍfir", + "Next month": "Aggur d-iteddun", + "Next page": "Asebtar ameḍfir", + "Next week": "Dduṛt d-iteddun", + "No address defined": "", + "No closed reports yet": "", + "No comment": "", + "No comments yet": "", + "No discussions yet": "", + "No end date": "", + "No events found": "", + "No follower matches the filters": "", + "No group found": "", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "", + "No information": "", + "No instance follows your instance yet.": "", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "Ulac tutlaying i yettwafen", + "No member matches the filters": "", + "No members found": "", + "No memberships found": "", + "No message": "", + "No moderation logs yet": "", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "", + "No open reports yet": "", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "", + "No posts yet": "", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "", + "No results for {search}": "", + "No rules defined yet.": "", + "None": "Ula d yiwen", + "Not accessible with a wheelchair": "", + "Not approved": "", + "Not confirmed": "", + "Notes": "Tizmilin", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "", + "Notifications": "Ilɣa", + "Notifications for manually approved participations to an event": "", + "Notify participants": "", + "Now, create your first profile:": "", + "Number of places": "", + "OK": "IH", + "Old password": "Awal uffir aqbuṛ", + "On {date}": "", + "On {date} ending at {endTime}": "", + "On {date} from {startTime} to {endTime}": "", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "", + "Open": "Ldi", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Opened reports": "", + "Or": "", + "Ordered list": "", + "Organized": "", + "Organized by": "", + "Organized by {name}": "", + "Organizer": "Sefrek", + "Organizer notifications": "", + "Organizers": "", + "Other": "Nniḍen", + "Other actions": "", + "Other notification options:": "", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "Asebtar", + "Page limited to my group (asks for auth)": "", + "Page not found": "", + "Parent folder": "Akaram agejdan", + "Partially accessible with a wheelchair": "", + "Participant": "Imttekki", + "Participants": "", + "Participate": "", + "Participate using your email address": "", + "Participation approval": "", + "Participation confirmation": "", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "Mot de passe", + "Password (confirmation)": "", + "Password reset": "Awennez n wawal uffir", + "Past events": "", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "Ittraǧu", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "", + "Pick an instance": "", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "", + "Please do not use it in any real way.": "", + "Please enter your password to confirm this action.": "", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "", + "Post": "Amagrad", + "Post URL": "", + "Post a comment": "Aru awennit", + "Post a reply": "", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "", + "Posts": "Imagraden", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "", + "Preferences": "Ismenyifen", + "Previous": "Précédent", + "Previous month": "", + "Previous page": "Asebtar ssabeq", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "Tasertit tabaḍnit", + "Privacy policy": "Tasertit n tbaḍnit", + "Private event": "", + "Private feeds": "", + "Profile": "", + "Profile feeds": "", + "Profiles": "", + "Profiles and federation": "", + "Promote": "", + "Public": "Azayez", + "Public RSS/Atom Feed": "", + "Public comment moderation": "", + "Public event": "", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "", + "Publish": "Suffeɣ-d", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "", + "Radius": "Aɣar n yiri", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "Tamnaḍt", + "Register": "", + "Register an account on {instanceName}!": "", + "Register on this instance": "", + "Registration is allowed, anyone can register.": "", + "Registration is closed.": "", + "Registration is currently closed.": "", + "Registrations": "", + "Registrations are restricted by allowlisting.": "", + "Reject": "Agi", + "Reject member": "", + "Rejected": "Yerrad", + "Remember my participation in this browser": "", + "Remove": "Kkes", + "Remove link": "", + "Rename": "Beddel isem", + "Rename resource": "", + "Reopen": "Ldi i tikkelt-nniḍen", + "Replay": "", + "Reply": "Err", + "Report": "Aneqqis", + "Report #{reportNumber}": "", + "Report this comment": "Sillef awennit agi", + "Report this event": "", + "Report this group": "", + "Report this post": "", + "Reported": "", + "Reported by": "", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "", + "Reported group": "", + "Reported identity": "", + "Reports": "Ineqqisen", + "Reports list": "", + "Request for participation confirmation sent": "", + "Resend confirmation email": "", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "Wennez awal-iw uffir", + "Reset password": "", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "Tiɣbula", + "Restricted": "Yesεa tilas", + "Return to the group page": "", + "Right now": "", + "Role": "Tamlilt", + "Rules": "Ilugan", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "SSL/TLS", + "Save": "Sekles", + "Save draft": "Sekles arewway", + "Schedule": "", + "Search": "Nadi", + "Search events, groups, etc.": "", + "Searching…": "Anadi…", + "Select a language": "", + "Select a radius": "", + "Select a timezone": "", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "Azen imayl", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "", + "Send the report": "", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "Iɣewwaṛen", + "Share": "", + "Share this event": "", + "Share this group": "", + "Share this post": "", + "Short bio": "", + "Show map": "", + "Show me where I am": "", + "Show remaining number of places": "", + "Show the time when the event begins": "", + "Show the time when the event ends": "", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "Kcem s", + "Sign up": "", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "", + "Status": "État", + "Street": "Abrid", + "Submit": "Azen", + "Subtitles": "", + "Suspend": "Ḥbes di leεḍil", + "Suspend group": "", + "Suspended": "Yeḥbes", + "Tag search": "", + "Task lists": "", + "Technical details": "", + "Tentative": "Aɛraḍ", + "Tentative: Will be confirmed later": "", + "Terms": "Tiwtilin", + "Terms of service": "", + "Text": "Aḍris", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "", + "The event has been published": "", + "The event has been updated": "", + "The event has been updated and published": "", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "", + "The page you're looking for doesn't exist.": "", + "The password was successfully changed": "", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no discussions yet": "", + "These events may interest you": "", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "", + "This event has been cancelled.": "", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "Aggur-a", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "Ddurt-a", + "This weekend": "", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "Iẓdi usrig", + "Timezone detected as {timezone}.": "", + "Title": "Azwel", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "", + "To create and manage your events": "", + "To create or join an group and start organizing with other people": "", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "", + "Today": "Ass-a", + "Tomorrow": "Azekka", + "Tools": "", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "Anaw", + "Type or select a date…": "", + "URL": "URL", + "URL copied to clipboard": "", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "Arussin", + "Unknown actor": "", + "Unknown error.": "", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "", + "Upcoming events": "", + "Upcoming events from your groups": "", + "Update": "Leqqem", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "", + "Update group": "Leqqem agraw", + "Update my event": "", + "Update post": "", + "Updated": "Yettwalqem", + "Uploaded media size": "", + "Use my location": "", + "User": "Aseqdac", + "User settings": "", + "Username": "Isem n useqdac", + "Users": "Iseqdacen", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "", + "View account on {hostname} (in a new window)": "", + "View all": "Sken akk", + "View all events": "", + "View all posts": "", + "View event page": "", + "View everything": "", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "", + "Visible everywhere on the web (public)": "", + "Waiting for organization team approval.": "", + "Warning": "Ɣur-k", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "Asmel n web", + "Website / URL": "", + "Weekly email summary": "", + "Welcome back {username}!": "", + "Welcome back!": "Anṣuf i tikkelt-nniḍen!", + "Welcome to Mobilizon, {username}!": "", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Yesterday": "Iḍelli", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "", + "Your account has been validated": "", + "Your account is being validated": "", + "Your account is nearly ready, {username}": "", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "", + "Your email": "Imayl-ik", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "", + "Your upcoming events": "", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "", + "[This comment has been deleted]": "", + "[deleted]": "[yettwakkes]", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "", + "contact uninformed": "", + "create a group": "", + "create an event": "", + "default Mobilizon privacy policy": "", + "default Mobilizon terms": "", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "", + "instance rules": "", + "more than 1360 contributors": "", + "profile@instance": "", + "report #{report_number}": "", + "return to the event's page": "", + "terms of service": "", + "with another identity…": "", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "", + "{number} members": "", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "", + "© The OpenStreetMap Contributors": "" +}); diff --git a/res/locale/kn.js b/res/locale/kn.js new file mode 100644 index 0000000..78977fa --- /dev/null +++ b/res/locale/kn.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "", + "+ Create a post": "", + "+ Create an event": "", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "", + "A validation email was sent to {email}": "", + "API": "", + "Abandon editing": "", + "About": "ಬಗ್ಗೆ", + "About Mobilizon": "ಮೊಬಿಲಿಜಾನ್ ಬಗ್ಗೆ", + "About anonymous participation": "", + "About instance": "", + "About this event": "", + "About this instance": "", + "About {instance}": "", + "Accept": "", + "Accepted": "", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "ಖಾತೆ", + "Account settings": "", + "Actions": "", + "Activate browser push notifications": "", + "Activated": "", + "Active": "", + "Activity": "", + "Actor": "", + "Add": "ಸೇರಿಸಿ", + "Add / Remove…": "", + "Add a contact": "", + "Add a new post": "", + "Add a note": "ಟಿಪ್ಪಣಿಯನ್ನು ಸೇರಿಸಿ", + "Add a todo": "", + "Add an address": "ವಿಳಾಸವನ್ನು ಸೇರಿಸಿ", + "Add an instance": "", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "", + "Add to my calendar": "", + "Additional comments": "", + "Admin": "", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "", + "Administration": "", + "Administrator": "", + "All activities": "", + "All good, let's continue!": "", + "All the places have already been taken": "", + "Allow all comments from users with accounts": "", + "Allow registrations": "", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "ಅನಾಮದೇಯ ಪಾಲ್ಗೊಳ್ಳುವವರು", + "Anonymous participants will be asked to confirm their participation through e-mail.": "", + "Anonymous participations": "", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "", + "Are you sure you want to cancel your participation at event \"{title}\"?": "", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "", + "Back to group list": "", + "Back to previous page": "", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "", + "Before you can login, you need to click on the link inside it to validate your account.": "", + "Begins on": "", + "Big Blue Button": "", + "Bold": "", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "", + "By {group}": "", + "By {username}": "", + "Can be an email or a link, or just plain text.": "", + "Cancel": "", + "Cancel anonymous participation": "", + "Cancel creation": "", + "Cancel discussion title edition": "", + "Cancel edition": "", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "", + "Cancel my participation…": "", + "Cancelled": "", + "Cancelled: Won't happen": "", + "Change": "", + "Change my email": "", + "Change my identity…": "", + "Change my password": "", + "Change timezone": "", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "", + "Clear": "", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "", + "Click to upload": "", + "Close": "", + "Close comments for all (except for admins)": "", + "Closed": "", + "Comment body": "", + "Comment deleted": "", + "Comment text can't be empty": "", + "Comments": "", + "Comments are closed for everybody else.": "", + "Confirm my participation": "", + "Confirm my particpation": "", + "Confirm participation": "", + "Confirmed": "", + "Confirmed at": "", + "Confirmed: Will happen": "", + "Congratulations, your account is now created!": "", + "Contact": "", + "Continue editing": "", + "Cookies and Local storage": "", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "", + "Create": "", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "", + "Create a new event": "", + "Create a new group": "", + "Create a new identity": "", + "Create a new list": "", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "", + "Create discussion": "", + "Create event": "", + "Create group": "", + "Create identity": "", + "Create my event": "", + "Create my group": "", + "Create my profile": "", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "", + "Current page": "", + "Custom": "", + "Custom URL": "", + "Custom text": "", + "Daily email summary": "", + "Dashboard": "", + "Date": "", + "Date and time": "", + "Date and time settings": "", + "Date parameters": "", + "Decline": "", + "Decrease": "", + "Default": "", + "Default Mobilizon privacy policy": "", + "Default Mobilizon terms": "", + "Delete": "", + "Delete account": "", + "Delete conversation": "", + "Delete discussion": "", + "Delete event": "", + "Delete everything": "", + "Delete group": "", + "Delete my account": "", + "Delete post": "", + "Delete this discussion": "", + "Delete this identity": "", + "Delete your identity": "", + "Delete {eventTitle}": "", + "Delete {preferredUsername}": "", + "Deleting comment": "", + "Deleting event": "", + "Deleting my account will delete all of my identities.": "", + "Deleting your Mobilizon account": "", + "Demote": "", + "Description": "", + "Details": "", + "Didn't receive the instructions?": "", + "Disabled": "", + "Discussions": "", + "Discussions list": "", + "Display name": "", + "Display participation price": "", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "", + "Draft": "", + "Drafts": "", + "Due on": "", + "Duplicate": "", + "Edit": "", + "Edit post": "", + "Edit profile {profile}": "", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "", + "Either on the {instance} instance or on another instance.": "", + "Either the account is already validated, either the validation token is incorrect.": "", + "Either the email has already been changed, either the validation token is incorrect.": "", + "Either the participation request has already been validated, either the validation token is incorrect.": "", + "Element title": "", + "Element value": "", + "Email": "", + "Email address": "", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "", + "Ends on…": "", + "Enter the link URL": "", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "", + "Error details copied!": "", + "Error message": "", + "Error stacktrace": "", + "Error while changing email": "", + "Error while loading the preview": "", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "", + "Error while validating participation request": "", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "", + "Event URL": "", + "Event already passed": "", + "Event cancelled": "", + "Event creation": "", + "Event description body": "", + "Event edition": "", + "Event list": "", + "Event metadata": "", + "Event page settings": "", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "", + "Event {eventTitle} deleted": "", + "Event {eventTitle} reported": "", + "Events": "", + "Events nearby": "", + "Events tagged with {tag}": "", + "Everything": "", + "Ex: mobilizon.fr": "", + "Ex: someone@mobilizon.org": "", + "Explore": "", + "Explore events": "", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "", + "Featured events": "", + "Federated Group Name": "", + "Federation": "", + "Fediverse account": "", + "Fetch more": "", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "", + "Find an instance": "", + "Find another instance": "", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "", + "Followers": "", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "", + "Forgot your password ?": "", + "Forgot your password?": "", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "", + "From the {startDate} to the {endDate}": "", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "", + "General": "", + "General information": "", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "", + "Getting there": "", + "Glossary": "", + "Go": "", + "Go to the event page": "", + "Google Meet": "", + "Group": "", + "Group Followers": "", + "Group Members": "", + "Group URL": "", + "Group activity": "", + "Group address": "", + "Group description body": "", + "Group display name": "", + "Group name": "", + "Group profiles": "", + "Group settings": "", + "Group settings saved": "", + "Group short description": "", + "Group visibility": "", + "Group {displayName} created": "", + "Group {groupTitle} reported": "", + "Groups": "", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "", + "Hide replies": "", + "Home": "", + "Home to {number} users": "", + "Homepage": "", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "", + "I create an identity": "", + "I don't have a Mobilizon account": "", + "I have a Mobilizon account": "", + "I have an account on another Mobilizon instance.": "", + "I participate": "", + "I want to allow people to participate without an account.": "", + "I want to approve every participation request": "", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "", + "Identity {displayName} created": "", + "Identity {displayName} deleted": "", + "Identity {displayName} updated": "", + "If allowed by organizer": "", + "If an account with this email exists, we just sent another confirmation email to {email}": "", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "", + "Instance Long Description": "", + "Instance Name": "", + "Instance Privacy Policy": "", + "Instance Privacy Policy Source": "", + "Instance Privacy Policy URL": "", + "Instance Rules": "", + "Instance Short Description": "", + "Instance Slogan": "", + "Instance Terms": "", + "Instance Terms Source": "", + "Instance Terms URL": "", + "Instance administrator": "", + "Instance configuration": "", + "Instance feeds": "", + "Instance languages": "", + "Instance rules": "", + "Instance settings": "", + "Instances": "", + "Instances following you": "", + "Instances you follow": "", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "", + "Invite member": "", + "Invited": "", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "", + "Join group": "", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "", + "Language": "", + "Last IP adress": "", + "Last group created": "", + "Last published event": "", + "Last published events": "", + "Last sign-in": "", + "Last week": "", + "Latest posts": "", + "Learn more": "", + "Learn more about Mobilizon": "", + "Learn more about {instance}": "", + "Leave": "", + "Leave event": "", + "Leave group": "", + "Leaving event \"{title}\"": "", + "Legal": "", + "Let's define a few settings": "", + "License": "", + "Limited number of places": "", + "List title": "", + "Live": "", + "Load more": "", + "Load more activities": "", + "Loading comments…": "", + "Local": "", + "Local time ({timezone})": "", + "Locality": "", + "Location": "", + "Log in": "", + "Log out": "", + "Login": "", + "Login on Mobilizon!": "", + "Login on {instance}": "", + "Login status": "", + "Main languages you/your moderators speak": "", + "Manage participations": "", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "", + "Member": "", + "Members": "", + "Members-only post": "", + "Mentions": "", + "Message": "", + "Microsoft Teams": "", + "Mobilizon": "", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "", + "Moderated comments (shown after approval)": "", + "Moderation": "", + "Moderation log": "", + "Moderation logs": "", + "Moderator": "", + "Move": "", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "", + "My events": "", + "My groups": "", + "My identities": "", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "", + "Navigated to {pageTitle}": "", + "New discussion": "", + "New email": "", + "New folder": "", + "New link": "", + "New members": "", + "New note": "", + "New password": "", + "New post": "", + "New profile": "", + "Next": "", + "Next month": "", + "Next page": "", + "Next week": "", + "No address defined": "", + "No closed reports yet": "", + "No comment": "", + "No comments yet": "", + "No discussions yet": "", + "No end date": "", + "No events found": "", + "No follower matches the filters": "", + "No group found": "", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "", + "No information": "", + "No instance follows your instance yet.": "", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "", + "No member matches the filters": "", + "No members found": "", + "No memberships found": "", + "No message": "", + "No moderation logs yet": "", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "", + "No open reports yet": "", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "", + "No posts yet": "", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "", + "No results for {search}": "", + "No rules defined yet.": "", + "None": "", + "Not accessible with a wheelchair": "", + "Not approved": "", + "Not confirmed": "", + "Notes": "", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "", + "Notifications": "", + "Notifications for manually approved participations to an event": "", + "Notify participants": "", + "Now, create your first profile:": "", + "Number of places": "", + "OK": "", + "Old password": "", + "On {date}": "", + "On {date} ending at {endTime}": "", + "On {date} from {startTime} to {endTime}": "", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "", + "Open": "", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Opened reports": "", + "Or": "", + "Ordered list": "", + "Organized": "", + "Organized by": "", + "Organized by {name}": "", + "Organizer": "", + "Organizer notifications": "", + "Organizers": "", + "Other": "", + "Other actions": "", + "Other notification options:": "", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "", + "Page limited to my group (asks for auth)": "", + "Page not found": "", + "Parent folder": "", + "Partially accessible with a wheelchair": "", + "Participant": "", + "Participants": "", + "Participate": "", + "Participate using your email address": "", + "Participation approval": "", + "Participation confirmation": "", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "", + "Password (confirmation)": "", + "Password reset": "", + "Past events": "", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "", + "Pick an instance": "", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "", + "Please do not use it in any real way.": "", + "Please enter your password to confirm this action.": "", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "", + "Post": "", + "Post URL": "", + "Post a comment": "", + "Post a reply": "", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "", + "Posts": "", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "", + "Preferences": "", + "Previous": "", + "Previous month": "", + "Previous page": "", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "", + "Privacy policy": "", + "Private event": "", + "Private feeds": "", + "Profile": "", + "Profile feeds": "", + "Profiles": "", + "Profiles and federation": "", + "Promote": "", + "Public": "", + "Public RSS/Atom Feed": "", + "Public comment moderation": "", + "Public event": "", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "", + "Publish": "", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "", + "Radius": "", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "", + "Register": "", + "Register an account on {instanceName}!": "", + "Register on this instance": "", + "Registration is allowed, anyone can register.": "", + "Registration is closed.": "", + "Registration is currently closed.": "", + "Registrations": "", + "Registrations are restricted by allowlisting.": "", + "Reject": "", + "Reject member": "", + "Rejected": "", + "Remember my participation in this browser": "", + "Remove": "", + "Remove link": "", + "Rename": "", + "Rename resource": "", + "Reopen": "", + "Replay": "", + "Reply": "", + "Report": "", + "Report #{reportNumber}": "", + "Report this comment": "", + "Report this event": "", + "Report this group": "", + "Report this post": "", + "Reported": "", + "Reported by": "", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "", + "Reported group": "", + "Reported identity": "", + "Reports": "", + "Reports list": "", + "Request for participation confirmation sent": "", + "Resend confirmation email": "", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "", + "Reset password": "", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "", + "Restricted": "", + "Return to the group page": "", + "Right now": "", + "Role": "", + "Rules": "", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "", + "Save": "", + "Save draft": "", + "Schedule": "", + "Search": "", + "Search events, groups, etc.": "", + "Searching…": "", + "Select a language": "", + "Select a radius": "", + "Select a timezone": "", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "", + "Send the report": "", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "", + "Share": "", + "Share this event": "", + "Share this group": "", + "Share this post": "", + "Short bio": "", + "Show map": "", + "Show me where I am": "", + "Show remaining number of places": "", + "Show the time when the event begins": "", + "Show the time when the event ends": "", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "", + "Sign up": "", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "", + "Status": "", + "Street": "", + "Submit": "", + "Subtitles": "", + "Suspend": "", + "Suspend group": "", + "Suspended": "", + "Tag search": "", + "Task lists": "", + "Technical details": "", + "Tentative": "", + "Tentative: Will be confirmed later": "", + "Terms": "", + "Terms of service": "", + "Text": "", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "", + "The event has been published": "", + "The event has been updated": "", + "The event has been updated and published": "", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "", + "The page you're looking for doesn't exist.": "", + "The password was successfully changed": "", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no discussions yet": "", + "These events may interest you": "", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "", + "This event has been cancelled.": "", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "", + "This weekend": "", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "", + "Timezone detected as {timezone}.": "", + "Title": "", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "", + "To create and manage your events": "", + "To create or join an group and start organizing with other people": "", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "", + "Today": "", + "Tomorrow": "", + "Tools": "", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "", + "Type or select a date…": "", + "URL": "", + "URL copied to clipboard": "", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "", + "Unknown actor": "", + "Unknown error.": "", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "", + "Upcoming events": "", + "Upcoming events from your groups": "", + "Update": "", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "", + "Update group": "", + "Update my event": "", + "Update post": "", + "Updated": "", + "Uploaded media size": "", + "Use my location": "", + "User": "", + "User settings": "", + "Username": "", + "Users": "", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "", + "View account on {hostname} (in a new window)": "", + "View all": "", + "View all events": "", + "View all posts": "", + "View event page": "", + "View everything": "", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "", + "Visible everywhere on the web (public)": "", + "Waiting for organization team approval.": "", + "Warning": "", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "", + "Website / URL": "", + "Weekly email summary": "", + "Welcome back {username}!": "", + "Welcome back!": "", + "Welcome to Mobilizon, {username}!": "", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Yesterday": "", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "", + "Your account has been validated": "", + "Your account is being validated": "", + "Your account is nearly ready, {username}": "", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "", + "Your email": "", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "", + "Your upcoming events": "", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "", + "[This comment has been deleted]": "", + "[deleted]": "", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "", + "contact uninformed": "", + "create a group": "", + "create an event": "", + "default Mobilizon privacy policy": "", + "default Mobilizon terms": "", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "", + "instance rules": "", + "more than 1360 contributors": "", + "profile@instance": "", + "report #{report_number}": "", + "return to the event's page": "", + "terms of service": "", + "with another identity…": "", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "", + "{number} members": "", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "", + "© The OpenStreetMap Contributors": "" +}); diff --git a/res/locale/ko.js b/res/locale/ko.js new file mode 100644 index 0000000..eb7cdff --- /dev/null +++ b/res/locale/ko.js @@ -0,0 +1,38 @@ +CTX.setMessages({ + "About": "소개", + "About this instance": "이 인스턴스에 대하여", + "Accepted": "수락함", + "Account": "계정", + "Add": "추가하기", + "Add a note": "노트 남기기", + "Add an address": "주소 추가하기", + "Add an instance": "인스턴스 추가하기", + "Add some tags": "몇 가지 태그 추가하기", + "Add to my calendar": "내 달력에 추가하기", + "Additional comments": "추가 코멘트", + "Admin": "관리자", + "Admin dashboard": "관리자 대시보드", + "Admin settings": "관리자 설정", + "Admin settings successfully saved.": "관리자 설정을 저장했습니다.", + "Administration": "관리", + "Allow registrations": "가입 허용하기", + "Anonymous participant": "익명의 참가자", + "Apply filters": "필터 적용", + "Are you sure you want to delete this comment? This action cannot be undone.": "이 코멘트를 삭제합니까? 이 행동으 되돌릴 수 없습니다.", + "Avatar": "아바타", + "Back to previous page": "이전 페이지로 돌아가기", + "Cancel": "취소", + "Cancelled": "취소함", + "Categories": "범주", + "Change the filters.": "필터를 바꿉니다.", + "Clear": "비우기", + "Close": "닫기", + "Confirmed": "확인함", + "Create identity": "정체성 만들기", + "Dashboard": "대시보드", + "Group profiles": "그룹 프로필", + "Mobilizon": "Mobilizon", + "Reports list": "제보 목록", + "Software details: {software_details}": "소프트웨어 세부사항: {software_details}", + "Visit {instance_domain}": "{instance_domain} 인스턴스 방문하기" +}); diff --git a/res/locale/nl.js b/res/locale/nl.js new file mode 100644 index 0000000..a86cd83 --- /dev/null +++ b/res/locale/nl.js @@ -0,0 +1,1547 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(afgeschermd)", + "(this folder)": "(deze map)", + "(this link)": "(deze link)", + "+ Add a resource": "+ Voeg een hulpbron toe", + "+ Create a post": "+ Bericht aanmaken", + "+ Create an event": "+ Creëer een evenement", + "+ Start a discussion": "+ Start een discussie", + "0 Bytes": "0 bytes", + "{contact} will be displayed as contact.": "{contact} wordt weergegeven als contactpersoon.|{contact} worden weergegeven als contactpersonen.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "@{username}'s volg verzoek is geaccepteerd", + "@{username}'s follow request was rejected": "@{username}'s volg verzoek is afgewezen", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Een cookie is een klein bestand met informatie dat bij uw bezoek aan een website naar uw computer wordt gestuurd. Wanneer u de site opnieuw bezoekt, stelt de cookie die site in staat uw browser te herkennen. Cookies kunnen gebruikersvoorkeuren en andere informatie opslaan. U kunt uw browser zo configureren dat alle cookies worden geweigerd. Dit kan er echter toe leiden dat sommige websitefuncties of services gedeeltelijk werken. Lokale opslag werkt op dezelfde manier, maar u kunt meer gegevens opslaan.", + "A discussion has been created or updated": "Er is een discussie aangemaakt of bijgewerkt", + "A federated software": "Gefedereerde software", + "A fediverse account URL to follow for event updates": "De URL van een fediverse-account (bijv. op Mastodon) waar updates over een evenement gevolgd kunnen worden", + "A few lines about your group": "Een paar regels over je groep", + "A link to a page presenting the event schedule": "Een URL van een pagina waar het programma staat", + "A link to a page presenting the price options": "Een URL van een pagina waar de toegangsprijzen staan", + "A member has been updated": "Een lid is bijgewerkt", + "A member requested to join one of my groups": "Iemand wil graag lid worden van een van mijn groepen", + "A new version is available.": "Nieuwe versie beschikbaar.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Een plek voor uw gedragscode, regels of richtlijnen. U kunt HTML-tags gebruiken.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Een plek om uit te leggen wie je bent en de dingen die uw instantie onderscheiden. U kunt HTML-tags gebruiken.", + "A place to publish something to the whole world, your community or just your group members.": "Een plek om iets te publiceren voor de hele wereld, uw gemeenschap of alleen uw groepsleden.", + "A place to store links to documents or resources of any type.": "Een plek om links naar documenten of bronnen van welk type dan ook op te slaan.", + "A post has been published": "Er is een bericht geplaatst", + "A post has been updated": "Er is een bericht bijgewerkt", + "A practical tool": "Een praktisch hulpmiddel", + "A resource has been created or updated": "Er is een bron aangemaakt of bijgewerkt", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Een korte slogan voor de startpagina van uw instantie. Standaard ingesteld op \"Verzamelen ⋅ Organiseren ⋅ Mobiliseren\"", + "A twitter account handle to follow for event updates": "Een Twitter-account voor het volgen van evenement-updates", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Een gebruiksvriendelijke, emanciperende en ethisch verantwoorde tool om mensen samen te brengen, te organiseren, en te mobiliseren.", + "A validation email was sent to {email}": "Er is een validatie e-mail verstuurd naar {email}", + "API": "API", + "Abandon editing": "Bewerken afbreken", + "About": "Over", + "About Mobilizon": "Over Mobilizon", + "About anonymous participation": "Over anonieme deelname", + "About instance": "Over deze instance", + "About this event": "Over dit evenement", + "About this instance": "Over deze instance", + "About {instance}": "Over {instance}", + "Accept": "Accepteren", + "Accept follow": "Accepteer gevolgd worden", + "Accepted": "Geaccepteerd", + "Access drafts events": "Toegang tot concept-evenementen", + "Access followed groups": "Toegang tot gevolgde groepen", + "Access group activities": "Toegang tot groepsactiviteiten", + "Access group discussions": "Toegang tot groepsdiscussies", + "Access group events": "Toegang tot groep evenementen", + "Access group followers": "Toegang tot groep volgers", + "Access group members": "Toegang tot groepsleden", + "Access group memberships": "Toegang tot groepslidmaatschappen", + "Access group suggested events": "Toegang tot voorgestelde evenementen", + "Access group todo-lists": "Toegang tot todo-lijsten voor groepen", + "Access organized events": "Toegang tot georganiseerde evenementen", + "Access participations": "Toegang tot deelnemingen", + "Access your group's resources": "Toegang verkrijgen tot de bronnen van je groep", + "Accessibility": "Toegankelijkheid", + "Accessible only by link": "Alleen toegankelijk via link", + "Accessible only to members": "Alleen toegankelijk voor leden", + "Accessible through link": "Toegankelijk via link", + "Account": "Account", + "Account settings": "Account-instellingen", + "Actions": "Acties", + "Activate browser push notifications": "Pushmeldingen in de browser inschakelen", + "Activate notifications": "Meldingen activeren", + "Activated": "Geactiveerd", + "Active": "Actief", + "Activity": "Activiteit", + "Actor": "actor", + "Adapt to system theme": "Aanpassen aan systeemthema", + "Add": "Toevoegen", + "Add / Remove…": "Toevoegen / verwijderen…", + "Add a contact": "Een contactpersoon toevoegen", + "Add a new post": "Voeg een nieuw bericht toe", + "Add a note": "Een notitie toevoegen", + "Add a recipient": "Een ontvanger toevoegen", + "Add a todo": "Todo toevoegen", + "Add an address": "Een adres toevoegen", + "Add an instance": "Een instance toevoegen", + "Add link": "Link toevoegen", + "Add new…": "Nieuw toevoegen…", + "Add picture": "Afbeelding toevoegen", + "Add some tags": "Voeg enkele tags toe", + "Add to my calendar": "Aan mijn kalender toevoegen", + "Additional comments": "Meer opmerkingen", + "Admin": "Administrator", + "Admin dashboard": "Administrator dashboard", + "Admin settings": "Administrator instellingen", + "Admin settings successfully saved.": "Administrator instellingen succesvol opgeslagen.", + "Administration": "Administratie", + "Administrator": "Administrator", + "All": "Alle", + "All activities": "Alle activiteiten", + "All good, let's continue!": "Helemaal goed, we gaan door!", + "All the places have already been taken": "Alle plaatsen zijn al bezet", + "Allow all comments from users with accounts": "Alle reacties van ingelogde gebruikers toestaan", + "Allow registrations": "Registraties toestaan", + "An URL to an external ticketing platform": "Een URL waar online tickets worden verkocht", + "An anonymous profile joined the event {event}.": "Een anoniem profiel is lid geworden van het evenement {event}.", + "An error has occured while refreshing the page.": "Er is een fout opgetreden tijdens het vernieuwen van deze pagina.", + "An error has occured. Sorry about that. You may try to reload the page.": "Er is een fout opgetreden. Sorry daarvoor. U kunt proberen de pagina opnieuw te laden.", + "An ethical alternative": "Een ethisch alternatief", + "An event I'm going to has been updated": "Een evenement waar ik naartoe ga, is bijgewerkt", + "An event I'm going to has posted an announcement": "Een evenement waar ik naar toe ga heeft een aankondiging geplaatst", + "An event I'm organizing has a new comment": "Een evenement dat ik organiseer heeft een nieuwe reactie", + "An event I'm organizing has a new participation": "Een evenement dat ik organiseer heeft een nieuwe deelnemer", + "An event I'm organizing has a new pending participation": "Een evenement dat ik organiseer heeft een verzoek tot deelname", + "An event from one of my groups has been published": "Een van mijn groepen heeft een evenement gepubliceerd", + "An event from one of my groups has been updated or deleted": "Een van mijn groepen heeft een evenement bijgewerkt of verwijderd", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Een instance is een geïnstalleerde versie van de Mobilizon-software die op een server draait. Een instantie kan worden uitgevoerd door iedereen die de {mobilizon_software} of andere federatieve apps gebruikt, ook wel de \"fediverse\" genoemd. De naam van deze instantie is {instance_name}. Mobilizon is een federatief netwerk van meerdere instanties (net als e-mailservers), gebruikers die op verschillende instanties zijn geregistreerd, kunnen communiceren, ook al hebben ze zich niet op dezelfde instantie geregistreerd.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "Een \"application programming interface\" of \"API\" is een communicatieprotocol waarmee softwarecomponenten met elkaar kunnen communiceren. Met de Mobilizon-API kunnen softwaretools van derden bijvoorbeeld communiceren met instanties van Mobilizon om bepaalde acties uit te voeren, zoals het automatisch en op afstand plaatsen van evenementen namens u.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events, automatically and remotely.": "Een \"application programming interface\" of \"API\" is een communicatieprotocol waarmee softwarecomponenten met elkaar kunnen communiceren. De Mobilizon API kan bijvoorbeeld software van derden in staat stellen om te communiceren met Mobilizon instanties om bepaalde acties, zoals het plaatsen van gebeurtenissen, automatisch en op afstand uit te voeren.", + "And {number} comments": "En {number} reacties", + "Announcements and mentions notifications are always sent straight away.": "Meldingen van aankondigingen en vermeldingen worden altijd meteen verzonden.", + "Announcements for {eventTitle}": "Aankondigingen voor {eventTitle}", + "Anonymous participant": "Anonieme deelnemer", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Anonieme deelnemers zullen worden gevraagd hun deelname te bevestigen via e-mail.", + "Anonymous participations": "Anonieme deelnames", + "Any category": "Elke categorie", + "Any day": "Iedere dag", + "Any distance": "Elke afstand", + "Any type": "Alle typen", + "Anyone can join freely": "Iedereen mag vrij deelnemen", + "Anyone can request being a member, but an administrator needs to approve the membership.": "Iedereen kan een verzoek indienen om lid te worden, maar een administrator moet het lidmaatschap goedkeuren.", + "Anyone wanting to be a member from your group will be able to from your group page.": "Iedereen die lid wil worden van uw groep, kan dat vanaf uw groepspagina.", + "Application": "Toepassing", + "Apply filters": "Filters toevoegen", + "Approve member": "Lid goedkeuren", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Weet u zeker dat u uw gehele account wilt verwijderen? Hiermee gaat alles verloren. Identiteiten, instellingen, aangemaakte evenementen, berichten en deelnames zullen voor altijd verdwijnen.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Weet u zeker dat u deze groep volledig wilt verwijderen? Alle leden - inclusief externe - zullen op de hoogte worden gesteld en uit de groep worden verwijderd, en alle groepsgegevens (evenementen, berichten, discussies, taken...) zullen onherstelbaar worden vernietigd.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Weet je zeker dat je deze reactie wil verwijderen? Dit kan niet ongedaan worden gemaakt.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator and ask them to edit their event instead.": "Weet je zeker dat je dit evenement wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt. Misschien wil je de discussie aangaan met de initiatiefnemer van het evenement en die vragen om in plaats daarvan diens evenement aan te passen.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Weet je zeker dat je dit evenement wilt verwijderen? Deze actie kan niet ongedaan gemaakt worden. Mogelijk wil je in plaats daarvan de initiatiefnemer van dit evenement aanspreken of het evenement bewerken.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Weet je zeker dat je deze groep wilt opschorten? Alle leden - inclusief externe - zullen op de hoogte worden gesteld en uit de groep worden verwijderd, en alle groepsgegevens (evenementen, berichten, discussies, taken...) zullen onherstelbaar worden vernietigd.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Weet je zeker dat je deze groep wilt opschorten? Aangezien deze groep afkomstig is van instantie {instance}, worden alleen lokale leden en lokale gegevens verwijderd, evenals alle toekomstige gegevens.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Bent u zeker dat u het aanmaken van dit evenement wil annuleren? Alle veranderingen zullen verloren gaan.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Bent u zeker dat u het bewerken van dit evenement wil annuleren? Alle veranderingen zullen verloren gaan.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Bent u zeker dat u uw deelname aan het evenement \"{title}\" wil annuleren?", + "Are you sure you want to delete this entire discussion?": "Weet u zeker dat u de hele discussie wilt verwijderen?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Bent u zeker dat u dit evenement wil verwijderen? Dit kan niet ongedaan gemaakt worden.", + "Are you sure you want to delete this post? This action cannot be reverted.": "Bent u zeker dat u dit evenement wil verwijderen? Dit kan niet ongedaan gemaakt worden.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Weet je zeker dat je de groep {groupName} wilt verlaten? Je verliest de toegang tot de privé-inhoud van deze groep. Deze actie kan niet ongedaan gemaakt worden.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Aangezien de organisator van het evenement ervoor heeft gekozen om deelnameverzoeken handmatig te valideren, wordt uw deelname pas echt bevestigd als u een e-mail ontvangt waarin staat dat deze wordt geaccepteerd.", + "Ask your instance admin to {enable_feature}.": "Vraag aan uw instance administrator om {enable_feature}.", + "Assigned to": "Toegewezen aan", + "Atom feed for events and posts": "Atom feed voor evenementen en berichten", + "Attending": "Bij aanwezig", + "Authorize": "Autoriseer", + "Authorize application": "Applicatie autoriseren", + "Autorize this application to access your account?": "Autoriseer je deze applicatie om toegang te krijgen tot je account?", + "Avatar": "Profielfoto", + "Back to group list": "Terug naar groepslijst", + "Back to homepage": "Terug naar de startpagina", + "Back to previous page": "Terug naar de vorige pagina", + "Back to profile list": "Terug naar de profiellijst", + "Back to top": "Omhoog", + "Back to user list": "Terug naar gebruikerslijst", + "Banner": "Omslagfoto", + "Become part of the community and start organizing events": "Neem deel aan de gemeenschap en begin met het organiseren van evenementen", + "Before you can login, you need to click on the link inside it to validate your account.": "Voordat u zich kan aanmelden, moet u op de link erin klikken om uw account te valideren.", + "Begins on": "Begint op", + "Best match": "Beste overeenkomst", + "Big Blue Button": "Big Blue Button", + "Bold": "Vet", + "Booking": "Boeking", + "Breadcrumbs": "Broodkruimelnavigatie", + "Browser notifications": "Browsermeldingen", + "Browser tab icon and PWA icon of the instance. Defaults to the upstream Mobilizon icon.": "Browser tab icoon en PWA icoon van deze instantie. Standaard wordt het Mobilizon icoon gebruikt.", + "Bullet list": "Ongeordende lijst", + "By bike": "Met de fiets", + "By car": "Met de auto", + "By others": "Door anderen", + "By transit": "Op doorreis", + "By {group}": "Door {group}", + "By {username}": "Door {username}", + "Calendar": "Kalender", + "Can be an email or a link, or just plain text.": "Dit kan een e-mail of een link zijn, of gewoon platte tekst.", + "Cancel": "Annuleren", + "Cancel anonymous participation": "Annuleer anonieme deelname", + "Cancel creation": "Aanmaken annuleren", + "Cancel discussion title edition": "Bijwerken van de discussietitel ongedaan maken", + "Cancel edition": "Bewerken annuleren", + "Cancel follow request": "Volgverzoek annuleren", + "Cancel membership request": "Aanvraag lidmaatschap annuleren", + "Cancel my participation request…": "Mijn deelnameverzoek annuleren…", + "Cancel my participation…": "Mijn deelname annuleren…", + "Cancelled": "Geannuleerd", + "Cancelled: Won't happen": "Geannuleerd: gaat niet door", + "Categories": "Categorieën", + "Category": "Categorie", + "Category illustrations credits": "Categorie illustratie credits", + "Category list": "Categorielijst", + "Change": "Wijzigen", + "Change email": "E-mail wijzigen", + "Change my email": "Mijn e-mailadres wijzigen", + "Change my identity…": "Identiteit veranderen…", + "Change my password": "Wachtwoord wijzigen", + "Change role": "Rol wijzigen", + "Change the filters.": "Verander de filters.", + "Change timezone": "Tijdzone wijzigen", + "Change user email": "E-mail van gebruiker wijzigen", + "Change user role": "Gebruikersrol wijzigen", + "Check your inbox (and your junk mail folder).": "Controleer uw inbox en uw spam box.", + "Choose the source of the instance's Privacy Policy": "Kies de bron van het privacybeleid van deze instance", + "Choose the source of the instance's Terms": "Kies de bron van de gebruiksvoorwaarden van deze instance", + "City or region": "Stad of regio", + "Clear": "Leegmaken", + "Clear address field": "Adres verwijderen", + "Clear date filter field": "Datum filterveld wissen", + "Clear participation data for all events": "Wis deelnamegegevens voor alle evenementen", + "Clear participation data for this event": "Wis deelnamegegevens voor dit evenement", + "Clear timezone field": "Tijdzone verwijderen", + "Click for more information": "Klik voor meer informatie", + "Click to upload": "Klik om te uploaden", + "Close": "Sluiten", + "Close comments for all (except for admins)": "Opmerkingen sluiten voor iedereen (behalve administrators)", + "Close map": "Kaart sluiten", + "Closed": "Gesloten", + "Comment body": "Reactietekst", + "Comment deleted": "Reactie verwijderd", + "Comment from {'@'}{username} reported": "Opmerking van {'@'}{username} gerapporteerd", + "Comment text can't be empty": "Commentaar veld mag niet leeg zijn", + "Comments": "Opmerkingen", + "Comments are closed for everybody else.": "Reacties zijn voor ieder ander gesloten.", + "Confirm": "Bevestig", + "Confirm my participation": "Mijn deelname bevestigen", + "Confirm my particpation": "Mijn deelname bevestigen", + "Confirm participation": "Deelname bevestigen", + "Confirm user": "Gebruiker valideren", + "Confirmed": "Bevestigd", + "Confirmed at": "Bevestigd om", + "Confirmed: Will happen": "Bevestigd: gaat door", + "Congratulations, your account is now created!": "Gefeliciteerd, uw account is nu aangemaakt!", + "Contact": "Contact", + "Continue editing": "Verder gaan met bewerken", + "Cookies and Local storage": "Cookies en lokale opslag", + "Copy URL to clipboard": "Kopieer deze URL naar het klembord", + "Copy details to clipboard": "Kopieer details naar het klembord", + "Country": "Land", + "Create": "Aanmaken", + "Create a calc": "Maak een calculator", + "Create a discussion": "Maak een discussie aan", + "Create a folder": "Maak een map aan", + "Create a new event": "Maak een nieuw evenement aan", + "Create a new group": "Maak een nieuwe groep", + "Create a new identity": "Maak een nieuwe identiteit", + "Create a new list": "Nieuwe lijst aanmaken", + "Create a new profile": "Nieuw profiel aanmaken", + "Create a pad": "Maak een pad aan", + "Create a videoconference": "Maak een videoconference aan", + "Create an account": "Account registreren", + "Create discussion": "Discussie aanmaken", + "Create event": "Evenement aanmaken", + "Create group": "Groep aanmaken", + "Create group resources": "Groepsbronnen aanmaken", + "Create identity": "Identiteit aanmaken", + "Create my event": "Mijn evenement aanmaken", + "Create my group": "Mijn groep aanmaken", + "Create my profile": "Mijn profiel aanmaken", + "Create new links": "Nieuwe links aanmaken", + "Create new profiles": "Nieuwe profielen maken", + "Create resource": "Hulpbron aanmaken", + "Create the discussion": "Maak de discussie aan", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Maak takenlijsten voor alle taken, wijs ze toe en stel deadlines in.", + "Create token": "Token aanmaken", + "Created by {name}": "Aangemaakt door {name}", + "Created by {username}": "Aangemaakt door {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "De huidige identiteit is veranderd in {identityName} om dit evenement te beheren.", + "Current page": "Huidige pagina", + "Custom": "Aangepast", + "Custom URL": "Aangepaste URL", + "Custom text": "Aangepaste tekst", + "Daily email summary": "Dagelijkse e-mail samenvatting", + "Dark": "Donker", + "Dashboard": "Dashboard", + "Date": "Datum", + "Date and time": "Datum en tijd", + "Date and time settings": "Datum- en tijdsinstellingen", + "Date parameters": "Datuminstellingen", + "Deactivate notifications": "Meldingen deactiveren", + "Decline": "Afwijzen", + "Decrease": "Verkleinen", + "Default": "Standaard", + "Default Mobilizon privacy policy": "Standaard Mobilizon privacy beleid", + "Default Mobilizon terms": "Standaard Mobilizon voorwaarden", + "Default Picture": "Standaard afbeelding", + "Default picture when an event or group doesn't have one.": "Standaard afbeelding wanneer een evenement of groep geen afbeelding heeft.", + "Delete": "Verwijder", + "Delete account": "Account verwijderen", + "Delete conversation": "Verwijder gesprek", + "Delete discussion": "Discussie verwijderen", + "Delete event": "Evenement verwijderen", + "Delete event and resolve report": "Evenement verwijderen en rapport afhandelen", + "Delete events": "Evenementen verwijderen", + "Delete everything": "Alles verwijderen", + "Delete group": "Groep verwijderen", + "Delete group posts": "Groepsberichten verwijderen", + "Delete group resources": "Groepsbronnen verwijderen", + "Delete my account": "Mijn account verwijderen", + "Delete post": "Bericht verwijderen", + "Delete this discussion": "Deze discussie verwijderen", + "Delete this identity": "Deze identiteit verwijderen", + "Delete your identity": "Uw identiteit verwijderen", + "Delete {eventTitle}": "Verwijder {eventTitle}", + "Delete {preferredUsername}": "Verwijder {preferredUsername}", + "Deleting comment": "Reactie wordt verwijderd", + "Deleting event": "Evenement wordt verwijderd", + "Deleting my account will delete all of my identities.": "Mijn account verwijderen zal al mijn identiteiten verwijderen.", + "Deleting your Mobilizon account": "Je Mobilizon account verwijderen", + "Demote": "Demoveren", + "Describe your event": "Beschrijf je evenement", + "Description": "Beschrijving", + "Details": "Details", + "Didn't receive the instructions?": "Geen instructies ontvangen?", + "Disabled": "Uitgeschakeld", + "Discussions": "Discussies", + "Discussions list": "Discussielijst", + "Display name": "Getoonde naam", + "Display participation price": "Prijs voor deelname tonen", + "Displayed nickname": "Weergegeven bijnaam", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Weergegeven op homepage en metatags. Beschrijf in één alinea wat Mobilizon is en wat deze instantie bijzonder maakt.", + "Distance": "Afstand", + "Do not receive any mail": "Geen e-mail ontvangen", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Wil je dit account echt schorsen? Alle profielen van de gebruiker zullen worden verwijderd.", + "Do you wish to {create_event} or {explore_events}?": "Wil je een {create_event} of {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Wilt u een {create_group} of {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "Moet het evenement later worden bevestigd of is het afgelast?", + "Domain": "Domein", + "Domain or instance name": "Domein of instance naam", + "Draft": "Concept", + "Drafts": "Concepten", + "Due on": "Ingepland voor", + "Duplicate": "Dupliceren", + "Edit": "Bewerken", + "Edit post": "Bewerk bericht", + "Edit profile {profile}": "Profiel {profile} bewerken", + "Edit user email": "E-mail van gebruiker bewerken", + "Edited {ago}": "{ago} bewerkt", + "Edited {relative_time} ago": "{relative_time} geleden bewerkt", + "Eg: Stockholm, Dance, Chess…": "Bijvoorbeeld: Stockholm, dansen, schaken…", + "Either on the {instance} instance or on another instance.": "Ofwel op de {instance} instance of op een andere instance.", + "Either the account is already validated, either the validation token is incorrect.": "Het account is al gevalideerd, of het validatie token is incorrect.", + "Either the email has already been changed, either the validation token is incorrect.": "Het e-mail adres is al gewijzigd, of het validatie token is incorrect.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Het deelname verzoek is al gevalideerd, of het validatie token is incorrect.", + "Element title": "Naam element", + "Element value": "Waarde element", + "Email": "E-mail", + "Email address": "E-mailadres", + "Email validate": "E-mail bevestigen", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "E-mails bevatten meestal geen hoofdletters, dus zorg ervoor dat je geen typefout hebt gemaakt.", + "Enabled": "Ingeschakeld", + "Ends on…": "Eindigt op…", + "Enter the link URL": "Voeg de link URL in", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Voor uw e-mail adres hieronder in dan sturen we u instructies waarmee u uw wachtwoord kunt resetten.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Voer je eigen privacy beleid in. HTML tags zijn toegestaan. Het {mobilizon_privacy_policy} wordt ter beschikking gesteld als template.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Voer je eigen voorwaarden in. HTML tags zijn toegestaan. De {mobilizon_terms} worden ter beschikking gesteld als template.", + "Error": "Fout", + "Error details copied!": "Foutmeldingsdetails gekopieerd!", + "Error message": "Foutmelding", + "Error stacktrace": "Fout stacktrace", + "Error while adding tag: {error}": "Fout tijdens het toevoegen van tag: {error}", + "Error while changing email": "Fout tijdens het veranderen van het e-mail adres", + "Error while loading the preview": "Fout tijdens het laden van de preview", + "Error while login with {provider}. Retry or login another way.": "Fout bij inloggen via {provider}. Probeer het opnieuw of log op een andere manier in.", + "Error while login with {provider}. This login provider doesn't exist.": "Fout bij inloggen via {provider}. Deze inlogprovider bestaat niet.", + "Error while reporting group {groupTitle}": "Fout tijdens rapporteren van {groupTitle}", + "Error while subscribing to push notifications": "Fout opgetreden tijdens het inschakelen van pushmeldingen", + "Error while suspending group": "Fout tijdens het opschorten van de groep", + "Error while updating participation status inside this browser": "Fout tijdens het bijwerken van de deelnamestatus in deze browser", + "Error while validating account": "Fout tijdens het valideren van het account", + "Error while validating participation request": "Fout bij het valideren van het deelname verzoek", + "Etherpad notes": "Etherpad-aantekeningen", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Mobilizon is een ethisch alternatief voor Facebook-evenementen, -groepen en -pagina's en is een tool die is ontworpen om u van dienst te zijn. Punt.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Mobilizon is een ethisch alternatief voor Facebook-evenementen, -groepen en -pagina's. Het is een {tool_designed_to_serve_you}. Punt uit.", + "Event": "Evenement", + "Event URL": "Evenement-URL", + "Event already passed": "Evenement is al geweest", + "Event cancelled": "Evenement geannuleerd", + "Event creation": "Aanmaken van het evenement", + "Event date": "Datum evenement", + "Event description body": "Omschrijvingstekst evenement", + "Event edition": "Evenement bewerken", + "Event list": "Evenementenlijst", + "Event metadata": "Metadata van het evenement", + "Event page settings": "Instellingen voor de pagina van het evenement", + "Event status": "Evenement status", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "De tijdzone van het evenement is standaard dezelfde tijdzone als het adres van het evenement (wanneer dat is ingesteld) of anders is die hetzelfde als jouw eigen tijdzone-instelling.", + "Event to be confirmed": "Evenement nog te bevestigen", + "Event {eventTitle} deleted": "Evenement {eventTitle} verwijderd", + "Event {eventTitle} reported": "Evenement {eventTitle} gemeld", + "Events": "Evenementen", + "Events close to you": "Evenementen bij jou in de buurt", + "Events nearby": "Evenementen in de buurt", + "Events nearby {position}": "Gebeurtenissen in de buurt van {position}", + "Events tagged with {tag}": "Evenementen getagged met {tag}", + "Everything": "Alles", + "Ex: mobilizon.fr": "Bijvoorbeeld: mobilizon.fr", + "Ex: someone@mobilizon.org": "Bijvoorbeeld: iemand@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "Bijv. : iemand{'@'}mobilizon.org", + "Explore": "Verkennen", + "Explore events": "Evenementen verkennen", + "Explore!": "Verkennen!", + "Export": "Exporteren", + "Failed to get location.": "Ophalen locatie mislukt.", + "Failed to save admin settings": "Kon administrator instellingen niet opslaan", + "Favicon": "Favicon", + "Featured events": "Aanbevolen evenementen", + "Federated Group Name": "Gefedereerde groepsnaam", + "Federation": "Federatie", + "Fediverse account": "Fediverse-account", + "Fetch more": "Haal meer op", + "Filter": "Filter", + "Filter by name": "Filter op naam", + "Filter by profile or group name": "Filter op profiel of groepsnaam", + "Find an address": "Een adres zoeken", + "Find an instance": "Een instance zoeken", + "Find another instance": "Zoek een andere instance", + "Find or add an element": "Element zoeken of toevoegen", + "First steps": "Eerste stappen", + "Follow": "Volgen", + "Follow a new instance": "Een nieuwe instance volgen", + "Follow instance": "Volg deze instance", + "Follow request pending approval": "Volg verzoek in afwachting van goedkeuring", + "Follow requests will be approved by a group moderator": "Volgverzoeken moeten worden goedgekeurd door een groepsmoderator", + "Follow status": "Volg status", + "Followed": "Aan het volgen", + "Followed, pending response": "Aan het volgen, in afwachting van antwoord", + "Follower": "Volger", + "Followers": "Volgers", + "Followers will receive new public events and posts.": "Volgers ontvangen nieuwe openbare evenementen en berichten.", + "Following": "Volgt ons", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Als je de groep volgt, blijf je op de hoogte van de {group_upcoming_public_events}, terwijl lid worden van de groep betekent dat je {access_to_group_private_content_as_well}, inclusief groepsdiscussies, groepsbronnen en posts die alleen voor leden bestemd zijn.", + "Followings": "Volgend", + "Follows us": "Volgt ons", + "Follows us, pending approval": "Volgt ons, in afwachting van goedkeuring", + "For instance: London": "Bijvoorbeeld: Amsterdam", + "For instance: London, Taekwondo, Architecture…": "Bijvoorbeeld: Londen, Taekwondo, Architectuur…", + "Forgot your password ?": "Wachtwoord vergeten?", + "Forgot your password?": "Uw wachtwoord vergeten?", + "Framadate poll": "Framadate-poll", + "From my groups": "Van mijn groepen", + "From the {startDate} at {startTime} to the {endDate}": "Van {startDate} om {startTime} tot {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Van {startDate} om {startTime} tot {endDate} om {endTime}", + "From the {startDate} to the {endDate}": "Van {startDate} tot {endDate}", + "From this instance only": "Alleen van deze instance", + "From yourself": "Van uzelf", + "Fully accessible with a wheelchair": "Volledig toegankelijk met een rolstoel", + "Gather ⋅ Organize ⋅ Mobilize": "Breng samen - Organiseer - Mobiliseer", + "General": "Algemeen", + "General information": "Algemene informatie", + "General settings": "Algemene instellingen", + "Geolocate me": "Geolokaliseren", + "Geolocation was not determined in time.": "Uw locatie werd niet op tijd bepaald.", + "Get informed of the upcoming public events": "Blijf op de hoogte van de komende openbare evenementen", + "Getting location": "Locatie ophalen", + "Getting there": "Route", + "Glossary": "Verklarende woordenlijst", + "Go": "Ga", + "Go to the event page": "Ga naar de pagina van het evenement", + "Go!": "Ga!", + "Google Meet": "Google Meet", + "Group": "Groep", + "Group Followers": "Groep volgers", + "Group Members": "Groepsleden", + "Group URL": "Groep-URL", + "Group activity": "Groepactiviteit", + "Group address": "Groepsadres", + "Group description body": "Omschrijvingstekst groep", + "Group display name": "Weergavenaam groep", + "Group members": "Groepsleden", + "Group name": "Groepsnaam", + "Group profiles": "Groepprofielen", + "Group settings": "Groep instellingen", + "Group settings saved": "Groepsinstellingen opgeslagen", + "Group short description": "Korte beschrijving groep", + "Group visibility": "Zichtbaarheid groep", + "Group {displayName} created": "Groep {displayName} aangemaakt", + "Group {groupTitle} reported": "{groupTitle} gerapporteerd", + "Groups": "Groepen", + "Groups are not enabled on this instance.": "Groepen zijn niet ingeschakeld op deze instance.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Groepen zijn ruimtes voor coördinatie en voorbereiding om evenementen beter te organiseren en uw gemeenschap te beheren.", + "Heading Level 1": "Kop niveau 1", + "Heading Level 2": "Kop niveau 2", + "Heading Level 3": "Kop niveau 3", + "Headline picture": "Titelafbeelding", + "Hide filters": "Verberg filters", + "Hide replies": "Reacties verbergen", + "Home": "Home", + "Home to {number} users": "Thuis voor {number} gebruikers", + "Homepage": "Startpagina", + "Hourly email summary": "Uurlijkse e-mail samenvatting", + "I agree to the {instanceRules} and {termsOfService}": "Ik stem in met de {instanceRules} en de {termsOfService}", + "I create an identity": "Ik maak een identiteit aan", + "I don't have a Mobilizon account": "Ik heb geen Mobilizon account", + "I have a Mobilizon account": "Ik heb een Mobilizon account", + "I have an account on another Mobilizon instance.": "Ik heb een account op een andere Mobilizon instance.", + "I have an account on {instance}.": "Ik heb een account op {instance}.", + "I participate": "Ik neem deel", + "I want to allow people to participate without an account.": "Ik wil mensen zonder account toestaan deel te nemen.", + "I want to approve every participation request": "Ik wil ieder deelnameverzoek goedkeuren", + "I've been mentionned in a comment under an event": "k ben genoemd in een reactie onder een evenement", + "I've been mentionned in a group discussion": "Ik ben genoemd in een groepsdiscussie", + "I've clicked on X, then on Y": "Ik heb op X geklikt en toen op Y", + "ICS feed for events": "ICS feed voor evenementen", + "ICS/WebCal Feed": "ICS/WebCal Feed", + "IP Address": "IP-Adres", + "Identities": "Identiteiten", + "Identity {displayName} created": "Identiteit {displayName} aangemaakt", + "Identity {displayName} deleted": "Identiteit {displayName} verwijderd", + "Identity {displayName} updated": "Identiteit {displayName} bijgewerkt", + "If allowed by organizer": "Indien toegestaan door de organisator", + "If an account with this email exists, we just sent another confirmation email to {email}": "Als er een account met dit emailadres bestaat, hebben we zojuist opnieuw een bevestigingsemail verstuurd naar {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Als deze identiteit de enige administrator van een of meerdere groepen is, moet u deze eerst verwijderen voordat u de identiteit kan verwijderen.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Als u om uw federatieve identiteit wordt gevraagd, bestaat deze uit uw gebruikersnaam en uw instantie. De federatieve identiteit voor uw eerste profiel is bijvoorbeeld:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Indien u heeft gekozen voor het handmatig goedkeuren van deelnemers, stuurt Mobilizon u een e-mail om u te informeren over nieuwe verzoeken tot deelname. U kunt hieronder de frequentie van deze meldingen kiezen.", + "If you want, you may send a message to the event organizer here.": "Als u wilt, kunt u hier een e-mail sturen naar de organisator van dit evenement.", + "Ignore": "Negeren", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Illustratiebeeld voor \"{category}\" door {author} op {source} ({license})", + "In person": "In het echt", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "In de volgende context is een applicatie software welke door het Mobilizon team of een derde partij gebruikt wordt om te interageren met uw instance.", + "In the past": "In het verleden", + "In this instance's network": "In het netwerk van deze instance", + "Increase": "Vergroten", + "Instance": "Instance", + "Instance Long Description": "Lange beschrijving van instance", + "Instance Name": "Naam van Instance", + "Instance Privacy Policy": "Instance privacy beleid", + "Instance Privacy Policy Source": "Instance Privacy beleid Bron.", + "Instance Privacy Policy URL": "Instance privacy beleid URL", + "Instance Rules": "Instance regels", + "Instance Short Description": "Korte beschrijving van instance", + "Instance Slogan": "Instance slogan", + "Instance Terms": "Voorwaarden van Instance", + "Instance Terms Source": "Instance Voorwaarden Bron", + "Instance Terms URL": "Instance Voorwaarden URL", + "Instance administrator": "Instance administrator", + "Instance configuration": "Instance configuratie", + "Instance feeds": "Instance feeds", + "Instance languages": "Instance-talen", + "Instance rules": "Instance regels", + "Instance settings": "Instance instellingen", + "Instances": "Instances", + "Instances following you": "Instances die u volgen", + "Instances you follow": "Instances die u volgt", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Integreer dit evenement met externe diensten en metadata voor dit evenement tonen.", + "Interact": "Interactie hebben", + "Interact with a remote content": "Interactie hebben met externe inhoud", + "Invite a new member": "Nodig een nieuw lid uit", + "Invite member": "Lid uitnodigen", + "Invited": "Uitgenodigd", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Het is mogelijk dat de inhoud op deze instance niet toegankelijk is, omdat deze instance de profielen of groepen achter deze inhoud heeft geblokkeerd.", + "Italic": "Cursief", + "Jitsi Meet": "Jitsi Meet", + "Join": "Word lid", + "Join {instance}, a Mobilizon instance": "Meld je aan bij {instance}, een Mobilizon instance", + "Join group": "Deelnemen aan groep", + "Join group {group}": "Lid worden van de groep {group}", + "Join {instance}, a Mobilizon instance": "Sluit je aan bij {instance}, een Mobilizon instance", + "Keep the entire conversation about a specific topic together on a single page.": "Houd het hele gesprek over een specifiek onderwerp bij elkaar op één pagina.", + "Key words": "Sleutelwoorden", + "Keyword, event title, group name, etc.": "Trefwoord, evenementtitel, groepsnaam, enz.", + "Language": "Taal", + "Languages": "Talen", + "Last IP adress": "Laatste IP adres", + "Last group created": "Laatst aangemaakte groep", + "Last published event": "Laatst gepubliceerd evenement", + "Last published events": "Laatst gepubliceerde evenementen", + "Last seen on": "Laatst gezien op", + "Last sign-in": "Laatste login", + "Last week": "Vorige week", + "Latest posts": "Laatste posts", + "Learn more": "Leer meer", + "Learn more about Mobilizon": "Leer meer over Mobilizon", + "Learn more about {instance}": "Leer meer over {instance}", + "Least recently published": "Minst recent gepubliceerd", + "Leave": "Verlaten", + "Leave event": "Evenement verlaten", + "Leave group": "Groep verlaten", + "Leaving event \"{title}\"": "Evenement \"{title}\" verlaten", + "Legal": "Juridisch", + "Let's define a few settings": "Laten we een paar instellingen definiëren", + "License": "Licentie", + "Light": "Licht", + "Limited number of places": "Beperkt aantal plaatsen", + "List": "Lijst", + "List title": "Lijst naam", + "Live": "Live", + "Load more": "Meer laden", + "Load more activities": "Laad meer activiteiten", + "Loading comments…": "Reacties laden…", + "Loading map": "Kaart laden", + "Local": "Lokaal", + "Local time ({timezone})": "Lokale tijd ({timezone})", + "Local times ({timezone})": "Lokale tijden ({timezone})", + "Locality": "Plaats", + "Location": "Locatie", + "Log in": "Aanmelden", + "Log out": "Afmelden", + "Login": "Aanmelden", + "Login on Mobilizon!": "Aanmelden bij Mobilizon!", + "Login on {instance}": "Aanmelden bij {instance}", + "Login status": "Aanmeldstatus", + "Logo": "Logo", + "Logo of the instance. Defaults to the upstream Mobilizon logo.": "Logo van deze instantie. Standaard wordt het Mobilizon logo gebruikt.", + "Main languages you/your moderators speak": "Belangrijkste talen die u en uw moderatoren spreken", + "Make sure that all words are spelled correctly.": "Zorg ervoor dat alle woorden correct gespeld zijn.", + "Manage group members": "Groepsleden beheren", + "Manage group memberships": "Lidmaatschappen van groepen beheren", + "Manage participations": "Deelnames beheren", + "Manually approve new followers": "Handmatig nieuwe volgers goedkeuren", + "Manually invite new members": "Handmatig nieuwe leden uitnodigen", + "Map": "Kaart", + "Mark as resolved": "Als opgelost markeren", + "Maybe the content was removed by the author or a moderator": "Misschien is de inhoud verwijderd door de auteur of een moderator", + "Member": "Lid", + "Members": "Leden", + "Members-only post": "Bericht voor alleen leden", + "Membership requests will be approved by a group moderator": "Lidmaatschapsaanvragen worden goedgekeurd door een moderator van de groep", + "Memberships": "Lidmaatschappen", + "Mentions": "Vermeldingen", + "Message": "Bericht", + "Message body": "Inhoud bericht", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon is een gefedereerd netwerk. Je kunt participeren met dit evenement vanaf een andere instance.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon is federatieve software, wat inhoudt dat u - afhankelijk van de instellingen door uw administrator - kunt communiceren met inhoud van andere instanties, zoals deelnemen aan groepen of evenementen die elders zijn gemaakt.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon is een tool waarmee u evenementen kunt vinden, maken en organiseren.", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon is een tool die je helpt bij het {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon is geen gigantisch platform, maar een grote groep van onderling verbonden Mobilizon-websites.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon is niet één gigantisch platform, maar een {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "Mobilizon software", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon gebruikt een systeem van profielen om uw activiteiten te compartimenteren. U kunt zoveel profielen maken als u wilt.", + "Mobilizon version": "Mobilizon versie", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon stuurt u een e-mail bij belangrijke wijzigingen zoals, datum/tijd, adres, bevestiging of annulering, etc..", + "Moderate new members": "Nieuwe leden modereren", + "Moderated comments (shown after approval)": "Gemodereerde opmerkingen (getoond na goedkeuring)", + "Moderation": "Moderatie", + "Moderation log": "Moderatie log", + "Moderation logs": "Moderatielog", + "Moderator": "Moderator", + "Modify all of your account's data": "Alle gegevens van je account wijzigen", + "More options": "Meer opties", + "Most recently published": "Meest recent gepubliceerd", + "Move": "Verplaatsen", + "Move \"{resourceName}\"": "Verplaats \"{resourceName}\"", + "Move resource to the root folder": "Bron naar de hoofdmap verplaatsen", + "Move resource to {folder}": "Verplaats hulpbron naar {folder}", + "My account": "Mijn account", + "My events": "Mijn evenementen", + "My federated identity ends in {domain}": "Mijn gefedereerde identiteit eindigt op {domain}", + "My groups": "Mijn groepen", + "My identities": "Mijn identiteiten", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "Let op! De standaardvoorwaarden zijn niet gecontroleerd door een advocaat en bieden dus waarschijnlijk geen volledige juridische bescherming voor alle situaties voor een instance administrator die ze gebruikt. Ze zijn ook niet specifiek voor alle landen en rechtsgebieden. Neem bij twijfel contact op met een advocaat.", + "Name": "Naam", + "Navigated to {pageTitle}": "Naar {pageTitle} gegaan", + "New discussion": "Nieuwe discussie", + "New email": "Nieuwe e-mail", + "New folder": "Nieuwe map", + "New link": "Nieuwe link", + "New members": "Nieuwe leden", + "New note": "Nieuwe notitie", + "New password": "Nieuw wachtwoord", + "New post": "Nieuw bericht", + "New profile": "Nieuw profiel", + "Next": "Volgende", + "Next month": "Volgende maand", + "Next page": "Volgende pagina", + "Next week": "Volgende week", + "No activities found": "Geen activiteiten gevonden", + "No address defined": "Geen adres ingesteld", + "No categories with public upcoming events on this instance were found.": "Er zijn geen categorieën gevonden met openbare aankomende evenementen in deze instance.", + "No closed reports yet": "Nog geen gesloten rapportages", + "No comment": "Geen reacties", + "No comments yet": "Nog geen reacties", + "No content found": "Geen inhoud gevonden", + "No discussions yet": "Nog geen discussies", + "No end date": "Geen einddatum", + "No event found at this address": "Geen evenement gevonden op dit adres", + "No events found": "Geen evenementen gevonden", + "No events found for {search}": "Geen evenementen gevonden voor {search}", + "No follower matches the filters": "Geen volgers die voldoen aan de filters", + "No group found": "Geen groep gevonden", + "No group matches the filters": "Geen enkele groep komt met de filters overeen", + "No group member found": "Geen groepslid gevonden", + "No groups found": "Geen groepen gevonden", + "No groups found for {search}": "Geen groepen gevonden voor {search}", + "No information": "Geen informatie", + "No instance follows your instance yet.": "Nog geen enkele instance volgt jouw instance.", + "No instance found.": "Geen instance gevonden.", + "No instance to approve|Approve instance|Approve {number} instances": "Geen instances om goed te keuren|Instance goedkeuren|{number} instances goedkeuren", + "No instance to reject|Reject instance|Reject {number} instances": "Geen instances om af te keuren|Instance afkeuren|{number} instances afkeuren", + "No instance to remove|Remove instance|Remove {number} instances": "Geen instances te verwijderen|Instance verwijderen|{number} instances verwijderen", + "No instances match this filter. Try resetting filter fields?": "Geen instance komt overeen met dit filter. Filtervelden opnieuw proberen in te stellen?", + "No languages found": "Geen talen gevonden", + "No member matches the filters": "Er zijn geen gebruikers die overeenkomen met de filters", + "No members found": "Geen leden gevonden", + "No memberships found": "Geen leden gevonden", + "No message": "Geen bericht", + "No moderation logs yet": "Nog geen moderatie logs", + "No more activity to display.": "Geen activiteiten meer om weer te geven.", + "No one is participating|One person participating|{going} people participating": "Niemand neemt deel|Een persoon neemt deel|{going} personen nemen deel", + "No open reports yet": "Nog geen open rapportages", + "No organized events found": "Geen georganiseerde evenementen gevonden", + "No organized events listed": "Geen georganiseerde evenementen", + "No participant matches the filters": "Geen deelnemers die overeenkomen met het filter", + "No participant to approve|Approve participant|Approve {number} participants": "Geen deelnemers goed te keuren|Deelnemer goedkeuren|{number} deelnemers goedkeuren", + "No participant to reject|Reject participant|Reject {number} participants": "Geen deelnemers om af te wijzen|Deelnemer afwijzen|{number} deelnemers afwijzen", + "No participations listed": "Geen deelnames", + "No posts found": "Geen berichten gevonden", + "No posts yet": "Nog geen berichten", + "No profile matches the filters": "Geen profiel komt overeen met de filters", + "No public upcoming events": "Geen publieke aankomende evenementen", + "No resolved reports yet": "Nog geen opgeloste rapportages", + "No resources in this folder": "Geen hulpbronnen in deze map", + "No resources selected": "Geen hulpbronnen geselecteerd|Eén hulpbron geselecteerd|{count} hulpbronnen geselecteerd", + "No resources yet": "Nog geen hulpbronnen", + "No results for \"{queryText}\"": "Geen resultaten voor \"{queryText}\"", + "No results for {search}": "Geen resultaten voor {search}", + "No results found": "Geen resultaten gevonden", + "No results found for {search}": "Geen resultaten gevonden voor {search}", + "No rules defined yet.": "Nog geen regels gedefinieerd.", + "No user matches the filter": "Geen enkele gebruiker komt overeen met het filter", + "No user matches the filters": "Geen enkele gebruiker komt overeen met de filters", + "None": "Geen", + "Not accessible with a wheelchair": "Niet toegankelijk met een rolstoel", + "Not approved": "Niet goedgekeurd", + "Not confirmed": "Niet bevestigd", + "Notes": "Notities", + "Notification before the event": "Melding voor het evenement", + "Notification on the day of the event": "Melding op de dag van het evenement", + "Notification settings": "Meldingsinstellingen", + "Notifications": "Meldingen", + "Notifications for manually approved participations to an event": "Meldingen voor handmatig goedgekeurde deelnames aan een evenement", + "Notify participants": "Aan deelnemers melden", + "Notify the user of the change": "De gebruiker op de hoogte brengen van de wijziging", + "Now, create your first profile:": "Creëer nu uw eerste profiel:", + "Number of members": "Aantal leden", + "Number of places": "Aantal plaatsen", + "OK": "OK", + "Old password": "Oud wachtwoord", + "On foot": "Te voet", + "On the Fediverse": "Op de Fediverse", + "On {date}": "Op {date}", + "On {date} ending at {endTime}": "Op {date}, tot {endTime}", + "On {date} from {startTime} to {endTime}": "Op {date} van {startTime} tot {endTime}", + "On {date} starting at {startTime}": "Op {date} vanaf {startTime}", + "On {instance} and other federated instances": "Op {instance} en andere verbonden instances", + "Online": "Online", + "Online events": "Online evenementen", + "Online ticketing": "Online ticketverkoop", + "Online upcoming events": "Online aankomende evenementen", + "Only Mobilizon instances can be followed": "Alleen Mobilizon instances kunnen worden gevolgd", + "Only accessible through link": "Alleen toegankelijk via directe link", + "Only accessible through link (private)": "Alleen beschikbaar via een link (prive)", + "Only accessible to members of the group": "Alleen toegankelijk voor leden van de groep", + "Only alphanumeric lowercased characters and underscores are supported.": "Alleen alfanumerieke tekens (geen hoofdletters) en underscores zijn toegestaan.", + "Only group members can access discussions": "Alleen groepsleden hebben toegang tot discussies", + "Only group moderators can create, edit and delete events.": "Alleen groepmoderatoren kunnen evenementen aanmaken, bewerken en verwijderen.", + "Only group moderators can create, edit and delete posts.": "Alleen groepsmoderators kunnen berichten maken, bewerken en verwijderen.", + "Only instances with an application actor can be followed": "Alleen instances met een applicatie-actor kunnen worden gevolgd", + "Only registered users may fetch remote events from their URL.": "Alleen geregistreerde gebruikers mogen evenementen op afstand ophalen van hun URL.", + "Open": "Open", + "Open a topic on our forum": "Open een topic op ons forum", + "Open an issue on our bug tracker (advanced users)": "Open een probleem op onze bugtracker (gevorderde gebruikers)", + "Open main menu": "Hoofdmenu openen", + "Open user menu": "Gebruikersmenu openen", + "Opened reports": "Geopende meldingen", + "Or": "Of", + "Ordered list": "Geordende lijst", + "Organized": "Georganiseerd", + "Organized by": "Georganiseerd door", + "Organized by {name}": "Georganiseerd door {name}", + "Organized events": "Georganiseerde evenementen", + "Organizer": "Organisator", + "Organizer notifications": "Meldingen voor organisatoren", + "Organizers": "Organisatoren", + "Other": "Anders", + "Other actions": "Andere acties", + "Other notification options:": "Andere meldingsopties:", + "Other software may also support this.": "Mogelijk ondersteund andere software dit ook.", + "Other users with the same IP address": "Andere gebruikers met hetzelfde IP-adres", + "Other users with the same email domain": "Andere gebruikers met hetzelfde e-maildomein", + "Otherwise this identity will just be removed from the group administrators.": "Anders zal deze identiteit alleen verwijderd worden uit de administrators van de groep.", + "Owncast": "Owncast", + "Page": "Pagina", + "Page limited to my group (asks for auth)": "Pagina beperkt tot mijn groep (vraag om authentificatie)", + "Page not found": "Pagina niet gevonden", + "Parent folder": "Bovenliggende map", + "Partially accessible with a wheelchair": "Deels toegankelijk met een rolstoel", + "Participant": "Deelnemer", + "Participants": "Deelnemers", + "Participate": "Deelnemen", + "Participate using your email address": "Deelnemen via je e-mail adres", + "Participation approval": "Goedkeuring van deelnemers", + "Participation confirmation": "Bevestiging deelname", + "Participation notifications": "Meldingen voor deelnemers", + "Participation requested!": "Deelname aangevraagd!", + "Participation with account": "Deelnemen met account", + "Participation without account": "Deelnemen zonder account", + "Participations": "Deelnames", + "Password": "Wachtwoord", + "Password (confirmation)": "Wachtwoord (bevestigen)", + "Password reset": "Wachtwoord opnieuw instellen", + "Past events": "Voorbije evenementen", + "PeerTube live": "PeerTube live", + "PeerTube replay": "Terugkijken op PeerTube", + "Pending": "In afwachting", + "Personal feeds": "Persoonlijke feeds", + "Photo by {author} on {source}": "Foto door {author} op {source}", + "Pick": "Kies", + "Pick a profile or a group": "Kies een profiel of groep", + "Pick an identity": "Kies een identiteit", + "Pick an instance": "Instance kiezen", + "Please add as many details as possible to help identify the problem.": "Voeg zoveel mogelijk details toe om het probleem te helpen identificeren.", + "Please check your spam folder if you didn't receive the email.": "Gelieve uw map met spamberichten te controleren indien u de email niet ontvangen hebt.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Gelieve de administrator van deze Mobilizon instance te contacteren als u denkt dat dit niet juist is.", + "Please do not use it in any real way.": "Gebruik dit niet in het echt.", + "Please enter your password to confirm this action.": "Voer a.u.b. uw wachtwoord in om deze actie te bevestigen.", + "Please make sure the address is correct and that the page hasn't been moved.": "Gelieve te controleren dat het adres juist is, en de pagina niet verplaatst is.", + "Please read the {fullRules} published by {instance}'s administrators.": "Lees de {fullRules} die zijn gepubliceerd door de administrators van {instance}.", + "Popular groups close to you": "Populaire groepen bij jou in de buurt", + "Popular groups nearby {position}": "Populaire groepen in de buurt van {position}", + "Post": "Bericht", + "Post URL": "URL posten", + "Post a comment": "Reactie plaatsen", + "Post a reply": "Reactie plaatsen", + "Post body": "Berichttekst", + "Post {eventTitle} reported": "Evenement {eventTitle} gerapporteerd", + "Postal Code": "Postcode", + "Posts": "Berichten", + "Powered by Mobilizon": "Powered by Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Powered by {mobilizon}. © 2018 - {date} De Mobilizon contributeurs - Gemaakt met de financiële ondersteuning van {contributors}.", + "Preferences": "Voorkeuren", + "Previous": "Vorige", + "Previous email": "Vorige e-mail", + "Previous month": "Vorige maand", + "Previous page": "Vorige pagina", + "Price sheet": "Toegangsprijzen", + "Primary Color": "Hoofdkleur", + "Privacy": "Privacy", + "Privacy Policy": "Privacy beleid", + "Privacy policy": "Privacy beleid", + "Private event": "Privé-evenement", + "Private feeds": "Privéfeeds", + "Profile": "Profiel", + "Profile feeds": "Profielfeeds", + "Profiles": "Profielen", + "Profiles and federation": "Profielen en federatie", + "Promote": "Promoveren", + "Public": "Publiek", + "Public RSS/Atom Feed": "Openbaar RSS-/Atomfeed", + "Public comment moderation": "Modereren van openbare opmerkingen", + "Public event": "Openbaar evenement", + "Public feeds": "Openbare feeds", + "Public iCal Feed": "Openbaar iCalfeed", + "Public preview": "Openbare voorvertoning", + "Publication date": "Publicatiedatum", + "Publish": "Publiceren", + "Publish events": "Evenementen publiceren", + "Publish group posts": "Groepsberichten publiceren", + "Published by {name}": "Gepubliceerd door {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Gepubliceerde evenementen met{comments} opmerkingen en {participations} bevestigde deelnemers", + "Published events with {comments} comments and {participations} confirmed participations": "Gepubliceerde evenementen met {comments} reacties en {participations} bevestigde deelnames", + "Push": "Push", + "Quote": "Citaat", + "RSS/Atom Feed": "RSS-/Atomfeed", + "Radius": "Radius", + "Read all of your account's data": "Alle gegevens van je account lezen", + "Recap every week": "Iedere week een samenvatting", + "Receive one email for each activity": "Ontvang voor elke activiteit één e-mail", + "Receive one email per request": "Een e-mail per verzoek ontvangen", + "Redirecting in progress…": "U wordt omgeleid…", + "Redirecting to Mobilizon": "Omleiden naar Mobilizon", + "Redirecting to content…": "Omleiden naar inhoud…", + "Redo": "Opnieuw", + "Refresh profile": "Profiel vernieuwen", + "Regenerate new links": "Links opnieuw aanmaken", + "Region": "Regio", + "Register": "Inschrijven", + "Register an account on {instanceName}!": "Registreer een account op {instanceName}!", + "Register on this instance": "Registreer bij deze instance", + "Registration is allowed, anyone can register.": "Registratie is toegestaan. Iedereen kan registreren.", + "Registration is closed.": "Registratie is gesloten.", + "Registration is currently closed.": "Inschrijvingen zijn momenteel gesloten.", + "Registrations": "Registraties", + "Registrations are restricted by allowlisting.": "Registraties zijn beperkt tot een lijst met toegestane deelnemers.", + "Reject": "Afwijzen", + "Reject follow": "Wijs gevolgd worden af", + "Reject member": "Lid afwijzen", + "Rejected": "Afgewezen", + "Remember my participation in this browser": "Onthoud mijn deelname aan deze browser", + "Remove": "Verwijderen", + "Remove link": "Link verwijderen", + "Remove uploaded media": "Geüploade media verwijderen", + "Rename": "Hernoemen", + "Rename resource": "Hulpbron naam", + "Reopen": "Heropenen", + "Replay": "Opnieuw afspelen", + "Reply": "Reageren", + "Report": "Melden", + "Report #{reportNumber}": "Rapport #{reportNumber}", + "Report as ham": "Rapporteren als ham", + "Report as spam": "Rapporteren als spam", + "Report as undetected spam": "Rapporteren als onopgemerkte spam", + "Report reason": "Reden rapporteren", + "Report status": "Rapporteer status", + "Report this comment": "Deze reactie rapporteren", + "Report this event": "Meld dit evenement", + "Report this group": "Rapporteer deze groep", + "Report this post": "Dit bericht rapporteren", + "Reported": "Gerapporteerd", + "Reported by": "Gerapporteerd door", + "Reported by someone anonymously": "Anoniem gemeld door iemand", + "Reported by someone on {domain}": "Gerapporteerd door iemand op {domain}", + "Reported by {reporter}": "Gerapporteerd door {reporter}", + "Reported content": "Gerapporteerde inhoud", + "Reported group": "Gerapporteerde groep", + "Reported identity": "Gerapporteerde identiteit", + "Reports": "Rapporten", + "Reports list": "Rapportagelijst", + "Request for participation confirmation sent": "Deelname verzoek bevestiging verstuurd", + "Resend confirmation email": "Bevestigingsemail opnieuw versturen", + "Resent confirmation email": "Bevestigingsmail opnieuw versturen", + "Reset": "Opnieuw instellen", + "Reset filters": "Filters resetten", + "Reset my password": "Mijn wachtwoord opnieuw instellen", + "Reset password": "Wachtwoord opnieuw instellen", + "Resolved": "Opgelost", + "Resource provided is not an URL": "De hulpbron is geen URL", + "Resources": "Hulpbronnen", + "Restricted": "Niet toegestaan", + "Return to the group page": "Ga terug naar de groepspagina", + "Right now": "Direct", + "Role": "Rol", + "Rules": "Regels", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL en zijn opvolger TLS zijn coderingstechnologieën om datacommunicatie te beveiligen bij het gebruik van de service. U herkent een versleutelde verbinding in de adresregel van uw browser wanneer de URL begint met {https} en het slotje wordt weergegeven in de adresbalk van uw browser.", + "SSL/TLS": "SSL/TLS", + "Save": "Opslaan", + "Save draft": "Concept opslaan", + "Schedule": "Inplannen", + "Search": "Zoeken", + "Search events, groups, etc.": "Zoek evenementen, groepen, etc.", + "Search target": "Doel zoeken", + "Searching…": "Zoeken…", + "Secondary Color": "Secundaire Kleur", + "Select a category": "Selecteer een categorie", + "Select a language": "Taal selecteren", + "Select a radius": "Selecteer afstand (radius)", + "Select a timezone": "Selecteer een tijdzone", + "Select all resources": "Selecteer alle bronnen", + "Select languages": "Talen selecteren", + "Select the activities for which you wish to receive an email or a push notification.": "Kies de activiteiten waarvan je graag een e-mail of een pushmelding wilt ontvangen.", + "Select this resource": "Selecteer deze bron", + "Send": "Verzenden", + "Send email": "Stuur e-mail", + "Send feedback": "Feedback sturen", + "Send notification e-mails": "E-mailmeldingen verzenden", + "Send password reset": "Wachtwoord opnieuw instellen", + "Send the confirmation email again": "Stuurde bevestigingsmail nogmaals", + "Send the report": "Verstuur de melding", + "Set an URL to a page with your own privacy policy.": "Stel een URL in naar een pagina met uw eigen privacy beleid.", + "Set an URL to a page with your own terms.": "Stel een URL in naar een pagina met je eigen voorwaarden.", + "Settings": "Instellingen", + "Share": "Delen", + "Share this event": "Dit evenement delen", + "Share this group": "Deze groep delen", + "Share this post": "Deel dit bericht", + "Short bio": "Korte bio", + "Show filters": "Filters tonen", + "Show map": "Kaart tonen", + "Show me where I am": "Toon me waar ik ben", + "Show remaining number of places": "Toon het overblijvend aantal plaatsen", + "Show the time when the event begins": "Toon de tijd wanneer het evenement begint", + "Show the time when the event ends": "Toon de tijd wanneer het evenement eindigt", + "Showing events before": "Evenementen weergeven vóór", + "Showing events starting on": "Evenementen die beginnen op", + "Sign Language": "Gebarentaal", + "Sign in with": "Aanmelden via", + "Sign up": "Inschrijven", + "Since you are a new member, private content can take a few minutes to appear.": "Aangezien u een nieuw lid bent, kan het enkele minuten duren voordat privé-inhoud wordt weergegeven.", + "Skip to main content": "Naar de belangrijkste inhoud gaan", + "Smoke free": "Rookvrij", + "Smoking allowed": "Roken is toegestaan", + "Social": "Sociaal", + "Software details: {software_details}": "Software details: {software_details}", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Sommige termen, technisch of anders, in de tekst hieronder kunnen onderwerpen bevatten die lastig te bevatten zijn. We hebben een verklarende woordenlijst toegevoegd zodat u deze beter kunt begrijpen:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Sorry, we konden je feedback niet opslaan. Maak je geen zorgen, we proberen dit probleem toch op te lossen.", + "Sort by": "Sorteren op", + "Starts on…": "Begint op…", + "Status": "Status", + "Statuses": "Statussen", + "Stop following instance": "Volg deze instance niet", + "Street": "Straat", + "Submit": "Verzenden", + "Submit to Akismet": "Indienen bij Akismet", + "Subtitles": "Ondertiteling", + "Suggestions:": "Suggesties:", + "Suspend": "Onderbreken", + "Suspend group": "Groep schorsen", + "Suspend the account": "Het account opschorten", + "Suspend the account?": "Het account opschorten?", + "Suspended": "Onderbroken", + "Tag search": "Tags zoeken", + "Task lists": "Taken lijsten", + "Technical details": "Technische details", + "Tentative": "Voorlopig", + "Tentative: Will be confirmed later": "Onder voorbehoud: zal later bevestigd worden", + "Terms": "Gebruiksvoorwaarden", + "Terms of service": "Serviceovereenkomst", + "Text": "Tekst", + "Thanks a lot, your feedback was submitted!": "Hartelijk dank, je feedback is ingediend!", + "That you follow or of which you are a member": "Die je volgt of waarvan je lid bent", + "The Big Blue Button video teleconference URL": "URL van de Big Blue Button-meeting", + "The Google Meet video teleconference URL": "URL van de Google Meet-meeting", + "The Jitsi Meet video teleconference URL": "URL van de Jitsi-meeting", + "The Microsoft Teams video teleconference URL": "URL van de Microsoft Teams-meeting", + "The URL of a pad where notes are being taken collaboratively": "URL van de etherpad-locatie waar gezamenlijk aantekeningen worden gemaakt", + "The URL of a poll where the choice for the event date is happening": "De URL van de poll waar de keuze voor de datum en tijd van het evenement wordt bepaald", + "The URL where the event can be watched live": "De URL waar het evenement live bekeken kan worden", + "The URL where the event live can be watched again after it has ended": "De URL waar het live-evenement na afloop teruggekeken kan worden", + "The Zoom video teleconference URL": "URL van de Zoom-meeting", + "The account's email address was changed. Check your emails to verify it.": "Het e-mail adres van het account is gewijzigd. Controleer uw e-mails om dit te bevestigen.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Het daadwerkelijke aantal deelnemers kan verschillen aangezien dit evenement afkomstig is van een andere instance.", + "The calc will be created on {service}": "De calc wordt gemaakt op {service}", + "The content came from another server. Transfer an anonymous copy of the report?": "De inhoud komt van een andere instance. Wilt u een anonieme kopie van de rapportage versturen?", + "The draft event has been updated": "Het conceptevenement is bijgewerkt", + "The event has a sign language interpreter": "Het evenement heeft een gebarentolk", + "The event has been created as a draft": "Het evenement is aangemaakt als concept", + "The event has been published": "Het evenement is gepubliceerd", + "The event has been updated": "Het evenement is bijgewerkt", + "The event has been updated and published": "Het evenement is bijgewerkt en gepubliceerd", + "The event hasn't got a sign language interpreter": "Het evenement heeft geen gebarentolk", + "The event is fully online": "Dit evenement is volledig online", + "The event live video contains subtitles": "De live video van het evenement bevat ondertitels", + "The event live video does not contain subtitles": "De live video van het evenement bevat geen ondertitels", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "De organisator heeft er voor gekozen handmatig deelname goed te keuren. Wilt u aangeven waarom u wilt deelnemen aan dit evenement?", + "The event organizer didn't add any description.": "De organisator van het evenement heeft geen beschrijving toegevoegd.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "De organisator keurt handmatig deelnames goed. Gezien u heeft gekozen deel te nemen zonder account kunt u hier uitleggen waarom u wilt deelnemen aan dit evenement.", + "The event title will be ellipsed.": "De titel van het evenement zal verkort getoond worden.", + "The event will show as attributed to this group.": "De gebeurtenis wordt weergegeven als toegeschreven aan deze groep.", + "The event will show as attributed to this profile.": "Dit evenement wordt op uw profiel weergeven dat het door u is aangemaakt.", + "The event will show as attributed to your personal profile.": "Het evenement wordt weergegeven als toegeschreven aan uw persoonlijke profiel.", + "The event {event} was created by {profile}.": "Het evenement {event} is aangemaakt door {profile}.", + "The event {event} was deleted by {profile}.": "Het evenement {event} is verwijderd door {profile}.", + "The event {event} was updated by {profile}.": "Het evenement {event} is geupdated door {profile}.", + "The events you created are not shown here.": "De evenementen die u heeft gemaakt, worden hier niet weergegeven.", + "The geolocation prompt was denied.": "De geolocatie-prompt werd geweigerd.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "Iedereen kan nu lid worden van de groep, maar nieuwe leden moeten worden goedgekeurd door een administrator.", + "The group can now be joined by anyone.": "Iedereen kan nu deelnemen aan deze groep.", + "The group can now only be joined with an invite.": "Deelnemen aan deze groep kan nu alleen met een uitnodiging.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "De groep wordt openbaar weergegeven in de zoekresultaten en kan worden voorgesteld in de sectie Verkennen. Alleen openbare informatie wordt op de pagina getoond.", + "The group's avatar was changed.": "De avatar van de groep is gewijzigd.", + "The group's banner was changed.": "De omslagfoto van de groep was gewijzigd.", + "The group's physical address was changed.": "Het fysieke adres van de groep is gewijzigd.", + "The group's short description was changed.": "De korte beschrijving van de groep is gewijzigd.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "De instance administrator is de persoon of entiteit die deze Mobilizon instance draait.", + "The member was approved": "Het lid werd goedgekeurd", + "The member was removed from the group {group}": "De gebruiker is verwijderd uit de groep {group}", + "The membership request from {profile} was rejected": "Het lidmaatschapsverzoek van {profile} is afgewezen", + "The only way for your group to get new members is if an admininistrator invites them.": "De enige manier voor uw groep om nieuwe leden te krijgen, is als een administrator hen uitnodigt.", + "The organiser has chosen to close comments.": "De organisator heeft er voor gekozen geen reacties toe te staan.", + "The pad will be created on {service}": "Het pad wordt aangemaakt op {service}", + "The page you're looking for doesn't exist.": "De pagina waarnaar u zoekt bestaat niet.", + "The password was successfully changed": "Het wachtwoord is succesvol veranderd", + "The post {post} was created by {profile}.": "Het bericht {post} is geplaatst door {profile}.", + "The post {post} was deleted by {profile}.": "Het bericht {post} is verwijderd door {profile}.", + "The post {post} was updated by {profile}.": "Het bericht {post} is bijgewerkt door {profile}.", + "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.": "De inhoud van het rapport (eventuele opmerkingen en gebeurtenissen) en de gerapporteerde profielgegevens worden doorgestuurd naar Akismet.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "De melding zal verstuurd worden naar de moderatoren van uw server. U kunt uitleggen waarom u onderstaande inhoud gemeld hebt.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "De gekozen afbeelding is te groot. U moet een bestand kiezen die kleiner is dan {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "De technische details van de fout kunnen ontwikkelaars helpen het probleem gemakkelijker op te lossen. Voeg ze a.u.b. toe aan uw feedback.", + "The user has been disabled": "De gebruiker is geblokkeerd", + "The videoconference will be created on {service}": "De videoconferentie zal worden aangemaakt op {service}", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "De {default_privacy_policy} zal worden gebruikt. Deze zal worden vertaald naar de taal van de gebruiker.", + "The {default_terms} will be used. They will be translated in the user's language.": "De {default_terms} zullen worden gebruikt. Ze zullen worden vertaald naar de taal van de gebruiker.", + "Theme": "Stijl", + "There are {participants} participants.": "Er zijn {participants} deelnemers.", + "There is no activity yet. Start doing some things to see activity appear here.": "Hier is nog geen activiteit. Begin iets te doen om hier activiteit te zien.", + "There will be no way to recover your data.": "Er zal geen mogelijkheid zijn uw data terug te halen.", + "There's no discussions yet": "Er zijn nog geen discussies", + "These events may interest you": "Deze evenementen zouden u kunnen interesseren", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Deze feeds bevatten gegevens van evenementen waarvan een van uw profielen deelnemer of initiatiefnemer van is. Deze kunt u het beste privé houden. U kunt voor specifieke profielen feeds vinden onder de respectievelijke profielinstellingen.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Deze feeds bevatten gegevens van evenementen waaraan dit profiel deelneemt of initiatiefnemer van is. Deze kunt u het beste privé houden. U kunt onder uw meldingsinstellingen feeds vinden voor al uw profielen.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Deze Mobilizon instance en de organisator van dit evenement staan anonieme deelname toe maar vereisen wel validatie via een e-mail bevestiging.", + "This URL doesn't seem to be valid": "Deze URL lijkt niet valide", + "This URL is not supported": "Deze URL wordt niet ondersteund", + "This application will be able to access all of your informations and post content. Make sure you only approve applications you trust.": "Deze applicatie zal al je informatie kunnen inzien en inhoud kunnen posten. Zorg ervoor dat je alleen applicaties goedkeurt die je vertrouwt.", + "This application will be allowed to access all of the groups you're a member of": "Deze applicatie zal toegang kunnen krijgen tot alle groepen waar je lid van bent", + "This application will be allowed to access group activities in all of the groups you're a member of": "Deze toepassing krijgt toegang tot groepsactiviteiten in alle groepen waarvan je lid bent", + "This application will be allowed to access your user activity settings": "Deze applicatie zal toegang krijgen tot de instellingen van je gebruikersactiviteiten", + "This application will be allowed to access your user settings": "Deze applicatie zal toegang krijgen tot je gebruikersinstellingen", + "This application will be allowed to create resources in all of the groups you're a member of": "Deze applicatie zal bronnen kunnen aanmaken in alle groepen waar je lid van bent", + "This application will be allowed to delete events": "Deze applicatie zal gebeurtenissen kunnen verwijderen", + "This application will be allowed to delete group posts": "Deze applicatie zal groepsberichten kunnen verwijderen", + "This application will be allowed to delete resources in all of the groups you're a member of": "Deze toepassing mag bronnen verwijderen in alle groepen waarvan je lid bent", + "This application will be allowed to join and leave groups": "Deze toepassing zal lid kunnen worden van groepen en ze kunnen verlaten", + "This application will be allowed to list and access group discussions in all of the groups you're a member of": "Deze toepassing zal groepsdiscussies in een lijst kunnen plaatsen en heeft daar toegang toe in alle groepen waarvan je lid bent", + "This application will be allowed to list and access group events in all of the groups you're a member of": "Deze toepassing zal groep evenementen in een lijst kunnen plaatsen en heeft daar toegang toe in alle groepen waarvan je lid bent.", + "This application will be allowed to list and access group todo-lists in all of the groups you're a member of": "Deze toepassing zal todo-lijsten van groepen in een lijst kunnen plaatsen en heeft daar toegang toe in alle groepen waar je lid van bent", + "This application will be allowed to list and view the events you're participating to": "Deze toepassing zal de evenementen waaraan je deelneemt in een lijst kunnen plaatsen en bekijken", + "This application will be allowed to list and view the groups you're a member of": "Deze toepassing zal de groepen waarvan je lid bent in een lijst kunnen plaatsen en bekijken", + "This application will be allowed to list and view the groups you're following": "Deze toepassing zal de groepen die je volgt in een lijst kunnen plaatsen en bekijken", + "This application will be allowed to list and view your draft events": "Deze applicatie zal je concept-evenementen in een lijst kunnen zetten en bekijken", + "This application will be allowed to list and view your organized events": "Deze toepassing zal je georganiseerde evenementen in een lijst kunnen plaatsen en bekijken", + "This application will be allowed to list group followers in all of the groups you're a member of": "Deze toepassing zal de volgers van de groep in een lijst kunnen plaatsen in alle groepen waarvan je lid bent", + "This application will be allowed to list group members in all of the groups you're a member of": "Deze toepassing mag groepsleden in een lijst plaatsen in alle groepen waarvan je lid bent", + "This application will be allowed to list the media you've uploaded": "Deze toepassing zal de media die u hebt geüpload in een lijst mogen zetten", + "This application will be allowed to list your suggested group events": "Deze applicatie zal jouw voorgestelde groep evenementen in een lijst mogen zetten", + "This application will be allowed to manage group members in all of the groups you're a member of": "Deze toepassing mag groepsleden beheren in alle groepen waarvan je lid bent", + "This application will be allowed to publish events": "Deze applicatie zal evenementen kunnen publiceren", + "This application will be allowed to publish events, participate to events": "Deze applicatie zal evenementen kunnen publiceren, aan evenementen kunnen deelnemen", + "This application will be allowed to publish group posts": "Deze applicatie zal groepsberichten kunnen publiceren", + "This application will be allowed to remove uploaded media": "Deze applicatie zal geüploade media kunnen verwijderen", + "This application will be allowed to see all of your events organized, the events you participate to, …": "Deze applicatie zal al je georganiseerde evenementen kunnen zien, de evenementen waaraan je deelneemt, ...", + "This application will be allowed to update events": "Deze applicatie zal evenementen kunnen bijwerken", + "This application will be allowed to update group posts": "Deze applicatie zal groepsberichten kunnen bijwerken", + "This application will be allowed to update resources in all of the groups you're a member of": "Deze applicatie zal bronnen kunnen bijwerken in alle groepen waar je lid van bent", + "This application will be allowed to upload media": "Deze applicatie zal media kunnen uploaden", + "This event has been cancelled.": "Dit evenement is geannuleerd.", + "This event is accessible only through it's link. Be careful where you post this link.": "Dit evenement is op dit moment alleen toegankelijk via een rechtstreekse link. Wees voorzichtig waar u deze mee deelt.", + "This group doesn't have a description yet.": "Deze groep heeft nog geen beschrijving.", + "This group is a remote group, it's possible the original instance has more informations.": "Deze groep is een externe groep, het is mogelijk dat de oorspronkelijke instance meer informatie heeft.", + "This group is accessible only through it's link. Be careful where you post this link.": "Deze groep is alleen toegankelijk via een link. Wees voorzichtig met waar je deze link plaatst.", + "This group is invite-only": "Deze groep is alleen op uitnodiging", + "This group was not found": "Deze groep is niet gevonden", + "This identifier is unique to your profile. It allows others to find you.": "Deze identifier is uniek voor uw profiel. Het stelt anderen in staat je te vinden.", + "This information is saved only on your computer. Click for details": "Deze informatie wordt alleen opgeslagen op uw computer. Klik voor details.", + "This instance doesn't follow yours.": "Deze instance volgt niet die van jou.", + "This instance hasn't got push notifications enabled.": "Deze instance heeft geen pushmeldingen ingeschakeld.", + "This instance isn't opened to registrations, but you can register on other instances.": "Deze server is nog niet open voor inschrijvingen, maar u kan zich inschrijven op andere servers.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Deze instantie, {instanceName} ({domain}), host uw profiel, dus onthoud de naam.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Deze instance, {instanceName}, host je profiel, dus onthoud de naam.", + "This is a demonstration site to test Mobilizon.": "Dit is een demosite om Mobilizon te testen.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Dit is vergelijkbaar met uw federatieve gebruikersnaam ({username}) voor groepen. Het zorgt ervoor dat de groep terug te vinden is op de federatie en is gegarandeerd uniek.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Dit is zoals je federatieve gebruikersnaam ({username}) voor groepen. Hiermee kan de groep gevonden worden in de federatie en het is gegarandeerd uniek.", + "This month": "Deze maand", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Dit bericht is alleen toegankelijk voor leden. Omdat u een instance-moderator bent heeft u alleen toegang i.v.m. moderatiedoeleinden.", + "This post is accessible only through it's link. Be careful where you post this link.": "Dit bericht is alleen toegankelijk via de bijbehorende link. Wees voorzichtig met het posten van deze link.", + "This profile is from another instance, the informations shown here may be incomplete.": "Dit groepsprofiel is van een andere instantie, de informatie die hier wordt weergegeven kan onvolledig zijn.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Dit profiel bevindt zich op deze instance, {access_the_corresponding_account} om het op te schorten.", + "This profile was not found": "Dit profiel is niet gevonden", + "This setting will be used to display the website and send you emails in the correct language.": "Deze instelling wordt gebruikt om de website weer te geven en u e-mails in de juiste taal te sturen.", + "This user doesn't have any profiles": "Deze gebruiker heeft geen profielen", + "This user was not found": "Deze gebruiker is niet gevonden", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Deze website wordt niet gemodereerd en de gegevens die je invoert worden elke dag automatisch om 00:01 (tijdzone Parijs) vernietigd.", + "This week": "Deze week", + "This weekend": "Dit weekend", + "This will also resolve the report.": "Hiermee wordt het rapport ook afgehandeld.", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Dit zal alle inhoud (evenementen, opmerkingen, berichten, deelnames…) die aangemaakt is met deze identiteit verwijderen / anonimiseren.", + "Time in your timezone ({timezone})": "Tijd in jouw tijdzone ({timezone})", + "Times in your timezone ({timezone})": "Tijden in jouw tijdzone ({timezone})", + "Timezone": "Tijdzone", + "Timezone detected as {timezone}.": "Gedetecteerde tijdzone: {timezone}.", + "Title": "Titel", + "To activate more notifications, head over to the notification settings.": "Ga om meer meldingen in te stellen naar de meldingsinstellingen.", + "To confirm, type your event title \"{eventTitle}\"": "Typ de titel van uw evenement \"{eventTitle}\" om te bevestigen", + "To confirm, type your identity username \"{preferredUsername}\"": "Typ de gebruikersnaam van uw identiteit \"{preferredUsername}\" om te bevestigen", + "To create and manage multiples identities from a same account": "Om meerdere identiteiten aan te maken en te beheren vanaf het zelfde account", + "To create and manage your events": "Om je evenementen aan te maken en te beheren", + "To create or join an group and start organizing with other people": "Om een groep aan te maken of er aan deel te nemen en te starten met samen organiseren", + "To follow groups and be informed of their latest events": "Groepen volgen en op de hoogte blijven van hun laatste evenementen", + "To register for an event by choosing one of your identities": "Om aan te melden voor een evenement door een van uw identiteiten te kiezen", + "Today": "Vandaag", + "Tomorrow": "Morgen", + "Tools": "Gereedschappen", + "Total number of participations": "Totaal aantal deelnemers", + "Transfer to {outsideDomain}": "Verplaatsen naar {outsideDomain}", + "Triggered profile refreshment": "Het profiel is vernieuwd", + "Try different keywords.": "Probeer verschillende zoekwoorden.", + "Try fewer keywords.": "Probeer minder zoektermen.", + "Try more general keywords.": "Probeer meer algemene zoektermen.", + "Twitch live": "Twitch live", + "Twitch replay": "Terugkijken op Twitch", + "Twitter account": "Twitter-account", + "Type": "Type", + "Type or select a date…": "Type of selecteer een datum…", + "URL": "URL", + "URL copied to clipboard": "URL naar klembord gekopieerd", + "Unable to copy to clipboard": "Kan niet naar klembord kopiëren", + "Unable to create the group. One of the pictures may be too heavy.": "Niet in staat om de groep aan te maken. Een van de afbeeldingen is mogelijk te groot.", + "Unable to create the profile. The avatar picture may be too heavy.": "Niet in staat om het profiel aan te maken. De avatar-afbeelding is mogelijk te groot.", + "Unable to detect timezone.": "Kan tijdzone niet detecteren.", + "Unable to load event for participation. The error details are provided below:": "Kan evenement niet laden voor deelname. De foutdetails worden hieronder gegeven:", + "Unable to save your participation in this browser.": "Kan uw deelname niet opslaan in deze browser.", + "Unable to update the profile. The avatar picture may be too heavy.": "Niet in staat om het profiel bij te werken. De avatar-afbeelding is mogelijk te groot.", + "Underline": "Onderstreep", + "Undo": "Ongedaan maken", + "Unfollow": "Onvolgen", + "Unfortunately, your participation request was rejected by the organizers.": "Helaas is uw deelnameverzoek afgewezen door de organisatoren.", + "Unknown": "Onbekend", + "Unknown actor": "Onbekende actor", + "Unknown error.": "Onbekende fout.", + "Unknown value for the openness setting.": "Onbekende waarde voor de toegangsinstelling.", + "Unlogged participation": "Deelnemen zonder inloggen", + "Unsaved changes": "Niet-bewaarde veranderingen", + "Unsubscribe to browser push notifications": "Pushmeldingen in de browser uitschakelen", + "Unsuspend": "Onderbreken ongedaan maken", + "Upcoming": "Binnenkort", + "Upcoming events": "Aankomende evenementen", + "Upcoming events from your groups": "Komende evenementen van je groepen", + "Update": "Bijwerken", + "Update app": "App bijwerken", + "Update discussion title": "Discussietitel bijwerken", + "Update event {name}": "Evenement {name} bijwerken", + "Update events": "Evenementen bijwerken", + "Update group": "Update groep", + "Update group posts": "Groepsberichten bijwerken", + "Update group resources": "Groepsbronnen bijwerken", + "Update my event": "Mijn evenement bijwerken", + "Update post": "Bericht bijwerken", + "Updated": "Bijgewerkt", + "Upload media": "Media uploaden", + "Uploaded media size": "Grootte van geüploade media", + "Uploaded media total size": "Totale grootte geüploade media", + "Use my location": "Gebruik mijn locatie", + "User": "Gebruiker", + "User settings": "Gebruikersinstellingen", + "Username": "Gebruikersnaam", + "Users": "Gebruikers", + "Validating account": "Account bevestigen", + "Validating email": "E-mailadres bevestigen", + "Video Conference": "Videoconferentie", + "View a reply": "Geen reacties bekijken|Eén reactie bekijken|{totalReplies} reacties bekijken", + "View account on {hostname} (in a new window)": "Account op {hostname} bekijken (in een nieuw venster)", + "View all": "Alles laten zien", + "View all categories": "Alle categorieën weergeven", + "View all events": "Bekijk alle evenementen", + "View all posts": "Bekijk alle berichten", + "View event page": "Pagina van het evenement bekijken", + "View everything": "Alles bekijken", + "View full profile": "Bekijk volledig groepsprofiel", + "View less": "Minder tonen", + "View more": "Meer tonen", + "View more events": "Meer evenementen bekijken", + "View more events around {position}": "Meer evenementen rond {position} weergeven", + "View more groups around {position}": "Bekijk meer groepen rond {position}", + "View more online events": "Meer online evenementen bekijken", + "View page on {hostname} (in a new window)": "Pagina bekijken op {hostname} (in een nieuw venster)", + "View past events": "Afgelopen evenementen weergeven", + "View the group profile on the original instance": "Bekijk het groepsprofiel op de oorspronkelijke instance", + "Visibility was set to an unknown value.": "Zichtbaarheid werd ingesteld op een onbekende waarde.", + "Visibility was set to private.": "Zichtbaarheid werd ingesteld op privé.", + "Visibility was set to public.": "Zichtbaarheid werd ingesteld op openbaar.", + "Visible everywhere on the web": "Overal op het web zichtbaar", + "Visible everywhere on the web (public)": "Overal op het internet zichtbaar (openbaar)", + "Visit {instance_domain}": "Bezoek {instance_domain}", + "Waiting for organization team approval.": "Wacht op goedkeuring van het organisatieteam.", + "Warning": "Waarschuwing", + "We collect your feedback and the error information in order to improve this service.": "We verzamelen uw feedback en de foutmelding om deze service te verbeteren.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "We konden uw deelname in deze browser niet opslaan. Maakt u zich geen zorgen, u heeft uw deelname succesvol bevestigd, het lukte echter i.v.m. een technisch probleem niet om de status in de browser op te slaan.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "We verbeteren deze software dankzij uw feedback. Om ons op de hoogte te stellen van dit probleem, zijn er twee mogelijkheden (beide vereisen helaas het aanmaken van een gebruikersaccount):", + "We just sent an email to {email}": "We hebben zonet een email verstuurd naar {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "We gebruiken uw tijdzone om er voor te zorgen dat u tijdig meldingen krijgt voor een evenement.", + "We will redirect you to your instance in order to interact with this event": "We sturen u door naar uw instance om te kunnen interageren met dit evenement", + "We will redirect you to your instance in order to interact with this group": "We zullen u doorverwijzen naar uw instance om met deze groep te kunnen interageren", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "We zullen u een uur voordat het evenement een e-mail sturen zodat u het niet vergeet.", + "We'll use your timezone settings to send a recap of the morning of the event.": "We zullen uw tijdzone instellingen gebruiken om een samenvatting te sturen op de ochtend van het evenement.", + "Website": "Website", + "Website / URL": "Website / URL", + "Weekly email summary": "Wekelijkse e-mailsamenvatting", + "Welcome back {username}!": "Welkom terug {username}!", + "Welcome back!": "Welkom terug!", + "Welcome to Mobilizon, {username}!": "Welkom bij Mobilizon, {username}!", + "What can I do to help?": "Hoe kan ik helpen?", + "What happened?": "Wat is er gebeurd?", + "Wheelchair accessibility": "Rolstoeltoegankelijk", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Wanneer een moderator van de groep een evenement maakt en het aan de groep koppelt, wordt het hier weergegeven.", + "When the event is private, you'll need to share the link around.": "Wanneer het evenement privé is, moet uw de link zelf delen.", + "When the post is private, you'll need to share the link around.": "Wanneer het een privébericht is, moet je zelf de link delen.", + "Whether smoking is prohibited during the event": "Of roken tijdens het evenement is verboden", + "Whether the event is accessible with a wheelchair": "Of het evenement toegankelijk is voor rolstoelen", + "Whether the event is interpreted in sign language": "Of de gebeurtenis wordt weergegeven in gebarentaal", + "Whether the event live video is subtitled": "Of de live video van het evenement ondertiteld is", + "Who can post a comment?": "Wie kan een reactie plaatsen?", + "Who can view this event and participate": "Wie kan dit evenement bekijken en eraan deelnemen", + "Who can view this post": "Wie kan dit bericht zien", + "Who published {number} events": "Welke {number} evenementen hebben gepubliceerd", + "Why create an account?": "Waarom een account aanmaken?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Hiermee kunt u uw deelnamestatus weergeven en beheren op de evenementpagina wanneer u dit apparaat gebruikt. Schakel het vinkje uit als u een openbaar apparaat gebruikt.", + "With the most participants": "Met de meeste deelnemers", + "Within {number} kilometers of {place}": "|Binnen een kilometer van {place}|Binnen {number} kilometer van {place}", + "Write a new comment": "Schrijf een nieuw commentaar", + "Write a new message": "Schrijf een nieuw bericht", + "Write a new reply": "Schrijf een nieuw antwoord", + "Write something": "Schrijf iets", + "Write your post": "Schrijf je bericht", + "Yesterday": "Gisteren", + "You accepted the invitation to join the group.": "U accepteerde de uitnodiging om lid te worden van de groep.", + "You added the member {member}.": "U voegde lid {member} toe.", + "You approved {member}'s membership.": "Je hebt het lidmaatschap van {member} goedgekeurd.", + "You archived the discussion {discussion}.": "U archiveerde de discussie {discussion}.", + "You are not an administrator for this group.": "U bent geen administrator voor deze groep.", + "You are not part of any group.": "U bent geen lid van een groep.", + "You are offline": "U bent offline", + "You are participating in this event anonymously": "U neemt anoniem deel aan dit evenement", + "You are participating in this event anonymously but didn't confirm participation": "U neemt anoniem deel aan dit evenement maar heeft uw deelname niet bevestigd", + "You can add resources by using the button above.": "Je kunt bronnen toevoegen met de knop hierboven.", + "You can add tags by hitting the Enter key or by adding a comma": "U kunt tags toevoegen door op de Enter-toets te drukken, of door een komma toe te voegen", + "You can pick your timezone into your preferences.": "U kunt uw tijdzone naar uw voorkeur instellen.", + "You can try another search term or drag and drop the marker on the map": "U kunt een andere zoekterm proberen of de pin op de kaart verslepen", + "You can't change your password because you are registered through {provider}.": "U kunt uw wachtwoord niet wijzigen omdat u bent geregistreerd via {provider}.", + "You can't use push notifications in this browser.": "U kunt in deze browser geen pushmeldingen gebruiken.", + "You changed your email or password": "U heeft uw e-mailadres of wachtwoord gewijzigd", + "You created the discussion {discussion}.": "U maakte de discussie {discussion} aan.", + "You created the event {event}.": "U heeft het evenement {event} aangemaakt.", + "You created the folder {resource}.": "U maakte de folder {resource}.", + "You created the group {group}.": "U maakte de groep {group} aan.", + "You created the post {post}.": "U plaatste bericht {post}.", + "You created the resource {resource}.": "U maakte de voorziening {resource}.", + "You deleted the discussion {discussion}.": "U verwijderde de discussie {discussion}.", + "You deleted the event {event}.": "U heeft het evenement {event} verwijderd.", + "You deleted the folder {resource}.": "U verwijderde de folder {resource}.", + "You deleted the post {post}.": "U heeft bericht {post} verwijderd.", + "You deleted the resource {resource}.": "U verwijderde de voorziening {resource}.", + "You demoted the member {member} to an unknown role.": "U degradeerde {member} naar een onbekende rol.", + "You demoted {member} to moderator.": "U degradeerde {member} naar moderator.", + "You demoted {member} to simple member.": "U degradeerde {member} naar simpel lid.", + "You didn't create or join any event yet.": "U heeft nog geen evenement gemaakt of eraan deelgenomen.", + "You don't follow any instances yet.": "U volgt nog geen instances.", + "You don't have any upcoming events. Maybe try another filter?": "Je hebt geen aankomende evenementen. Misschien een andere filter proberen?", + "You excluded member {member}.": "U sloot lid {member} uit.", + "You have attended {count} events in the past.": "U hebt in het verleden geen evenementen bijgewoond.| U hebt in het verleden één evenement bijgewoond.| U hebt in het verleden {counts} evenementen bijgewoond.", + "You have been invited by {invitedBy} to the following group:": "U bent uitgenodigd door {invitedBy} voor deelname aan de volgende groep:", + "You have been removed from this group's members.": "Je bent uitgeschreven als lid van deze groep.", + "You have cancelled your participation": "U hebt uw deelname geannuleerd", + "You have one event in {days} days.": "U hebt geen evenementen in {days} dagen | U hebt één evenement in {days} dagen. | U hebt {count} evenementen in {days} dagen", + "You have one event today.": "U hebt vandaag geen evenementen | U hebt vandaag één evenement | U hebt vandaag {count} evenementen", + "You have one event tomorrow.": "U hebt morgen geen evenementen | U hebt morgen één evenement. | U hebt morgen {count} evenementen", + "You haven't interacted with other instances yet.": "Je hebt nog geen interactie gehad met andere instances.", + "You invited {member}.": "U nodigde {member} uit.", + "You joined the event {event}.": "Je bent lid geworden van het evenement {event}.", + "You may also:": "Je kunt ook:", + "You may clear all participation information for this device with the buttons below.": "U kunt alle deelname-informatie voor dit apparaat wissen met de onderstaande knoppen.", + "You may now close this page or {return_to_the_homepage}.": "Je kunt deze pagina nu sluiten of {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "U kunt dit venster nu sluiten, of {return_to_event}.", + "You may show some members as contacts.": "U kunt enkele leden als contacten weergeven.", + "You moved the folder {resource} into {new_path}.": "U verplaatste de folder {resource} naar {new_path}.", + "You moved the folder {resource} to the root folder.": "U verplaatste de folder {resource} naar de bron map.", + "You moved the resource {resource} into {new_path}.": "U verplaatste de voorziening {resource} naar {new_path}.", + "You moved the resource {resource} to the root folder.": "U verplaatste de voorziening {resource} naar de bron folder.", + "You need to enter a text": "U moet een tekst invoeren", + "You need to login.": "U moet zich aanmelden.", + "You posted a comment on the event {event}.": "U plaatste een reactie op het evenement {event}.", + "You promoted the member {member} to an unknown role.": "U bevorderde {member} tot een onbekende rol.", + "You promoted {member} to administrator.": "U bevorderde {member} tot administrator.", + "You promoted {member} to moderator.": "U bevorderde {member} tot moderator.", + "You rejected {member}'s membership request.": "Je hebt de lidmaatschapsaanvraag van {member} afgewezen.", + "You renamed the discussion from {old_discussion} to {discussion}.": "U hernoemde de discussie van {old_discussion} naar {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "U hernoemde de voorziening {old_resource_title} naar {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "U hernoemde de voorziening van {old_resource_title} naar {resource}.", + "You replied to a comment on the event {event}.": "U reageerde op een reactie op het evenement {event}.", + "You replied to the discussion {discussion}.": "U reageerde op de discussie {discussion}.", + "You requested to join the group.": "U verzocht lid te worden van de groep.", + "You updated the event {event}.": "U heeft {event} geupdate.", + "You updated the group {group}.": "U heeft de groep {group} bijgewerkt.", + "You updated the member {member}.": "U werkte lid {member} bij.", + "You updated the post {post}.": "U heeft het bericht {post} bijgewerkt.", + "You were demoted to an unknown role by {profile}.": "U werd gedegradeerd tot een onbekende rol door {profile}.", + "You were demoted to moderator by {profile}.": "U werd gedegradeerd tot moderator door {profile}.", + "You were demoted to simple member by {profile}.": "U werd gedegradeerd tot simpel lid door {member}.", + "You were promoted to administrator by {profile}.": "U werd gepromoveerd tot administrator door {profile}.", + "You were promoted to an unknown role by {profile}.": "U werd gepromoveerd tot een onbekende rol door {profile}.", + "You were promoted to moderator by {profile}.": "U bent gepromoveerd tot moderator door {profile}.", + "You will be able to add an avatar and set other options in your account settings.": "Bij uw account settings kunt u een avatar toevoegen en andere instellingen wijzigen.", + "You will be redirected to the original instance": "U wordt doorgestuurd naar de originele instance", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "U vindt hier alle evenementen die u heeft gemaakt of waaraan u deelneemt, evenals evenementen georganiseerd door groepen die u volgt of waarvan u lid bent.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Je ontvangt meldingen over de publieke activiteit van deze groep afhankelijk van %{notification_settings}.", + "You wish to participate to the following event": "U wilt deelnemen aan het volgende evenement", + "You'll be able to revoke access for this application in your account settings.": "Je kunt de toegang tot deze toepassing intrekken in je accountinstellingen.", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "U krijgt elke maandag een samenvatting van aankomende evenementen als u die heeft.", + "You'll need to change the URLs where there were previously entered.": "Vergeet niet de URL's te wijzigen op plekken waar u ze eerder heeft geplaatst.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Je moet de groeps-URL doorgeven zodat mensen toegang hebben tot het groepsprofiel. De groep zal niet vindbaar zijn in de zoekmachine van Mobilizon of in de reguliere zoekmachines.", + "You'll receive a confirmation email.": "U ontvangt een bevestigingsmail.", + "YouTube live": "YouTube live", + "YouTube replay": "Terugkijken op YouTube", + "Your account has been successfully deleted": "Uw account is succesvol verwijderd", + "Your account has been validated": "Uw account is gevalideerd", + "Your account is being validated": "Uw account wordt gevalideerd", + "Your account is nearly ready, {username}": "Uw account is bijna klaar, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Uw stad of regio en de straal worden alleen gebruikt om u evenementen in de buurt voor te stellen. De straal van het evenement houdt rekening met het administratieve centrum van het gebied.", + "Your current email is {email}. You use it to log in.": "Uw huidige e-mail is {email}. Dit gebruikt u om in te loggen.", + "Your email": "Uw e-mailadres", + "Your email address was automatically set based on your {provider} account.": "Uw e-mailadres is automatisch ingesteld op basis van uw {provider} account.", + "Your email has been changed": "Uw e-mail adres is gewijzigd", + "Your email is being changed": "Uw e-mail adres wordt gewijzigd", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Uw e-mail word alleen gebruikt om te bevestigen dat u een echt persoon bent en om eventuele updates te sturen met betrekking tot dit evenement. Ze zullen NIET worden doorgestuurd naar de organisator of andere instances.", + "Your federated identity": "Uw gefedereerde identiteit", + "Your membership is pending approval": "Uw lidmaatschap is in afwachting van goedkeuring", + "Your membership was approved by {profile}.": "Je lidmaatschap werd goedgekeurd door {profile}.", + "Your participation has been confirmed": "Uw deelname is bevestigd", + "Your participation has been rejected": "Uw deelname is afgewezen", + "Your participation has been requested": "Uw deelname is aangevraagd", + "Your participation request has been validated": "Uw deelname is bevestigd", + "Your participation request is being validated": "Uw deelname wordt gevalideerd", + "Your participation status has been changed": "Uw deelnamestatus is veranderd", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Uw deelnamestatus wordt alleen op dit apparaat opgeslagen en wordt één maand na afloop van het evenement verwijderd.", + "Your participation still has to be approved by the organisers.": "Uw deelname moet nog goedgekeurd worden door de organisator.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Uw deelname wordt gevalideerd zodra u op de bevestigingslink in de e-mail klikt en nadat de organisator uw deelname handmatig heeft gevalideerd.", + "Your participation will be validated once you click the confirmation link into the email.": "Uw deelname wordt gevalideerd zodra u op de bevestigingslink in de e-mail klikt.", + "Your position was not available.": "Uw locatie was niet beschikbaar.", + "Your profile will be shown as contact.": "Uw profiel zal worden weergegeven als contactpersoon.", + "Your timezone is currently set to {timezone}.": "Uw tijdzone is op dit moment ingesteld op {timezone}.", + "Your timezone was detected as {timezone}.": "Uw tijdzone is herkend als timezone}.", + "Your timezone {timezone} isn't supported.": "Uw tijdzone {timezone} wordt niet ondersteund.", + "Your upcoming events": "Uw aankomende evenementen", + "Zoom": "Zoom", + "Zoom in": "Inzoomen", + "Zoom out": "Uitzoomen", + "[This comment has been deleted by it's author]": "[Dit commentaar is verwijderd door de auteur]", + "[This comment has been deleted]": "[Deze reactie is verwijderd]", + "[deleted]": "[verwijderd]", + "a non-existent report": "Een niet bestaand rapport", + "access the corresponding account": "open het bijbehorende account", + "access to the group's private content as well": "ook toegang tot de privé-inhoud van de groep", + "and {number} groups": "En {number} groepen", + "any distance": "elke afstand", + "as {identity}": "als {identity}", + "contact uninformed": "Contactpersoon nog niet bevestigd", + "create a group": "Groep aanmaken", + "create an event": "Evenement aanmaken", + "default Mobilizon privacy policy": "Standaard Mobilizon privacy beleid", + "default Mobilizon terms": "Standaard Mobilizon voorwaarden", + "detail": "detail", + "e.g. 10 Rue Jangot": "bijv. Jangotstraat 10", + "e.g. Accessibility, Twitch, PeerTube": "bijv. toegankelijkheid, Twitch, PeerTube, enz.", + "e.g. Nantes, Berlin, Cork, …": "Stad, adres, locatie, enz.", + "enable the feature": "deze functie in te schakelen", + "explore the events": "Verken evenementen", + "explore the groups": "Groepen verkennen", + "find, create and organise events": "evenementen vinden, creëren en organiseren", + "full rules": "Volledige regels", + "group's upcoming public events": "komende openbare evenementen van de groep", + "https://mensuel.framapad.org/p/some-secret-token": "https://pad.riseup.net/p/some-secret-token", + "iCal Feed": "iCalfeed", + "instance rules": "Instance regels", + "mobilizon-instance.tld": "mobilizon-instance.tld", + "more than 1360 contributors": "Meer dan 1360 contributeurs", + "multitude of interconnected Mobilizon websites": "veelheid aan onderling verbonden Mobilizon-websites", + "new{'@'}email.com": "nieuw{'@'}email.com", + "profile@instance": "profiel@instance", + "profile{'@'}instance": "profiel{'@'}instance", + "report #{report_number}": "Rapport #{report_number}", + "return to the event's page": "terug naar de pagina van het evenement", + "return to the homepage": "terugkeren naar de startpagina", + "terms of service": "Voorwaarden van de dienstverlening", + "tool designed to serve you": "tool ontworpen om u van dienst te zijn", + "translation": "vertaling", + "with another identity…": "met een andere identiteit…", + "your notification settings": "jouw meldingsinstellingen", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved} / {total} plaatsen", + "{available}/{capacity} available places": "Geen plaatsen meer beschikbaar|nog {available}/{capacity} plaatsen beschikbaar", + "{count} events": "{count} evenementen", + "{count} km": "{count} km", + "{count} members": "Geen leden|Eén lid|{count} leden", + "{count} members or followers": "Geen leden of volgers|Één lid of volger|{count} leden of volgers", + "{count} participants": "Nog geen deelnemers | Eén deelnemer | {count} deelnemers", + "{count} requests waiting": "{count} aanvragen in afwachting", + "{eventsCount} activities found": "Geen activiteiten gevonden|Eén activiteit gevonden|{eventsCount} activiteiten gevonden", + "{eventsCount} events found": "Geen evenementen gevonden|Één evenement gevonden|{eventsCount} evenementen gevonden", + "{folder} - Resources": "{folder} - Bronnen", + "{groupsCount} groups found": "Geen groepen gevonden|Één groep gevonden|{groupsCount} groepen gevonden", + "{group} activity timeline": "{group} activiteiten tijdslijn", + "{group} events": "Evenementen van {group}", + "{group} posts": "Berichten {group}", + "{group}'s events": "{group}'s evenementen", + "{group}'s todolists": "To-do-lijsten {group}", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} is een instance van de {mobilizon} software.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} is een instance van {mobilizon_link}, gratis software die is ontwikkeld met de community.", + "{member} accepted the invitation to join the group.": "{member} accepteerde de uitnodiging om lid te worden van de groep.", + "{member} joined the group.": "{member} werd lid van de groep.", + "{member} rejected the invitation to join the group.": "{member} wees de uitnodiging om lid te worden van de groep af.", + "{member} requested to join the group.": "{member} verzocht lid te worden van de groep.", + "{member} was invited by {profile}.": "{member} werd uitgenodigd door {profile}.", + "{moderator} added a note on {report}": "{moderator} voegde een notitie to bij {report}", + "{moderator} closed {report}": "{moderator} sloot {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} verwijderde een evenement genaamd \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} heeft een reactie verwijderd van {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} heeft een reactie verwijderd van {author} onder het evenement {event}", + "{moderator} has deleted user {user}": "{moderator} heeft gebruiker {user} verwijderd", + "{moderator} has done an unknown action": "{moderator} heeft een onbekende actie gedaan", + "{moderator} has unsuspended group {profile}": "{moderator} heeft het opschorten van de groep {profile} opgeheven", + "{moderator} has unsuspended profile {profile}": "{moderator} heeft profiel {profile} onderbroken", + "{moderator} marked {report} as resolved": "{moderator} markeerde {report} als opgelost", + "{moderator} reopened {report}": "{moderator} heropende {report}", + "{moderator} suspended group {profile}": "{moderator} heeft de groep {profile} opgeschort", + "{moderator} suspended profile {profile}": "{moderator} onderbrak profiel {profile}", + "{nb} km": "{nb} km", + "{numberOfCategories} selected": "{numberOfCategories} geselecteerd", + "{numberOfLanguages} selected": "{numberOfLanguages} geselecteerd", + "{number} kilometers": "{number} kilometer", + "{number} members": "{number} leden", + "{number} memberships": "{number} lid/leden", + "{number} organized events": "Geen georganiseerde evenementen|Eén georganiseerd evenement|{number} georganiseerde evenementen", + "{number} participations": "Geen deelnemers|Eén deelnemer|{number} deelnemers", + "{number} posts": "Geen berichten|Eén bericht|{number} berichten", + "{number} seats left": "{number} plaatsen over", + "{old_group_name} was renamed to {group}.": "{old_group_name} werd hernoemd naar {group}.", + "{profile} (by default)": "{profile} (door standaard)", + "{profile} added the member {member}.": "{profile} voegde lid {member} toe.", + "{profile} approved {member}'s membership.": "{profile} heeft het lidmaatschap van {member} goedgekeurd.", + "{profile} archived the discussion {discussion}.": "{profile} archiveerde de discussie {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} maakte de discussie {discussion} aan.", + "{profile} created the folder {resource}.": "{profile} maakte de folder {resource}.", + "{profile} created the group {group}.": "{profile} maakte de groep {group} aan.", + "{profile} created the resource {resource}.": "{profile} maakte de voorziening {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} verwijderde de discussie {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} verwijderde de folder {resource}.", + "{profile} deleted the resource {resource}.": "{profile} verwijderde de voorziening {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} degradeerde {member} tot een onbekende rol.", + "{profile} demoted {member} to moderator.": "{profile} degradeerde {member} tot moderator.", + "{profile} demoted {member} to simple member.": "{profile} degradeerde {member} tot simpel lid.", + "{profile} excluded member {member}.": "{profile} sloot lid {member} uit.", + "{profile} joined the the event {event}.": "{profiel} is lid geworden van het evenement {event}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} verplaatste de folder {resource} naar {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} verplaatste de folder {resource} naar de bron map.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} verplaatste de voorziening {resource} naar {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} verplaatste de voorziening {resource} naar de bron folder.", + "{profile} posted a comment on the event {event}.": "{profile} plaatste een reactie op het evenement {event}.", + "{profile} promoted {member} to administrator.": "{profile} promoveerde {member} tot administrator.", + "{profile} promoted {member} to an unknown role.": "{profile} promoveerde {member} naar een onbekende rol.", + "{profile} promoted {member} to moderator.": "{profile} promoveerde {member} tot moderator.", + "{profile} quit the group.": "{profile} verliet de groep.", + "{profile} rejected {member}'s membership request.": "{profile} heeft de lidmaatschapsaanvraag van {member} afgewezen.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} hernoemde de discussie van {old_discussion} naar {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} hernoemde de folder {old_resource_title} naar {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} hernoemde de voorziening van {old_resource_title} naar {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} reageerde op een reactie op het evenement {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} reageerde op de discussie {discussion}.", + "{profile} updated the group {group}.": "{profile} werkte de groep {group} bij.", + "{profile} updated the member {member}.": "{profile} werkte het lid {profile} bij.", + "{resultsCount} results found": "Geen resultaten gevonden|Éen resultaat gevonden|{resultsCount} resultaten gevonden", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} todo's", + "{username} was invited to {group}": "{username} is uitgenodigd voor {group}", + "{user}'s follow request was accepted": "{user}'s volgverzoek is geaccepteerd", + "{user}'s follow request was rejected": "{user}'s volgverzoek is afgewezen", + "© The OpenStreetMap Contributors": "© De OpenStreetMap-bijdragers" +}); diff --git a/res/locale/nn.js b/res/locale/nn.js new file mode 100644 index 0000000..c5b5ce0 --- /dev/null +++ b/res/locale/nn.js @@ -0,0 +1,1443 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Maskert)", + "(this folder)": "(denne mappa)", + "(this link)": "(denne lenka)", + "+ Add a resource": "+ Legg til ein ressurs", + "+ Create a post": "+ Skriv eit innlegg", + "+ Create an event": "+ Lag ei hending", + "+ Start a discussion": "+ Start eit ordskifte", + "0 Bytes": "0 byte", + "{contact} will be displayed as contact.": "{contact} vil bli vist som kontakt.|{contact} vil bli viste som kontaktar.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "Fylgjeførespurnaden frå @{username} er godkjend", + "@{username}'s follow request was rejected": "Fyljgeførespurnaden frå @{username} vart avslegen", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Ein infokapsel er ei lita fil som held på informasjon som vert sendt til datamaskina di når du besøkjer ei nettside. Når du kjem attende til sida, lèt infokapselen sida kjenna att nettlesaren din. Infokapslar kan ta vare på preferansane til brukaren og annan informasjon. Du kan setja opp nettlesaren din til å avvisa alle infokapslane, men det kan henda dette får nokre funksjonar eller tenester på nettsida til å berre verka delvis. Lokallagring verkar på same måte, berre at ein får lagra meir data.", + "A discussion has been created or updated": "Nokon lagar eller oppdaterer ein diskusjon", + "A federated software": "Spreidd programvare", + "A fediverse account URL to follow for event updates": "Adressa til ein allheimkonto for å fylgja hendingsoppdateringar", + "A few lines about your group": "Eit par liner om gruppa di", + "A link to a page presenting the event schedule": "Ei lenke til ei side med tidsplan for hendinga", + "A link to a page presenting the price options": "Ei lenke til ei side med prisar", + "A member has been updated": "Ein medlem blir oppdatert", + "A member requested to join one of my groups": "Ein medlem spør om å bli med i ei av gruppene mine", + "A new version is available.": "Det har kome ei ny utgåve.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Ein plass der du forklarar reglar, skikk og retningsliner på nettstaden din. Du kan bruka HTML.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Ein plass der du forklarer kven du er og kva som er spesielt for nettstaden din. Du kan bruka HTML.", + "A place to publish something to the whole world, your community or just your group members.": "Ein stad for å skriva noko til heile verda, samfunnet ditt eller berre dei i gruppa di.", + "A place to store links to documents or resources of any type.": "Ein stad å lagra lenker til dokument eller ressursar av alle slag.", + "A post has been published": "Nokon legg ut eit innlegg", + "A post has been updated": "Nokon oppdaterer eit innlegg", + "A practical tool": "Eit praktisk verkty", + "A resource has been created or updated": "Nokon lastar opp eller oppdaterer ein ressurs", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Eit kort slagord for heimesida til nettstaden din. Standarden er \"Samla folk⋅ Organiser ⋅ Mobiliser\"", + "A twitter account handle to follow for event updates": "Ein twitterkonto for å fylgja hendingsoppdateringar", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Eit brukarvenleg, frigjerande og etisk verktøy for å samla, organisera og mobilisera.", + "A validation email was sent to {email}": "Ein stadfestingsepost er sendt til {email}", + "API": "API", + "Abandon editing": "Avbryt redigeringa", + "About": "Om", + "About Mobilizon": "Om Mobilizon", + "About anonymous participation": "Om anonym deltaking", + "About instance": "Om nettstaden", + "About this event": "Om dette arrangementet", + "About this instance": "Om denne nettstaden", + "About {instance}": "Om {instance}", + "Accept": "Godta", + "Accept follow": "Godkjenn fylgjaren", + "Accepted": "Akseptert", + "Accessibility": "Tilgjenge", + "Accessible only by link": "Berre tilgjengeleg via lenke", + "Accessible only to members": "Berre tilgjengeleg for medlemer", + "Accessible through link": "Tilgjengeleg med ei lenke", + "Account": "Konto", + "Account settings": "Kontoinnstillingar", + "Actions": "Handlingar", + "Activate browser push notifications": "Skru på straksvarsel i nettlesaren", + "Activate notifications": "Skru på varsel", + "Activated": "Skrudd på", + "Active": "Aktiv", + "Activity": "Aktivitet", + "Actor": "Aktør", + "Adapt to system theme": "Tilpass til systembunaden", + "Add": "Legg til", + "Add / Remove…": "Legg til / fjern…", + "Add a contact": "Legg til ein kontakt", + "Add a new post": "Skriv eit nytt innlegg", + "Add a note": "Legg til eit notat", + "Add a todo": "Legg til eit gjeremål", + "Add an address": "Legg til ei adresse", + "Add an instance": "Legg til ein instans", + "Add link": "Lag lenke", + "Add new…": "Legg til ny…", + "Add picture": "Legg til bilete", + "Add some tags": "Legg til nokre knaggar", + "Add to my calendar": "Legg til i kalenderen min", + "Additional comments": "Fleire kommentarar", + "Admin": "Administrator", + "Admin dashboard": "Styringspanel", + "Admin settings": "Styrarinnstillingar", + "Admin settings successfully saved.": "Administrasjonsinnstillingane er lagra.", + "Administration": "Administrering", + "Administrator": "Styrar", + "All": "Alle", + "All activities": "Alle aktivitetar", + "All good, let's continue!": "Fint, då kan me halda fram!", + "All the places have already been taken": "Alle plassane er opptekne", + "Allow all comments from users with accounts": "Skru på alle kommentarar frå innlogga brukarar", + "Allow registrations": "Tillat nye brukarar", + "An URL to an external ticketing platform": "Nettadressa til ein ekstern plattform for billettsal", + "An error has occured while refreshing the page.": "Det var ein feil då me oppdaterte sida.", + "An error has occured. Sorry about that. You may try to reload the page.": "Her vart det feil. Me orsakar. Kanskje du kan prøva å lasta sida på nytt.", + "An ethical alternative": "Eit etisk alternativ", + "An event I'm going to has been updated": "Hendinga eg skal på er oppdatert", + "An event I'm going to has posted an announcement": "Hendinga eg skal på har kunngjort noko", + "An event I'm organizing has a new comment": "Hendinga eg skipar til har ein ny kommentar", + "An event I'm organizing has a new participation": "Hendinga eg skipar til har ei ny deltaking", + "An event I'm organizing has a new pending participation": "Hendinga eg skipar til har ei ventande deltaking", + "An event from one of my groups has been published": "Det blir lagt ut ei hending frå ei av gruppene mine", + "An event from one of my groups has been updated or deleted": "Ei hending frå ei av gruppene mine blir oppdatert eller sletta", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Ein Mobilizon-nettstad har installert ein versjon av Mobilizon på ein tenar. Alle kan laga ein nettstad ved å bruka {mobilizon_software} eller andre spreidde program, òg kjent som \"allheimen\". Denne nettstaden heiter {instance_name}. Mobilizon er eit spreidd nettverk med mange nettstader (akkurat som eposttenarar). Brukarar som er medlemer av ulike nettstader kan kommunisera med kvarandre sjølv om dei ikkje registrerte seg på same nettstad.", + "And {number} comments": "Og skrive {number} kommentarar", + "Announcements and mentions notifications are always sent straight away.": "Me sender alltid kunngjeringar og varslingar om at du er nemnd med ein gong.", + "Anonymous participant": "Anonym deltakar", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Anonyme deltakarar må stadfesta at dei blir med via epost.", + "Anonymous participations": "Anonyme deltakarar", + "Any category": "Alle kategoriar", + "Any day": "Uansett dag", + "Any distance": "Alle avstandar", + "Any type": "Alle slag", + "Anyone can join freely": "Alle kan fritt bli med", + "Anyone can request being a member, but an administrator needs to approve the membership.": "Alle kan be om å bli medlem, men ein styrar må godkjenna førespurnaden.", + "Anyone wanting to be a member from your group will be able to from your group page.": "Alle gruppemedlemer som vil bli medlem, kan gjera det frå gruppesida di.", + "Application": "Program", + "Apply filters": "Bruk filter", + "Approve member": "Godkjenn medlem", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Er du sikker på at du vil sletta brukarkontoen din? Du mistar alt du har gjort her. Brukarnamn, innstillingar, hendingar du har laga, meldingar og deltakingar blir borte for alltid.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Er du sikker på at du vil sletta denne gruppa for alltid? Alle medlemer - inkludert dei på andre nettstader - vil bli varsla og fjerna frå gruppa, og alle gruppedata (hendingar, innlegg, ordskifte, gjeremål…) vil bli sletta for alltid.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Er du sikker på at du vil sletta denne kommentaren? Du kan ikkje angra dette.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Er du sikker på at du vil sletta denne hendinga? Du kan ikkje angra dette. Kanskje du kan diskutera hendinga med personen som oppretta ho, eller redigera hendinga i staden.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Er du sikker på at du vil sperra denne gruppa? Alle medlemer - inkludert dei på andre nettstader - vil bli varsla og fjerna frå gruppa, og alle gruppedata (hendingar, innlegg, ordskifte, gjeremål…) vil bli sletta for alltid.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Er du sikker på at du vil sperra denne gruppa? Denne gruppa kjem frå nettstaden {instance}, så dette vil berre fjerna lokale medlemer og sletta lokale data, samt avslå alle framtidige data.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Er du sikker på at du vil avbryta denne hendinga? Du vil mista alle endringane.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Er du sikker på at du vil slutta å redigera denne hendinga? Du mistar alle endringar.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Er du sikker på at du vil melda deg av hendinga \"{title}\"?", + "Are you sure you want to delete this entire discussion?": "Er du sikker på at du vil sletta heile ordskiftet?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Er du sikker på at du vil sletta denne hendinga? Du kan ikkje angra dette.", + "Are you sure you want to delete this post? This action cannot be reverted.": "Er du sikker på at du vil sletta innlegget? Du kan ikkje angra etterpå.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Er du sikker på at du vil forlata gruppa {groupName}? Du kjem til å mista tilgangen til det private innhaldet i gruppa. Du kan ikkje angra etterpå.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Tilskiparen har valt å godkjenna deltakarar manuelt. Difor vil du berre få éi stadfesting på epost når deltakinga di er godkjend.", + "Ask your instance admin to {enable_feature}.": "Be styraren på nettstaden om å skru på {enable_feature}.", + "Assigned to": "Tildelt", + "Atom feed for events and posts": "Atom-straum for hendingar og innlegg", + "Attending": "Deltek", + "Avatar": "Profilbilete", + "Back to group list": "Tilbake til gruppelista", + "Back to homepage": "Tilbake til heimesida", + "Back to previous page": "Tilbake til førre sida", + "Back to profile list": "Tilbake til profillista", + "Back to top": "Til toppen", + "Back to user list": "Tilbake til brukarlista", + "Banner": "Banner", + "Become part of the community and start organizing events": "Bli med i gjengen og organiser nye hendingar", + "Before you can login, you need to click on the link inside it to validate your account.": "Før du kan logga inn, må du klikka på lenka der for å stadfesta brukarkontoen din.", + "Begins on": "Byrjar", + "Best match": "Beste treff", + "Big Blue Button": "Big Blue Button", + "Bold": "Halvfeit", + "Booking": "Tinging", + "Breadcrumbs": "Navigeringsmerke", + "Browser notifications": "Nettlesarvarsel", + "Bullet list": "Punktliste", + "By bike": "Med sykkel", + "By car": "Med bil", + "By others": "Av andre", + "By transit": "Med offentleg transport", + "By {group}": "Av {group}", + "By {username}": "Av {username}", + "Can be an email or a link, or just plain text.": "Kan vera ei epostadresse eller ei lenke, eller rein tekst.", + "Cancel": "Avbryt", + "Cancel anonymous participation": "Avbryt anonym deltaking", + "Cancel creation": "Ikkje opprett dette", + "Cancel discussion title edition": "Ikkje skriv inn ny tittel på diskusjonen", + "Cancel edition": "Avbryt redigeringa", + "Cancel follow request": "Avbryt fylging", + "Cancel membership request": "Ikkje bli medlem likevel", + "Cancel my participation request…": "Avbryt ynsket mitt om å delta…", + "Cancel my participation…": "Ikkje delta…", + "Cancelled": "Avbrote", + "Cancelled: Won't happen": "Avbrote: Kjem ikkje til å skje", + "Categories": "Kategoriar", + "Category": "Kategori", + "Category illustrations credits": "Kreditering for kategoriillustrasjonane", + "Category list": "Kategoriliste", + "Change": "Endre", + "Change email": "Endre epost", + "Change my email": "Byt epostadresse", + "Change my identity…": "Byt identitet…", + "Change my password": "Byt passord", + "Change role": "Endre rolle", + "Change the filters.": "Endre filtra.", + "Change timezone": "Endra tidssone", + "Change user email": "Endre eposten til brukaren", + "Change user role": "Endre brukarrolla", + "Check your inbox (and your junk mail folder).": "Sjekk innboksen din (og søppelmappa).", + "Choose the source of the instance's Privacy Policy": "Vel kvar personvernsida for denne nettstaden er", + "Choose the source of the instance's Terms": "Vel kvar vilkåra for denne nettstaden er", + "City or region": "By eller område", + "Clear": "Tøm", + "Clear address field": "Tøm adressefeltet", + "Clear date filter field": "Tøm datofilteret", + "Clear participation data for all events": "Slett deltakingsdata for alle hendingar", + "Clear participation data for this event": "Slett deltakingsdata for denne hendinga", + "Clear timezone field": "Tøm tidssonefeltet", + "Click for more information": "Klikk for meir informasjon", + "Click to upload": "Klikk for å lasta opp", + "Close": "Steng", + "Close comments for all (except for admins)": "Steng for kommentarar frå alle (unnateke administratorar)", + "Close map": "Lukk kartet", + "Closed": "Stengt", + "Comment body": "Kommentarbrødtekst", + "Comment deleted": "Kommentaren er sletta", + "Comment from {'@'}{username} reported": "Kommentaren frå {'@'}{username} er innrapportert", + "Comment text can't be empty": "Kommentaren kan ikkje vera tom", + "Comments": "Kommentarar", + "Comments are closed for everybody else.": "Ingen andre har lov å kommentera.", + "Confirm": "Stadfest", + "Confirm my participation": "Stadfest at eg deltek", + "Confirm my particpation": "Stadfest at eg deltek", + "Confirm participation": "Stadfest at du deltek", + "Confirm user": "Stadfest brukar", + "Confirmed": "Stadfesta", + "Confirmed at": "Stadfesta", + "Confirmed: Will happen": "Stadfesta: Kjem til å skje", + "Congratulations, your account is now created!": "Gratulerer, kontoen din er ferdig!", + "Contact": "Kontakt", + "Continue editing": "Rediger vidare", + "Cookies and Local storage": "Infokapslar og lokal lagring", + "Copy URL to clipboard": "Kopier adressa til utklyppstavla", + "Copy details to clipboard": "Kopier detaljane til utklyppstavla", + "Country": "Land", + "Create": "Lag", + "Create a calc": "Lag eit rekneark", + "Create a discussion": "Lag eit ordskifte", + "Create a folder": "Lag ei mappe", + "Create a new event": "Lag ei ny hending", + "Create a new group": "Lag ei ny gruppe", + "Create a new identity": "Lag ein ny identitet", + "Create a new list": "Lag ei ny liste", + "Create a new profile": "Lag ein ny profil", + "Create a pad": "Lag ei kladdebok", + "Create a videoconference": "Lag ein videokonferanse", + "Create an account": "Lag ein konto", + "Create discussion": "Lag eit ordskifte", + "Create event": "Lag hending", + "Create group": "Lag ei gruppe", + "Create identity": "Lag ein identitet", + "Create my event": "Lag hendinga mi", + "Create my group": "Lag gruppa mi", + "Create my profile": "Lag profilen min", + "Create new links": "Lag nye lenker", + "Create resource": "Lag ein ressurs", + "Create the discussion": "Lag ordskiftet", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Lag gjeremålslister for alle oppgåvene du må gjera, tildel dei og set sluttfristar.", + "Create token": "Lag teikn", + "Created by {name}": "Laga av {name}", + "Created by {username}": "Laga av {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "Identitenen din er endra til {identityName} for å handtera denne hendinga.", + "Current page": "Noverande side", + "Custom": "Tilpassa", + "Custom URL": "Tilpassa adresse", + "Custom text": "Tilpassa tekst", + "Daily email summary": "Epostsamandrag kvar dag", + "Dark": "Mørk", + "Dashboard": "Kontrollpanel", + "Date": "Dato", + "Date and time": "Dato og klokkeslett", + "Date and time settings": "Dato- og tidsoppsett", + "Date parameters": "Datoinnstillingar", + "Deactivate notifications": "Skru av varsel", + "Decline": "Avslå", + "Decrease": "Minka", + "Default": "Standard", + "Default Mobilizon privacy policy": "Standard personvernvilkår for Mobilizon", + "Default Mobilizon terms": "Standardvilkår for Mobilizon", + "Delete": "Slett", + "Delete account": "Slett kontoen", + "Delete conversation": "Slett samtala", + "Delete discussion": "Slett ordskiftet", + "Delete event": "Slett hendinga", + "Delete everything": "Slett alt", + "Delete group": "Slett gruppe", + "Delete my account": "Slett brukarkontoen min", + "Delete post": "Slett innlegg", + "Delete this discussion": "Slett dette ordskiftet", + "Delete this identity": "Slett denne identiteten", + "Delete your identity": "Slett identiteten din", + "Delete {eventTitle}": "Slett {eventTitle}", + "Delete {preferredUsername}": "Slett {preferredUsername}", + "Deleting comment": "Slettar kommentaren", + "Deleting event": "Slettar hendinga", + "Deleting my account will delete all of my identities.": "Viss eg slettar kontoen min, blir alle identitetane mine sletta.", + "Deleting your Mobilizon account": "Slett Mobilizon-kontoen din", + "Demote": "Nedgrader", + "Describe your event": "Skriv noko om hendinga di", + "Description": "Skildring", + "Details": "Detaljar", + "Didn't receive the instructions?": "Fekk du ikkje framgangsmåten?", + "Disabled": "Skrudd av", + "Discussions": "Ordskifte", + "Discussions list": "Diskusjonsliste", + "Display name": "Synleg namn", + "Display participation price": "Vis ein billettpris", + "Displayed nickname": "Synleg kallenamn", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Står på heimesida og meta-skildring. Skriv kva Mobilizon er, og kva som gjer denne nettstaden spesiell, i eitt avsnitt.", + "Distance": "Avstand", + "Do not receive any mail": "Ikkje få nokon epostar", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Vil du verkeleg stenga ute brukaren? Alle brukarprofilane vil bli sletta.", + "Do you wish to {create_event} or {explore_events}?": "Vil du {create_event} eller {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Vil du {create_group} eller {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "Må du stadfesta hendinga seinare, eller er ho avlyst?", + "Domain": "Domene", + "Draft": "Kladd", + "Drafts": "Kladdar", + "Due on": "Forfell", + "Duplicate": "Kopier", + "Edit": "Rediger", + "Edit post": "Rediger innlegget", + "Edit profile {profile}": "Rediger profilen {profile}", + "Edit user email": "Rediger epostadressa til brukaren", + "Edited {ago}": "Redigert {ago}", + "Edited {relative_time} ago": "Endra for {relative_time} sidan", + "Eg: Stockholm, Dance, Chess…": "Td. Stockholm, dans, sjakk…", + "Either on the {instance} instance or on another instance.": "Anten på {instance}-nettstaden eller ein annan nettstad.", + "Either the account is already validated, either the validation token is incorrect.": "Anten er kontoen allereie stadfesta, eller så er stadfestingsteiknet feil.", + "Either the email has already been changed, either the validation token is incorrect.": "Anten er eposten allereie endra, eller så er stadfestingsteiknet feil.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Anten er førespurnaden om deltaking allereie stadfesta, eller så er stadfestingsteiknet feil.", + "Element title": "Tittel på elementet", + "Element value": "Verdi til elementet", + "Email": "Epost", + "Email address": "Epostadresse", + "Email validate": "Stadfesting av eposten", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "Det er vanlegvis ikkje store bokstavar i epostadresser, sjå etter om du har skrive feil.", + "Enabled": "På", + "Ends on…": "Sluttar…", + "Enter the link URL": "Skriv inn lenkeadressa", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Skriv inn epostadressa di under, så sender me deg framgangsmåten for å endra passordet.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Skriv inn dine eigne personvernvilkår. HTML er lov. {mobilizon_privacy_policy} er oppgjevne som mal.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Skriv inn dine eigne vilkår. HTML er lov. {mobilizon_terms} er oppgjevne som mal.", + "Error": "Feil", + "Error details copied!": "Feildetaljane er kopierte!", + "Error message": "Feilmelding", + "Error stacktrace": "Stabelsporing frå feilen", + "Error while changing email": "Greidde ikkje endra epostadressa", + "Error while loading the preview": "Greidde ikkje lasta førehandsvisinga", + "Error while login with {provider}. Retry or login another way.": "Greidde ikkje logga inn med {provider}. Prøv ein gong til, eller prøv med noko anna.", + "Error while login with {provider}. This login provider doesn't exist.": "Greidde ikkje logga inn med {provider}. Denne innloggingstilbydaren finst ikkje.", + "Error while reporting group {groupTitle}": "Greidde ikkje rapportera gruppa {groupTitle}", + "Error while subscribing to push notifications": "Greidde ikkje abonnera på straksvarsel", + "Error while suspending group": "Greidde ikkje stengja gruppa", + "Error while updating participation status inside this browser": "Greidde ikkje oppdatera deltakingsstatusen i denne nettlesaren", + "Error while validating account": "Greidde ikkje stadfesta kontoen", + "Error while validating participation request": "Greidde ikkje stadfesta at du deltek", + "Etherpad notes": "Etherpad-notat", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Mobilizon er eit etisk betre alternativ til Facebook-hendingar, -grupper og -sider, og er laga for å tena deg. Punktum.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Mobilizon er eit betre alternativ til Facebook-hendingar, og er {tool_designed_to_serve_you}. Punktum.", + "Event": "Hending", + "Event URL": "Nettadresse til hendinga", + "Event already passed": "Hendinga er over", + "Event cancelled": "Hendinga er avlyst", + "Event creation": "Opprett ei hending", + "Event date": "Dato for hendinga", + "Event description body": "Brødtekst for hendingsskildringa", + "Event edition": "Rediger ei hending", + "Event list": "Liste over hendingar", + "Event metadata": "Metadata om hendinga", + "Event page settings": "Innstillingar for hendingssida", + "Event status": "Status for hendinga", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Tiddssona for hendinga blir sett til tidssona til adressa for hendinga, viss ho står. Elles blir tidssona det du har stilt ho inn til.", + "Event to be confirmed": "Hendinga skal stadfestast", + "Event {eventTitle} deleted": "Hendinga {eventTitle} er sletta", + "Event {eventTitle} reported": "Hendinga {eventTitle} er rapportert", + "Events": "Hendingar", + "Events close to you": "Hendingar nær deg", + "Events nearby": "Hendingar i nærleiken", + "Events nearby {position}": "Hendingar nær {position}", + "Events tagged with {tag}": "Hendingar merka med {tag}", + "Everything": "Alt", + "Ex: mobilizon.fr": "Td. mobilizon.fr", + "Ex: someone@mobilizon.org": "Td. nokon@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "Døme: nokon{'@'}mobilizon.org", + "Explore": "Utforsk", + "Explore events": "Utforsk hendingar", + "Explore!": "Oppdag!", + "Export": "Eksporter", + "Failed to get location.": "Greidde ikkje finna posisjonen din.", + "Failed to save admin settings": "Greidde ikkje lagra admin-innstillingane", + "Featured events": "Framheva hendingar", + "Federated Group Name": "Spreidd gruppenamn", + "Federation": "Spreiing", + "Fediverse account": "Allheimkonto", + "Fetch more": "Få meir", + "Filter": "Filter", + "Filter by name": "Søk etter namn", + "Filter by profile or group name": "Søk etter profil- eller gruppenamn", + "Find an address": "Finn ei adresse", + "Find an instance": "Finn ein nettstad", + "Find another instance": "Finn ein annan nettstad", + "Find or add an element": "Finn eller legg til eit element", + "First steps": "Dei fyrste stega", + "Follow": "Fylg", + "Follow a new instance": "Fylg ein ny nettstad", + "Follow instance": "Fylg nettstaden", + "Follow request pending approval": "Ein fylgjeførespurnad ventar på godkjenning", + "Follow requests will be approved by a group moderator": "Ein gruppestyrar vil godkjenna førespurnader om å fylgja", + "Follow status": "Fylgjestatus", + "Followed": "Fylgjer", + "Followed, pending response": "Fylgjer, ventar på svar", + "Follower": "Fylgjar", + "Followers": "Fylgjarar", + "Followers will receive new public events and posts.": "Fylgjarar får nye hendingar og innlegg.", + "Following": "Fylgjarar", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Viss du fylgjer gruppa, vil du få informasjon om {group_upcoming_public_events}, medan å bli med i gruppa tyder at du får {access_to_group_private_content_as_well}, inkludert gruppediskusjonar, grupperessursar og innlegg som berre er for medlemer.", + "Followings": "Fylgjer", + "Follows us": "Fylgjer oss", + "Follows us, pending approval": "Fylgjer oss, ventar på svar", + "For instance: London": "Til dømes: London", + "For instance: London, Taekwondo, Architecture…": "Til dømes: London, taekwondo, arkitektur…", + "Forgot your password ?": "Gløymt passordet?", + "Forgot your password?": "Har du gløymt passordet ditt?", + "Framadate poll": "Framadate-meiningsmåling", + "From my groups": "Frå gruppene mine", + "From the {startDate} at {startTime} to the {endDate}": "Frå {startDate} kl. {startTime} til {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Frå {startDate} kl. {startTime} til {endDate} kl. {endTime}", + "From the {startDate} to the {endDate}": "Frå {startDate} til {endDate}", + "From yourself": "Frå deg sjølv", + "Fully accessible with a wheelchair": "Fullt tilgjenge for rullestol", + "Gather ⋅ Organize ⋅ Mobilize": "Kom saman ⋅ Organiser ⋅ Mobiliser", + "General": "Allment", + "General information": "Allmenne opplysingar", + "General settings": "Allmenne innstillingar", + "Geolocate me": "Sjå kvar eg er", + "Geolocation was not determined in time.": "Greidde ikkje finna posisjonen din i tide.", + "Get informed of the upcoming public events": "Få greie på når det skjer noko", + "Getting location": "Hentar plass", + "Getting there": "Kvar skjer det", + "Glossary": "Ordliste", + "Go": "Gå", + "Go to the event page": "Gå til hendingssida", + "Go!": "Gå!", + "Google Meet": "Google Meet", + "Group": "Gruppe", + "Group Followers": "Gruppefylgjarar", + "Group Members": "Gruppemedlemer", + "Group URL": "Nettadresse til gruppa", + "Group activity": "Gruppeaktivitet", + "Group address": "Gruppeadresse", + "Group description body": "Brødtekst for gruppeskildringa", + "Group display name": "Visingsnamn for gruppa", + "Group members": "Gruppemedlemer", + "Group name": "Gruppenamn", + "Group profiles": "Gruppeprofilar", + "Group settings": "Gruppeinnstillingar", + "Group settings saved": "Gruppeinnstillingane er lagra", + "Group short description": "Kort skildring av gruppa", + "Group visibility": "Kvar gruppa er synleg", + "Group {displayName} created": "Gruppa {displayName} er oppretta", + "Group {groupTitle} reported": "Gruppa {groupTitle} er rapportert", + "Groups": "Grupper", + "Groups are not enabled on this instance.": "Denne nettstaden bruker ikkje grupper.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Grupper er stader der du koordinerer og førebur deg for å skipa til hendingar og handtera brukarsamfunnet ditt.", + "Heading Level 1": "Overskrift 1", + "Heading Level 2": "Overskrift 2", + "Heading Level 3": "Overskrift 3", + "Headline picture": "Hovudbilete", + "Hide filters": "Gøym filter", + "Hide replies": "Gøym svar", + "Home": "Heim", + "Home to {number} users": "Ein heim for {number} brukarar", + "Homepage": "Heimeside", + "Hourly email summary": "Epostsamandrag kvar time", + "I agree to the {instanceRules} and {termsOfService}": "Eg godtek {instanceRules} og {termsOfService}", + "I create an identity": "Eg lagar ein identitet", + "I don't have a Mobilizon account": "Eg har ingen Mobilizon-konto", + "I have a Mobilizon account": "Eg har ein Mobilizon-konto", + "I have an account on another Mobilizon instance.": "Eg har ein konto på ein annan Mobilizon-nettstad.", + "I have an account on {instance}.": "Eg har ein brukarkonto på {instance}.", + "I participate": "Eg deltek", + "I want to allow people to participate without an account.": "Eg vil at folk skal kunna delta utan å ha ein brukarkonto.", + "I want to approve every participation request": "Eg vil godkjenna alle førespurnader om å delta", + "I've been mentionned in a comment under an event": "Nokon har nemnt meg i ein kommentar til ei hending", + "I've been mentionned in a group discussion": "Nokon har nemnt meg i ein gruppediskusjon", + "I've clicked on X, then on Y": "Eg klkka på X, og så på Y", + "ICS feed for events": "ICS-straum for hendingar", + "ICS/WebCal Feed": "ICS/WebCal-straum", + "IP Address": "IP-adresse", + "Identities": "Identitetar", + "Identity {displayName} created": "Identiteten {displayName} er oppretta", + "Identity {displayName} deleted": "Identiteten {displayName} er sletta", + "Identity {displayName} updated": "Identiteten {displayName} er oppdatert", + "If allowed by organizer": "Viss tilskiparen tillèt det", + "If an account with this email exists, we just sent another confirmation email to {email}": "Viss det finst ein brukarkonto med denne epostadressa, har me akkurat sendt ein ny stadfestingsepost til {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Viss denne identiteten er den einaste administratoren for nokon grupper, må du sletta dei før du slettar identiteten.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Viss du blir spurt om den spreidde identiteten din, er den brukarnamnet og nettstaden din. Som døme viser me deg den spreidde identiteten for den fyrste profilen din, som er:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Viss du har skrudd på manuell godkjenning av deltakarar, vil Mobilizon senda deg ein epost når det kjem nye påmeldingar du må godkjenna. Du kan velja kor ofte desse epostane kjem under.", + "If you want, you may send a message to the event organizer here.": "Viss du vil, kan du senda ei melding til arrangøren her.", + "Ignore": "Oversjå", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Illustrasjon for “{category}” av {author} på {source} ({license})", + "In person": "Personleg", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "I denne samanhengen tyder \"program\" ei programvare, anten utvila av Mobilizon-laget eller ein tredjepart, som blir brukt for å samhandla med nettstaden din.", + "In the past": "I fortida", + "In this instance's network": "På nettverket til denne nettstaden", + "Increase": "Auka", + "Instance": "Nettstad", + "Instance Long Description": "Lang skildring av nettstaden", + "Instance Name": "Namn på nettstaden", + "Instance Privacy Policy": "Personvern for nettstaden", + "Instance Privacy Policy Source": "Kjelde for personvernpolitikken til nettstaden", + "Instance Privacy Policy URL": "URL til personvernsida for nettstaden", + "Instance Rules": "Reglar for nettstaden", + "Instance Short Description": "Kort skildring av nettstaden", + "Instance Slogan": "Slagord for nettstaden", + "Instance Terms": "Vilkår for nettstaden", + "Instance Terms Source": "Vilkår for denne nettstaden", + "Instance Terms URL": "Adresse til vilkåra for nettstaden", + "Instance administrator": "Styrar på nettstaden", + "Instance configuration": "Oppsett for nettstaden", + "Instance feeds": "Straumar frå nettstaden", + "Instance languages": "Språk på nettstaden", + "Instance rules": "Reglar for nettstaden", + "Instance settings": "Innstillingar for nettstaden", + "Instances": "Nettstader", + "Instances following you": "Nettstader som fylgjer deg", + "Instances you follow": "Nettstader du fylgjer", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Bygg denne hendinga saman med tredjepartsverkty og vis metadata for hendinga.", + "Interact": "Samhandling", + "Interact with a remote content": "Samhandle med innhald på andre nettstader", + "Invite a new member": "Inviter ein ny medlem", + "Invite member": "Inviter ein medlem", + "Invited": "Invitert", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Det kan henda at dette innhaldet ikkje er tilgjengeleg på denne nettstaden, fordi han har blokkert profilane eller gruppene som laga innhaldet.", + "Italic": "Kursiv", + "Jitsi Meet": "Jitsi-møte", + "Join": "Bli med", + "Join {instance}, a Mobilizon instance": "Bli medlem av {instance}, ein nettstad på Mobilizon", + "Join group": "Bli med i ei gruppe", + "Join group {group}": "Bli med i gruppa {group}", + "Join {instance}, a Mobilizon instance": "Bli med på {instance}, ein Mobilizon-nettstad", + "Keep the entire conversation about a specific topic together on a single page.": "Hald heile ordskiftet om eit visst emne samla på ei side.", + "Key words": "Stikkord", + "Keyword, event title, group name, etc.": "Stikkord, namn på hendinga, gruppenamn osb.", + "Language": "Språk", + "Languages": "Språk", + "Last IP adress": "Sist IP-adresse", + "Last group created": "Den nyaste gruppa", + "Last published event": "Nyaste hending", + "Last published events": "Dei siste hendingane", + "Last seen on": "Sist sett på", + "Last sign-in": "Sist logga på", + "Last week": "Sist veka", + "Latest posts": "Siste innlegg", + "Learn more": "Lær meir", + "Learn more about Mobilizon": "Lær meir om Mobilizon", + "Learn more about {instance}": "Lær meir om {instance}", + "Least recently published": "Eldst", + "Leave": "Forlat", + "Leave event": "Forlat hendinga", + "Leave group": "Forlat gruppa", + "Leaving event \"{title}\"": "Forlèt hendinga \"{title}\"", + "Legal": "Juridisk", + "Let's define a few settings": "La oss laga nokre innstillingar", + "License": "Lisens", + "Light": "Lys", + "Limited number of places": "Avgrensa tal plassar", + "List": "Liste", + "List title": "Tittel på lista", + "Live": "Direkte", + "Load more": "Last fleire", + "Load more activities": "Hent fleire aktivitetar", + "Loading comments…": "Lastar kommentarar…", + "Loading map": "Lastar kartet", + "Local": "Lokal", + "Local time ({timezone})": "Lokal tid ({timezone})", + "Local times ({timezone})": "Lokale tider ({timezone})", + "Locality": "Stad", + "Location": "Stad", + "Log in": "Logg inn", + "Log out": "Logg ut", + "Login": "Logg inn", + "Login on Mobilizon!": "Logg inn på Mobilizon!", + "Login on {instance}": "Logg inn på {instance}", + "Login status": "Innloggingsstatus", + "Main languages you/your moderators speak": "Dei språka du og styrarane pratar", + "Make sure that all words are spelled correctly.": "Pass på rettskrivinga.", + "Manage participations": "Handter deltakingar", + "Manually approve new followers": "Godkjenn nye fylgjarar manuelt", + "Manually invite new members": "Inviter nye medlemer manuelt", + "Map": "Kart", + "Mark as resolved": "Merk som løyst", + "Member": "Medlem", + "Members": "Medlemer", + "Members-only post": "Innlegg berre for medlemer", + "Membership requests will be approved by a group moderator": "Ein gruppestyrar vil godkjenna førespurnader om medlemskap", + "Memberships": "Medlemskap", + "Mentions": "Når nokon nemner deg", + "Message": "Melding", + "Message body": "Brødtekst", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon er eit spreidd nettverk. Du kan samhandla med denne hendinga frå ein annan tenar.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon er spreidd programvare. Det tyder at du kan samhandla med innhald frå andre nettstader, til dømes bli med i grupper eller hendingar som vart oppretta andre stader. Dette kjem an på korleis styraren på nettstaden din har sett opp spreiing til andre nettstader.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon er eit verkty som hjelper deg å finna, oppretta og organisera hendingar.", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon er ein reiskap som hjelper deg å {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon er ikkje ein svær plattform, men ei mengd samankopla Mobilizon-nettstader.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon er ikkje ein gigantplattform, men {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "Mobilizon-programvara", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon bruker ulike profilar for å skilja dei ulike aktivitetane dine. Du kan laga så mange profilar du vil.", + "Mobilizon version": "Mobilizon-versjon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon sender deg ein epost dersom hendingane du deltek på har viktige endringar: dato og tid, adresse, stadfesting eller avlysing osb.", + "Moderate new members": "Godkjenn nye medlemer", + "Moderated comments (shown after approval)": "Kommentarar under gjennomsyn (blir synlege etter godkjenning)", + "Moderation": "Gjennomsyn", + "Moderation log": "Gjennomsynslogg", + "Moderation logs": "Modereringsloggar", + "Moderator": "Redaktør", + "More options": "Fleire val", + "Most recently published": "Nyast", + "Move": "Flytt", + "Move \"{resourceName}\"": "Flytt \"{resourceName}\"", + "Move resource to the root folder": "Flytt ressursen til rotmappa", + "Move resource to {folder}": "Flytt ressursen til {folder}", + "My account": "Kontoen min", + "My events": "Hendingane mine", + "My federated identity ends in {domain}": "Allheimsidentiteten min endar på {domain}", + "My groups": "Gruppene mine", + "My identities": "Identitetane mine", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "OBS! Standardvilkåra har ikkje vore til gjennomsyn hjå advokat, og vil difor neppe gje fullt rettsvern i alle situasjonar for ein nettstad som tek dei i bruk. Dei er heller ikkje spesifiserte for alle land og jurisdiksjonar. Høyr med ein advokat om du er usikker.", + "Name": "Namn", + "Navigated to {pageTitle}": "Navigerte til {pageTitle}", + "New discussion": "Nytt ordskifte", + "New email": "Ny epost", + "New folder": "Ny mappe", + "New link": "Ny lenke", + "New members": "Nye medlemer", + "New note": "Nytt notat", + "New password": "Nytt passord", + "New post": "Nytt innlegg", + "New profile": "Ny profil", + "Next": "Neste", + "Next month": "Neste månad", + "Next page": "Neste sida", + "Next week": "Neste veka", + "No address defined": "Inga adresse er oppgjeven", + "No categories with public upcoming events on this instance were found.": "Me fann ingen kategoriar med komande offentlege hendingar på denne nettstaden.", + "No closed reports yet": "Ingen avslutta rapportar enno", + "No comment": "Ingen kommentar", + "No comments yet": "Ingen kommentarar enno", + "No discussions yet": "Ingen ordskifte enno", + "No end date": "Ingen sluttdato", + "No event found at this address": "Det var inga hending på denne adressa", + "No events found": "Fann ingen hendingar", + "No events found for {search}": "Fann ingen hendingar om {search}", + "No follower matches the filters": "Ingen fylgjar passar til filtra", + "No group found": "Fann ingen grupper", + "No group matches the filters": "Inga gruppe passar til søket", + "No group member found": "Fann ingen medlemer i gruppa", + "No groups found": "Fann ingen grupper", + "No groups found for {search}": "Fann ingen grupper om {search}", + "No information": "Ingen opplysingar", + "No instance follows your instance yet.": "Det er ingen nettstader som fylgjer din enno.", + "No instance found.": "Fann ingen nettstad.", + "No instance to approve|Approve instance|Approve {number} instances": "Ingen nettstad å godkjenna|Godkjenn nettstaden|Godkjenn {number} nettstader", + "No instance to reject|Reject instance|Reject {number} instances": "Ingen nettstad å avslå|Avslå nettstaden|Avslå {number} nettstader", + "No instance to remove|Remove instance|Remove {number} instances": "Ingen nettstad å fjerna|Fjern nettstaden|Fjern {number} nettstader", + "No instances match this filter. Try resetting filter fields?": "Ingen nettstader passar til søket. Kanskje du kan nullstilla søkjefiltra?", + "No languages found": "Fann ingen språk", + "No member matches the filters": "Ingen medlemer passar med filtra", + "No members found": "Fann ingen medlemer", + "No memberships found": "Fann ingen medlemskap", + "No message": "Inga melding", + "No moderation logs yet": "Ingen gjennomsynsloggar enno", + "No more activity to display.": "Ikkje meir aktivitet å visa.", + "No one is participating|One person participating|{going} people participating": "Ingen deltek|Ein person deltek|{going} personar deltek", + "No open reports yet": "Ingen opne rapportar enno", + "No organized events found": "Fann ingen organiserte hendingar", + "No organized events listed": "Ingen organiserte hendingar er lista opp", + "No participant matches the filters": "Ingen deltakarar passar med filtra", + "No participant to approve|Approve participant|Approve {number} participants": "Ingen deltakar å godkjenna|Godkjenn deltakar|Godkjenn {number} deltakarar", + "No participant to reject|Reject participant|Reject {number} participants": "Ingen deltakar å avslå|Avslå deltakar|Avslå {number} deltakarar", + "No participations listed": "Ingen deltakingar er lista opp", + "No posts found": "Fann ingen innlegg", + "No posts yet": "Ingen innlegg enno", + "No profile matches the filters": "Ingen profilar passar til filtra", + "No public upcoming events": "Ingen offentlege komande hendingar", + "No resolved reports yet": "Ingen løyste rapportar enno", + "No resources in this folder": "Ingen ressursar i denne mappa", + "No resources selected": "Ingen ressursar er valde|Ein ressurs er vald|{count} ressursar er valde", + "No resources yet": "Ingen ressursar enno", + "No results for \"{queryText}\"": "Ingen resultat for \"{queryText}\"", + "No results for {search}": "Ingen resultat for {search}", + "No results found": "Ingen søkjeresultat", + "No results found for {search}": "Fann ingenting om {search}", + "No rules defined yet.": "Det er ikkje laga nokon reglar enno.", + "No user matches the filter": "Ingen brukar passar til søkjefiltra", + "No user matches the filters": "Ingen brukar passar til søkjefiltra", + "None": "Ingen", + "Not accessible with a wheelchair": "Ikkje tilgjenge for rullestol", + "Not approved": "Ikkje godkjent", + "Not confirmed": "Ikkje stadfesta", + "Notes": "Notat", + "Notification before the event": "Varsling før hendinga", + "Notification on the day of the event": "Varsling på dagen for hendinga", + "Notification settings": "Innstillingar for varsel", + "Notifications": "Varsel", + "Notifications for manually approved participations to an event": "Varslingar for manuelt godkjende deltakingar til ei hending", + "Notify participants": "Varsle deltakarane", + "Notify the user of the change": "Sei frå til brukaren om endringa", + "Now, create your first profile:": "No kan du laga din fyrste profil:", + "Number of members": "Medlemstal", + "Number of places": "Tal plassar", + "OK": "OK", + "Old password": "Gamalt passord", + "On foot": "Til fots", + "On the Fediverse": "I allheimen", + "On {date}": "{date}", + "On {date} ending at {endTime}": "{date}, slutt klokka {endTime}", + "On {date} from {startTime} to {endTime}": "{date} frå kl. {startTime} til {endTime}", + "On {date} starting at {startTime}": "{date}, startar klokka {startTime}", + "On {instance} and other federated instances": "På {instance} og andre samankopla nettstader", + "Online": "På nett", + "Online events": "Hendingar på nett", + "Online ticketing": "Billettsal på nett", + "Online upcoming events": "Komande hendingar på nett", + "Only Mobilizon instances can be followed": "Du kan berre fylgja Mobilizon-nettstader", + "Only accessible through link": "Berre tilgjengeleg med denne lenka", + "Only accessible through link (private)": "Berre tilgjengeleg med lenka (private)", + "Only accessible to members of the group": "Berre tilgjengeleg for gruppemedlemer", + "Only alphanumeric lowercased characters and underscores are supported.": "Du kan berre bruka små bokstavar (a-z) og tal.", + "Only group members can access discussions": "Berre gruppemedlemer kan sjå ordskifte", + "Only group moderators can create, edit and delete events.": "Berre gruppestyrarar kan laga, endra og sletta hendingar.", + "Only group moderators can create, edit and delete posts.": "Berre gruppestyrarar kan skriva, endra og sletta innlegg.", + "Only registered users may fetch remote events from their URL.": "Berre registrerte brukarar kan henta eksterne hendingar frå ei adresse.", + "Open": "Open", + "Open a topic on our forum": "Lag eit nytt emne på forumet vårt", + "Open an issue on our bug tracker (advanced users)": "Lag ei ny feilmelding på feilrettingsverktyet vårt (avanserte brukarar)", + "Open main menu": "Opne hovudmenyen", + "Open user menu": "Opne brukarmenyen", + "Opened reports": "Opna rapportar", + "Or": "Eller", + "Ordered list": "Nummerert liste", + "Organized": "Organisert", + "Organized by": "Organisert av", + "Organized by {name}": "Organisert av {name}", + "Organized events": "Organiserte hendingar", + "Organizer": "Organisator", + "Organizer notifications": "Arrangørvarslingar", + "Organizers": "Tilskiparar", + "Other": "Andre", + "Other actions": "Andre handlingar", + "Other notification options:": "Andre varslingsinnstillingar:", + "Other software may also support this.": "Anna programvare kan òg ha støtte for dette.", + "Other users with the same IP address": "Andre brukarar med same IP-adresse", + "Other users with the same email domain": "Andre brukarar med same epostdomene", + "Otherwise this identity will just be removed from the group administrators.": "Elles vil denne identiteten berre bli sletta frå gruppeadministratorane.", + "Owncast": "Owncast", + "Page": "Side", + "Page limited to my group (asks for auth)": "Sida er avgrensa til gruppa mi (spør om godkjenning)", + "Page not found": "Fann ikkje sida", + "Parent folder": "Foreldremappe", + "Partially accessible with a wheelchair": "Delvis tilgjenge for rullestol", + "Participant": "Deltakar", + "Participants": "Deltakarar", + "Participate": "Delta", + "Participate using your email address": "Delta ved å bruka epostadressa di", + "Participation approval": "Deltakingsgodkjenning", + "Participation confirmation": "Stadfesting på deltaking", + "Participation notifications": "Varslingar for deltaking", + "Participation requested!": "Du har spurt om å vera med!", + "Participation with account": "Stadfesting med brukarkontoen din", + "Participation without account": "Stadfesting utan brukarkonto", + "Participations": "Deltakingar", + "Password": "Passord", + "Password (confirmation)": "Passord (stadfesting)", + "Password reset": "Nullstill passord", + "Past events": "Tidlegare hendingar", + "PeerTube live": "Peertube direkte", + "PeerTube replay": "Spel omatt på Peertube", + "Pending": "Ventar", + "Personal feeds": "Personlege straumar", + "Photo by {author} on {source}": "Foto av {author} på {source}", + "Pick": "Vel", + "Pick a profile or a group": "Vel ein profil eller ei gruppe", + "Pick an identity": "Vel ein identitet", + "Pick an instance": "Vel ein nettstad", + "Please add as many details as possible to help identify the problem.": "Skriv inn så mange opplysingar du kan for å hjelpa oss å finna feilen.", + "Please check your spam folder if you didn't receive the email.": "Sjekk søppel-mappa di om du ikkje fekk eposten.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Ver god å kontakta administratoren på denne Mobilizon-tenaren om du meiner dette er feil.", + "Please do not use it in any real way.": "Ikkje bruk denne på ordentleg.", + "Please enter your password to confirm this action.": "Skriv inn passordet ditt for å stadfesta denne handlinga.", + "Please make sure the address is correct and that the page hasn't been moved.": "Sjå til at adressa er rett, og at sida ikkje er flytta.", + "Please read the {fullRules} published by {instance}'s administrators.": "Les gjerne{fullRules} som styrarane på {instance} har lagt ut.", + "Popular groups close to you": "Populære grupper nær deg", + "Popular groups nearby {position}": "Populære grupper nær {position}", + "Post": "Innlegg", + "Post URL": "Innleggsadresse", + "Post a comment": "Skriv ein kommentar", + "Post a reply": "Skriv eit svar", + "Post body": "Brødtekst i innlegget", + "Post {eventTitle} reported": "Hendinga {eventTitle} er rapportert", + "Postal Code": "Postnummer", + "Posts": "Innlegg", + "Powered by Mobilizon": "Køyrer Mastodon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Drive av {mobilizon}. © 2018 - {date} Mobilizon-bidragsytarane - laga med økonomisk støtte frå {contributors}.", + "Preferences": "Innstillingar", + "Previous": "Førre", + "Previous email": "Førre epost", + "Previous month": "Førre månad", + "Previous page": "Førre sida", + "Price sheet": "Prisliste", + "Privacy": "Personvern", + "Privacy Policy": "Personvern", + "Privacy policy": "Personvern", + "Private event": "Privat hending", + "Private feeds": "Private straumar", + "Profile": "Profil", + "Profile feeds": "Profilstraumar", + "Profiles": "Profilar", + "Profiles and federation": "Profilar og spreiing", + "Promote": "Framhev", + "Public": "Offentleg", + "Public RSS/Atom Feed": "Offentleg RSS/Atom-straum", + "Public comment moderation": "Offentleg kommentargjennomsyn", + "Public event": "Offentleg hending", + "Public feeds": "Offentlege straumar", + "Public iCal Feed": "Offentleg iCal-straum", + "Public preview": "Offentleg førehandsvising", + "Publication date": "Lagt ut dato", + "Publish": "Legg ut", + "Published by {name}": "Lagt ut av {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Offentlege hendingar med {comments} kommentarar og {participations} stadfesta deltakarar", + "Published events with {comments} comments and {participations} confirmed participations": "Offentlege hendingar med {comments} kommentarar og {participations} stadfesta deltakarar", + "Push": "Straks", + "Quote": "Sitat", + "RSS/Atom Feed": "RSS/Atom-straum", + "Radius": "Radius", + "Recap every week": "Gje eit samandrag kvar veke", + "Receive one email for each activity": "Få ein epost for kvar aktivitet", + "Receive one email per request": "Få ein epost for kvar førespurnad", + "Redirecting in progress…": "Omdirigerer…", + "Redirecting to Mobilizon": "Vidaresender til Mobilizon", + "Redirecting to content…": "Vidaresender til innhaldet…", + "Redo": "Gjer om", + "Refresh profile": "Last profilen på nytt", + "Regenerate new links": "Lag nye lenker på nytt", + "Region": "Region", + "Register": "Registrer deg", + "Register an account on {instanceName}!": "Lag ein brukarkonto på {instancename}!", + "Register on this instance": "Bli medlem på denne nettstaden", + "Registration is allowed, anyone can register.": "Påmeldinga er open, alle kan registrera seg.", + "Registration is closed.": "Påmeldinga er stengd.", + "Registration is currently closed.": "Påmeldinga er stengd.", + "Registrations": "Registreringar", + "Registrations are restricted by allowlisting.": "Registreringar er avgrensa av tilgangslister.", + "Reject": "Avslå", + "Reject follow": "Avslå fylgjaren", + "Reject member": "Avslå medlem", + "Rejected": "Avslege", + "Remember my participation in this browser": "Hugs deltakinga mi i denne nettlesaren", + "Remove": "Fjern", + "Remove link": "Fjern lenke", + "Rename": "Døyp om", + "Rename resource": "Døyp om ressursen", + "Reopen": "Gjenopne", + "Replay": "Spel om att", + "Reply": "Svar", + "Report": "Rapporter", + "Report #{reportNumber}": "Rapport nr. {reportNumber}", + "Report reason": "Sei frå om grunngjeving", + "Report status": "Rapportstatus", + "Report this comment": "Rapporter denne kommentaren", + "Report this event": "Rapporter denne hendinga", + "Report this group": "Rapporter denne gruppa", + "Report this post": "Meld dette innlegget", + "Reported": "Rapportert", + "Reported by": "Rapportert av", + "Reported by someone anonymously": "Anonymt rapportert", + "Reported by someone on {domain}": "Rapportert av nokon på {domain}", + "Reported by {reporter}": "Meldt inn av {reporter}", + "Reported content": "Rapportert innhald", + "Reported group": "Rapportert gruppe", + "Reported identity": "Rapportert identitet", + "Reports": "Rapportar", + "Reports list": "Rapportlister", + "Request for participation confirmation sent": "Me har sendt spørsmål om å godkjenna deltakinga", + "Resend confirmation email": "Send stadfestingseposten på nytt", + "Resent confirmation email": "Stadfestingseposten er send ein gong til", + "Reset": "Nullstill", + "Reset filters": "Nullstill filter", + "Reset my password": "Nullstill passordet mitt", + "Reset password": "Nullstill passordet ditt", + "Resolved": "Løyst", + "Resource provided is not an URL": "Denne ressursen er ikkje ei URL-adresse", + "Resources": "Ressursar", + "Restricted": "Avgrensa", + "Return to the group page": "Gå tilbake til gruppesida", + "Right now": "Nett no", + "Role": "Rolle", + "Rules": "Reglar", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL og arvtakaren TLS er krypteringsteknologiar for å sikra datakommunikasjon. Du kan sjå i nettlesaren at tilkoplinga er kryptert når adressa startar med {https} og det er eit lås-ikon i adresselina til nettlesaren.", + "SSL/TLS": "SSL/TLS", + "Save": "Lagre", + "Save draft": "Lagre kladden", + "Schedule": "Tidsplan", + "Search": "Søk", + "Search events, groups, etc.": "Søk gjennom hendingar, grupper osb.", + "Search target": "Søkjemål", + "Searching…": "Søkjer…", + "Select a category": "Vel ein kategori", + "Select a language": "Vel språk", + "Select a radius": "Vel ein radius", + "Select a timezone": "Vel ein tidssone", + "Select all resources": "Vel alle ressursar", + "Select languages": "Vel språk", + "Select the activities for which you wish to receive an email or a push notification.": "Vel kva aktivitetar du vil ha epost- eller straksvarsel om.", + "Select this resource": "Vel denne ressursen", + "Send": "Send", + "Send email": "Send epost", + "Send feedback": "Send tilbakemelding", + "Send notification e-mails": "Send varsel-epostar", + "Send password reset": "Send passordnullstilling", + "Send the confirmation email again": "Send stadfestingseposten på nytt", + "Send the report": "Send rapporten", + "Set an URL to a page with your own privacy policy.": "Skriv ei URL-adresse tli ei side med din eigen personvernpolitikk.", + "Set an URL to a page with your own terms.": "Gje ei URL-adresse til ei side med dine eigne vilkår.", + "Settings": "Innstillingar", + "Share": "Del", + "Share this event": "Del denne hendinga", + "Share this group": "Del denne gruppa", + "Share this post": "Del dette innlegget", + "Short bio": "Kort biografi", + "Show filters": "Vis filter", + "Show map": "Vis kart", + "Show me where I am": "Vis meg kvar eg er", + "Show remaining number of places": "Vis tal på ledige plassar", + "Show the time when the event begins": "Vis kva tid hendinga startar", + "Show the time when the event ends": "Vis kva tid hendinga sluttar", + "Showing events before": "Viser hendingar før", + "Showing events starting on": "Viser hendingar som startar den", + "Sign Language": "Teiknspråk", + "Sign in with": "Logg inn med", + "Sign up": "Bli med", + "Since you are a new member, private content can take a few minutes to appear.": "Sidan du er ny medlem, kan det ta nokre minutt før privat innhald blir synleg.", + "Skip to main content": "Gå til hovudinnhaldet", + "Smoke free": "Røykfri", + "Smoking allowed": "Det er lov å røykja", + "Social": "Sosialt", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Nokre omgrep i teksten under kan vera vanskelege å forstå, både dei tekniske og andre omgrep. Me har laga ei ordliste så du kan forstå dei betre:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Me greidde ikkje lagra tilbakemeldinga di, men me skal prøva å retta denne feilen uansett.", + "Sort by": "Sorter etter", + "Starts on…": "Startar…", + "Status": "Status", + "Statuses": "Statusar", + "Stop following instance": "Slutt å fylgja nettstaden", + "Street": "Gate", + "Submit": "Send inn", + "Subtitles": "Undertekstar", + "Suggestions:": "Framlegg:", + "Suspend": "Sperr", + "Suspend group": "Sperr gruppa", + "Suspend the account": "Steng brukaren", + "Suspend the account?": "Steng ute brukaren?", + "Suspended": "Sperra", + "Tag search": "Merkelappsøk", + "Task lists": "Oppgåveliste", + "Technical details": "Tekniske detaljar", + "Tentative": "Framlegg", + "Tentative: Will be confirmed later": "Førebels: Blir stadfesta seinare", + "Terms": "Vilkår", + "Terms of service": "Bruksvilkår", + "Text": "Tekst", + "Thanks a lot, your feedback was submitted!": "Takk for tilbakemeldinga!", + "That you follow or of which you are a member": "Som du fylgjer eller er medlem av", + "The Big Blue Button video teleconference URL": "Nettadressa til Big Blue Button-videomøtet", + "The Google Meet video teleconference URL": "Nettadressa til Google Meet-videomøtet", + "The Jitsi Meet video teleconference URL": "Nettadressa til Jitsi-videomøtet", + "The Microsoft Teams video teleconference URL": "Nettadressa til Microsoft Teams-møtet", + "The URL of a pad where notes are being taken collaboratively": "Nettadressa til notatblokka der de kan skriva saman", + "The URL of a poll where the choice for the event date is happening": "Nettadressa til ei meiningsmåling for når hendinga skal skje", + "The URL where the event can be watched live": "Nettadressa der du kan sjå hendinga direkte", + "The URL where the event live can be watched again after it has ended": "Nettadressa der du kan sjå hendinga om att etter at ho er ferdig", + "The Zoom video teleconference URL": "Nettadressa til Zoom-videomøtet", + "The account's email address was changed. Check your emails to verify it.": "Epostadressa for brukarkontoen er endra. Sjekk eposten din for å stadfesta.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Det faktiske deltakartalet kan avvika, fordi denne hendinga skjer på ein annan nettstad.", + "The calc will be created on {service}": "Reknearket blir oppretta på {service}", + "The content came from another server. Transfer an anonymous copy of the report?": "Innhaldet kom frå ein annan tenar. Vil du overføra ein anonym kopi av rapporten?", + "The draft event has been updated": "Hendingskladden er oppdatert", + "The event has a sign language interpreter": "Direktesendinga har teiknspråktolk", + "The event has been created as a draft": "Hendinga er oppretta som kladd", + "The event has been published": "Hendinga er offentleggjort", + "The event has been updated": "Hendinga er oppdatert", + "The event has been updated and published": "Hendinga er oppdatert og offentleggjort", + "The event hasn't got a sign language interpreter": "Direktesendinga har ikkje teiknspråktolk", + "The event is fully online": "Denne hendinga føregår berre på nett", + "The event live video contains subtitles": "Direktesendinga er teksta", + "The event live video does not contain subtitles": "Direktesendinga er ikkje teksta", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Tilskiparen har valt å godkjenna deltakarar manuelt. Vil du skriva eit lite notat for å forklara kvifor du vil vera med på denne hendinga?", + "The event organizer didn't add any description.": "Tilskiparen skreiv inga skildring.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Tilskiparen godkjenner deltakarar manuelt. Sidan du har valt å delta utan brukarkonto, er det fint om du skriv kvifor du vil vera med.", + "The event title will be ellipsed.": "Tittelen på denne hendinga blir forkorta med ein ellipse (…).", + "The event will show as attributed to this group.": "Hendinga vil bli knytt til denne gruppa.", + "The event will show as attributed to this profile.": "Hendinga vil syna som tilkopla denne profilen.", + "The event will show as attributed to your personal profile.": "Hendinga vil bli knytt til den personlege profilen din.", + "The event {event} was created by {profile}.": "Brukaren {profile} laga hendinga {event}.", + "The event {event} was deleted by {profile}.": "Brukaren {profile} sletta hendinga {event}.", + "The event {event} was updated by {profile}.": "Brukaren {profile} oppdaterte hendinga {event}.", + "The events you created are not shown here.": "Dei hendingane du har laga, vil ikkje syna her.", + "The geolocation prompt was denied.": "Du sa nei til førespurnaden om å bruka posisjonen din.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "Alle kan bli med i gruppa, men nye medlemer må bli godkjende av ein styrar fyrst.", + "The group can now be joined by anyone.": "Alle kan bli med i gruppa.", + "The group can now only be joined with an invite.": "Frå no må det invitasjon til for å bli med i gruppa.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Denne gruppa vil bli lista opp offentleg i søkjeresultat og kan bli føreslegen når folk utforskar nettstaden. Berre offentleg informasjon vil syna på sida til gruppa.", + "The group's avatar was changed.": "Gruppeavataren er endra.", + "The group's banner was changed.": "Gruppebanneret er endra.", + "The group's physical address was changed.": "Den fysiske adressa for gruppa er endra.", + "The group's short description was changed.": "Skildringa for gruppa er endra.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "Styraren er den personen eller eininga som driv denne Mobilizon-nettstaden.", + "The member was approved": "Medlemen vart godkjend", + "The member was removed from the group {group}": "Medlemen vart fjerna frå gruppa {group}", + "The membership request from {profile} was rejected": "{profile} vart nekta medlemskap", + "The only way for your group to get new members is if an admininistrator invites them.": "Den einaste måten gruppa di kan få nye medlemer på, er dersom ein administrator inviterer dei.", + "The organiser has chosen to close comments.": "Tilskiparen har valt å stenga for kommentarar.", + "The pad will be created on {service}": "Skriveblokka blir oppretta på {service}", + "The page you're looking for doesn't exist.": "Denne sida finst ikkje.", + "The password was successfully changed": "Passordet er endra", + "The post {post} was created by {profile}.": "Brukaren {profile} skreiv innlegget {post}.", + "The post {post} was deleted by {profile}.": "{profile} sletta innlegget {post}.", + "The post {post} was updated by {profile}.": "{profile} oppdaterte innlegget {post}.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Rapporten blir sendt til dei som styrer nettstaden din. Du kan forklara kvifor du rapporterer dette innhaldet under her.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "Dette biletet er for stort. Du må velja ei fil som er mindre enn {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Dei tekniske detaljane om feilen kan hjelpa utviklarar å løysa problemet lettare. Ta dei gjerne med i feilmeldinga di.", + "The user has been disabled": "Brukaren er gjort inaktiv", + "The videoconference will be created on {service}": "Nettmøtet blir oppretta på {service}", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "{default_privacy_policy} vil bli brukt. Dei vil vera omsett til språket til brukaren.", + "The {default_terms} will be used. They will be translated in the user's language.": "{default_terms} vil bli brukte. Dei vil bli omsette til språket til lesaren.", + "Theme": "Bunad", + "There are {participants} participants.": "Det er {participants} deltakarar.", + "There is no activity yet. Start doing some things to see activity appear here.": "Ingen aktivitet enno. Gjer noko for å sjå aktiviteten her.", + "There will be no way to recover your data.": "Det blir umogleg å gjenoppretta opplysingane dine.", + "There's no discussions yet": "Ingen har diskutert dette enno", + "These events may interest you": "Desse hendingane er kanskje interessante", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Desse straumane inneheld opplysingar om hendingar der einkvar av profilane dine er tilskipar eller deltakar. Du bør halda desse for deg sjølv. Du kan finna straumar for visse profilar på kvar profilside.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Desse straumane inneheld hendingsdata for dei hendingane der denne profilen er tilskipar eller deltakar. Du bør halde desse for deg sjølv. Du kan finna straumar for alle profilane dine i varselinnstillingane dine.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Denne Mobilizon-nettstaden og tilskiparen tillèt anonym deltaking, men krev at du stadfestar ved epost.", + "This URL doesn't seem to be valid": "Denne nettadressa er ikkje gyldig", + "This URL is not supported": "Denne URL-adressa er ikkje støtta", + "This event has been cancelled.": "Denne hendinga er avlyst.", + "This event is accessible only through it's link. Be careful where you post this link.": "Denne hendinga er berre tilgjengeleg via lenka. Ver varsam når du legg ut lenka.", + "This group doesn't have a description yet.": "Denne gruppa har inga skildring enno.", + "This group is a remote group, it's possible the original instance has more informations.": "Denne gruppa kjem frå ein annan nettstad. Det kan henda den opphavelege nettstaden har fleire opplysingar.", + "This group is accessible only through it's link. Be careful where you post this link.": "Du kan berre gå til denne gruppa med lenka. Pass på når du legg ut lenka.", + "This group is invite-only": "Du må vera invitert for å bli medlem i denne gruppa", + "This group was not found": "Fann ikkje denne gruppa", + "This identifier is unique to your profile. It allows others to find you.": "Denne ID-en er unik for profilen din. Han gjer det mogleg for andre å finna deg.", + "This information is saved only on your computer. Click for details": "Desse opplysingane blir berre lagra på datamaskina di. Klikk for meir info", + "This instance doesn't follow yours.": "Denne nettstaden fylgjer ikkje din.", + "This instance hasn't got push notifications enabled.": "Denne nettstaden har skrudd av straksvarsel.", + "This instance isn't opened to registrations, but you can register on other instances.": "Denne nettstaden tillèt ikkje nye registreringar, men du kan bli med på andre nettstader.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Denne nettstaden, {instanceName} ({domain}), er vertskap for profilen din, så du bør hugsa kva han heiter.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Profilen din er lagra på denne nettstaden, {instanceName}, så du må hugsa kva han heiter.", + "This is a demonstration site to test Mobilizon.": "Dette er ei demoside for å prøva ut Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Dette er som det spreidde brukarnamnet ({username}) for grupper. Det gjer det mogleg å finna gruppa på heile nettverket, og vil garantert vera unikt.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Dette liknar allheimsbrukarnamnet ditt ({username}) for grupper. Det sikrar at gruppa kan oppdagast på allheimen, og er garantert unikt.", + "This month": "Denne månaden", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Berre medlemer kan sjå dette innlegget. Du har tilgang til det for redaktørføremål fordi du er styrar på denne nettstaden.", + "This post is accessible only through it's link. Be careful where you post this link.": "Du kan berre sjå dette innlegget om du har lenka til det. Difor bør du vera varsam med kvar du legg ut lenka.", + "This profile is from another instance, the informations shown here may be incomplete.": "Denne profilen er frå ein annan nettstad. Opplysingane her kan vera mangelfulle.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Denne profilen er på denne nettstaden, så du må {access_the_corresponding_account} for å stenga han.", + "This profile was not found": "Fann ikkje denne profilen", + "This setting will be used to display the website and send you emails in the correct language.": "Denne innstillinga blir brukt til å visa nettsida og senda deg epostar på rett språk.", + "This user doesn't have any profiles": "Denne brukaren har ingen profilar", + "This user was not found": "Fann ikkje denne brukaren", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Denne nettstaden er ikkje styrt, og alt du skriv her vil bli automatisk sletta kvar dag kl. 00:01 (Paris-tid).", + "This week": "Denne veka", + "This weekend": "I helga", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Dette vil sletta/anonymisera alt innhald (hendingar, kommentarar, meldingar, deltakingar…) som denne identiteten har laga.", + "Time in your timezone ({timezone})": "Tid i tidssona di ({timezone})", + "Times in your timezone ({timezone})": "Tidspunkt i fylgje tidssona di ({timezone})", + "Timezone": "Tidssone", + "Timezone detected as {timezone}.": "Me fann tidssonen {timezone}.", + "Title": "Tittel", + "To activate more notifications, head over to the notification settings.": "Gå til varslingsinnstillingane for å skru på fleire varsel.", + "To confirm, type your event title \"{eventTitle}\"": "Skriv inn namnet på hendinga, \"{eventTitle}\", for å stadfesta", + "To confirm, type your identity username \"{preferredUsername}\"": "Skriv inn identitetsnamnet ditt, \"{preferredUsername}\", for å stadfesta", + "To create and manage multiples identities from a same account": "For å laga og handtera fleire identitetar frå same konto", + "To create and manage your events": "For å laga og handtera hendingar", + "To create or join an group and start organizing with other people": "For å laga eller bli med i ei gruppe, og byrja å organisera saman med andre folk", + "To follow groups and be informed of their latest events": "For å fylgja grupper og få veta om nye hendingar frå dei", + "To register for an event by choosing one of your identities": "For å melda deg på hendingar med ein av identitetane dine", + "Today": "I dag", + "Tomorrow": "I morgon", + "Tools": "Verkty", + "Total number of participations": "Tal på deltakarar", + "Transfer to {outsideDomain}": "Overfør til {outsideDomain}", + "Triggered profile refreshment": "Profilen vart lasta på nytt", + "Try different keywords.": "Prøv andre stikkord.", + "Try fewer keywords.": "Prøv færre stikkord.", + "Try more general keywords.": "Prøv meir generelle stikkord.", + "Twitch live": "Twitch direkte", + "Twitch replay": "Spel omatt på Twitch", + "Twitter account": "Twitter-konto", + "Type": "Type", + "Type or select a date…": "Skriv inn eller vel ein dato…", + "URL": "URL-adresse", + "URL copied to clipboard": "Adressa er kopiert til utklippstavla", + "Unable to copy to clipboard": "Greidde ikkje kopiera til utklyppstavla", + "Unable to create the group. One of the pictures may be too heavy.": "Greidde ikkje laga gruppa. Eit av bileta kan vera for stort.", + "Unable to create the profile. The avatar picture may be too heavy.": "Greidde ikkje laga profilen. Profilbiletet kan vera for stort.", + "Unable to detect timezone.": "Greidde ikkje finna tidssonen.", + "Unable to load event for participation. The error details are provided below:": "Greidde ikkje å lasta hendinga for å melda deg på. Her er feilmeldingane:", + "Unable to save your participation in this browser.": "Greidde ikkje lagra deltakinga di i denne nettlesaren.", + "Unable to update the profile. The avatar picture may be too heavy.": "Greidde ikkje oppdatera profilen. Profilbiletet kan vera for stort.", + "Underline": "Understrek", + "Undo": "Angre", + "Unfollow": "Ikkje fylg", + "Unfortunately, your participation request was rejected by the organizers.": "Tilskiparane har diverre avslege deltakinga di.", + "Unknown": "Ukjent", + "Unknown actor": "Ukjend aktør", + "Unknown error.": "Ukjend feil.", + "Unknown value for the openness setting.": "Det er uvisst om gruppa er open eller ikkje.", + "Unlogged participation": "Ulogga deltaking", + "Unsaved changes": "Ulagra endringar", + "Unsubscribe to browser push notifications": "Meld deg av straksvarsel i nettlesaren", + "Unsuspend": "Opphev sperringa", + "Upcoming": "Komande", + "Upcoming events": "Komande hendingar", + "Upcoming events from your groups": "Komande hendingar frå gruppene dine", + "Update": "Oppdater", + "Update app": "Oppdater mobilprogrammet", + "Update discussion title": "Skriv ny tittel på diskusjonen", + "Update event {name}": "Oppdater hendinga {name}", + "Update group": "Oppdater gruppa", + "Update my event": "Oppdater hendinga mi", + "Update post": "Oppdater innlegget", + "Updated": "Oppdatert", + "Uploaded media size": "Storleik på opplasta media", + "Uploaded media total size": "Storleik på opplasta media", + "Use my location": "Bruk plasseringa mi", + "User": "Brukar", + "User settings": "Brukarinnstillingar", + "Username": "Brukarnamn", + "Users": "Brukarar", + "Validating account": "Stadfesting av brukarkontoen", + "Validating email": "Stadfesting av epostadressa", + "Video Conference": "Nettmøte", + "View a reply": "Sjå ingen svar|Sjå eitt svar|Sjå {totalReplies} svar", + "View account on {hostname} (in a new window)": "Sjå brukarkontoen din på {hostname} (i eit nytt vindauga)", + "View all": "Sjå alle", + "View all categories": "Sjå alle kategoriane", + "View all events": "Sjå alle hendingar", + "View all posts": "Sjå alle innlegga", + "View event page": "Sjå på hendingssida", + "View everything": "Sjå alt", + "View full profile": "Sjå heile brukarprofilen", + "View less": "Sjå mindre", + "View more": "Sjå meir", + "View more events": "Sjå fleire hendingar", + "View more events around {position}": "Sjå fleire hendingar nær {position}", + "View more groups around {position}": "Sjå fleire grupper nær {position}", + "View more online events": "Sjå fleire hendingar på nett", + "View page on {hostname} (in a new window)": "Sjå sida på {hostname} (i eit nytt vindauga)", + "View past events": "Sjå tidlegare hendingar", + "View the group profile on the original instance": "Sjå gruppeprofilen på den opphavelege nettstaden", + "Visibility was set to an unknown value.": "Det er uvisst om denne er offentleg eller ikkje.", + "Visibility was set to private.": "Vart gjort privat.", + "Visibility was set to public.": "Vart gjort offentleg.", + "Visible everywhere on the web": "Synleg overalt på veven", + "Visible everywhere on the web (public)": "Synleg overalt på veven (offentleg)", + "Waiting for organization team approval.": "Ventar på godkjenning frå tilskiparane.", + "Warning": "Åtvaring", + "We collect your feedback and the error information in order to improve this service.": "Me samlar opplysingane og feilinformasjonen din for å gjera denne tenesta betre.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Me greidde ikkje lagra deltakingsstatusen din i denne nettlesaren. Ingen grunn til uro, du er meldt på hendinga. Grunna ein teknisk feil greidde me ikkje lagra statusen i denne nettlesaren.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Viss du melder frå til oss om feil, kan me utbetra denne programvara. Viss du vil melda frå til oss om denne feilen, er det to måtar å gjera det på (båe krev diverre at du registrerer deg som brukar):", + "We just sent an email to {email}": "Me har akkurat sendt ein epost til {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Me bruker tidssonen din for å sjå til at du får varsel for hendingar til rett tid.", + "We will redirect you to your instance in order to interact with this event": "Me sender deg vidare til nettstaden din, slik at du kan samhandla med denne hendinga", + "We will redirect you to your instance in order to interact with this group": "Me sender deg vidare til nettstaden din, slik at du kan samhandla med denne gruppa", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Me sender deg ein epost ein time før hendinga byrjar, slik at du ikkje gløymer ho.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Me bruker tidssoneinnstillingane for å senda deg eit samandrag den morgonen hendinga skjer.", + "Website": "Nettside", + "Website / URL": "Nettside / URL", + "Weekly email summary": "Vekesamandrag på epost", + "Welcome back {username}!": "Velkomen att, {username}!", + "Welcome back!": "Velkomen att!", + "Welcome to Mobilizon, {username}!": "Velkomen til Mobilizon, {username}!", + "What can I do to help?": "Kva kan eg gjera for å hjelpa?", + "What happened?": "Kva skjedde?", + "Wheelchair accessibility": "Tilgjenge for rullestol", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Når ein styrar i gruppa lagar ei hending og knyter ho til gruppa, vil ho syna her.", + "When the event is private, you'll need to share the link around.": "Når hendinga er privat, må du dela lenka for at folk skal sjå ho.", + "When the post is private, you'll need to share the link around.": "Når innlegget er privat, må du dela lenka for at folk skal sjå det.", + "Whether smoking is prohibited during the event": "Om det er lov å røykja på tilstellinga", + "Whether the event is accessible with a wheelchair": "Om hendinga har tilgjenge for rullestol", + "Whether the event is interpreted in sign language": "Om direktesendinga har teiknspråktolking", + "Whether the event live video is subtitled": "Om direktesendinga har undertekstar", + "Who can post a comment?": "Kven kan kommentera?", + "Who can view this event and participate": "Kven som kan sjå og delta på denne hendinga", + "Who can view this post": "Kven kan sjå dette innlegget", + "Who published {number} events": "Som har laga {number} hendingar", + "Why create an account?": "Kvifor laga konto?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Lèt deg syna og handtera deltakarstatusen din på hendingssida når du bruker denne eininga. Fjern merkinga viss du bruker ei offentleg eining.", + "With the most participants": "Flest deltakarar", + "Within {number} kilometers of {place}": "|Innan ein kilometer frå {place}|Innan {number} kilometer frå {place}", + "Write a new comment": "Skriv ein ny kommentar", + "Write a new message": "Skriv ei ny melding", + "Write a new reply": "Skriv eit nytt svar", + "Write something": "Skriv noko", + "Write your post": "Skriv innlegget", + "Yesterday": "I går", + "You accepted the invitation to join the group.": "Du tok imot invitasjonen om å bli med i gruppa.", + "You added the member {member}.": "Du la til medlemen {member}.", + "You approved {member}'s membership.": "Du godkjende {member} som medlem.", + "You archived the discussion {discussion}.": "Du arkiverte ordskiftet {discussion}.", + "You are not an administrator for this group.": "Du er ikkje styrar for denne gruppa.", + "You are not part of any group.": "Du er ikkje med i noko gruppe.", + "You are offline": "Du er ikkje påkopla", + "You are participating in this event anonymously": "Du deltek på denne hendinga anonymt", + "You are participating in this event anonymously but didn't confirm participation": "Du deltek på denne hendinga anonymt, men har ikkje stadfesta at du deltek", + "You can add resources by using the button above.": "Du kan leggja til ressursar med knappen over.", + "You can add tags by hitting the Enter key or by adding a comma": "Du kan leggja til merkelappar ved å trykkja Enter eller skriva eit komma", + "You can pick your timezone into your preferences.": "Du kan velja tidssone i innstillingane dine.", + "You can try another search term or drag and drop the marker on the map": "Du kan søkja etter noko anna, eller dra og sleppa markøren på kartet", + "You can't change your password because you are registered through {provider}.": "Du kan ikkje endra passordet ditt, fordi du er registrert gjennom {provider}.", + "You can't use push notifications in this browser.": "Du kan ikkje bruka straksvarsel i denne nettlesaren.", + "You changed your email or password": "Du endra eposten eller passordet ditt", + "You created the discussion {discussion}.": "Du laga ordskiftet {discussion}.", + "You created the event {event}.": "Du laga hendinga {event}.", + "You created the folder {resource}.": "Du laga mappa {resource}.", + "You created the group {group}.": "Du laga gruppa {group}.", + "You created the post {post}.": "Du skreiv innlegget {post}.", + "You created the resource {resource}.": "Du laga ressursen {resource}.", + "You deleted the discussion {discussion}.": "Du sletta ordskiftet {discussion}.", + "You deleted the event {event}.": "Du sletta hendinga {event}.", + "You deleted the folder {resource}.": "Du sletta mappa {resource}.", + "You deleted the post {post}.": "Du sletta innlegget {post}.", + "You deleted the resource {resource}.": "Du sletta ressursen {resource}.", + "You demoted the member {member} to an unknown role.": "Du degraderte medlemen {member} til ei ukjend rolle.", + "You demoted {member} to moderator.": "Du degraderte {member} til redaktør.", + "You demoted {member} to simple member.": "Du degraderte {member} til vanleg medlem.", + "You didn't create or join any event yet.": "Du har ikkje laga eller vorte med på hendingar enno.", + "You don't follow any instances yet.": "Du fylgjer ingen nettstader enno.", + "You don't have any upcoming events. Maybe try another filter?": "Du har ingen komande hendingar. Kanskje du kan prøva eit anna søk?", + "You excluded member {member}.": "Du kasta ut medlemen {member}.", + "You have attended {count} events in the past.": "Du har ikkje vore med på hendingar tidlegare.|Du har vore med på ei hending tidlegare.|Du har vore med på {count} hendingar tidlegare.", + "You have been invited by {invitedBy} to the following group:": "{invitedBy} har invitert deg til denne gruppa:", + "You have been removed from this group's members.": "Du er ikkje lenger medlem i denne gruppa.", + "You have cancelled your participation": "Du har avlyst deltakinga di", + "You have one event in {days} days.": "Du har ingen hendingar dei neste {days} dagane | Du har ei hending dei neste {days} dagane. | Du har {count} hendingar dei neste {days} dagane", + "You have one event today.": "Du har ingen hendingar i dag | Du har ei hending i dag. | Du har {count} hendingar i dag", + "You have one event tomorrow.": "Du har ingen hendingar i morgon | Du har ei hending i morgon. | Du har {count} hendingar i morgon", + "You haven't interacted with other instances yet.": "Du har ikkje samhandla med andre nettstader enno.", + "You invited {member}.": "Du inviterte {member}.", + "You may also:": "Du kan òg:", + "You may clear all participation information for this device with the buttons below.": "Du kan sletta alle deltakingsopplysingar for denne eininga ved å bruka knappane under.", + "You may now close this page or {return_to_the_homepage}.": "No kan du lukka denne sida eller {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "Du kan lata att dette vindauga no, eller {return_to_event}.", + "You may show some members as contacts.": "Du kan syna nokre medlemer som kontakter.", + "You moved the folder {resource} into {new_path}.": "Du flytta mappa {resource} til {new_path}.", + "You moved the folder {resource} to the root folder.": "Du flytta mappa {resource} til rotmappa.", + "You moved the resource {resource} into {new_path}.": "Du flytta ressursen {resource} til {new_path}.", + "You moved the resource {resource} to the root folder.": "Du flytta ressursen {resource} til rotmappa.", + "You need to login.": "Du må logga inn.", + "You posted a comment on the event {event}.": "Du kommenterte hendinga {event}.", + "You promoted the member {member} to an unknown role.": "Du forfremja medlemen {member} til ei ukjend rolle.", + "You promoted {member} to administrator.": "Du forfremja {member} til styrar.", + "You promoted {member} to moderator.": "Du forfremja {member} til redaktør.", + "You rejected {member}'s membership request.": "Du avslo {member} som medlem.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Du døypte om ordskiftet frå {old_discussion} til {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Du døypte om mappa frå {old_resource_title} til {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Du døypte om ressursen frå {old_resource_title} til {resource}.", + "You replied to a comment on the event {event}.": "Du svara på ein kommentar til hendinga {event}.", + "You replied to the discussion {discussion}.": "Du svara på ordskiftet {discussion}.", + "You requested to join the group.": "Du ba om å bli med i gruppa.", + "You updated the event {event}.": "Du oppdaterte hendinga {event}.", + "You updated the group {group}.": "Du oppdaterte gruppa {group}.", + "You updated the member {member}.": "Du oppdaterte medlemen {member}.", + "You updated the post {post}.": "Du oppdaterte innlegget {post}.", + "You were demoted to an unknown role by {profile}.": "{profile} degraderte deg til ei ukjend rolle.", + "You were demoted to moderator by {profile}.": "{profile} degraderte deg til redaktør.", + "You were demoted to simple member by {profile}.": "{profile} degraderte deg til vanleg medlem.", + "You were promoted to administrator by {profile}.": "{profile} forfremja deg til styrar.", + "You were promoted to an unknown role by {profile}.": "{profile} forfremja deg til ei ukjend rolle.", + "You were promoted to moderator by {profile}.": "{profile} forfremja deg til redaktør.", + "You will be able to add an avatar and set other options in your account settings.": "Du kan laga eit profilbilete og gjera andre val i kontoinnstillingane dine.", + "You will be redirected to the original instance": "Du blir send vidare til den opphavelege nettstaden", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Her finn du alle hendingane du har laga eller hendingar du deltek på, samt alle hendingane som er laga av grupper du er medlem i eller fylgjer.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Ut frå %{notification_settings} får du varsel om den offentlege aktiviteten i denne gruppa.", + "You wish to participate to the following event": "Du ynskjer å delta på denne hendinga", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Du vil få eit samandrag kvar måndag over komande hendingar, om du har nokon.", + "You'll need to change the URLs where there were previously entered.": "Du må endra adressene der du har skrive dei inn tidlegare.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Du må senda ut gruppeadressa slik at folk kan sjå gruppeprofilen. Du vil ikkje finna gruppa i Mobilizon-søk eller vanlege søkjemotorar.", + "You'll receive a confirmation email.": "Du får ein stadfestingsepost.", + "YouTube live": "Youtube direkte", + "YouTube replay": "Spel omatt på Youtube", + "Your account has been successfully deleted": "Kontoen din er sletta", + "Your account has been validated": "Kontoen din er godkjend", + "Your account is being validated": "Kontoen din blir godkjend", + "Your account is nearly ready, {username}": "Kontoen din er snart klar, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Byen eller området ditt og radiusen blir berre brukt til å føreslå hendingar i nærleiken. Hendingsradiusen går ut frå administrasjonssenteret i området du har valt.", + "Your current email is {email}. You use it to log in.": "Epostadressa du har no, er {email}. Du bruker ho til å logga inn.", + "Your email": "Epostadressa di", + "Your email address was automatically set based on your {provider} account.": "Epostadressa di vart avgjort automatisk ut frå {provider}-kontoen din.", + "Your email has been changed": "Epostadressa di er endra", + "Your email is being changed": "Epostadressa di blir endra", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Epostadressa di blir berre brukt til å stadfesta at du er ein verkeleg person, og til å senda deg eventuelle oppdateringar for denne hendinga. Me gjev IKKJE adressa di til andre nettstader eller til arrangøren.", + "Your federated identity": "Den spreidde identiteten din", + "Your membership is pending approval": "Medlemskapet ditt ventar på godkjenning", + "Your membership was approved by {profile}.": "{profile} godkjende deg som medlem.", + "Your participation has been confirmed": "Me har stadfesta at du deltek", + "Your participation has been rejected": "Me har avslege deltakinga di", + "Your participation has been requested": "Du har spurt om å delta", + "Your participation request has been validated": "Me har stadfesta at du deltek", + "Your participation request is being validated": "Me stadfestar at du deltek", + "Your participation status has been changed": "Deltakingsstatusen din er endra", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Deltakingsstatusen blir lagra berre på denne eininga, og blir sletta ein månad etter at hendinga er over.", + "Your participation still has to be approved by the organisers.": "Tilskiparane må framleis godkjenna at du deltek.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Deltakinga di blir stadfesta når du har klikka på lenka i eposten, og etter at tilskiparen manuelt har godkjent at du deltek.", + "Your participation will be validated once you click the confirmation link into the email.": "Deltakinga di blir stadfesta når du har klikka på lenka i eposten.", + "Your position was not available.": "Me har ikkje posisjonen din.", + "Your profile will be shown as contact.": "Profilen din blir vist som kontakt.", + "Your timezone is currently set to {timezone}.": "Tidssonen din er {timezone}.", + "Your timezone was detected as {timezone}.": "Me fann tidssonen {timezone}.", + "Your timezone {timezone} isn't supported.": "Tidssonen din {timezone} er ikkje støtta.", + "Your upcoming events": "Komande hendingar", + "Zoom": "Zoom", + "Zoom in": "Zoom inn", + "Zoom out": "Zoom ut", + "[This comment has been deleted by it's author]": "[Skribenten har sletta denne kommentaren]", + "[This comment has been deleted]": "[Denne kommentaren er sletta]", + "[deleted]": "[sletta]", + "a non-existent report": "ein ikkje-eksisterande rapport", + "access the corresponding account": "få tilgang til den aktuelle kontoen", + "access to the group's private content as well": "tilgang til det private innhaldet til gruppa òg", + "and {number} groups": "og {number} grupper", + "any distance": "alle avstandar", + "as {identity}": "som {identity}", + "contact uninformed": "ingen kontakt informert", + "create a group": "laga ei gruppe", + "create an event": "laga ei hending", + "default Mobilizon privacy policy": "standard personvern for Mobilizon", + "default Mobilizon terms": "Standardvilkår for Mobilizon", + "e.g. 10 Rue Jangot": "td. Kaigata 10", + "e.g. Accessibility, Twitch, PeerTube": "td. tilgjenge, Twitch, Peertube", + "e.g. Nantes, Berlin, Cork, …": "td. Bergen, Røros, Reykjavik…", + "enable the feature": "skru på funksjonen", + "explore the events": "utforska hendingane", + "explore the groups": "utforska gruppene", + "find, create and organise events": "finna, laga og organisera hendingar", + "full rules": "fullstendige reglar", + "group's upcoming public events": "dei komande offentlege hendingane frå gruppa", + "https://mensuel.framapad.org/p/some-secret-token": "https://pad.disroot.org/p/some-secret-token", + "iCal Feed": "iCal-straum", + "instance rules": "reglar for nettstaden", + "mobilizon-instance.tld": "mobilizon-nettstad.domene", + "more than 1360 contributors": "meir enn 1360 bidragsytarar", + "multitude of interconnected Mobilizon websites": "mange samankopla Mobilizon-nettstader", + "new{'@'}email.com": "ny{'@'}epost.no", + "profile@instance": "profil@nettstad", + "profile{'@'}instance": "profil{'@'}nettstad", + "report #{report_number}": "rapport nr. {report_number}", + "return to the event's page": "gå tilbake til hendingssida", + "return to the homepage": "gå tilbake til heimesida", + "terms of service": "brukarvilkår", + "tool designed to serve you": "ein reiskap som er laga for at du skal bruka han", + "with another identity…": "med ein annan identitet…", + "your notification settings": "varslingsinnstillingane dine", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved} / {total} plassar", + "{available}/{capacity} available places": "Ingen ledige plassar|{available}/{capacity} ledige plassar", + "{count} events": "{count} hendingar", + "{count} km": "{count}km", + "{count} members": "Ingen medlemer|Ein medlem|{count} medlemer", + "{count} members or followers": "Ingen medlemer eller fylgjarar|Ein medlem eller fylgjar|{count} medlemer eller fylgjarar", + "{count} participants": "Ingen deltakarar enno| Ein deltakar | {count} deltakarar", + "{count} requests waiting": "{count} førespurnader ventar", + "{eventsCount} events found": "Fann ingen hendingar|Fann ei hending|Fann {eventsCount} hendingar", + "{folder} - Resources": "{folder} - Ressursar", + "{groupsCount} groups found": "Fann ingen grupper|Fann ei gruppe|Fann {groupsCount} grupper", + "{group} activity timeline": "Tidsline over aktiviteten i {group}", + "{group} events": "Hendingar i {group}", + "{group} posts": "Innlegg i {group}", + "{group}'s events": "Hendingane til {group}", + "{group}'s todolists": "Gjeremåla til {group}", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} er ein nettstad som bruker {mobilizon}-programvara.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} er ein nettstad på {mobilizon_link}, fri programvare som er laga av brukarmiljøet.", + "{member} accepted the invitation to join the group.": "{member} tok imot invitasjonen om å bli med i gruppa.", + "{member} joined the group.": "{member} vart med i gruppa.", + "{member} rejected the invitation to join the group.": "{member} takka nei til invitasjonen om å bli med i gruppa.", + "{member} requested to join the group.": "{member} ba om å bli med i gruppa.", + "{member} was invited by {profile}.": "{profile} inviterte {member}.", + "{moderator} added a note on {report}": "{moderator} skreiv eit notat til {report}", + "{moderator} closed {report}": "{moderator} avslutta {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} sletta ei hending med namnet \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} sletta ein kommentar av {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} sletta ein kommentar som {author} skreiv til hendinga {event}", + "{moderator} has deleted user {user}": "{moderator} har sletta brukaren {user}", + "{moderator} has done an unknown action": "{moderator} har gjort ei ukjend handling", + "{moderator} has unsuspended group {profile}": "{moderator} har opna opp att gruppa {profile}", + "{moderator} has unsuspended profile {profile}": "{moderator} har oppheva sperringa av {profile}", + "{moderator} marked {report} as resolved": "{moderator} merka {report} som løyst", + "{moderator} reopened {report}": "{moderator} opna {report} på nytt", + "{moderator} suspended group {profile}": "{moderator} stengde gruppa {profile}", + "{moderator} suspended profile {profile}": "{moderator} sperra profilen {profile}", + "{nb} km": "{nb} km", + "{numberOfCategories} selected": "Du har valt {numberOfCategories}", + "{numberOfLanguages} selected": "Du har valt {numberOfLanguages}", + "{number} kilometers": "{number} kilometer", + "{number} members": "{number} medlemer", + "{number} memberships": "{number} medlemskap", + "{number} organized events": "Ingen organiserte hendingar|Ei organisert hending|{number} organiserte hendingar", + "{number} participations": "Ingen deltakarar|Ein deltakar|{number} deltakarar", + "{number} posts": "Ingen innlegg|Eitt innlegg|{number} innlegg", + "{number} seats left": "{number} ledige sete", + "{old_group_name} was renamed to {group}.": "{old_group_name} vart døypt om til {group}.", + "{profile} (by default)": "{profile} (som standard)", + "{profile} added the member {member}.": "{profile} la til medlemen {member}.", + "{profile} approved {member}'s membership.": "{profile} godkjende {member} som medlem.", + "{profile} archived the discussion {discussion}.": "{profile} arkiverte ordskiftet {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} laga ordskiftet {discussion}.", + "{profile} created the folder {resource}.": "{profile} laga mappa {resource}.", + "{profile} created the group {group}.": "{profile} laga gruppa {group}.", + "{profile} created the resource {resource}.": "{profile} laga ressursen {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} sletta ordskiftet {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} sletta mappa {resource}.", + "{profile} deleted the resource {resource}.": "{profile} sletta ressursen {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} degraderte {member} til ei ukjend rolle.", + "{profile} demoted {member} to moderator.": "{profile} degraderte {member} til redaktør.", + "{profile} demoted {member} to simple member.": "{profile} degraderte {member} til vanleg medlem.", + "{profile} excluded member {member}.": "{profile} kasta ut medlemen {member}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} flytta mappa {resource} til {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} flytta mappa {resource} til rotmappa.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} flytta ressursen {resource} til {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} flytta ressursen {resource} til rotmappa.", + "{profile} posted a comment on the event {event}.": "{profile} kommenterte hendinga {event}.", + "{profile} promoted {member} to administrator.": "{profile} forfremja {member} til styrar.", + "{profile} promoted {member} to an unknown role.": "{profile} forfremja {member} til ei ukjend rolle.", + "{profile} promoted {member} to moderator.": "{profile} forfremja {member} til redaktør.", + "{profile} quit the group.": "{profile} forlét gruppa.", + "{profile} rejected {member}'s membership request.": "{profile} avslo {member} som medlem.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} døypte om ordskiftet frå {old_discussion} til {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} døypte om mappa frå {old_resource_title} til {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} døypte om ressursen frå {old_resource_title} til {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} svara på ein kommentar til hendinga {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} svara på ordskiftet {discussion}.", + "{profile} updated the group {group}.": "{profile} oppdaterte gruppa {group}.", + "{profile} updated the member {member}.": "{profile} oppdaterte medlemen {member}.", + "{resultsCount} results found": "Fann ingen resultat|Fann eitt resultat|Fann {resultsCount} resultat", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} ting å gjera)", + "{username} was invited to {group}": "{username} vart invitert til {group}", + "© The OpenStreetMap Contributors": "© OpenStreetMap-bidragsytarane" +}); diff --git a/res/locale/oc.js b/res/locale/oc.js new file mode 100644 index 0000000..95b8358 --- /dev/null +++ b/res/locale/oc.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Amagat)", + "(this folder)": "(aqueste dossièr)", + "(this link)": "(aqueste ligam)", + "+ Add a resource": "+ Ajustar una ressorsa", + "+ Create a post": "", + "+ Create an event": "+ Crear un eveniment", + "+ Start a discussion": "+ Començar una discussion", + "{contact} will be displayed as contact.": "{contact} serà mostrat coma contacte.|{contact} seràn mostrats coma contactes.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "La demanda de seguiment de @{username} es estada regetada", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Un cookie es un pichon fichier que conten informacions e es enviat a l’ordenador quand consultatz un site web. Quand visitatz lo site de nòu, lo cookie permet al site de reconéisser vòstre navegador. Los cookies pòdon gardar las preferéncias dels utilizaires e d’autras informacions. Podètz configurar vòstre navegador per que regète totes los cookies. Pasmens, aquò pòt copar unas foncions o unes servicis del site web. L’emmagazinatge local fonciona de la meteissa manièra mas permet de salvar mai de donadas.", + "A discussion has been created or updated": "", + "A federated software": "Un logicial federat", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "Una version nòva es disponibla.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Una seccion apropriada per vòstre còdi de conduch, règlas o linhas directrises. Podètz utilizar las balisas HTML.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Una seccion per explicar qual sètz e los aspèctes que caracterizan vòstra instància. Podètz utilizar de balisas HTML.", + "A place to publish something to the whole world, your community or just your group members.": "Un lòc per publicar quicòm a destinacion del monde entièr, de vòstra comunautat o simplament dels membres de vòstre grop.", + "A place to store links to documents or resources of any type.": "Un lòc per gardar de ligams cap a documents o ressorsas de quin tipe que siá.", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "Una aisina practica", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Un eslogan cort per la pagina d’acuèlh de vòstra instància. La valor per defaut es « Amassar ⋅ Organizar ⋅ Mobilizar »", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Una aisina conviviala, liberatritz e etica per s’amassar, s’organizar e se mobilizar.", + "A validation email was sent to {email}": "Un corrièl de validacion es estat enviat a {email}", + "API": "API", + "Abandon editing": "Abandar la modificacion", + "About": "A prepaus", + "About Mobilizon": "A prepaus de Mobilizon", + "About anonymous participation": "A prepaus de la participacion anonima", + "About instance": "", + "About this event": "Tocant aqueste eveniment", + "About this instance": "Tocant aquesta instància", + "About {instance}": "A prepaus de {instance}", + "Accept": "Acceptar", + "Accepted": "Acceptada", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "Accessible sonque als membres", + "Accessible through link": "Accessible sonque via ligam", + "Account": "Compte", + "Account settings": "Paramètres del compte", + "Actions": "Accions", + "Activate browser push notifications": "", + "Activated": "Activat", + "Active": "Actiu-va", + "Activity": "Activitat", + "Actor": "Actor", + "Add": "Ajustar", + "Add / Remove…": "Ajustar / Suprimir…", + "Add a contact": "Ajustar un contacte", + "Add a new post": "Ajustar un bilhet novèl", + "Add a note": "Ajustar una nòta", + "Add a todo": "Ajustar un todo", + "Add an address": "Ajustar una adreça", + "Add an instance": "Ajustar una instància", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "Ajustar d’etiquetas", + "Add to my calendar": "Ajustar a mon calendièr", + "Additional comments": "Comentari adicional", + "Admin": "Admin", + "Admin dashboard": "", + "Admin settings": "Paramètres d’administracion", + "Admin settings successfully saved.": "Paramètres d’administracion corrèctament enregistrats.", + "Administration": "Administracion", + "Administrator": "Administrator", + "All activities": "Totas las activitats", + "All good, let's continue!": "Tot es bon, contunham !", + "All the places have already been taken": "Totas las plaças son presas", + "Allow all comments from users with accounts": "Autorizar los comentaris dels utilizaires amb compte", + "Allow registrations": "Permetre las inscripcions", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "Una error s’es producha. O planhèm. Podètz tornar ensajar en actualizant la pagina.", + "An ethical alternative": "Una alternativa etica", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Una instància es una version del logicial Mobilizon que fonciona sus un servidor. Quina persona que siá pòt gerir una instància amb lo {mobilizon_software} o d’autras aplicacions federadas, correspondent al « fedivers ». Aquesta instància s’apèla {instance_name}. Mobilizon es un malhum federat de multiplas instàncias (coma los servidors de corrièl), unes utilizaires son marcats sus diferentas instàncias e pòdon comunicar malgrat que sián pas enregistrats sus la meteissa instància.", + "And {number} comments": "E {number} comentaris", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "Participants anonims", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Òm demandarà als participants anonims de confirmar lor venguda via un corrièl.", + "Anonymous participations": "Participacions anonimas", + "Any day": "Rai lo jorn", + "Any type": "", + "Anyone can join freely": "Qual que siá pòt rejónher", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "Qual que siá que vòl devenir membre poirà o far a partir d’aquesta pagina de grop.", + "Application": "Aplicacion", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Volètz vertadièrament suprimir vòstre compte ? O perdretz tot. Identitats, paramètres, eveniments creats, messatges e participacions desapareisseràn per totjorn.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Volètz vertadièrament suprimir complètament aqueste grop ? Totes los membres, inclutz los d’autras instàncias, seràn notificats e suprimits de grop, e totas las donadas ligadas al grop (eveniments, publicacions, discussions, prètzfaches…) seràn irremediablament perduts.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Volètz vertadièrament suprimir aqueste comentari ? Aquesta accion es irreversibla.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Volètz vertadièrament suprimir aqueste eveniment ? Aquesta accion es irreversibla. Benlèu qu’a la plaça volètz començar una conversacion amb l’organizaire o modificar sos eveniment.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Volètz vertadièrament suspendre aqueste grop ? Totes los membres, inclutz los d’autras instàncias, seràn notificats e suprimits de grop, e totas las donadas ligadas al grop (eveniments, publicacions, discussions, prètzfaches…) seràn irremediablament perduts.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Volètz vertadièrament suspendre aqueste grop ? Estant qu’aqueste grop ven de l’instància {instance}, aquò suprimirà sonque los membres locals e suprimirà las donadas localas e regetarà totas las donadas futuras.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Volètz vertadièrament anullar la creacion de l’eveniment ? Perdretz totas vòstras modificacions.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Volètz vertadièrament anullar la modificacion de l’eveniment ? Perdretz totas vòstras modificacions.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Volètz vertadièrament anullar vòstra participacion a l’eveniment « {title} » ?", + "Are you sure you want to delete this entire discussion?": "Volètz vertadièrament suprimir la discussion entièra ?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Volètz vertadièrament suprimir aqueste eveniment ? Aquesta accion se pòt pas anullar.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "L'organizator de l'eveniment causiguèt de validar manualament las demandas de participacion, la vòstra participacion serà vertadièrament confirmada al moment que recebrètz un e-mail disent qu'es estada acceptada.", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "Assignat a", + "Atom feed for events and posts": "Flux Atom per los eveniments e las publicacions", + "Attending": "", + "Avatar": "Avatar", + "Back to group list": "", + "Back to previous page": "Tornar a pas pagina precedenta", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "Banièra", + "Before you can login, you need to click on the link inside it to validate your account.": "Abans que poscatz vos marcar, devètz clicar lo ligam dedins per validar lo compte.", + "Begins on": "Comença lo", + "Big Blue Button": "", + "Bold": "Gras", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "Notificacions de navegador", + "Bullet list": "", + "By others": "Dels autres", + "By {group}": "Per {group}", + "By {username}": "Per {username}", + "Can be an email or a link, or just plain text.": "Pòt èsser una adreça electronica o un ligam, o encara un simple tèxt brut.", + "Cancel": "Anullar", + "Cancel anonymous participation": "Anullar la participacion anonima", + "Cancel creation": "Anullar la creacion", + "Cancel discussion title edition": "", + "Cancel edition": "Anullar la modificacion", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "Anullar ma demanda de participacion…", + "Cancel my participation…": "Anullar ma participacion…", + "Cancelled": "Anullat", + "Cancelled: Won't happen": "Anullat : se tendrà pas", + "Change": "Modificar", + "Change my email": "Cambiar mon adreça electronica", + "Change my identity…": "Cambiar mon identitat…", + "Change my password": "Modificar mon senhal", + "Change timezone": "Cambiar de zòna orària", + "Check your inbox (and your junk mail folder).": "Verificatz vòstra bóstia de recepcion (los indesirales tanben).", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "Vila o region", + "Clear": "Escafar", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "Escafar mas donadas de participacion per totes los eveniments", + "Clear participation data for this event": "Escafar mas donadas de participacion per aqueste eveniment", + "Clear timezone field": "", + "Click for more information": "Clicatz per mai d’informacions", + "Click to upload": "Clicatz per enviar", + "Close": "Tancar", + "Close comments for all (except for admins)": "Barrar los comentaris a tot lo monde (fòra los administrators)", + "Closed": "Tancat", + "Comment body": "", + "Comment deleted": "Comentari suprimit", + "Comment text can't be empty": "Lo tèxt del comentari pòt pas èsser void", + "Comments": "Comentaris", + "Comments are closed for everybody else.": "Los comentaris son tampats pels autres.", + "Confirm my participation": "Confirmar ma participacion", + "Confirm my particpation": "Confirmar ma participacion", + "Confirm participation": "", + "Confirmed": "Confirmat", + "Confirmed at": "Confirmat a", + "Confirmed: Will happen": "Confirmat : se tendrà", + "Congratulations, your account is now created!": "Òsca, vòstre compte es ara creat !", + "Contact": "Contacte", + "Continue editing": "Contunhar la modificacion", + "Cookies and Local storage": "Cookies e emmagazinatge local", + "Copy URL to clipboard": "", + "Copy details to clipboard": "Copiar los detalhs al quichapapièrs", + "Country": "País", + "Create": "Crear", + "Create a calc": "Crear un calc", + "Create a discussion": "Crear una discussion", + "Create a folder": "Crear un dossièr", + "Create a new event": "Crear un eveniment novèl", + "Create a new group": "Crear un grop novèl", + "Create a new identity": "Crear una identitat novèla", + "Create a new list": "Crear una lista novèla", + "Create a new profile": "Crear un perfil nòu", + "Create a pad": "Crear un pad", + "Create a videoconference": "Crear una visio-conferéncia", + "Create an account": "Crear un compte", + "Create discussion": "", + "Create event": "Crear un eveniment", + "Create group": "Crear un grop", + "Create identity": "", + "Create my event": "Crear mon eveniment", + "Create my group": "Crear mon grop", + "Create my profile": "Crear mon perfil", + "Create new links": "Crear de ligams nòus", + "Create resource": "Crear una ressorsa", + "Create the discussion": "Crear la discussion", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Creatz de listas de causas a far per quin prètzfach que siá que devètz realizar, assignatz-las e fixatz de datas limit.", + "Create token": "Crear un geton", + "Created by {name}": "Creat per {name}", + "Created by {username}": "Creat per {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "L’identitat actuala es estada cambiada per {identityName} per dire de poder gerir aqueste eveniment.", + "Current page": "Pagina actuala", + "Custom": "Personalizar", + "Custom URL": "URL personalizada", + "Custom text": "Tèxt personalizat", + "Daily email summary": "Corrièl racupitulatiu jornalièr", + "Dashboard": "Tablèu de bòrd", + "Date": "Data", + "Date and time": "Data e ora", + "Date and time settings": "Data e paramètres de temps", + "Date parameters": "Paramètres de data", + "Decline": "Refusar", + "Decrease": "", + "Default": "Per defaut", + "Default Mobilizon privacy policy": "Politica de confidencialitat per defaut de Mobilizon", + "Default Mobilizon terms": "Condicions d’utilizacion per de defaut de Mobilizon", + "Delete": "Suprimir", + "Delete account": "Supression del compte", + "Delete conversation": "Suprimir la conversacion", + "Delete discussion": "Suprimir la discussion", + "Delete event": "Suprimir un eveniment", + "Delete everything": "O suprimir tot", + "Delete group": "Suprimir lo grop", + "Delete my account": "Suprimir mon compte", + "Delete post": "Suprimir la publicacion", + "Delete this discussion": "Suprimir aquesta discussion", + "Delete this identity": "Suprimir aquesta identitat", + "Delete your identity": "Suprimir vòstra identitat", + "Delete {eventTitle}": "Suprimir {eventTitle}", + "Delete {preferredUsername}": "Suprimir {preferredUsername}", + "Deleting comment": "Supression del comentari", + "Deleting event": "Supression de l’eveniment", + "Deleting my account will delete all of my identities.": "La supression de compte menarà la supression de totas mas identitats.", + "Deleting your Mobilizon account": "Suprimir vòstre compte Mobilizon", + "Demote": "Retrogradar", + "Description": "Descripcion", + "Details": "", + "Didn't receive the instructions?": "Avètz pas recebudas las consignas ?", + "Disabled": "Desactivat", + "Discussions": "Discussions", + "Discussions list": "", + "Display name": "Nom mostrat", + "Display participation price": "Far veire un prètz de participacion", + "Displayed nickname": "Escais-nom mostrat", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Afichadas sus la pagina d’acuèlh e dins las balisas meta. Descrivètz qu’es Mobilizon e çò que lo rend especific a aquesta instància en un sol paragraf.", + "Do not receive any mail": "Recebre pas de corrièls", + "Do you wish to {create_event} or {explore_events}?": "Volètz {create_event} o {explore_events} ?", + "Do you wish to {create_group} or {explore_groups}?": "Volètz {create_group} o {explore_groups} ?", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "Domeni", + "Draft": "Borrolhon", + "Drafts": "Borrolhons", + "Due on": "Previst pel", + "Duplicate": "Duplicar", + "Edit": "Editar", + "Edit post": "Modificar lo bilhet", + "Edit profile {profile}": "Editar lo perfil {profile}", + "Edited {ago}": "Modificat {ago}", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "Per exemple : Tolosa, balèti, velhada…", + "Either on the {instance} instance or on another instance.": "Siá sus l’instància {instance} siá sus una autra instància.", + "Either the account is already validated, either the validation token is incorrect.": "Siá lo compte es ja validat, siá lo geton de validacion es incorrècte.", + "Either the email has already been changed, either the validation token is incorrect.": "Siá l’adreça electronica es ja estada modificada, siá lo geton de validacion es incorrèct.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Siá la demanda de participacion es ja estada aprovada, siá lo geton de validacion es incorrèct.", + "Element title": "", + "Element value": "", + "Email": "Corrièl", + "Email address": "Adreça mail", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "Activada", + "Ends on…": "S’acaba lo…", + "Enter the link URL": "Picatz l’URL del ligam", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Indicatz vòstra adreça electronica çai-jos. Vos enviarem las consignas tocant la modificacion de vòstre senhal.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Picatz vòstra pròpria politica de confidencialitat. Las balisas HTML son autorizadas. La {mobilizon_privacy_policy} es fornida coma modèl.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Picatz vòstras pròprias condicions d’utilizacion. Las balisas HTML son autorizadas. Los {mobilizon_terms} son fornits coma modèl.", + "Error": "Error", + "Error details copied!": "Detalhs de l’error copiats !", + "Error message": "Messatge d’error", + "Error stacktrace": "Error amb traça", + "Error while changing email": "Error en modificar l’adreça electronica", + "Error while loading the preview": "Error pendent lo cargament de l’apercebut", + "Error while login with {provider}. Retry or login another way.": "Error pendent la connexion a {provider}. Tornatz ensajar o connectatz-vos autrament.", + "Error while login with {provider}. This login provider doesn't exist.": "Error pendent la connexion a {provider}. Aqueste metòde de connexion existís pas.", + "Error while reporting group {groupTitle}": "Error pendent lo senhalament del grop {groupTitle}", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "Error en validant lo compte", + "Error while validating participation request": "Error pendent la validacion de la demanda de participacion", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Alternativa etica als eveniment, grops e paginas Facebook, Mobilizon es una aisina concebuda per vos servir. Punt.", + "Event": "Eveniment", + "Event URL": "", + "Event already passed": "Eveniment ja passat", + "Event cancelled": "Eveniment anullat", + "Event creation": "Creacion d’eveniment", + "Event description body": "", + "Event edition": "Modificacion d’eveniment", + "Event list": "Lista d’eveniments", + "Event metadata": "", + "Event page settings": "Paramètres de la pagina d’eveniment", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "Eveniment de confirmar", + "Event {eventTitle} deleted": "Eveniment {eventTitle} suprimit", + "Event {eventTitle} reported": "Eveniment {eventTitle} senhalat", + "Events": "Eveniments", + "Events nearby": "Eveniments prèp", + "Events tagged with {tag}": "Eveniments etiquetats amb {tag}", + "Everything": "Totes", + "Ex: mobilizon.fr": "Ex : mobilizon.fr", + "Ex: someone@mobilizon.org": "Ex: qualquun@mobilizon.org", + "Explore": "Explorar", + "Explore events": "Explorar los eveniments", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "Fracàs de l’enregistrament dels paramètres d’administracion", + "Featured events": "Eveniments notables", + "Federated Group Name": "Nom federat del grop", + "Federation": "Federacion", + "Fediverse account": "", + "Fetch more": "Ne recuperar plus", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "Trobar una adreça", + "Find an instance": "Trobar una instància", + "Find another instance": "Trobar una autra instància", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "Seguidor", + "Followers": "Seguidors", + "Followers will receive new public events and posts.": "Los seguidors recebràn las publicacions e activitats novèlas.", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "Abonaments", + "For instance: London": "Per exemple : Tolosa", + "For instance: London, Taekwondo, Architecture…": "Per exemple : Tolosa, Taekwondo, Arquitectura…", + "Forgot your password ?": "Senhal oblidat ?", + "Forgot your password?": "Senhal oblidat ?", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "Del {startDate} a {startTime} fins al {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Del {startDate} a {startTime} fins al {endDate} a {endTime}", + "From the {startDate} to the {endDate}": "Del {startDate} fins al {endDate}", + "From yourself": "De vos", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "Amassar ⋅ Organizar ⋅ Mobilizar", + "General": "General", + "General information": "Informacions generalas", + "General settings": "Paramètres generals", + "Geolocation was not determined in time.": "", + "Getting location": "Obtencion de la localizacion", + "Getting there": "I arribar", + "Glossary": "Glossari", + "Go": "Zo", + "Go to the event page": "Anar a la pagina de l’eveniment", + "Google Meet": "", + "Group": "Grop", + "Group Followers": "Seguidors del grop", + "Group Members": "Membre del grop", + "Group URL": "", + "Group activity": "Activitat dels grops", + "Group address": "Adreça del grop", + "Group description body": "", + "Group display name": "Nom de mostrar del grop", + "Group name": "Nom del grop", + "Group profiles": "", + "Group settings": "Paramètres del grop", + "Group settings saved": "Paramètres de grop salvagardats", + "Group short description": "Descripcion corta del grop", + "Group visibility": "Visibilitat del grop", + "Group {displayName} created": "Grop {displayName} creat", + "Group {groupTitle} reported": "Grop {groupTitle} senhalat", + "Groups": "Grops", + "Groups are not enabled on this instance.": "Los grops son pas activés sus aquesta instància.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Los grops son d’espacis de coordinacion e de preparacion per melhor organizar d’eveniments e gerir vòstra comunautat.", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "Imatge endavant", + "Hide replies": "Rescondre las responsas", + "Home": "Acuèlh", + "Home to {number} users": "Albèrga {number} personas", + "Homepage": "", + "Hourly email summary": "Corrièl recapitulatiu per orada", + "I agree to the {instanceRules} and {termsOfService}": "Accèpti las {instanceRules} e {termsOfService}", + "I create an identity": "Crèï una identitat", + "I don't have a Mobilizon account": "Ai pas de compte Mobilizon", + "I have a Mobilizon account": "Ai un compte Mobilizon", + "I have an account on another Mobilizon instance.": "Ai un compte sus una autra instància Mobilizon.", + "I participate": "Participi", + "I want to allow people to participate without an account.": "Vòli permetre al monde de participar sens compte.", + "I want to approve every participation request": "Vòli aprovar cada demanda de participacion", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "Flux ICS pels eveniements", + "ICS/WebCal Feed": "flux ICS/WebCal", + "Identities": "Identitats", + "Identity {displayName} created": "Identitat {displayName} creada", + "Identity {displayName} deleted": "Identitat {displayName} suprimida", + "Identity {displayName} updated": "Identitat {displayName} actualizada", + "If allowed by organizer": "Se permés per l’organizator", + "If an account with this email exists, we just sent another confirmation email to {email}": "Se un compte amb aquesta adreça existís, venèm d’enviar un novèl corrièl de confirmacion a {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "S’aquesta identitat es l’unica que pòt administrar unes grops, vos cal los suprimir d’en primièr per dire de poder suprimir aquesta identitat.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Se qualqu’un vos demanda vòstra identitat federada, es compausada de vòstre nom d’utilizaire e de vòstra instància. Per exemple, l’identitat federada de vòstre primièr perfil es :", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "S’avètz optat per una validacion manuala de las participacions, Mobilizon vos enviarà un email per vos téner al fial de las participacions novèlas de tractar. Podètz causir la frequéncia d’aquestas notificacion çai-jos.", + "If you want, you may send a message to the event organizer here.": "Se volètz, podètz daissar aquí un messatge per l’organizator de l’eveniment çai-jos.", + "Ignore": "Ignorar", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "Dins lo contèxt seguent, una aplicacion es un logicial, provesit per la còla Mobilizon o una tèrça part, utilizat per interagir amb vòstra instància.", + "In the past": "", + "Increase": "", + "Instance": "Instància", + "Instance Long Description": "Descripcion longa de l’instància", + "Instance Name": "Nom de l’instància", + "Instance Privacy Policy": "Politica de confidencialitat de l’instància", + "Instance Privacy Policy Source": "Font de la politica de confidencialitat de l’instància", + "Instance Privacy Policy URL": "URL de la politica de confidencialitat de l’instància", + "Instance Rules": "Règlas de l’instància", + "Instance Short Description": "Descripcion corta de l’instància", + "Instance Slogan": "Eslogan de l’instància", + "Instance Terms": "Tèrmes de l’instància", + "Instance Terms Source": "Font dels tèrmes de l’instància", + "Instance Terms URL": "URL dels tèrmes de l’instància", + "Instance administrator": "Administrator de l’instància", + "Instance configuration": "Configuracion de l’instància", + "Instance feeds": "Flux de l’instància", + "Instance languages": "Lenga de l’instància", + "Instance rules": "Règlas de l’instància", + "Instance settings": "Paramètres de l’instància", + "Instances": "Instàncias", + "Instances following you": "Instàncias vos seguisson", + "Instances you follow": "Instàncias que seguissètz", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "Convidar un membre novèl", + "Invite member": "Convidar un membre", + "Invited": "Convidat", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Es possible que lo contengut siá pas accessible d’aquesta instància estant, pr’amor qu’aquesta instància bloquèt lo perfil o lo grop darrièr aqueste contengut.", + "Italic": "Italica", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "Rejonhètz {instance}, una instància Mobilizon", + "Join group": "Rejónher lo grop", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "Amassatz en una sola pagina tota la conversacion a prepaus d’un subjècte especific.", + "Key words": "Mots claus", + "Language": "Lenga", + "Last IP adress": "Darrièra adreça IP", + "Last group created": "Darrièr grop creat", + "Last published event": "Darrièr eveniment publicat", + "Last published events": "Darrièrs eveniments publicats", + "Last sign-in": "Darrièra connexion", + "Last week": "La setmana passada", + "Latest posts": "Darrièras messatges publics", + "Learn more": "Ne saber mai", + "Learn more about Mobilizon": "Ne saber mai subre Mobilizon", + "Learn more about {instance}": "Ne saber mai tocant {instance}", + "Leave": "Quitar", + "Leave event": "Anullar ma participacion a l’eveniment", + "Leave group": "Quitar lo grop", + "Leaving event \"{title}\"": "Quitar l’eveniment « {title} »", + "Legal": "Mencions legalas", + "Let's define a few settings": "Anem definir qualques paramètres", + "License": "Licéncia", + "Limited number of places": "Nombre de plaças limitat", + "List title": "Títol de la lista", + "Live": "", + "Load more": "Ne veire mai", + "Load more activities": "", + "Loading comments…": "Cargament dels comentaris…", + "Local": "Local", + "Local time ({timezone})": "", + "Locality": "Comuna", + "Location": "Lòc", + "Log in": "Se connectar", + "Log out": "Se desconnectar", + "Login": "Se connectar", + "Login on Mobilizon!": "Se connectar a Mobilizon !", + "Login on {instance}": "Connexion a {instance}", + "Login status": "Estat de la connexion", + "Main languages you/your moderators speak": "Lengas principalas vòstras / de vòstres moderators", + "Manage participations": "Gerir las participacions", + "Manually approve new followers": "Aprovar las demandas de seguiment novèlas manualament", + "Manually invite new members": "Convidar membres novèls manualament", + "Mark as resolved": "Marcar coma resolgut", + "Member": "Membre", + "Members": "Membres", + "Members-only post": "", + "Mentions": "Mencions", + "Message": "Messatge", + "Microsoft Teams": "", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon es un malhum federat. Podètz interagir amb aqueste eveniment d’un servidor diferent estant.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon es un logicial federat, vòl dire que podètz interagir - segon los paramètres de federacion de vòstre administrator - amb lo contengut d’autras instàncias, coma per exemple rejónher grops o eveniment creats endacòm mai.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon es una aisina que vos permet de trobar, crear e organizar d’eveniments.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon es pas una plataforma giganta, mas una multitud de site web Mobilizon interconnectats.", + "Mobilizon software": "logicial Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon utiliza un sistèma de perfils per clausonar vòstras activitats. Podètz crear tan de perfils que volètz.", + "Mobilizon version": "Version de Mobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon vos enviarà un email quand totes los eveniments que i participatz receban d’importantas modificacions : data e ora, adreça, confirmacion o anullacion, etc.", + "Moderate new members": "", + "Moderated comments (shown after approval)": "Comentaris moderats (mostrat aprèp validacion)", + "Moderation": "Moderacion", + "Moderation log": "Jornals de moderacion", + "Moderation logs": "", + "Moderator": "Moderator", + "Move": "Desplaçar", + "Move \"{resourceName}\"": "Desplaçar « {resourceName} »", + "Move resource to the root folder": "", + "Move resource to {folder}": "Desplaçar la ressorsa dins {folder}", + "My account": "Mon compte", + "My events": "Mos eveniments", + "My groups": "Mos grops", + "My identities": "Mas identitats", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "NÒTA : las condicions per defaut son pas estadas verificadas per de juristas e son susceptiblas d’ofrir pas una proteccion juridica complèta dins totas las situacion per un administrator d’instància que las utiliza. Son pas nimai especificas a totes los païses e juridiccions. Se sètz pas segur, consultatz un jurista.", + "Name": "Nom", + "Navigated to {pageTitle}": "", + "New discussion": "Conversacion novèla", + "New email": "Adreça novèla", + "New folder": "Dossièr novèl", + "New link": "Ligam novèl", + "New members": "Membres novèls", + "New note": "Nòva nòta", + "New password": "Nòu senhal", + "New post": "Publicacion novèla", + "New profile": "Nòu perfil", + "Next": "Seguent", + "Next month": "Lo mes que ven", + "Next page": "Pagina seguenta", + "Next week": "La setmana que ven", + "No address defined": "Cap d’adreça pas definida", + "No closed reports yet": "Cap de senhalament tancat pel moment", + "No comment": "Cap de comentari", + "No comments yet": "Cap de comentari pel moment", + "No discussions yet": "Cap de conversacions pel moment", + "No end date": "Cap de data de fin", + "No events found": "Cap d’eveniment pas trobat", + "No follower matches the filters": "Cap de seguidor correspondent als filtres", + "No group found": "Cap de grop pas trobat", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "Cap de grop pas trobat", + "No information": "", + "No instance follows your instance yet.": "Cap d’instància vos sèc pel moment.", + "No instance to approve|Approve instance|Approve {number} instances": "Cap d’instància de validar|Validar l’instància|Validar {number} instàncias", + "No instance to reject|Reject instance|Reject {number} instances": "Cap d’instància de regetar|Regetar l’instància|Regetar {number} instàncias", + "No instance to remove|Remove instance|Remove {number} instances": "Cap d’instància de levar|Levar l’instància|Levar {number} instàncias", + "No languages found": "Cap de lenga pas trobada", + "No member matches the filters": "Cap de membre correspond pas als filtres", + "No members found": "", + "No memberships found": "", + "No message": "Cap de messatge", + "No moderation logs yet": "Cap de jornals de moderacion pel moment", + "No more activity to display.": "I a pas mai d’activitat de mostrar.", + "No one is participating|One person participating|{going} people participating": "Degun participa pas", + "No open reports yet": "Cap de senhalament dubèrt pel moment", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "Cap de participant correspond pas als filtres", + "No participant to approve|Approve participant|Approve {number} participants": "Cap de participar de validar|Validar la participacion|Validar los {number} participants", + "No participant to reject|Reject participant|Reject {number} participants": "Cap de participant de regetar|Regetar la participacion|Regetar los {number} participants", + "No participations listed": "", + "No posts found": "Cap de publicacion pas trobada", + "No posts yet": "Cap de publicacion pel moment", + "No profile matches the filters": "Cap de perfil correspond pas als filtres", + "No public upcoming events": "Cap d’eveniment pas previst", + "No resolved reports yet": "Cap de senhalament resolgut pel moment", + "No resources in this folder": "Cap de ressorsa dins aquesta dossièr", + "No resources selected": "Cap de ressorsas pas seleccionadas|Una ressorsa seleccionada|{count} ressorsas seleccionadas", + "No resources yet": "Cap de ressorsas pel moment", + "No results for \"{queryText}\"": "Cap de resultats per « {queryText} »", + "No results for {search}": "", + "No rules defined yet.": "Cap de règlas pel moment.", + "None": "Cap", + "Not accessible with a wheelchair": "", + "Not approved": "Pas aprovat", + "Not confirmed": "Pas confirmat", + "Notes": "Nòtas", + "Notification before the event": "Notificacion abans l’eveniment", + "Notification on the day of the event": "Notificacion lo jorn de l’eveniment", + "Notification settings": "Paramètres de notificacions", + "Notifications": "Notificacions", + "Notifications for manually approved participations to an event": "Notificacion per l’aprobacion manuala de las participacions a un eveniment", + "Notify participants": "Notificar los participants", + "Now, create your first profile:": "Ara, creatz vòstre primièr perfil :", + "Number of places": "Nombre de plaças", + "OK": "OK", + "Old password": "Ancian senhal", + "On {date}": "Lo {date}", + "On {date} ending at {endTime}": "Lo {date}, s’acaba a {endTime}", + "On {date} from {startTime} to {endTime}": "Lo {date} de {startTime} fins a {endTime}", + "On {date} starting at {startTime}": "Lo {date} a partir de {startTime}", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "Accessible sonque via ligam", + "Only accessible through link (private)": "Sonque accessible via ligam (privat)", + "Only accessible to members of the group": "Accessible sonque als membres del grop", + "Only alphanumeric lowercased characters and underscores are supported.": "Solament los caractèrs alfanumerics minusculs e los jonhents basses son acceptats.", + "Only group members can access discussions": "Sonque los membres del grop pòdon accedir a las discussions", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "Sonque los moderators de grops pòdon crear, modificar e suprimir de publicacions.", + "Only registered users may fetch remote events from their URL.": "", + "Open": "Dobèrtas", + "Open a topic on our forum": "Dobrir un subjècte al forum", + "Open an issue on our bug tracker (advanced users)": "Dobrir un incident (utilizaire avançat)", + "Opened reports": "Senhalaments dubèrts", + "Or": "O", + "Ordered list": "", + "Organized": "Organizats", + "Organized by": "Organizat per", + "Organized by {name}": "Organizat per {name}", + "Organizer": "Organizator", + "Organizer notifications": "Notificacions per organizator", + "Organizers": "Organizators", + "Other": "Autra", + "Other actions": "", + "Other notification options:": "Autras opcions de notificacions :", + "Other software may also support this.": "D’autres logicials pòdon tanben èsser compatibles amb aquò.", + "Otherwise this identity will just be removed from the group administrators.": "Autrament aquesta identitat serà pas que suprimida dels administrators del grop.", + "Page": "Pagina", + "Page limited to my group (asks for auth)": "Accès limitat a mon grop (demanda d’autentificacion)", + "Page not found": "Pagina pas trobada", + "Parent folder": "Dossièr parent", + "Partially accessible with a wheelchair": "", + "Participant": "Participant", + "Participants": "Participants", + "Participate": "Participar", + "Participate using your email address": "Participar en utilizant una adreça electronica", + "Participation approval": "Validacion dels participants", + "Participation confirmation": "Confirmacion de participacion", + "Participation notifications": "Notificacions de participacion", + "Participation requested!": "Participacion demandada !", + "Participation with account": "", + "Participation without account": "", + "Participations": "Participacions", + "Password": "Senhal", + "Password (confirmation)": "Senhal (confirmacion)", + "Password reset": "Reïnicializacion del senhal", + "Past events": "Eveniments passats", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "En espèra", + "Personal feeds": "Flux personals", + "Pick": "Causir", + "Pick a profile or a group": "Causir un perfil o un grop", + "Pick an identity": "Causir una identitat", + "Pick an instance": "Causir una instància", + "Please add as many details as possible to help identify the problem.": "Mercés d’apondre un maximum de detalhs per ajudar a identificar lo problèma.", + "Please check your spam folder if you didn't receive the email.": "Mercés de verificar vòstre dorsièr de messatges indesirables s’avètz pas recebut lo corrièl.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Volgatz contactar l’administrator d’aquesta instància Mobilizon se pensatz qu’es una error.", + "Please do not use it in any real way.": "Mercés de l’utilizar pas d’un biais real.", + "Please enter your password to confirm this action.": "Volgatz picar vòstre senhal per confirmar aquesta accion.", + "Please make sure the address is correct and that the page hasn't been moved.": "Asseguratz-vos que l’adreça es corrècta e que la pagina es pas estada desplaçada.", + "Please read the {fullRules} published by {instance}'s administrators.": "Mercés de legir las {fullRules} publicadas per l’administrator de {instance}.", + "Post": "Publicacion", + "Post URL": "", + "Post a comment": "Publicar lo comentari", + "Post a reply": "Respondre", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "Còdi postal", + "Posts": "Publicacions", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Propulsat per {mobilizon}. © 2018 - {date} Los contributors Mobilizon - Realizat amb lo sosten financièr de {contributors}.", + "Preferences": "Preferéncias", + "Previous": "Precedent", + "Previous month": "", + "Previous page": "Pagina precedenta", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "Politica de confidencialitat", + "Privacy policy": "Politica de confidencialitat", + "Private event": "Eveniment privat", + "Private feeds": "Flux privats", + "Profile": "Perfil", + "Profile feeds": "Flux del perfil", + "Profiles": "Perfils", + "Profiles and federation": "Perfils e federacion", + "Promote": "Promòure", + "Public": "Public", + "Public RSS/Atom Feed": "Flux RSS/Atom public", + "Public comment moderation": "Moderacion dels comentaris publics", + "Public event": "Eveniment public", + "Public feeds": "Flux publics", + "Public iCal Feed": "Flux iCal public", + "Public preview": "Apercebut public", + "Publication date": "Data de publicacion", + "Publish": "Publicar", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "Eveniments publicats amb {comments} comentaris e {participations} participacions confirmadas", + "Push": "Push", + "Quote": "", + "RSS/Atom Feed": "Flux RSS/Atom", + "Radius": "Rai", + "Recap every week": "Resumit setmanièr", + "Receive one email for each activity": "", + "Receive one email per request": "Recebre pas qu’un corrièl per demanda", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "Redireccion cap al contengut…", + "Redo": "", + "Refresh profile": "Actualizar lo perfil", + "Regenerate new links": "Regenerar de ligams nòus", + "Region": "Region", + "Register": "S’inscriure", + "Register an account on {instanceName}!": "S’inscriure a {instanceName} !", + "Register on this instance": "Se marcar a aquesta instància", + "Registration is allowed, anyone can register.": "Las inscripcions son dubèrtas, tot lo monde pòt s’enregistrar.", + "Registration is closed.": "Las inscripcions son barradas.", + "Registration is currently closed.": "Las inscripcions son actualament tampadas.", + "Registrations": "Inscripcions", + "Registrations are restricted by allowlisting.": "Las inscripcions son restrenchas per lista d’accès.", + "Reject": "Regetar", + "Reject member": "", + "Rejected": "Regetadas", + "Remember my participation in this browser": "Se remembrar de ma participacion dins aqueste navegador", + "Remove": "Exclure", + "Remove link": "", + "Rename": "Renommar", + "Rename resource": "Renomenar la ressorsa", + "Reopen": "Tornar dobrir", + "Replay": "", + "Reply": "Respondre", + "Report": "Senhalar", + "Report #{reportNumber}": "Senhalament #{reportNumber}", + "Report this comment": "Senhalar aqueste comentari", + "Report this event": "Senhalar aqueste eveniment", + "Report this group": "Senhalar aqueste grop", + "Report this post": "", + "Reported": "Senhalada", + "Reported by": "Senhalat per", + "Reported by someone on {domain}": "Senhalat per qualqu’un de {domain}", + "Reported by {reporter}": "Senhalat per {reporter}", + "Reported group": "Grop senhalat", + "Reported identity": "Identitat senhalada", + "Reports": "Senhalaments", + "Reports list": "", + "Request for participation confirmation sent": "Demanda de confirmacion de participacion enviada", + "Resend confirmation email": "Tornar enviar lo corrièl de confirmacion", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "Reïnicializar mon senhal", + "Reset password": "", + "Resolved": "Resolgut", + "Resource provided is not an URL": "La ressorça fornida es pas una URL", + "Resources": "Ressorsas", + "Restricted": "Restrenchas", + "Return to the group page": "Tornar a la pagina del grop", + "Right now": "Ara meteis", + "Role": "Ròtle", + "Rules": "Règlas", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL e son successor TLS son de tecnologias de chiframent que permeton de securizar las comunicacions de donadas pendent l’utilizacion del servici. Podètz reconéisser una connexion chifrada dins la bara d’adreça del navegador quand l’URL comença per {https} e que l’icòna del cadenat es mostrat dins la barra d’adreça.", + "SSL/TLS": "SSL/TLS", + "Save": "Enregistrar", + "Save draft": "Enregistar lo borrolhon", + "Schedule": "", + "Search": "Recercar", + "Search events, groups, etc.": "Recercar d’eveniments, de grops, etc.", + "Searching…": "Recèrca…", + "Select a language": "Causissètz una lenga", + "Select a radius": "Seleccionar un rai", + "Select a timezone": "Seleccionatz una zòna orària", + "Select languages": "Causissètz una lenga", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "Enviar un corrièl", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "Tornar enviar l’email de confirmacion", + "Send the report": "Enviar lo senhalament", + "Set an URL to a page with your own privacy policy.": "Picatz una URL cap a una pagina web amb vòstra pròpria politica de confidencialitat.", + "Set an URL to a page with your own terms.": "Definissètz l’URL d’una pagina amb vòstres pròpris tèrmes.", + "Settings": "Paramètres", + "Share": "Partejar", + "Share this event": "Partejar l’eveniment", + "Share this group": "Partejar aqueste grop", + "Share this post": "", + "Short bio": "Biografia corta", + "Show map": "Mostrar la mapa", + "Show me where I am": "", + "Show remaining number of places": "Far veire lo nombre de plaças que demòran", + "Show the time when the event begins": "Mostrar l’ora de debuta de l’eveniment", + "Show the time when the event ends": "Mostrar l’ora de fin de l’eveniment", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "Se connectar amb", + "Sign up": "S’inscriure", + "Since you are a new member, private content can take a few minutes to appear.": "Estant que sètz un membre novèl, lo contengut privat pòt trigar unas minutas per arribar.", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Unes tèrmes, tecnics o pas, utilizats dins lo tèxt çai-jos pòdon concernir de concèptes dificils a encapar. Prepausam aquí un glossari que poirà vos ajudar a los comprendre melhor :", + "Starts on…": "Comença lo…", + "Status": "Estat", + "Street": "Carrièra", + "Submit": "Validar", + "Subtitles": "", + "Suspend": "Suspendre", + "Suspend group": "Suspendre lo grop", + "Suspended": "Suspendut", + "Tag search": "", + "Task lists": "Lista dels prètzfaches", + "Technical details": "Detalhs tecnics", + "Tentative": "Provisòri", + "Tentative: Will be confirmed later": "Provisòri : serà confirmat mai tard", + "Terms": "Tèrmes", + "Terms of service": "Condicions d’utilizacion", + "Text": "Tèxte", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "L’adreça electronica es ja estada modificada. Verificatz vòstres corrièls per confirmar lo cambiament.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Lo nombre real pòt èsser diferent pr’amor que l’eveniment ven d’una autra instància.", + "The content came from another server. Transfer an anonymous copy of the report?": "Lo contengut ven d’una autra instància. Transferir una còpia anonima del senhalament ?", + "The draft event has been updated": "L’eveniment borrolhon es estat actualizat", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "L’eveniment es estat creat coma borrolhon", + "The event has been published": "L’eveniment es estat publicat", + "The event has been updated": "L’eveniment es estat actualizat", + "The event has been updated and published": "L’eveniment es estat actualizat e publicat", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "L’organizator de l’eveniment causèt d’aprovar manualament las participacions d’aqueste eveniment. Volètz ajustar un messatjon per dire d’explicar perque volètz participar a aqueste eveniment ?", + "The event organizer didn't add any description.": "L’organizator de l’eveniment a pas ajustat cap de descripcion.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "L’organizator d’aqueste eveniment aprovar manualament las participacion. Estant qu’avètz causit de participar sens compte, mercés d’explicar perque volètz participar a aqueste eveniment.", + "The event title will be ellipsed.": "Lo títol de l’eveniment utilizarà una ellipsi.", + "The event will show as attributed to this group.": "L’eveniment serà mostrat coma atribuit a aqueste grop.", + "The event will show as attributed to this profile.": "L’eveniment serà afichat coma atribuit a aqueste perfil.", + "The event will show as attributed to your personal profile.": "L’eveniment serà mostrat coma atribuit a vòstre perfil.", + "The event {event} was created by {profile}.": "L’eveniment {event} foguèt creat per {profile}.", + "The event {event} was deleted by {profile}.": "{profile} escafèt l’eveniment {event}.", + "The event {event} was updated by {profile}.": "{profile} actualizèt l’eveniment {event}.", + "The events you created are not shown here.": "Aquí apareissan los eveniments qu’avètz creats.", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Lo grop serà listat publicament dins los resultats de recèrca e poirà èsser suggerit sus la pagina « Explorar ». Sonque las informacions publicas seràn mostradas sus la pagina.", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "L’administrator de l’instància es la persona o entitat que gerís aquesta instància Mobilizon.", + "The member was approved": "", + "The member was removed from the group {group}": "Lo membre foguèt suprimit del grop {group}", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "L’unica manièra per que lo grop aja de membres novèls es que l’administrator los convide.", + "The organiser has chosen to close comments.": "L’organizator decidèt de tampar los comentaris.", + "The page you're looking for doesn't exist.": "La pagina que cercatz existís pas.", + "The password was successfully changed": "Lo senhal es estat corrèctament cambiat", + "The post {post} was created by {profile}.": "{profile} creèt la publicacion {post}.", + "The post {post} was deleted by {profile}.": "{profile} escafèt la publicacion {post}.", + "The post {post} was updated by {profile}.": "{profile} actualizèt la publicacion {post}.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Lo senhalament serà enviat als moderators de l’autra instància. Podètz explicar çai-jos perque senhalatz lo contengut.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Los detalhs tecnics de l’error pòdon ajudar los desvolopaires a resòlver lo problèma mai facilament. Mercés de los inclure al vòstre comentari.", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "La {default_privacy_policy} serà utilizada. Serà traducha dins la lenga de l’utilizaire.", + "The {default_terms} will be used. They will be translated in the user's language.": "Los {default_terms} seràn utilizat. Seràn traduches dins la lenga de l’utilizaire.", + "There are {participants} participants.": "I a pas qu’un participant | I a {participants} participants.", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "I aurà pas cap de biais de recuperar vòstras donadas.", + "There's no discussions yet": "I a pas cap de discussions", + "These events may interest you": "Aquestes eveniments pòdon vos interessar", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Aquesta instància Mobilizon e l’organizaire de l’eveniment permeton las participacions anonimas, mas aquò requerís una validacion per email.", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "Aquesta URL es pas compotibla", + "This event has been cancelled.": "Aqueste eveniment foguèt anullat.", + "This event is accessible only through it's link. Be careful where you post this link.": "Aqueste eveniment es sonque accessible via son ligam. Fasètz moment ont lo publicatz.", + "This group doesn't have a description yet.": "Aqueste grop a pas encara de descripcion.", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "Aqueste grop es sonque sus invitacion", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "Aqueste identificant es unic a vòstre perfil. Permet a d’autras personas de vos trobat.", + "This information is saved only on your computer. Click for details": "Aquesta informacion es solament enregistrada sus vòstre ordenador. Clicatz per mai de detalhs", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "Aquesta instància permet pas las inscripcion, mas podètz vos marcar sus d’autras instàncias.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Aquesta instància, {instanceName} ({domain}), albèrga vòstre perfil, doncas notatz ben son nom.", + "This is a demonstration site to test Mobilizon.": "Aqueste es un site de demostracion que permet de provar Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Es coma vòstra adreça federada ({username}) pels grops. Aquò permetrà al monde de lo trobar sus la federacion, e es garantit d’èsser unic.", + "This month": "Aqueste mes", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "Aqueste paramètre serà utilizat per l’afichatge del site e per vos enviar de corrièls dins la bona lenga.", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Aqueste site es pas moderat e las donadas qu’i picatz serà automaticament suprimidas cada jorn a 00h01 (ora de París).", + "This week": "Aquesta setmana", + "This weekend": "Aquesta dimenjada", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Aquò suprimirà / far venir anonim tot lo contengut (eveniments, comentaris, messatges, participacions…) creat amb aquesta identitat.", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "Zòna orària", + "Timezone detected as {timezone}.": "Zòna orària detectada coma {timezone}.", + "Title": "Títol", + "To activate more notifications, head over to the notification settings.": "Per activar mai de notificacion, anatz als paramètres de notificacion.", + "To confirm, type your event title \"{eventTitle}\"": "Per confirmar picatz lo títol de l’eveniment « {eventTitle} »", + "To confirm, type your identity username \"{preferredUsername}\"": "Per confirmar picatz lo nom de l’identitat « {preferredUsername} »", + "To create and manage multiples identities from a same account": "Podètz crear e gerir mantuna identitat amb un meteis compte", + "To create and manage your events": "Per crear e gerir vòstres eveniments", + "To create or join an group and start organizing with other people": "Per crear o rejónher un grop e començar a vos organizar amb d’autras personas", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "Per s’inscriure a un eveniment en causissent una de vòstras identitats", + "Today": "Uèi", + "Tomorrow": "Deman", + "Tools": "", + "Transfer to {outsideDomain}": "Transferit a {outsideDomain}", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "Tipe", + "Type or select a date…": "Picatz o seleccionatz una data…", + "URL": "URL", + "URL copied to clipboard": "URL copiada al quicha-papièrs", + "Unable to copy to clipboard": "Fracàs de la còpia al quichapapièrs", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "Deteccion impossibla de la zòna orària.", + "Unable to load event for participation. The error details are provided below:": "Cargament impossible de l’eveniment per la participacion. Los detalhs de l’error son disponibles çai-jos :", + "Unable to save your participation in this browser.": "Fracàs de la salvagarda de vòstra participacion dins aqueste navegador.", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "Malaürosament, vòstra demanda de participacion es estada refusada pels organizators.", + "Unknown": "Desconegut", + "Unknown actor": "Actor desconegut", + "Unknown error.": "Error desconeguda.", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "Modificacions pas enregistradas", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "Anullar la suspension", + "Upcoming": "Venents", + "Upcoming events": "Eveniments venents", + "Upcoming events from your groups": "", + "Update": "Modificar", + "Update app": "Actualizar", + "Update discussion title": "", + "Update event {name}": "Actualizar l’eveniment {name}", + "Update group": "Actualizar lo grop", + "Update my event": "Modificar mon eveniment", + "Update post": "Actualizar la publicacion", + "Updated": "Actualizat", + "Uploaded media size": "Talha dels mèdias enviats", + "Use my location": "Utilizar ma posicion", + "User": "Utilizaire", + "User settings": "Configuracion personala", + "Username": "Nom d’utilizaire", + "Users": "Utilizaires", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "|Veire una responsa|Veire {totalReplies} responsas", + "View account on {hostname} (in a new window)": "", + "View all": "O veire tot", + "View all events": "Veire totes eveniments", + "View all posts": "Veire totas las publicacions", + "View event page": "Veire la pagina de l’eveniment", + "View everything": "O veire tot", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "Veire la pagina {hostname} (dins una fenèstra novèla)", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "Visible pertot sul web", + "Visible everywhere on the web (public)": "Visible per tot lo web (public)", + "Waiting for organization team approval.": "Es espèra d’aprovacion per l’organizacion.", + "Warning": "Avertiment", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Melhoram lo logicial gràcia a vòstres comentaris. Per nos avisar d’aqueste problèma, avètz doas possibilitats (los doas demandan la creacion d’un compte) :", + "We just sent an email to {email}": "Venèm d’enviar un corrièl a {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Utilizan vòstra zòna orària per nos assegurar que recebètz las notificacions per un eveniment al bon moment.", + "We will redirect you to your instance in order to interact with this event": "Anam vos enviar a vòstra instància per dire d’interagir amb aqueste eveniment", + "We will redirect you to your instance in order to interact with this group": "Vos enviarem cap a vòstra instància per que poscatz interagir amb aqueste grop", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Vos enviarem un corrièl una ora abans la debuta de l’eveniment, per vos assegurar d’oblidar pas.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Prenèm en compte vòstra zòna orària per vos enviar un recapitulatiu de vòstres eveniments de matin.", + "Website": "Site web", + "Website / URL": "Site web / URL", + "Weekly email summary": "", + "Welcome back {username}!": "Tornatz ben {username} !", + "Welcome back!": "Tornatz ben aquí !", + "Welcome to Mobilizon, {username}!": "Benvengut a Mobilizon, {username} !", + "What can I do to help?": "Qué pòdi far per ajudar ?", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Quand un moderator de grop crèa un eveniment e l’atribuís al grop, se mostrarà aicí.", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "Qual pòt veire aqueste eveniment e i participar", + "Who can view this post": "Qual pòt veire aqueste bilhet", + "Who published {number} events": "Qu’an publicat {number} eveniments", + "Why create an account?": "Perqué crear un compte ?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Permet de mostrar e gerir l’estatut de vòstra participacion sus la pagina de l’eveniment quand utilizatz aqueste periferic. Desmarcatz aquesta casa s’utilizatz un periferic public.", + "Within {number} kilometers of {place}": "", + "Yesterday": "Ièr", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "Sètz pas administrator d’aqueste grop.", + "You are not part of any group.": "Fasètz pas part de cap de grop.", + "You are offline": "Sètz fòra linha", + "You are participating in this event anonymously": "Participatz a aqueste eveniment d’un biais anonim", + "You are participating in this event anonymously but didn't confirm participation": "Participatz a aqueste eveniment d’un biais anonim mas avètz pas encara confirmat vòstra participacion", + "You can add tags by hitting the Enter key or by adding a comma": "Podètz ajustar d’etiquetas en tocant la tòca Entrada o en ajustant una vergula", + "You can pick your timezone into your preferences.": "Podètz causir vòstre flus orari a las preferéncias.", + "You can try another search term or drag and drop the marker on the map": "Podètz ensajar un autre tèrme de recèrca o botar lo marcador sus la mapa", + "You can't change your password because you are registered through {provider}.": "Podètz pas cambiar vòstre senhal perque sètz enregistrat via {provider}.", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "Avètz creat l’eveniment {event}.", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "Avètz creat la publicacion {post}.", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "Avètz suprimit l’eveniment {event}.", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "Avètz suprimit la publicacion {post}.", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "Avètz pas encara pas creat o participat a un eveniment.", + "You don't follow any instances yet.": "Seguissètz pas cap d’instància pel moment.", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "{invitedBy} vos a convidat a rejónher lo grop seguent :", + "You have been removed from this group's members.": "Vos an mes defòra del grop.", + "You have cancelled your participation": "Avètz anullada vòstra participacion", + "You have one event in {days} days.": "Avètz pas cap d’eveniment d’aquí {days} jorns | Avètz un eveniment d’aquí {days} jorns. | Avètz {count} eveniments d’aquí {days} jorns", + "You have one event today.": "Avètz pas cap d’eveniment uèi | Avètz un eveniment uèi. | Avètz {count} eveniments uèi", + "You have one event tomorrow.": "Avètz pas cap d’eveniment deman| Avètz un eveniment deman. | Avètz {count} eveniments deman", + "You invited {member}.": "Avètz convidat {member}.", + "You may clear all participation information for this device with the buttons below.": "Podètz escafar totas las informacions de participacion per aqueste periferic amb los botons çai-jos.", + "You may now close this window, or {return_to_event}.": "Ara podètz tampar aquesta fenèstra o {return_to_event}.", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "Vos cal vos connectar.", + "You posted a comment on the event {event}.": "Avètz publicat un comentari sus l’eveniment {event}.", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "Avètz respondut a un comentari sus l’eveniment {event}.", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "Avètz demandat a rejónher lo grop.", + "You updated the event {event}.": "Avètz actualizat l’eveniment {event}.", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "Avètz actualizat la publicacion {post}.", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "Poiretz ajustar un avatar e definir d’autras opcions als paramètres del compte.", + "You will be redirected to the original instance": "Vos enviarem a l’instància d’origina", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Traparetz aicí totes los eveniments que creèretz o que ne sètz participant, atanben los eveniments organizats pels grops que seguissètz o que ne sètz membre.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "Volètz participar a l’eveniment seguent", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Recebètz un recapitulatiu sermanièr cada diluns pels eveniments de la setmana, se n’avètz.", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Vos farà mestièr transmetre l’URL del grop per que d’autras personas accediscan al perfil del grop. Serà pas possible de trobar lo grop dins la recèrca de Mobilizon nimai dins los motors de recèrca costumièrs.", + "You'll receive a confirmation email.": "Recebretz un corrièl de confirmacion.", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "Lo compte es estat corrèctament suprimit", + "Your account has been validated": "Vòstre compte es estat validat", + "Your account is being validated": "Vòstre compte es en validacion", + "Your account is nearly ready, {username}": "Vòstre compte es gaireben prèst, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "La vila o la region e lo rai seràn sonque utilizats per vos suggerir d’eveniments prèp. Lo rai dels eveniments prèp serà calculat al respècte al centre administratiu de la zòna.", + "Your current email is {email}. You use it to log in.": "Vòstra adreça actuala es {email}. L’utilizatz per vos connectar.", + "Your email": "Vòstra adreça electronica", + "Your email address was automatically set based on your {provider} account.": "Vòstra adreça electronica es estada definida automaticament en utilizant vòstre compte {provider}.", + "Your email has been changed": "L’adreça electronica es estada corrèctament modificada", + "Your email is being changed": "Vòstra adreça electronica es a èsser modificada", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Vòstra adreça email serà pas qu’utilizada per confirmar que sètz ben una persona reala e per vos enviar d’eventualas novetats tocant aqueste eveniment. SERÀ pas jamai transmesa a d’autras instàncias o a l’organizaire de l’eveniment.", + "Your federated identity": "Vòstra identitat federada", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "Vòstra participacion es estada confirmada", + "Your participation has been rejected": "Vòstra participacion es estada regetada", + "Your participation has been requested": "Vòstra participacion es estada demandada", + "Your participation request has been validated": "Vòstra participacion es estada validada", + "Your participation request is being validated": "Vòstra demanda de participacion es a èsser validada", + "Your participation status has been changed": "L’estatut de vòstra participacion a cambiat", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Vòstra participacion es enregistrada pas que sus aquel aparelh e serà escafada un mes aprèp la fin de l'eveniment.", + "Your participation still has to be approved by the organisers.": "Los organizators devon aprovar vòstra participacion.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Vòstra participacion serà validada un còp qu’auretz clicat lo ligam de confirmacion contengut pel corrièl, e aprèp validacion per l’organizator.", + "Your participation will be validated once you click the confirmation link into the email.": "Vòstra participacion serà validada un còp qu’auretz clicat lo ligam de confirmacion contengut dins lo corrièl.", + "Your position was not available.": "", + "Your profile will be shown as contact.": "Vòstre perfil serà mostrat coma contacte.", + "Your timezone is currently set to {timezone}.": "Vòstra zòna orària es defenida a {timezone}.", + "Your timezone was detected as {timezone}.": "Vòstra zòna orària es estada detectada coma {timezone}.", + "Your timezone {timezone} isn't supported.": "Vòstra zòna orària {timezone} es pas presa en carga.", + "Your upcoming events": "Vòstres eveniments a venir", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "[Aqueste comentari es estat suprimit per son autor]", + "[This comment has been deleted]": "[Aqueste comentari es estat escafat]", + "[deleted]": "[escafat]", + "a non-existent report": "un senhalament pas existent", + "access to the group's private content as well": "", + "and {number} groups": "e {number} grops", + "any distance": "rai la distància", + "as {identity}": "coma {identity}", + "contact uninformed": "contacte pas fornit", + "create a group": "crear un grop", + "create an event": "crear un eveniment", + "default Mobilizon privacy policy": "politica de confidencialitat per defaut de Mobilizon", + "default Mobilizon terms": "tèrmes per defaut de Mobilizon", + "e.g. 10 Rue Jangot": "per exemple : 10 carrièra Jangot", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "explorar los eveniments", + "explore the groups": "explorar los grops", + "full rules": "règlas complètas", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "Flux iCal", + "instance rules": "règlas de l’instància", + "more than 1360 contributors": "mai de 1360 contributors", + "profile@instance": "perfil@instancia", + "report #{report_number}": "lo senhalament #{report_number}", + "return to the event's page": "tornar a la pagina de l’eveniment", + "terms of service": "condicions generalas d’utilizacion", + "with another identity…": "amb una autra identitat…", + "your notification settings": "", + "{'@'}{username}": "{'@'}{username}", + "{approved} / {total} seats": "{approved} / {total} plaças", + "{available}/{capacity} available places": "Cap de plaças restantas|{available}/{capacity} plaças disponiblas", + "{count} km": "{count} km", + "{count} members": "Cap de membre|Un membre|{count} membres", + "{count} members or followers": "", + "{count} participants": "Cap de participacion pel moment|Un participant|{count} participants", + "{count} requests waiting": "Una demanda en espèra|{count} demandas en espèra", + "{folder} - Resources": "{folder} - Ressorsas", + "{group} activity timeline": "Cronologia de las accions de {group}", + "{group} events": "Activitats de {group}", + "{group} posts": "", + "{group}'s events": "Eveniments de {group}", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} es instància del logicial {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} es una instància de {mobilizon_link}, una aplicacion de logicial liure construïda per una comunitat.", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "{profile} a convidat [member}.", + "{moderator} added a note on {report}": "{moderator} apondèt una nòta sus {report}", + "{moderator} closed {report}": "{moderator} a tancat {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} suprimèt un evinement apelat « {title} »", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "{moderator} suprimèt l’utilizaire {user}", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "{moderator} anullèt la suspension de {profile}", + "{moderator} marked {report} as resolved": "{moderator} marquèt {report} coma resolgut", + "{moderator} reopened {report}": "{moderator} a tornat dobrir {report}", + "{moderator} suspended group {profile}": "{moderator} a suspendut lo grop {profile}", + "{moderator} suspended profile {profile}": "{moderator} suspendèt lo perfil {profile}", + "{nb} km": "{nb} km", + "{number} members": "{number} membres", + "{number} memberships": "{number} membres", + "{number} organized events": "Cap d’eveniment|Un eveniment organizat|{number} eveniments organizats", + "{number} participations": "Cap de participacion|Una participacion|{number} participacions", + "{number} posts": "Cap de publicacion|Una publicacion|{number} publicacions", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "{profile} (per defaut)", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "{title} ({count} prètzfaches)", + "{username} was invited to {group}": "{username} foguèt convidat al grop {group}", + "© The OpenStreetMap Contributors": "© Los contribuitors d’OpenStreetMap" +}); diff --git a/res/locale/pl.js b/res/locale/pl.js new file mode 100644 index 0000000..e75bab3 --- /dev/null +++ b/res/locale/pl.js @@ -0,0 +1,1647 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Ukryte)", + "(this folder)": "(ten katalog)", + "(this link)": "(ten odnośnik)", + "+ Add a resource": "+ Dodaj zasób", + "+ Create a post": "+ Utwórz wpis", + "+ Create an event": "+ Utwórz wydarzenie", + "+ Start a discussion": "+ Rozpocznij dyskusję", + "0 Bytes": "0 bajtów", + "{contact} will be displayed as contact.": "{contact} będzie wyświetlany jako kontakt.|{contact} będą wyświetlane jako kontakty.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "Prośba o subskrypcję od @{username} została zaakceptowana", + "@{username}'s follow request was rejected": "Prośba o subskrypcję od @{username} została odrzucona", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Cookie to mały plik zawierający informacje zapisywany na Twoim komputerze, kiedy odwiedzasz stronę. Gdy odwiedzasz tę stronę ponownie, plik cookie pozwala stronie rozpoznać przeglądarkę. Pliki cookies mogą przechowywać preferencje użytkownika lub użytkowniczki. Możesz skonfigurować przeglądarkę tak, aby nie przyjmowała żadnych cookies. Może to jednak sprawić że część funkcjonalności lub usług strony będzie działać jedynie częściowo. Pamięć lokalna działa tak samo, lecz pozwala na przechowywanie większej ilości danych.", + "A discussion has been created or updated": "Dyskusja została utworzona lub zaktualizowana", + "A federated software": "Sfederowane oprogramowanie", + "A fediverse account URL to follow for event updates": "Adres URL konta w Fediwersum do śledzenia aktualizacji wydarzeń", + "A few lines about your group": "Kilka linijek o Twojej grupie", + "A link to a page presenting the event schedule": "Link do strony z programem wydarzenia", + "A link to a page presenting the price options": "Link do strony przedstawiającej opcje cenowe", + "A member has been updated": "Członek / członkini został(a) zaktualizowany(-a)", + "A member requested to join one of my groups": "Członek / członkini poprosił(a) o dołączenie do jednej z moich grup", + "A new version is available.": "Dostępna jest nowa wersja.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Miejsce na zasady, regulamin czy wytyczne. Możesz korzystać z tagów HTML.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Miejsce na wyjaśnienie, kim jesteś i co wyróżnia tę instancję. Możesz korzystać z tagów HTML.", + "A place to publish something to the whole world, your community or just your group members.": "Miejsce na publikowanie czegoś dla całego świata, Twojej społeczności, lub tylko członków / członkiń grupy.", + "A place to store links to documents or resources of any type.": "Miejsce na przechowywanie odnośników do dokumentów lub zasobów dowolnego rodzaju.", + "A post has been published": "Wpis został opublikowany", + "A post has been updated": "Wpis został zaktualizowany", + "A practical tool": "Praktyczne narzędzie", + "A resource has been created or updated": "Zasób został utworzony lub zaktualizowany", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Krótkie hasło na stronę główną instancji. Domyślnie „Zbierajcie się ⋅ Organizujcie się ⋅ Mobilizujcie się", + "A twitter account handle to follow for event updates": "Konto na X (poprzednio Twitter) do śledzenia aktualizacji wydarzeń", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Przyjazne dla użytkownika, emancypacyjne i etyczne narzędzie do gromadzenia się, organizowania i mobilizowania.", + "A validation email was sent to {email}": "Wiadomość weryfikacyjna została wysłana na {email}", + "API": "API", + "Abandon editing": "Porzuć edycję", + "About": "Informacje", + "About Mobilizon": "O Mobilizon", + "About anonymous participation": "O anonimowym uczestnictwie", + "About instance": "O {instance}", + "About this event": "O tym wydarzeniu", + "About this instance": "O tej instancji", + "About {instance}": "O {instance}", + "Accept": "Akceptuj", + "Accept follow": "Zaakceptuj śledzenie", + "Accepted": "Zaakceptowano", + "Access drafts events": "Dostęp do wersji roboczych wydarzeń", + "Access followed groups": "Dostęp do grup obserwowanych", + "Access group activities": "Dostęp do aktywności grupowych", + "Access group discussions": "Dostęp do dyskusji grupowych", + "Access group events": "Dostęp do wydarzeń grupowych", + "Access group followers": "Dostęp do osób obserwujących grupę", + "Access group members": "Dostęp do listy członków i członkiń grupy", + "Access group memberships": "Dostęp do listy członków w grupach", + "Access group suggested events": "Dostęp do sugerowanych wydarzeń grupowych", + "Access group todo-lists": "Dostęp do grupowych list rzeczy do zrobienia", + "Access organized events": "Dostęp do organizowanych wydarzeń", + "Access participations": "Dostęp do informacji o uczestnictwie", + "Access your group's resources": "Dostęp do zasobów grupy", + "Accessibility": "Dostępność", + "Accessible only by link": "Dostępne tylko przez odnośnik", + "Accessible only to members": "Dostępny tylko dla członków i członkiń", + "Accessible through link": "Dostępny przez odnośnik", + "Account": "Konto", + "Account settings": "Ustawienia konta", + "Actions": "Działania", + "Activate browser push notifications": "Aktywacja powiadomień push w przeglądarce", + "Activate notifications": "Aktywuj powiadomienia", + "Activated": "Włączone", + "Active": "Aktywny", + "Activity": "Aktywność", + "Actor": "Podmiot", + "Adapt to system theme": "Dostosowanie do motywu systemowego", + "Add": "Dodaj", + "Add / Remove…": "Dodaj / usuń…", + "Add a contact": "Dodaj kontakt", + "Add a new post": "Dodaj nowy wpis", + "Add a note": "Dodaj notatkę", + "Add a recipient": "Dodaj odbiorcę", + "Add a todo": "Dodaj element listy do zrobienia", + "Add an address": "Dodaj adres", + "Add an instance": "Dodaj instancję", + "Add link": "Dodaj odnośnik", + "Add new…": "Dodaj nowe…", + "Add picture": "Dodaj obrazek", + "Add some tags": "Dodaj tagi", + "Add to my calendar": "Dodaj do kalendarza", + "Additional comments": "Dodatkowe komentarze", + "Admin": "Admin(ka)", + "Admin dashboard": "Panel administratora(-ki)", + "Admin settings": "Ustawienia administratora(-ki)", + "Admin settings successfully saved.": "Pomyślnie zapisano ustawienia administratora(-ki).", + "Administration": "Administracja", + "Administrator": "Administrator(ka)", + "All": "Wszystko", + "All activities": "Wszystkie aktywności", + "All good, let's continue!": "Wszystko dobrze, kontynuujmy!", + "All the places have already been taken": "Wszystkie miejsca są już zajęte", + "Allow all comments from users with accounts": "Pozwalaj na wszystkie komentarze od zalogowanych użytkowników lub użytkowniczek", + "Allow registrations": "Pozwól na rejestrację", + "An URL to an external ticketing platform": "Adres URL do zewnętrznej platformy sprzedaży biletów", + "An anonymous profile joined the event {event}.": "Anonimowy profil przystąpił do wydarzenia {event}.", + "An error has occured while refreshing the page.": "Wystąpił błąd podczas odświeżania strony.", + "An error has occured. Sorry about that. You may try to reload the page.": "Przepraszamy, ale wystąpił błąd. Możesz spróbować odświeżyć stronę.", + "An ethical alternative": "Etyczna alternatywa", + "An event I'm going to has been updated": "Wydarzenie, na które się wybieram, zostało zaktualizowane", + "An event I'm going to has posted an announcement": "Wydarzenie, na które się wybieram, zamieściło ogłoszenie", + "An event I'm organizing has a new comment": "Wydarzenie, które organizuję, ma nowy komentarz", + "An event I'm organizing has a new participation": "Wydarzenie, które organizuję, ma nowy zapis", + "An event I'm organizing has a new pending participation": "Wydarzenie, które organizuję, ma nowy oczekujący zapis", + "An event from one of my groups has been published": "Wydarzenie z jednej z moich grup zostało opublikowane", + "An event from one of my groups has been updated or deleted": "Wydarzenie z jednej z moich grup zostało zaktualizowane lub usunięte", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Instancja to oprogramowanie Mobilizon zainstalowane na serwerze. Instancja może być uruchomiona przez każdą osobę korzystającą z {mobilizon_software} lub innych sfederowanych aplikacji, tzw. „fediwersum”. Nazwą tej instancji jest {instance_name}. Mobilizon jest sfederowaną siecią składającą się z wielu instancji (dokładnie tak jak serwery e-mail), użytkowniczki lub użytkownicy zarejestrowani na różnych instancjach mogą się wzajemnie komunikować, mimo że są zarejestrowani(-e) na różnych instancjach.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "„Interfejs programistyczny aplikacji” lub „API” to protokół komunikacyjny pozwalający na wzajemną komunikację komponentom oprogramowania. Przykładowo, API Mobilizon pozwala oprogramowaniu stron trzecich na komunikowanie się z instancjami Mobilizon, aby dokonywać pewnych działań w Twoim imieniu, automatycznie lub zdalnie.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events, automatically and remotely.": "„Interfejs programowania aplikacji” lub \"API\" to protokół komunikacyjny, który umożliwia komponentom oprogramowania komunikowanie się ze sobą. Interfejs API Mobilizon może na przykład umożliwiać narzędziom programowym osób trzecich komunikację z instancjami Mobilizon w celu automatycznego i zdalnego wykonywania określonych działań, takich jak publikowanie zdarzeń.", + "And {number} comments": "Oraz {number} komentarzy", + "Announcements": "Ogłoszenia", + "Announcements and mentions notifications are always sent straight away.": "Ogłoszenia i powiadomienia o wzmiankach są zawsze wysyłane natychmiast.", + "Announcements for {eventTitle}": "Ogłoszenia dla {eventTitle}", + "Anonymous participant": "Anonimowy(-a) uczestnik(-czka)", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Anonimowi uczestnicy będą otrzymywać prośbę o potwierdzenie uczestnictwa przez e-mail.", + "Anonymous participations": "Anonimowy udział", + "Any category": "Dowolna kategoria", + "Any day": "W dowolnym dniu", + "Any distance": "Dowolna odległość", + "Any type": "Dowolny typ", + "Anyone can join freely": "Każda osoba może dołączyć", + "Anyone can request being a member, but an administrator needs to approve the membership.": "Każda osoba może poprosić o członkostwo, ale administrator(ka) musi je zatwierdzić.", + "Anyone wanting to be a member from your group will be able to from your group page.": "Każda osoba, która chce dołączyć do Twojej grupy, będzie mogła to zrobić ze strony tej grupy.", + "Application": "Aplikacja", + "Application authorized": "Aplikacja autoryzowana", + "Application not found": "Nie znaleziono aplikacji", + "Application was revoked": "Uprawnienia aplikacji zostały wycofane", + "Apply filters": "Zastosuj filtry", + "Approve member": "Zatwierdzenie członka / członkini", + "Apps": "Aplikacje", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Czy na pewno chcesz usunąć całe swoje konto? Stracisz wszystko. Tożsamości, ustawienia, utworzone wydarzenia, wiadomości i uczestnictwa zostaną na zawsze usunięte.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Czy na pewno chcesz całkowicie usunąć tę grupę? Członkowie(-inie) – wraz z tymi zdalnymi – zostaną powiadomieni(-one) i usunięci(-te) z grupy, a wszystkie dane grupy (wydarzenia, wpisy, dyskusje, listy rzeczy do zrobienia…) zostaną bezpowrotnie zniszczone.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Czy na pewno chcesz usunąć to wydarzenie? Tego działania nie można cofnąć.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Czy na pewno chcesz usunąć ten komentarz? Nie można tego cofnąć.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator and ask them to edit their event instead.": "Czy na pewno chcesz usunąć to wydarzenie? Tego działania nie można cofnąć. Zamiast tego możesz nawiązać kontakt z osobą, która utworzyła wydarzenia i poprosić ją o dokonanie zmiany.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Czy na pewno chcesz usunąć to wydarzenie? Nie można cofnąć tego działania. Zamiast tego możesz skontaktować się z osobą, które je zamieściła lub je edytować.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Czy na pewno chcesz zawiesić tę grupę? Członkowie(-inie) – wraz z tymi zdalnymi – zostaną powiadomieni(-one) i usunięci(-te) z grupy, a wszystkie dane grupy (wydarzenia, wpisy, dyskusje, listy rzeczy do zrobienia…) zostaną bezpowrotnie zniszczone.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Czy na pewno chcesz zawiesic tę grupę? Ponieważ grupa ta pochodzi z instancji {instance}, usunie to tylko lokalnych członków / członkinie i lokalne dane, oraz będzie odrzucać w przyszłości dane z niej.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Czy na pewno chcesz anulować tworzenie wydarzenia? Utracisz wszystkie zmiany.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Czy na pewno chcesz usunąć edycję wydarzenia? Utracisz wszystkie zmiany.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Czy na pewno chcesz wycofać swój udział w wydarzeniu „{title}”?", + "Are you sure you want to delete this entire conversation?": "Czy na pewno chcesz usunąć całą konwersację?", + "Are you sure you want to delete this entire discussion?": "Czy na pewno usunąć tę całą dyskusję?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Czy na pewno chcesz usunąć to wydarzenie? To działanie nie może zostać odwrócone.", + "Are you sure you want to delete this post? This action cannot be reverted.": "Czy na pewno chcesz usunąć ten wpis? Tego działania nie można cofnąć.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Czy na pewno chcesz opuścić grupę {groupName}? Utracisz dostęp do prywatnych treści tej grupy. Tego działania nie można cofnąć.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Jako że organizator(ka) wydarzenia zdecydował(a) się na ręczne zatwierdzanie zgłoszeń uczestnictwa, Twoje uczestnictwo zostanie potwierdzone dopiero po otrzymaniu wiadomości e-mail z informacją, że zostało ono zaakceptowane.", + "Ask your instance admin to {enable_feature}.": "Poproś administratora(-kę) instancji o {enable_feature}.", + "Assigned to": "Przypisane do", + "Atom feed for events and posts": "Kanał Atom dla wydarzeń i wpisów", + "Attending": "Uczestnictwo", + "Authorize": "Autoryzacja", + "Authorize application": "Autoryzacja aplikacji", + "Authorized on {authorization_date}": "Autoryzacja nastąpiła {authorization_date}", + "Autorize this application to access your account?": "Zezwolić tej aplikacji na dostęp do konta?", + "Avatar": "Awatar", + "Back to group list": "Powrót do listy grup", + "Back to homepage": "Powrót do strony głównej", + "Back to previous page": "Przejdź na poprzednią stronę", + "Back to profile list": "Powrót do listy profili", + "Back to top": "Wróć do góry", + "Back to user list": "Z powrotem do listy użytkowników / użytkowniczek", + "Banner": "Baner", + "Become part of the community and start organizing events": "Dołącz do społeczności i zacznij organizować wydarzenia", + "Before you can login, you need to click on the link inside it to validate your account.": "Zanim się zalogujesz, musisz odwiedzić odnośnik znajdujący się wewnątrz, aby zweryfikować swoje konto.", + "Begins on": "Zaczyna się", + "Best match": "Najlepsze dopasowanie", + "Big Blue Button": "Big Blue Button", + "Bold": "Pogrubione", + "Booking": "Rezerwacja", + "Breadcrumbs": "Nawigacja okruszkowa", + "Browser notifications": "Powiadomienia przeglądarki", + "Bullet list": "Lista wypunktowana", + "By bike": "Rowerem", + "By car": "Samochodem", + "By others": "Od innych", + "By transit": "Transportem publicznym", + "By {group}": "Autorstwa {group}", + "By {username}": "Od {username}", + "Calendar": "Kalendarz", + "Can be an email or a link, or just plain text.": "Może być adresem e-mail, odnośnikiem lub zwykłym tekstem.", + "Cancel": "Anuluj", + "Cancel anonymous participation": "Anuluj anonimowy udział", + "Cancel creation": "Anuluj tworzenie", + "Cancel discussion title edition": "Anuluj edycję tytułu dyskusji", + "Cancel edition": "Anuluj edycję", + "Cancel follow request": "Anulowanie prośby o subskrypcję", + "Cancel membership request": "Anulowanie prośby o członkostwo", + "Cancel my participation request…": "Anuluj moje zgłoszenie udziału…", + "Cancel my participation…": "Anuluj mój udział…", + "Cancel participation": "Anuluj swój udział", + "Cancelled": "Anulowane", + "Cancelled: Won't happen": "Anulowano: Nie odbędzie się", + "Categories": "Kategorie", + "Category": "Ka­te­go­ria", + "Category illustrations credits": "Podziękowania za ilustracje do kategorii", + "Category list": "Lista kategorii", + "Change": "Zmień", + "Change email": "Zmień adres e-mail", + "Change my email": "Zmień mój adres e-mail", + "Change my identity…": "Zmień moją tożsamość…", + "Change my password": "Zmień moje hasło", + "Change role": "Zmień rolę", + "Change the filters.": "Zmień filtry.", + "Change timezone": "Zmień strefę czasową", + "Change user email": "Zmień adres e-mail użytkownika / użytkowniczki", + "Change user role": "Zmiana roli użytkownika / użytkowniczki", + "Check your device to continue. You may now close this window.": "Sprawdź swoje urządzenie, aby kontynuować. Możesz teraz zamknąć to okno.", + "Check your inbox (and your junk mail folder).": "Sprawdź swoją skrzynkę e-mail (i katalog na spam).", + "Choose the source of the instance's Privacy Policy": "Wybierz źródło Polityki prywatności instancji", + "Choose the source of the instance's Terms": "Wybierz źródło Warunków użytkowania instancji", + "City or region": "Miasto lub region", + "Clear": "Wyczyść", + "Clear address field": "Wyczyść pole adresu", + "Clear date filter field": "Wyczyść pole daty filtra", + "Clear participation data for all events": "Usuń informacje o uczestnictwie we wszystkich wydarzeniach", + "Clear participation data for this event": "Usuń informacje o uczestnictwie w tym wydarzeniu", + "Clear timezone field": "Wyczyść pole strefy czasowej", + "Click for more information": "Kliknij, aby dowiedzieć się więcej", + "Click to upload": "Naciśnij aby wysłać", + "Close": "Zamknij", + "Close comments for all (except for admins)": "Wyłącz komentarze dla wszystkich (poza administracją)", + "Close map": "Zamknij mapę", + "Closed": "Zamknięte", + "Comment body": "Treść komentarza", + "Comment deleted": "Usunięto komentarz", + "Comment deleted and report resolved": "Komentarz usunięto i załatwiono zgłoszenie", + "Comment from a private conversation": "Komentarz z prywatnej konwersacji", + "Comment from an event announcement": "Komentarz z ogłoszenia o wydarzeniu", + "Comment from {'@'}{username} reported": "Komentarz {'@'}{username} zgłoszony", + "Comment text can't be empty": "Tekst komentarza nie morze być pusty", + "Comment under event {eventTitle}": "Komentarz pod wydarzeniem {eventTitle}", + "Comments": "Komentarze", + "Comments are closed for everybody else.": "Komentarze są zamknięte dla innych.", + "Confirm": "Potwierdź", + "Confirm my participation": "Potwierdź moje uczestnictwo", + "Confirm my particpation": "Potwierdź mój udział", + "Confirm participation": "Potwierdź uczestnictwo", + "Confirm user": "Potwierdź użytkownika / użytkowniczkę", + "Confirmed": "Potwierdzony", + "Confirmed at": "Potwierdzono na", + "Confirmed: Will happen": "Potwierdzone: odbędzie się", + "Congratulations, your account is now created!": "Gratulacje, Twoje konto zostało właśnie utworzone!", + "Contact": "Kontakt", + "Continue": "Kontynuuj", + "Continue editing": "Kontynuuj edycję", + "Conversation with {participants}": "Konwersacja z {participants}", + "Conversations": "Konwersacje", + "Cookies and Local storage": "Pliki cookies i pamięć lokalna", + "Copy URL to clipboard": "Kopiowanie adresu URL do schowka", + "Copy details to clipboard": "Kopiowanie szczegółów do schowka", + "Country": "Kraj", + "Create": "Utwórz", + "Create a calc": "Utwórz arkusz kalkulacyjny", + "Create a discussion": "Utwórz dyskusję", + "Create a folder": "Utwórz katalog", + "Create a new event": "Utwórz nowe wydarzenie", + "Create a new group": "Utwórz nową grupę", + "Create a new identity": "Utwórz nową tożsamość", + "Create a new list": "Utwórz nową listę", + "Create a new metadata element": "Utwórz nowy element metadanych", + "Create a new profile": "Utwórz nowy profil", + "Create a pad": "Utwórz pad", + "Create a videoconference": "Utwórz wideokonferencję", + "Create an account": "Utwórz konto", + "Create discussion": "Utwórz dyskusję", + "Create event": "Utwórz wydarzenie", + "Create feed tokens": "Tworzenie tokenów kanałów", + "Create group": "Utwórz grupę", + "Create group discussions": "Tworzenie dyskusji grupowych", + "Create group resources": "Tworzenie zasobów grupowych", + "Create identity": "Utwórz tożsamość", + "Create my event": "Utwórz wydarzenie", + "Create my group": "Utwórz grupę", + "Create my profile": "Utwórz profil", + "Create new links": "Utwórz nowe odnośniki", + "Create new profiles": "Tworzenie nowych profili", + "Create resource": "Utwórz zasób", + "Create the discussion": "Utwórz dyskusję", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Twórz listy do zrobienia dla każdego zadania którego potrzebujesz, przypisuj je do innych i ustawiaj maksymalne daty.", + "Create token": "Utwórz token", + "Created by {name}": "Utworzono przez {name}", + "Created by {username}": "Utworzono przez {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "Obecna tożsamość została zmieniona na {identityName}, aby móc zarządzać tym wydarzeniem.", + "Current page": "Obecna strona", + "Custom": "Niestandardowe", + "Custom URL": "Niestandardowy adres URL", + "Custom text": "Niestandardowy tekst", + "Daily email summary": "Codzienne wiadomości podsumowujące", + "Dark": "Ciemny", + "Dashboard": "Panel", + "Date": "Data", + "Date and time": "Data i czas", + "Date and time settings": "Ustawienia daty i czasu", + "Date parameters": "Parametry daty", + "Deactivate notifications": "Dezaktywuj powiadomienia", + "Decline": "Odrzuć", + "Decrease": "Zmniejsz", + "Default": "Domyślne", + "Default Mobilizon privacy policy": "Domyślna polityka prywatności Mobilizon", + "Default Mobilizon terms": "Domyślne warunki użytkowania Mobilizon", + "Default Picture": "Obraz domyślny", + "Delete": "Usuń", + "Delete account": "Usuń konto", + "Delete comment": "Usuń komentarz", + "Delete comment and resolve report": "Usuń komentarz i załatw zgłoszenie", + "Delete comments": "Usuwanie komentarzy", + "Delete conversation": "Usuń konwersację", + "Delete discussion": "Usunięcie dyskusji", + "Delete event": "Usuń wydarzenie", + "Delete event and resolve report": "Usuń wydarzenie i załatw zgłoszenie", + "Delete events": "Usuń wydarzenia", + "Delete everything": "Usuń wszystko", + "Delete feed tokens": "Usuwanie tokenów kanałów", + "Delete group": "Usuń grupę", + "Delete group discussions": "Usuwanie dyskusji grupowych", + "Delete group posts": "Usuwanie wpisów grupowych", + "Delete group resources": "Usuwanie zasobów grupy", + "Delete my account": "Usuń moje konto", + "Delete post": "Usuń wpis", + "Delete profiles": "Usuwanie profili", + "Delete this conversation": "Usuń tę konwersację", + "Delete this discussion": "Usunięcie tej dyskusji", + "Delete this identity": "Usuń tę tożsamość", + "Delete your identity": "Usuń swoją tożsamość", + "Delete {eventTitle}": "Usuń {eventTitle}", + "Delete {preferredUsername}": "Usuń {preferredUsername}", + "Deleting comment": "Usuwanie komentarza", + "Deleting event": "Usuwanie wydarzenia", + "Deleting my account will delete all of my identities.": "Usunięcie konta spowoduje usunięcie wszystkich Twoich tożsamości.", + "Deleting your Mobilizon account": "Usuwanie konta Mobilizon", + "Demote": "Degraduj", + "Describe your event": "Opisz swoje wydarzenie", + "Description": "Opis", + "Details": "Szczegóły", + "Device activation": "Aktywacja urządzeń", + "Didn't receive the instructions?": "Nie otrzymałeś(-aś) instrukcji?", + "Disabled": "Wyłączone", + "Discussions": "Dyskusje", + "Discussions list": "Lista dyskusji", + "Display name": "Wyświetlana nazwa", + "Display participation price": "Wyświetlaj cenę uczestnictwa", + "Displayed nickname": "Nazwa wyświetlana", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Wyświetlany na stronie głównej i w meta tagach. Opisz w jednym akapicie, czym jest Mobilizon i co czyni tę instancję wyjątkową.", + "Distance": "Odległość", + "Do not receive any mail": "Nie odbieraj wiadomości e-mail", + "Do you really want to suspend the account « {emailAccount} » ?": "Czy naprawdę chcesz zawiesić konto «{emailAccount}»?", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Czy naprawdę chcesz zawiesić to konto? Wszystkie profile użytkownika / użytkowniczki zostaną usunięte.", + "Do you really want to suspend this profile? All of the profiles content will be deleted.": "Czy naprawdę chcesz zawiesić ten profil? Cała jego zawartość zostanie usunięta.", + "Do you wish to {create_event} or {explore_events}?": "Czy chcesz {create_event} lub {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Czy chcesz {create_group} lub {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "Czy wydarzenie wymaga jeszcze późniejszego potwierdzenia, czy też zostało odwołane?", + "Domain": "Domen", + "Domain or instance name": "Nazwa domeny lub instancji", + "Draft": "Szkic", + "Drafts": "Szkice", + "Due on": "Zaplanowane na", + "Duplicate": "Duplikuj", + "Edit": "Edytuj", + "Edit post": "Edytuj wpis", + "Edit profile {profile}": "Edytuj profil {profile}", + "Edit user email": "Edycja adresu e-mail użytkownika /użytkowniczki", + "Edited {ago}": "Edytowano {ago}", + "Edited {relative_time} ago": "Edytowano {relative_time} temu", + "Eg: Stockholm, Dance, Chess…": "Np. Sztokholm, taniec, szachy…", + "Either on the {instance} instance or on another instance.": "Na instancji {instance} lub innej instancji.", + "Either the account is already validated, either the validation token is incorrect.": "Konto jest już potwierdzone lub token walidacji jest nieprawidłowy.", + "Either the email has already been changed, either the validation token is incorrect.": "Adres e-mail już został zmieniony, albo token weryfikacyjny jest nieprawidłowy.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Prośba o uczestnictwo została już zatwierdzona, lub token weryfikacyjny jest nieprawidłowy.", + "Element title": "Tytuł elementu", + "Element value": "Wartość elementu", + "Email": "E-mail", + "Email address": "Adres e-mail", + "Email validate": "Weryfikacja e-maila", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "Wiadomości e-mail zwykle nie zawierają wielkich liter, więc upewnij się, że nie popełniłeś(-aś) literówki.", + "Enabled": "Włączona", + "Ends on…": "Kończy się…", + "Enter the code displayed on your device": "Wprowadź kod wyświetlony na urządzeniu", + "Enter the link URL": "Wprowadź adres URL", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Wprowadź poniżej adres e-mail, a my wyślemy instrukcję, jak zmienić hasło.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Wprowadź własną politykę prywatności. Możesz używać tagów HTML. {mobilizon_privacy_policy} jest użyta jako szablon.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Wprowadź własne warunki użytkowania. Możesz używać tagów HTML. {mobilizon_terms} jest użyty jako szablon.", + "Error": "Błąd", + "Error details copied!": "Szczegóły błędu zostały skopiowane!", + "Error message": "Komunikat o błędzie", + "Error stacktrace": "Ślad stosu błędów", + "Error while cancelling your participation": "Błąd podczas anulowania uczestnictwa", + "Error while changing email": "Wystąpił błąd podczas zmiany adresu e-mail", + "Error while loading the preview": "Błąd podczas ładowania podglądu", + "Error while login with {provider}. Retry or login another way.": "Błąd logowania z {provider}. Spróbuj ponownie lub zaloguj się w inny sposób.", + "Error while login with {provider}. This login provider doesn't exist.": "Błąd podczas logowania z {provider}. Ten dostawca logowania nie istnieje.", + "Error while reporting group {groupTitle}": "Błąd podczas zgłaszania grupy {groupTitle}", + "Error while subscribing to push notifications": "Błąd podczas subskrybowania powiadomień push", + "Error while suspending group": "Błąd podczas zawieszania grupy", + "Error while updating participation status inside this browser": "Błąd podczas aktualizacji statusu uczestnictwa w tej przeglądarce", + "Error while validating account": "Błąd podczas weryfikacji konta", + "Error while validating participation request": "Wystąpił błąd podczas walidacji prośby o uczestnictwo", + "Etherpad notes": "Edytor online Etherpad", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Będąc etyczną alternatywą dla wydarzeń, grup i stron na Facebooku, Mobilizon jest narzędziem stworzonym, aby Ci służyć.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Mobilizon jest etyczną alternatywą dla wydarzeń, grup i stron na Facebooku. Mobilizon to {tool_designed_to_serve_you}. Po prostu.", + "Event": "Wydarzenie", + "Event URL": "Adres URL wydarzenia", + "Event already passed": "Wydarzenie już minęło", + "Event cancelled": "Anulowano wydarzenie", + "Event creation": "Utworzenie wydarzenia", + "Event date": "Data wydarzenia", + "Event deleted": "Usunięte zdarzenie", + "Event deleted and report resolved": "Wydarzenie usunięto i załatwiono zgłoszenie", + "Event description body": "Treść opisu wydarzenia", + "Event edition": "Edycja wydarzenia", + "Event list": "Lista wydarzeń", + "Event metadata": "Metadane wydarzenia", + "Event page settings": "Ustawienia strony wydarzenia", + "Event status": "Status aktywności wydarzenia", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Strefa czasowa wydarzenia zostanie domyślnie ustawiona na strefę czasową adresu wydarzenia, jeśli jest podany, lub na strefę czasową ustawioną przez Ciebie.", + "Event to be confirmed": "Wydarzenie musi zostać potwierdzone", + "Event {eventTitle} deleted": "Usunięto wydarzenie {eventTitle}", + "Event {eventTitle} reported": "Zgłoszono wydarzenie {eventTitle}", + "Events": "Wydarzenia", + "Events close to you": "Wydarzenia w pobliżu", + "Events nearby": "Wydarzenia w pobliżu", + "Events nearby {position}": "Wydarzenia w pobliżu {position}", + "Events tagged with {tag}": "Wydarzenia oznaczone {tag}", + "Everything": "Wszyscy", + "Ex: mobilizon.fr": "Np.: mobilizon.fr", + "Ex: someone@mobilizon.org": "Np. ktokolwiek@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "Np. ktokoś{'@'}mobilizon.org", + "Explore": "Przeglądaj", + "Explore events": "Przeglądaj wydarzenia", + "Explore!": "Przeglądaj!", + "Export": "Eksportuj", + "External provider URL": "Adres URL zewnętrznego dostawcy", + "External registration": "Rejestracja zewnętrzna", + "Failed to get location.": "Nie udało się uzyskać lokalizacji.", + "Failed to save admin settings": "Nie udało się zapisać ustawień administratora (-ki)", + "Favicon": "Favicon", + "Featured events": "Wyróżnione wydarzenia", + "Federated Group Name": "Sfederowana nazwa grupy", + "Federation": "Federacja", + "Fediverse account": "Konto w Fediwersum", + "Fetch more": "Pobierz więcej", + "Filter": "Filtr", + "Filter by name": "Filtruj według nazwy", + "Filter by profile or group name": "Filtrowanie według profilu lub nazwy grupy", + "Find an address": "Znajdź adres", + "Find an instance": "Znajdź instancję", + "Find another instance": "Znajdź inną instancję", + "Find or add an element": "Znajdź lub dodaj element", + "First steps": "Pierwsze kroki", + "Follow": "Obserwuj", + "Follow a new instance": "Obserwuj nową instancję", + "Follow instance": "Obserwuj instancję", + "Follow request pending approval": "Prośba o subskrypcję oczekuje na zatwierdzenie", + "Follow requests will be approved by a group moderator": "Prośby o subskrypcję będą zatwierdzane przez moderatorów(-ki) grupy", + "Follow status": "Obserwuj status aktywności", + "Followed": "Obserwowani(-e)", + "Followed, pending response": "Obserwowany(-a), w oczekiwaniu na odpowiedź", + "Follower": "Osoba obserwująca", + "Followers": "Osoby obserwujące", + "Followers will receive new public events and posts.": "Osoby obserwujące będą otrzymywać nowe wydarzenia publiczne i posty.", + "Following": "Obserwujący", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Obserwując grupę będziesz mógł / mogła otrzymywać informacje o {group_upcoming_public_events}, podczas gdy dołączenie do grupy oznacza {access_to_group_private_content_as_well}, w tym do dyskusji grupowych, zasobów grupy i wpisów tylko dla członków.", + "Followings": "Obserwowani", + "Follows us": "Obserwuje nas", + "Follows us, pending approval": "Obserwuje nas, w oczekiwaniu na odpowiedź", + "For instance: London": "Na przykład: Londyn", + "For instance: London, Taekwondo, Architecture…": "Na przykład: Londyn, taekwondo, architektura…", + "Forgot your password ?": "Zapomniałeś(-aś) hasła?", + "Forgot your password?": "Zapomniałeś(-aś) hasła?", + "Framadate poll": "Ankieta Framadate", + "From my groups": "Z moich grup", + "From the {startDate} at {startTime} to the {endDate}": "Od {startDate} o {startTime} do {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Od {startDate} o {startTime} do {endDate} o {endTime}", + "From the {startDate} to the {endDate}": "Od {startDate} do {endDate}", + "From this instance only": "Tylko z tej instancji", + "From yourself": "Od Ciebie", + "Fully accessible with a wheelchair": "W pełni dostępne na wózku", + "Gather ⋅ Organize ⋅ Mobilize": "Gromadźcie się ⋅ Organizujcie się⋅ Mobilizujcie się", + "General": "Ogólne", + "General information": "Informacje ogólne", + "General settings": "Ustawienia ogólne", + "Geolocate me": "Geolokalizuj mnie", + "Geolocation was not determined in time.": "Lokalizacji nie udało się ustalić na czas.", + "Get informed of the upcoming public events": "Otrzymuj informacje o nadchodzących wydarzeniach publicznych", + "Getting location": "Uzyskiwanie położenia", + "Getting there": "Jak się tam dostać", + "Glossary": "Słownik", + "Go": "Przejdź", + "Go to booking": "Przejdź do rezerwacji", + "Go to the event page": "Przejdź na stronę wydarzenia", + "Go!": "Szukaj!", + "Google Meet": "Google Meet", + "Group": "Grupa", + "Group Followers": "Osoby obserwujące grupę", + "Group Members": "Członkowie / członkinie grupy", + "Group URL": "Adres URL grupy", + "Group activity": "Aktywność w grupie", + "Group address": "Adres grupy", + "Group description body": "Treść opisu grupy", + "Group display name": "Wyświetlana nazwa grupy", + "Group members": "Członkowie i członkinie grupy", + "Group name": "Nazwa grupy", + "Group profiles": "Profile grupowe", + "Group settings": "Ustawienia grupy", + "Group settings saved": "Zapisano ustawienia grupy", + "Group short description": "Krótki opis grupy", + "Group visibility": "Widoczność grupy", + "Group {displayName} created": "Utworzono grupę {displayName}", + "Group {groupTitle} reported": "Zgłoszono grupę {groupTitle}", + "Groups": "Grupy", + "Groups are not enabled on this instance.": "Grupy nie są włączone w tej instancji.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Grupy są przestrzenią na koordynowanie i przygotowywanie się, aby lepiej organizować wydarzenia i zarządzać swoją społecznością.", + "Heading Level 1": "Nagłówek H1", + "Heading Level 2": "Nagłówek H2", + "Heading Level 3": "Nagłówek H3", + "Headline picture": "Obraz nagłówka", + "Hide filters": "Ukryj filtry", + "Hide replies": "Ukryj odpowiedzi", + "Home": "Strona główna", + "Home to {number} users": "Miejsce dla {number} użytkowników i użytkowniczek", + "Homepage": "Strona główna", + "Hourly email summary": "Cogodzinne wiadomości podsumowujące", + "I agree to the {instanceRules} and {termsOfService}": "Wyrażam zgodę na {instanceRules} i {termsOfService}", + "I create an identity": "Tworzę tożsamość", + "I don't have a Mobilizon account": "Nie mam konta Mobilizon", + "I have a Mobilizon account": "Mam konto Mobilizon", + "I have an account on another Mobilizon instance.": "Mam konto na innej instancji Mobilizon.", + "I have an account on {instance}.": "Mam konto na {instance}.", + "I participate": "Biorę udział", + "I want to allow people to participate without an account.": "Chcę pozwolić na udział bez konta.", + "I want to approve every participation request": "Chcę zatwierdzać każde zgłoszenie udziału", + "I want to manage the registration with an external provider": "Chcę zarządzać rejestracją przez zewnętrznego dostawcę", + "I've been mentionned in a comment under an event": "Zostałem(-am) wspomniany(-a) w komentarzu pod wydarzeniem", + "I've been mentionned in a group discussion": "Zostałem(-am) wspomniany(-a) w dyskusji grupowej", + "I've clicked on X, then on Y": "Kliknąłem / kliknęłam na X, a następnie na Y", + "ICS feed for events": "Kanał ICS dla wydarzeń", + "ICS/WebCal Feed": "Kanał ICS/WebCal", + "IP Address": "Adres IP", + "Identities": "Tożsamości", + "Identity {displayName} created": "Utworzono tożsamość {displayName}", + "Identity {displayName} deleted": "Usunięto tożsamość {displayName}", + "Identity {displayName} updated": "Zaktualizowano tożsamość {displayName}", + "If allowed by organizer": "Za zgodą organizatora(-ki)", + "If an account with this email exists, we just sent another confirmation email to {email}": "Jeżeli konto z tym adresem e-mail istnieje, właśnie wysłaliśmy nową wiadomość e-mail z potwierdzeniem na adres {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Jeżeli ta tożsamość jest jedynym administratorem(ką) jakiejś grupy, musisz ją usunąć zanim usuniesz tę tożsamość.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Jeśli zostaniesz poproszony o podanie tożsamości federacyjnej, składa się ona z nazwy użytkownika lub użytkowniczki i instancji. Na przykład tożsamość federacyjna Twojego pierwszego profilu to :", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Jeżeli wybrałeś(-aś) ręczne zatwierdzanie uczestników / uczestniczek, Mobilizon będzie wysyłać wiadomości aby informować o nowych uczestnikach / uczestniczkach do zatwierdzenia. Poniżej możesz wybrać, jak często chcesz otrzymywać takie powiadomienia.", + "If you want, you may send a message to the event organizer here.": "Jeśli chcesz, możesz tu przesłać wiadomość do organizatora(-ki) wydarzenia.", + "Ignore": "Ignoruj", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Obraz wyróżniający dla „{category}” autorstwa {author} z {source} ({license})", + "In person": "Osobiście", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "W tym kontekście, aplikacja to oprogramowanie dostarczone przez zespół Mobilizon lub osoby trzecie, dzięki któremu wchodzisz w interakcje ze swoją instancją.", + "In the past": "W przeszłości", + "In this instance's network": "w sieci tej instancji", + "Increase": "Zwiększ", + "Instance": "Instancja", + "Instance Long Description": "Dłuższy opis instancji", + "Instance Name": "Nazwa instancji", + "Instance Privacy Policy": "Polityka prywatności instancji", + "Instance Privacy Policy Source": "Źródło polityki prywatności instancji", + "Instance Privacy Policy URL": "Adres URL polityki prywatności instancji", + "Instance Rules": "Regulamin instancji", + "Instance Short Description": "Krótki opis instancji", + "Instance Slogan": "Motto instancji", + "Instance Terms": "Warunki korzystania z instancji", + "Instance Terms Source": "Źródło warunków korzystania z instancji", + "Instance Terms URL": "Adres URL warunków korzystania z instancji", + "Instance administrator": "Administrator(ka) instancji", + "Instance configuration": "Konfiguracja instancji", + "Instance feeds": "Kanały instancji", + "Instance languages": "Języki instancji", + "Instance rules": "Zasady instancji", + "Instance settings": "Ustawienia instancji", + "Instances": "Instancje", + "Instances following you": "Instancje które Cię obserwują", + "Instances you follow": "Instancje które obserwujesz", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Zintegruj to wydarzenie z narzędziami innych firm i wyświetl metadane wydarzenia.", + "Interact": "Interakcja", + "Interact with a remote content": "Interakcja ze zdalną zawartością", + "Invite a new member": "Zaproś nowego członka / członkinię", + "Invite member": "Zaproś członka / członkinię", + "Invited": "Zaproszony(-a)", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Możliwe, że pewne treści nie są dostępna w tej instancji, ponieważ ta instancja zablokowała profile lub grupy publikujące te treści.", + "Italic": "Pochylone", + "Jitsi Meet": "Jitsi Meet", + "Join": "Dołącz", + "Join {instance}, a Mobilizon instance": "Dołącz do {instance}, instancji Mobilizon", + "Join group": "Dołącz do grupy", + "Join group {group}": "Dołącz do grupy {group}", + "Join {instance}, a Mobilizon instance": "Dołącz do {instance} – instancja Mobilizona", + "Keep the entire conversation about a specific topic together on a single page.": "Zachowaj całą konwersację w tym temacie w całości na jednej stronie.", + "Key words": "Słowa kluczowe", + "Keyword, event title, group name, etc.": "Słowo kluczowe, tytuł wydarzenia, nazwa grupy itp.", + "Language": "Język", + "Languages": "Języki", + "Last IP adress": "Ostatni adres IP", + "Last group created": "Ostatnio utworzona grupa", + "Last published event": "Ostatnio opublikowane wydarzenie", + "Last published events": "Ostatnio opublikowane wydarzenia", + "Last seen on": "Ostatnio widziany(-a) dnia", + "Last sign-in": "Ostatnie logowanie", + "Last used on {last_used_date}": "Ostatnie użycie {last_used_date}", + "Last week": "Ostatni tydzień", + "Latest posts": "Najnowsze wpisy", + "Learn more": "Dowiedz się więcej", + "Learn more about Mobilizon": "Dowiedz się więcej o Mobilizon", + "Learn more about {instance}": "Dowiedz się więcej o {instance}", + "Least recently published": "Najstarsze", + "Leave": "Opuść", + "Leave event": "Opuść wydarzenie", + "Leave group": "Opuścić grupę", + "Leaving event \"{title}\"": "Opuszczanie wydarzenia „{title}”", + "Legal": "Informacje prawne", + "Let's define a few settings": "Zdefiniujmy kilka parametrów", + "License": "Licencja", + "Light": "Jasny", + "Limited number of places": "Ograniczona liczba miejsc", + "List": "Lista", + "List of conversations": "Lista konwersacji", + "List title": "Tytuł listy", + "Live": "Na żywo", + "Load more": "Załaduj więcej", + "Load more activities": "Ładowanie nowych aktywności", + "Loading comments…": "Ładowanie komentarzy…", + "Loading map": "Ładowanie mapy", + "Local": "Lokalny", + "Local time ({timezone})": "Czas lokalny ({timezone})", + "Local times ({timezone})": "Czasy lokalne ({timezone})", + "Locality": "Miejscowość", + "Location": "Lokalizacja", + "Log in": "Zaloguj się", + "Log out": "Wyloguj się", + "Login": "Zaloguj się", + "Login on Mobilizon!": "Zaloguj się na Mobilizon!", + "Login on {instance}": "Zaloguj się na {instance}", + "Login status": "Stan logowania", + "Logo": "Logo", + "Logo of the instance. Defaults to the upstream Mobilizon logo.": "Logo instancji. Domyślnie jest to logo Mobilizon.", + "Main languages you/your moderators speak": "Główne języki którymi posługujesz się Ty / moderatorzy (-ki)", + "Make sure that all words are spelled correctly.": "Upewnij się, że wszystkie słowa są napisane poprawnie.", + "Manage activity settings": "Zarządzanie ustawieniami aktywności", + "Manage event participations": "Zarządzanie uczestnictwem w wydarzeniach", + "Manage group members": "Zarządzanie członkami i członkiniami grupy", + "Manage group memberships": "Zarządzanie dołączaniem do grupy", + "Manage participations": "Zarządzaj uczestnikami / uczestniczkami", + "Manage push notification settings": "Zarządzanie ustawieniami powiadomień push", + "Manually approve new followers": "Ręczne zatwierdzanie osób obserwujących", + "Manually enter address": "Ręcznie wprowadź adres", + "Manually invite new members": "Ręcznie zapraszaj nowych członków / członkinie", + "Map": "Mapa", + "Mark as resolved": "Oznacz jako rozwiązane", + "Maybe the content was removed by the author or a moderator": "Być może treść została usunięta przez autora(-kę) lub moderatora(-kę)", + "Member": "Członek / członkini", + "Members": "Członkowie i członkinie", + "Members will also access private sections like discussions, resources and restricted posts.": "Członkowie będą też mieli dostęp do prywatnych sekcji, takich jak dyskusje, zasoby i wpisy o ograniczonym dostępie.", + "Members-only post": "Wpis zastrzeżony dla członków / członkiń", + "Membership requests will be approved by a group moderator": "Prośby o członkostwo będą zatwierdzane przez moderatorów(-ki) grupy", + "Memberships": "Członkostwo", + "Mentions": "Wzmianki", + "Message": "Wiadomość", + "Message body": "Treść wiadomości", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon jest sfederowaną siecią. Możesz wchodzić w interakcje z tym wydarzeniem z innego serwera.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon to oprogramowanie federacyjne, co oznacza, że możesz wchodzić w interakcje — w zależności od ustawień federacyjnych administratora(-ki) — z treściami z innych instancji, na przykład dołączając do grup lub wydarzeń utworzonych gdzie indziej.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon to narzędzie, które pomoże Ci znaleźć, utworzyć i organizować wydarzenia.", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon jest narzędziem, które pomaga Ci {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon nie jest wielką platformą, ale składa się z wielu połączonych ze sobą serwerów Mobilizon.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon nie jest wielką platformą, ale to {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "oprogramowania Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon korzysta z systemu profili w celu pogrupowania Twoich aktywności. Można utworzyć dowolną liczbę profili.", + "Mobilizon version": "Wersja Mobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon wyśle Ci wiadomość e-mail, gdy zostaną wprowadzone ważne zmiany w wydarzeniach, w których bierzesz udział: data, godzina, adres, potwierdzenie lub anulowanie itp.", + "Moderate new members": "Moderowanie nowych członków i członkiń", + "Moderated comments (shown after approval)": "Moderowane komentarze (pojawią się po zatwierdzeniu)", + "Moderation": "Moderacja", + "Moderation log": "Dziennik moderacji", + "Moderation logs": "Dzienniki moderacji", + "Moderator": "Moderator(ka)", + "Modify all of your account's data": "Zmiana wszystkich danych konta", + "More options": "Więcej opcji", + "Most recently published": "Najnowsze", + "Move": "Przenieś", + "Move \"{resourceName}\"": "Przenieś „{resourceName}”", + "Move resource to the root folder": "Przeniesienie zasobów do katalogu głównego", + "Move resource to {folder}": "Przenieś zasób do {folder}", + "My account": "Moje konto", + "My events": "Moje wydarzenia", + "My federated identity ends in {domain}": "Moja tożsamość federacyjna kończy się na {domain}", + "My groups": "Moje grupy", + "My identities": "Moje tożsamości", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "UWAGA! Domyślne warunki użytkowania nie zostały sprawdzone przez prawnika i prawdopodobnie nie zapewniają pełnej ochrony prawnej w każdej sytuacji dla administratora(-ki) instancji. Nie są one też właściwe dla każdego państwa i systemu prawnego. Jeżeli nie masz pewności, skonsultuj się z prawnikiem.", + "Name": "Nazwa", + "Navigated to {pageTitle}": "Przejście do {pageTitle}", + "Never used": "Nigdy nie użyty", + "New announcement": "Nowe ogłoszenie", + "New discussion": "Nowa dyskusja", + "New email": "Nowy adres e-mail", + "New folder": "Nowy katalog", + "New link": "Nowy odnośnik", + "New members": "Nowi członkowie / członkinie", + "New note": "Nowa notatka", + "New password": "Nowe hasło", + "New post": "Nowy wpis", + "New private message": "Nowa wiadomość prywatna", + "New profile": "Nowy profil", + "Next": "Następny", + "Next month": "W kolejnym miesiącu", + "Next page": "Następna strona", + "Next week": "W następnym tygodniu", + "No activities found": "Nie znaleziono żadnych aktywności", + "No address defined": "Nie określono adresu", + "No apps authorized yet": "Żadne aplikacje nie zostały jeszcze autoryzowane", + "No categories with public upcoming events on this instance were found.": "Nie znaleziono żadnych kategorii z publicznymi nadchodzącymi wydarzeniami w tej instancji.", + "No closed reports yet": "Nie ma jeszcze zamkniętych zgłoszeń", + "No comment": "Brak komentarzy", + "No comments yet": "Nie ma jeszcze komentarzy", + "No content found": "Nie znaleziono zawartości", + "No discussions yet": "Brak dyskusji (jeszcze)", + "No end date": "Brak daty zakończenia", + "No event found at this address": "Pod tym adresem nie znaleziono żadnych wydarzeń", + "No events found": "Nie znaleziono wydarzeń", + "No events found for {search}": "Nie znaleziono żadnych wydarzeń dla {search}", + "No follower matches the filters": "Żadna osoba obserwująca nie pasuje do filtrów", + "No group found": "Nie znaleziono grupy", + "No group matches the filters": "Żadna grupa nie spełnia kryteriów filtra", + "No group member found": "Nie znaleziono żadnego członka ani członkini grupy", + "No groups found": "Nie zna­le­zio­no grup", + "No groups found for {search}": "Nie znaleziono grup dla {search}", + "No information": "nie podano", + "No instance follows your instance yet.": "Żadna instancja nie obserwuje jeszcze Twojej instancji.", + "No instance found.": "Nie znaleziono instancji.", + "No instance to approve|Approve instance|Approve {number} instances": "Brak instancji do zatwierdzenia|Zatwierdź instancję|Zatwierdź {number} instancje|Zatwierdź {number} instancji", + "No instance to reject|Reject instance|Reject {number} instances": "Brak instancji do odrzucenia|Odrzuć instancję|Odrzuć {number} instancje|Odrzuć {number} instancji", + "No instance to remove|Remove instance|Remove {number} instances": "Brak instancji do usunięcia|Usuń instancję|Usuń {number} instancje|Usuń {number} instancji", + "No instances match this filter. Try resetting filter fields?": "Żadne instancje nie pasują do kryteriów filtra. Może spróbuj zmienić kryteria wyszukiwania?", + "No languages found": "Nie znaleziono języków", + "No member matches the filters": "Żaden członek / członkini nie spełnia kryteriów filtra", + "No members found": "Nie znaleziono żadnych członków / członkiń", + "No memberships found": "Nie znaleziono żadnych dołączeń", + "No message": "Brak wiadomości", + "No moderation logs yet": "Nie ma jeszcze dzienników moderacji", + "No more activity to display.": "Nie ma już żadnej aktywności do wyświetlenia.", + "No one is participating|One person participating|{going} people participating": "Nikt nie uczestniczy|Jedna osoba uczestniczy|{going}osób / osoby uczestniczy", + "No open reports yet": "Jeszcze nie ma otwartych zgłoszeń", + "No organized events found": "Nie znaleziono zorganizowanych wydarzeń", + "No organized events listed": "Brak zorganizowanych wydarzeń do wyświetlenia", + "No participant matches the filters": "Żaden członek nie spełnia kryteriów", + "No participant to approve|Approve participant|Approve {number} participants": "Brak uczestników / uczestniczek do zatwierdzenia|Zatwierdź uczestnika / uczestniczkę|Zatwierdź {number} uczestników / uczestniczki|Zatwierdź {number} uczestników / uczestniczek", + "No participant to reject|Reject participant|Reject {number} participants": "Brak uczestników(-czek) do odrzucenia|Odrzuć uczestnika / uczestniczkę|Odrzuć {number} uczestników / uczestniczki|Odrzuć {number} uczestników / uczestniczek", + "No participations listed": "Brak zapisów na wydarzenia do wyświetlenia", + "No posts found": "Nie znaleziono wpisów", + "No posts yet": "Brak wpisów (jeszcze)", + "No profile matches the filters": "Żaden profil nie spełnia kryteriów", + "No public upcoming events": "Brak nadchodzących publicznych wydarzeń", + "No resolved reports yet": "Jeszcze nie ma rozwiązanych zgłoszeń", + "No resources in this folder": "Brak zasobów w tym katalogu", + "No resources selected": "Nie wybrano zasobów|Wybrano jeden zasób|Wybrano {count} zasobów", + "No resources yet": "Brak zasobów (jeszcze)", + "No results for \"{queryText}\"": "Brak wyników dla „{queryText}”", + "No results for {search}": "Brak wyników dla {search}", + "No results found": "Nic nie znaleziono", + "No results found for {search}": "Nie znaleziono żadnych wyników dla {search}", + "No rules defined yet.": "Nie określono jeszcze regulaminu.", + "No user matches the filter": "Żaden użytkownik / użytkowniczka nie pasuje do kryteriów filtra", + "No user matches the filters": "Żaden użytkownik / użytkowniczka nie pasuje do kryteriów filtrów", + "None": "Brak", + "Not accessible with a wheelchair": "Niedostępne wózkiem inwalidzkim", + "Not approved": "Niezatwierdzony(-a)", + "Not confirmed": "Nie potwierdzono", + "Notes": "Notatki", + "Notification before the event": "Powiadomienie przed wydarzeniem", + "Notification on the day of the event": "Powiadomienie w dniu wydarzenia", + "Notification settings": "Ustawienia powiadomień", + "Notifications": "Powiadomienia", + "Notifications for manually approved participations to an event": "Powiadomienia o ręcznie zatwierdzanych udziałach w wydarzeniu", + "Notify participants": "Powiadomienie uczestników i uczestniczek", + "Notify the user of the change": "Powiadomienie użytkownika / użytkowniczki o zmianie", + "Now, create your first profile:": "Teraz utwórz swój profil:", + "Number of members": "Liczba członków i członkiń", + "Number of places": "Liczba miejsc", + "OK": "OK", + "Old password": "Stare hasło", + "On foot": "Pieszo", + "On the Fediverse": "W fediwersum", + "On {date}": "{date}", + "On {date} ending at {endTime}": "{date}, kończy się o {endTime}", + "On {date} from {startTime} to {endTime}": "{date} od {startTime} do {endTime}", + "On {date} starting at {startTime}": "{date}, rozpoczyna się o {startTime}", + "On {instance} and other federated instances": "Na {instance} i innych sfederowanych instancjach", + "Online": "Online", + "Online events": "Wydarzenia online", + "Online ticketing": "Sprzedaż biletów online", + "Online upcoming events": "Nadchodzące wydarzenia online", + "Only Mobilizon instances can be followed": "Obserwować można tylko instancje Mobilizona", + "Only accessible through link": "Dostępna tylko przez odnośnik", + "Only accessible through link (private)": "Dostępne tylko przez odnośnik (prywatne)", + "Only accessible to members of the group": "Dostępne tylko dla członków i członkiń grupy", + "Only alphanumeric lowercased characters and underscores are supported.": "Obsługiwane są tylko małe znaki alfanumeryczne i znaki podkreślenia.", + "Only group members can access discussions": "Dostęp do dyskusji mają tylko członkowie i członkinie grupy", + "Only group moderators can create, edit and delete events.": "Tylko moderatorzy(-ki) grupy mogą tworzyć, edytować i usuwać wydarzenia.", + "Only group moderators can create, edit and delete posts.": "Tylko moderatorzy(-ki) grupy mogą tworzyć, edytować i usuwać wpisy.", + "Only registered users may fetch remote events from their URL.": "Tylko zarejestrowani użytkownicy lub użytkowniczki mogą pobierać zdalne wydarzenia z adresu URL.", + "Open": "Otwarty", + "Open a topic on our forum": "Otwórz temat na naszym forum", + "Open an issue on our bug tracker (advanced users)": "Otwórz zgłoszenie w naszym module śledzenia błędów (zaawansowani użytkownicy i użytkowniczki)", + "Open main menu": "Otwórz menu główne", + "Open user menu": "Otwórz menu użytkownika / użytkowniczki", + "Opened reports": "Otwarte zgłoszenia", + "Or": "Lub", + "Ordered list": "Lista uporządkowana", + "Organized": "Zorganizowane", + "Organized by": "Organizowane przez", + "Organized by {name}": "Organizowane przez {name}", + "Organized events": "Zorganizowane wydarzenia", + "Organizer": "Organizator (-ka)", + "Organizer notifications": "Powiadomienia dla organizatora (-ki)", + "Organizers": "Organizatorzy (-ki)", + "Other": "Inne", + "Other actions": "Inne działania", + "Other notification options:": "Inne opcje powiadomień:", + "Other software may also support this.": "Inne oprogramowanie może również obsługiwać tę funkcjonalność.", + "Other users with the same IP address": "Inni użytkownicy / użytkowniczki z tym samym adresem IP", + "Other users with the same email domain": "Inni użytkownicy / użytkowniczki z tą samą domeną e-mail", + "Otherwise this identity will just be removed from the group administrators.": "W przeciwnym razie ta tożsamość zostanie jedynie usunięta spośród administratorów (-ek) grupy.", + "Owncast": "Owncast", + "Page": "Strona", + "Page limited to my group (asks for auth)": "Dostęp ograniczony do mojej grupy (wymagane uwierzytelnienie)", + "Page not found": "Nie znaleziono strony", + "Parent folder": "Katalog nadrzędny", + "Partially accessible with a wheelchair": "Częściowo dostępne na wózku", + "Participant": "Uczestnik / uczestniczka", + "Participants": "Uczestnicy", + "Participants to {eventTitle}": "Uczestnicy {eventTitle}", + "Participate": "Weź udział", + "Participate using your email address": "Weź udział używając adresu e-mail", + "Participation approval": "Zatwierdzenie uczestnictwa", + "Participation confirmation": "Potwierdzenie uczestnictwa", + "Participation notifications": "Powiadomienia o udziale", + "Participation requested!": "Prosimy o wzięcie udziału!", + "Participation with account": "Uczestnictwo w ramach konta", + "Participation without account": "Uczestnictwo bez konta", + "Participations": "Uczestnictwa", + "Password": "Hasło", + "Password (confirmation)": "Hasło (potwierdzenie)", + "Password reset": "Resetowanie hasła", + "Past events": "Minione wydarzenia", + "PeerTube live": "Transmisja na żywo na PeerTube", + "PeerTube replay": "Powtórka na PeerTube", + "Pending": "Oczekujące", + "Personal feeds": "Kanały osobiste", + "Photo by {author} on {source}": "Zdjęcie autorstwa {author} z {source}", + "Pick": "Wybierz", + "Pick a profile or a group": "Wybierz profil lub grupę", + "Pick an identity": "Wybierz tożsamość", + "Pick an instance": "Wybierz instancję", + "Please add as many details as possible to help identify the problem.": "Prosimy o zawarcie jak największej liczby szczegółów, które pomogą zidentyfikować problem.", + "Please check your spam folder if you didn't receive the email.": "Sprawdź katalog spam, jeśli nie doszła wiadomość e-mail.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Skontaktuj się z administratorem(-ką) tej instancji Mobilizon, jeżeli uważasz że to pomyłka.", + "Please do not use it in any real way.": "Nie używaj go do żadnych rzeczywistych celów.", + "Please enter your password to confirm this action.": "Wprowadź swoje hasło aby potwierdzić to działanie.", + "Please make sure the address is correct and that the page hasn't been moved.": "Upewnij się, że adres jest prawidłowy i strona nie została przeniesiona.", + "Please read the {fullRules} published by {instance}'s administrators.": "Przeczytaj {fullRules} opublikowane przez administratorów (-ki) {instance}.", + "Popular groups close to you": "Popularne grupy w pobliżu", + "Popular groups nearby {position}": "Popularne grupy w pobliżu {position}", + "Post": "Wpis", + "Post URL": "Adres URL wpisu", + "Post a comment": "Wyślij komentarz", + "Post a reply": "Zamieść odpowiedź", + "Post body": "Treść wpisu", + "Post comments": "Zamieszczanie komentarzy", + "Post {eventTitle} reported": "Zgłoszono wpis {eventTitle}", + "Postal Code": "Kod pocztowy", + "Posts": "Wpisy", + "Powered by Mobilizon": "Powered by Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Ta witryna działa w oparciu o {mobilizon}. © 2018 - {date} Twórcy Mobilizon - Oprogramowanie powstało dzięki wsparciu finansowemu {contributors}.", + "Preferences": "Preferencje", + "Previous": "poprzedni", + "Previous email": "Poprzedni adres e-mail", + "Previous month": "Poprzedni miesiąc", + "Previous page": "Poprzednia strona", + "Price sheet": "Cennik", + "Primary Color": "Kolor podstawowy", + "Privacy": "Prywatność", + "Privacy Policy": "Polityka prywatności", + "Privacy policy": "Polityka prywatności", + "Private event": "Wydarzenie prywatne", + "Private feeds": "Kanały prywatne", + "Profile": "Profil", + "Profile feeds": "Kanały profilu", + "Profile suspended and report resolved": "Profil zawieszono i załatwiono zgłoszenie", + "Profiles": "Profile", + "Profiles and federation": "Profile i federacja", + "Promote": "Awansuj", + "Public": "Publiczne", + "Public RSS/Atom Feed": "Publiczny kanał RSS/Atom", + "Public comment moderation": "Moderacja publicznych komentarzy", + "Public event": "Wydarzenie publiczne", + "Public feeds": "Kanały publiczne", + "Public iCal Feed": "Publiczny strumień iCal", + "Public preview": "Publiczny podgląd", + "Publication date": "Data publikacji", + "Publish": "Publikuj", + "Publish events": "Publikuj wydarzenia", + "Publish group posts": "Publikowanie wpisów grupowych", + "Published by {name}": "Opublikowane przez {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Wydarzenia opublikowane z {comments} komentarzami i {participations} potwierdzonym uczestnictwem", + "Published events with {comments} comments and {participations} confirmed participations": "Opublikowane wydarzenia z {comments} komentarzami i {participations} potwierdzonymi zapisami", + "Push": "Push", + "Quote": "Cytat", + "RSS/Atom Feed": "Kanał RSS/Atom", + "Radius": "Promień", + "Read all of your account's data": "Odczyt wszystkich danych konta", + "Read user activity settings": "Odczyt ustawień aktywności użytkownika(-czki)", + "Read user media": "Odczyt mediów użytkownika(-czki)", + "Read user memberships": "Odczyt informacji o członkostwie użytkowników(-czek)", + "Read user participations": "Odczyt informacji o uczestnictwie użytkowników(-czek)", + "Read user settings": "Odczyt ustawień użytkownika(-czki)", + "Recap every week": "Prześlij podsumowanie raz na tydzień", + "Receive one email for each activity": "Otrzymuj jedną wiadomość e-mail dla każdej aktywności", + "Receive one email per request": "Otrzymuj jedną wiadomość na każde zgłoszenie", + "Redirecting in progress…": "Przekierowanie w toku…", + "Redirecting to Mobilizon": "Przekierowanie do Mobilizon", + "Redirecting to content…": "Przekierowanie do zawartości…", + "Redo": "Wykonaj ponownie", + "Refresh profile": "Odśwież profil", + "Regenerate new links": "Regeneracja nowych odnośników", + "Region": "Region", + "Register": "Rejestracja", + "Register an account on {instanceName}!": "Zarejestruj konto na {instanceName}!", + "Register on this instance": "Zarejestruj się na tej instancji", + "Registration is allowed, anyone can register.": "Rejestracja jest dostępna, każdy może zarejestrować się.", + "Registration is closed.": "Rejestracja jest zamknięta.", + "Registration is currently closed.": "Rejestracja jest obecnie zamknięta.", + "Registrations": "Rejestracje", + "Registrations are restricted by allowlisting.": "Rejestracje są ograniczone przez białą listę.", + "Reject": "Odrzuć", + "Reject follow": "Odrzuć śledzenie", + "Reject member": "Odrzucenie członka / członkini", + "Rejected": "Odrzucono", + "Remember my participation in this browser": "Zapamiętaj moje uczestnictwo w tej przeglądarce", + "Remove": "Usuń", + "Remove link": "Usuń odnośnik", + "Remove uploaded media": "Usuwanie przesłanych multimediów", + "Rename": "Zmień nazwę", + "Rename resource": "Zmień nazwę zasobu", + "Reopen": "Otwórz ponownie", + "Replay": "Odtwórz ponownie", + "Reply": "Odpowiedz", + "Report": "Zgłoś", + "Report #{reportNumber}": "Zgłoś #{reportNumber}", + "Report as ham": "Zgłoś jako treść pożądaną", + "Report as spam": "Zgłoś jako spam", + "Report as undetected spam": "Zgłoś jako niewykryty spam", + "Report reason": "Przyczyna zgłoszenia", + "Report status": "Status zgłoszenia", + "Report this comment": "Zgłoś ten komentarz", + "Report this event": "Zgłoś to wydarzenie", + "Report this group": "Zgłoś tę grupę", + "Report this post": "Zgłoś ten wpis", + "Reported": "Zgłoszono", + "Reported at": "Zgłoszono o", + "Reported by": "Zgłoszono przez", + "Reported by an unknown actor": "Zgłoszono przez nieznany podmiot", + "Reported by someone anonymously": "Zgłoszone przez kogoś anonimowo", + "Reported by someone on {domain}": "Zgłoszono przez osobę z {domain}", + "Reported by {reporter}": "Zgłoszono przez {reporter}", + "Reported content": "Zgłoszona treść", + "Reported group": "Zgłoszona grupa", + "Reported identity": "Zgłaszana tożsamość", + "Reports": "Zgłoszenia", + "Reports list": "Lista zgłoszeń", + "Request for participation confirmation sent": "Wysłano potwierdzenie prośby o uczestnictwo", + "Resend confirmation email": "Wyślij ponownie wiadomość potwierdzającą", + "Resent confirmation email": "Wyślij ponownie potwierdzającą wiadomość e-mail", + "Reset": "Resetuj", + "Reset filters": "Zresetuj filtry", + "Reset my password": "Resetuj moje hasło", + "Reset password": "Zresetuj hasło", + "Resolved": "Rozwiązano", + "Resource provided is not an URL": "Podany zasób nie jest adresem URL", + "Resources": "Zasoby", + "Restricted": "Ograniczona", + "Return to the event page": "Wróć do strony wydarzenia", + "Return to the group page": "Powrót do strony grupy", + "Revoke": "Cofnięcie uprawnień", + "Right now": "Właśnie teraz", + "Role": "Rola", + "Rules": "Regulamin", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL i jej następca TLS to technologie szyfrowania zabezpieczające komunikację podczas korzystania z usługi. Możesz rozpoznać szyfrowanie połączenie w pasku adresu przeglądarki po tym, czy adres URL rozpoczyna się od {https} i czy ikona kłódki jest wyświetlana przy pasku adresu przeglądarki.", + "SSL/TLS": "SSL/TLS", + "Save": "Zapisz", + "Save draft": "Zapisz szkic", + "Schedule": "Program", + "Search": "Szukaj", + "Search events, groups, etc.": "Szukaj wydarzeń, grup itp.", + "Search target": "Cel wyszukiwania", + "Searching…": "Wyszukiwanie…", + "Secondary Color": "Kolor dodatkowy", + "Select a category": "Wybierz kategorię", + "Select a language": "Wybierz język", + "Select a radius": "Wybierz promień", + "Select a timezone": "Wybierz strefę czasową", + "Select all resources": "Wybierz wszystkie zasoby", + "Select languages": "Wybierz języki", + "Select the activities for which you wish to receive an email or a push notification.": "Wybierz działania, dla których chcesz otrzymywać powiadomienia e-mail lub push.", + "Select this resource": "Wybierz ten zasób", + "Send": "wyślij", + "Send email": "Wyślij e-mail", + "Send feedback": "Wyślij informacje zwrotne", + "Send notification e-mails": "Wysyłanie powiadomień e-mail", + "Send password reset": "Wyślij reset hasła", + "Send the confirmation email again": "Wyślij wiadomość potwierdzającą ponownie", + "Send the report": "Wyślij zgłoszenie", + "Set an URL to a page with your own privacy policy.": "Ustaw adres URL strony z własną polityką prywatności.", + "Set an URL to a page with your own terms.": "Ustaw adres URL na stronę z własnym regulaminem.", + "Settings": "Ustawienia", + "Share": "Udostępnij", + "Share this event": "Udostępnij to wydarzenie", + "Share this group": "Udostępnij tę grupę", + "Share this post": "Udostępnij ten wpis", + "Short bio": "Krótki opis", + "Show filters": "Pokaż filtry", + "Show map": "Pokaż mapę", + "Show me where I am": "Pokaż mi, gdzie jestem", + "Show remaining number of places": "Pokaż pozostałą liczbę miejsc", + "Show the time when the event begins": "Pokaż czas rozpoczęcia wydarzenia", + "Show the time when the event ends": "Pokaż czas zakończenia wydarzenia", + "Showing events before": "Wyświetlanie wydarzeń przed", + "Showing events starting on": "Pokaż wydarzenia od", + "Sign Language": "Język migowy", + "Sign in with": "Zaloguj się używając", + "Sign up": "Zarejestruj się", + "Since you are a new member, private content can take a few minutes to appear.": "Ponieważ jesteś nowym członkiem / członkinią, może zająć kilka minut, zanim zobaczysz prywatną zawartość.", + "Skip to main content": "Przejdź do głównej treści", + "Smoke free": "Strefa wolna od dymu tytoniowego", + "Smoking allowed": "Palenie dozwolone", + "Social": "Społeczne", + "Software details: {software_details}": "Szczegóły oprogramowania: {software_details}", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Część terminów z tekstu, technicznych lub innych, może być trudna do zrozumienia. Dlatego utworzyliśmy słownik który pomoże je lepiej zrozumieć:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Przepraszamy, nie mogliśmy zapisać Twoich informacji zwrotnych. Nie martw się, postaramy się naprawić ten błąd.", + "Sort by": "Sortuj według", + "Starts on…": "Rozpoczyna się…", + "Status": "Stan", + "Statuses": "Statusy", + "Stop following instance": "Przestań obserwować instancję", + "Street": "Ulica", + "Submit": "Wyślij", + "Submit to Akismet": "Prześlij do Akismet", + "Subtitles": "Napisy", + "Suggestions:": "Sugestie:", + "Suspend": "Zawieś", + "Suspend group": "Zawieś grupę", + "Suspend the account": "Zawieś konto", + "Suspend the account?": "Zawiesić konto?", + "Suspend the profile": "Zawieś profil", + "Suspend the profile?": "Zawiesić profil?", + "Suspended": "Zawieszony", + "Tag search": "Wyszukiwanie po tagach", + "Task lists": "Listy zadań", + "Technical details": "Szczegóły techniczne", + "Tentative": "Niepewne", + "Tentative: Will be confirmed later": "Niepewne: zostanie potwierdzone później", + "Terms": "Regulamin", + "Terms of service": "Warunki użytkowania", + "Text": "Tekst", + "Thanks a lot, your feedback was submitted!": "Dziękujemy bardzo, Twoje informacje zwrotne zostały zgłoszone!", + "That you follow or of which you are a member": "Które obserwujesz lub do których należysz", + "The Big Blue Button video teleconference URL": "Adres URL telekonferencji wideo na Big Blue Button", + "The Google Meet video teleconference URL": "Adres URL telekonferencji wideo na Google Meet", + "The Jitsi Meet video teleconference URL": "Adres URL telekonferencji wideo Jitsi Meet", + "The Microsoft Teams video teleconference URL": "Adres URL telekonferencji wideo na Microsoft Teams", + "The URL of a pad where notes are being taken collaboratively": "Adres URL edytora online do zespołowego prowadzenia notatek", + "The URL of a poll where the choice for the event date is happening": "Adres URL ankiety, w której można wybrać datę wydarzenia", + "The URL where the event can be watched live": "Adres URL, pod którym wydarzenie można oglądać na żywo", + "The URL where the event live can be watched again after it has ended": "Adres URL, pod którym można ponownie obejrzeć wydarzenie na żywo po jego zakończeniu", + "The Zoom video teleconference URL": "Adres URL telekonferencji wideo na Zoom", + "The account's email address was changed. Check your emails to verify it.": "Adres e-mail konta został zmieniony. Sprawdź swoje wiadomości e-mail, aby potwierdzić zmianę.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Rzeczywista liczba uczestników / uczestniczek może się różnić, ponieważ to wydarzenie jest obsługiwane przez inną instancję.", + "The calc will be created on {service}": "Arkusz kalkulacyjny zostanie stworzony w {service}", + "The content came from another server. Transfer an anonymous copy of the report?": "Treść pochodzi z innego serwera. Przesłać anonimową kopię zgłoszenia?", + "The device code is incorrect or no longer valid.": "Kod urządzenia jest nieprawidłowy lub nieaktualny.", + "The draft event has been updated": "Szkic wydarzenia został zaktualizowany", + "The event has a sign language interpreter": "Wydarzenie ma tłumacza języka migowego", + "The event has been created as a draft": "Wydarzenie zostało utworzone jako szkic", + "The event has been published": "Wydarzenie zostało opublikowane", + "The event has been updated": "Wydarzenie zostało zaktualizowane", + "The event has been updated and published": "Wydarzenie zostało zaktualizowane i opublikowane", + "The event hasn't got a sign language interpreter": "Wydarzenie nie ma tłumacza języka migowego", + "The event is fully online": "Wydarzenie odbywa się w całości online", + "The event live video contains subtitles": "Wideo na żywo z wydarzenia zawiera napisy", + "The event live video does not contain subtitles": "Wideo na żywo z wydarzenia nie zawiera napisów", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Organizator wydarzenia zdecydował się ręcznie zatwierdzać uczestnictwo. Czy chcesz dodać krótką notatkę wyjaśniającą, dlaczego chcesz wziąć udział w tym wydarzeniu?", + "The event organizer didn't add any description.": "Organizator(ka) wydarzenia nie dodał(a) żadnego opisu.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Organizator(ka) wydarzenia ręcznie zatwierdza uczestnictwo. Ponieważ zdecydowałeś(-aś) się na wzięcie udziału bez konta, wyjaśnij dlaczego chcesz wziąć udział w tym wydarzeniu.", + "The event title will be ellipsed.": "Tytuł wydarzenia zostanie pominięty.", + "The event will show as attributed to this group.": "To wydarzenie będzie wyświetlane jako przypisane do tej grupy.", + "The event will show as attributed to this profile.": "To wydarzenie będzie wyświetlane jako przypisane do tego profilu.", + "The event will show as attributed to your personal profile.": "To wydarzenie będzie wyświetlane jako przypisane do Twojego osobistego profilu.", + "The event {event} was created by {profile}.": "Wydarzenie {event} zostało utworzone przez {profile}.", + "The event {event} was deleted by {profile}.": "Wydarzenie {event} zostało usunięte przez {profile}.", + "The event {event} was updated by {profile}.": "Wydarzenie {event} zostało zaktualizowane przez {profile}.", + "The events you created are not shown here.": "Wydarzenia, które utworzyłeś(-aś) nie są tu wyświetlane.", + "The following user's profiles will be deleted, with all their data:": "Profile następujących użytkowników zostaną usunięte wraz ze wszystkimi danymi:", + "The geolocation prompt was denied.": "Monit o geolokalizację został odrzucony.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "Do grupy może dołączyć każda osoba, ale nowi członkowie i członkinie muszą zostać zatwierdzeni(-one) przez administratora(-kę).", + "The group can now be joined by anyone.": "Do grupy może teraz dołączyć każda osoba.", + "The group can now only be joined with an invite.": "Do grupy można teraz dołączyć tylko po otrzymaniu zaproszenia.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Grupa będzie publicznie widoczna w wynikach wyszukiwania i może być sugerowana w sekcji Przeglądaj. Tylko publiczne informacje będą wyświetlane na jej stronie.", + "The group's avatar was changed.": "Awatar grupy został zmieniony.", + "The group's banner was changed.": "Baner grupy został zmieniony.", + "The group's physical address was changed.": "Fizyczny adres grupy został zmieniony.", + "The group's short description was changed.": "Krótki opis grupy został zmieniony.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "Administrator(ka) instancji to osoba lub jednostka prowadząca instancję Mobilizon.", + "The member was approved": "Członek / członkini została zatwierdzona", + "The member was removed from the group {group}": "Członek / członkini została usunięta z grupy {group}", + "The membership request from {profile} was rejected": "Prośba o członkostwo {profile} została odrzucona", + "The only way for your group to get new members is if an admininistrator invites them.": "Jedynym sposobem aby grupa zyskała nowych członków / członkinie jest zaproszenie przez administratora(-kę).", + "The organiser has chosen to close comments.": "Organizator(-ka) postanowił(-a) wyłączyć komentarze.", + "The pad will be created on {service}": "Notatnik zostanie utworzony na {service}", + "The page you're looking for doesn't exist.": "Strona którą próbujesz odwiedzić nie istnieje.", + "The password was successfully changed": "Pomyślnie zmieniono hasło", + "The post {post} was created by {profile}.": "Wpis {post} został utworzony przez {profile}.", + "The post {post} was deleted by {profile}.": "Wpis {post} został usunięty przez {profile}.", + "The post {post} was updated by {profile}.": "Wpis {post} został zaktualizowany przez {profile}.", + "The provided application was not found.": "Podana aplikacja nie została znaleziona.", + "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.": "Treść zgłoszenia (ewentualne komentarze i wydarzenie) oraz zgłoszone szczegóły profilu zostaną przesłane do Akismet.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Zgłoszenie zostanie wysłane do moderatorów(-ek) Twojej instancji. Możesz wyjaśnić powód zgłoszenia poniżej.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "Wybrany obraz jest zbyt duży. Należy wybrać plik mniejszy niż {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Szczegóły techniczne błędu mogą pomóc programistom w łatwiejszym rozwiązaniu problemu. Prosimy o dodanie ich do opinii.", + "The user has been disabled": "Ten użytkownik / użytkowniczka jest wyłączony", + "The videoconference will be created on {service}": "Wideokonferencja zostanie utworzona w {service}", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Zostanie wykorzystana {default_privacy_policy}. Będzie ona przetłumaczona na język użytkownika lub użytkowniczki.", + "The {default_terms} will be used. They will be translated in the user's language.": "Zostaną wykorzystane {default_terms}. Zostaną one przetłumaczone na język użytkownika lub użytkowniczki.", + "Theme": "Motyw", + "There are {participants} participants.": "Jest {participants} uczestników / uczestniczek.", + "There is no activity yet. Start doing some things to see activity appear here.": "Niema jeszcze żadnej aktywności. Zacznij coś robić, aby aktywność pojawiła się tutaj.", + "There will be no way to recover your data.": "Nie będzie możliwości przywrócenia Twoich danych.", + "There will be no way to restore the profile's data!": "Nie będzie możliwości przywrócenia danych profilu!", + "There will be no way to restore the user's data!": "Nie będzie możliwości przywrócenia danych użytkownika!", + "There's no announcements yet": "Nie ma jeszcze żadnych ogłoszeń", + "There's no discussions yet": "Nie ma jeszcze dyskusji", + "These apps can access your account through the API. If you see here apps that you don't recognize, that don't work as expected or that you don't use anymore, you can revoke their access.": "Aplikacje te mogą uzyskać dostęp do konta przez API. Jeśli widzisz tutaj aplikacje, których nie rozpoznajesz, które nie działają zgodnie z oczekiwaniami lub których już nie używasz, możesz odebrać im dostęp.", + "These events may interest you": "Te wydarzenia mogą Cię zainteresować", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Te kanały zawierają dane wydarzeń, których uczestnikiem lub twórcą jest którykolwiek z profili użytkownika(-czki). Należy zachować je jako prywatne. Kanały dla poszczególnych profili można znaleźć na stronie edycji każdego profilu.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Kanały te zawierają informacje o wydarzeniach, których dany profil jest uczestnikiem lub twórcą. Należy zachować je jako prywatne. Kanały dla wszystkich profili można znaleźć w ustawieniach powiadomień.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Ta instancja Mobilizon i organizator(-ka) wydarzenia pozwalają na anonimowe uczestnictwo, ale wymagają potwierdzenia z użyciem adresu e-mail.", + "This URL doesn't seem to be valid": "Ten adres URL wydaje się być nieprawidłowy", + "This URL is not supported": "Ten adres URL jest nieobsługiwany", + "This application asks for the following permissions:": "Ta aplikacja wymaga następujących uprawnień:", + "This application didn't ask for known permissions. It's likely the request is incorrect.": "Ta aplikacja nie poprosiła o znane uprawnienia. Prawdopodobnie żądanie jest nieprawidłowe.", + "This application will be able to access all of your informations and post content. Make sure you only approve applications you trust.": "Ta aplikacja będzie mogła uzyskać dostęp do wszystkich Twoich informacji i publikować treści. Upewnij się, że zatwierdzasz tylko zaufane aplikacje.", + "This application will be allowed to access all of the groups you're a member of": "Ta aplikacja będzie miała dostęp do wszystkich grup, do których należysz", + "This application will be allowed to access group activities in all of the groups you're a member of": "Ta aplikacja będzie mogła uzyskiwać dostęp do aktywności grupowych we wszystkich grupach, do których należysz", + "This application will be allowed to access your user activity settings": "Ta aplikacja będzie miała dostęp do Twoich ustawień aktywności użytkownika(-czki)", + "This application will be allowed to access your user settings": "Ta aplikacja będzie miała dostęp do Twoich ustawień użytkownika(-czki)", + "This application will be allowed to create feed tokens": "Ta aplikacja będzie mogła tworzyć tokeny kanałów", + "This application will be allowed to create group discussions": "Aplikacja ta będzie umożliwiała tworzenie dyskusji grupowych", + "This application will be allowed to create new profiles for your account": "Ta aplikacja będzie mogła tworzyć nowe profile dla Twojego konta", + "This application will be allowed to create resources in all of the groups you're a member of": "Ta aplikacja będzie mogła tworzyć zasoby we wszystkich grupach, do których należysz", + "This application will be allowed to delete comments": "Ta aplikacja będzie mogła usuwać komentarze", + "This application will be allowed to delete events": "Ta aplikacja będzie mogła usuwać wydarzenia", + "This application will be allowed to delete feed tokens": "Ta aplikacja będzie mogła usuwać tokeny kanałów", + "This application will be allowed to delete group discussions": "Ta aplikacja będzie mogła usuwać dyskusje grupowe", + "This application will be allowed to delete group posts": "Ta aplikacja będzie mogła usuwać wpisy grupowe", + "This application will be allowed to delete resources in all of the groups you're a member of": "Ta aplikacja będzie mogła usuwać zasoby ze wszystkich grup, do których należysz", + "This application will be allowed to delete your profiles": "Ta aplikacja będzie mogła usuwać Twoje profile", + "This application will be allowed to join and leave groups": "Ta aplikacja będzie umożliwiać dołączanie do grup i opuszczanie ich", + "This application will be allowed to list and access group discussions in all of the groups you're a member of": "Ta aplikacja będzie mogła wyświetlać dyskusje grupowe i uzyskiwać do nich dostęp we wszystkich grupach, do których należysz", + "This application will be allowed to list and access group events in all of the groups you're a member of": "Ta aplikacja będzie mogła wyświetlać wydarzenia grupowe i uzyskiwać do nich dostęp we wszystkich grupach, do których należysz", + "This application will be allowed to list and access group todo-lists in all of the groups you're a member of": "Ta aplikacja będzie mogła wyświetlać grupowe listy rzeczy do zrobienia i uzyskiwać do nich dostęp we wszystkich grupach, do których należysz", + "This application will be allowed to list and view the events you're participating to": "Ta aplikacja umożliwia wyświetlanie listy wydarzeń, w których bierzesz udział", + "This application will be allowed to list and view the groups you're a member of": "Ta aplikacja będzie mogła wyświetlać i przeglądać grupy, do których należysz", + "This application will be allowed to list and view the groups you're following": "Ta aplikacja będzie mogła wyświetlać i przeglądać grupy, które obserwujesz", + "This application will be allowed to list and view your draft events": "Ta aplikacja będzie mogła wyświetlać listę wersji roboczych wydarzeń i je przeglądać", + "This application will be allowed to list and view your organized events": "Ta aplikacja będzie umożliwiać wyświetlanie i przeglądanie organizowanych przez Ciebie wydarzeń", + "This application will be allowed to list group followers in all of the groups you're a member of": "Ta aplikacja będzie mogła wyświetlać listę osób obserwujących grupę we wszystkich grupach, do których należysz", + "This application will be allowed to list group members in all of the groups you're a member of": "Ta aplikacja będzie mogła wyświetlać członków i członkinie grupy we wszystkich grupach, do których należysz", + "This application will be allowed to list the media you've uploaded": "Ta aplikacja będzie uprawniona do wyświetlania listy przesłanych multimediów", + "This application will be allowed to list your suggested group events": "Ta aplikacja będzie mogła wyświetlać listę sugerowanych wydarzeń grupowych", + "This application will be allowed to manage events participations": "Ta aplikacja będzie umożliwiała zarządzanie uczestnictwem w wydarzeniach", + "This application will be allowed to manage group members in all of the groups you're a member of": "Ta aplikacja będzie mogła zarządzać członkami i członkiniami grupy we wszystkich grupach, do których należysz", + "This application will be allowed to manage your account activity settings": "Ta aplikacja będzie mogła zarządzać ustawieniami aktywności na Twoim koncie", + "This application will be allowed to manage your account push notification settings": "Ta aplikacja będzie mogła zarządzać ustawieniami powiadomień push na Twoim koncie", + "This application will be allowed to post comments": "Ta aplikacja będzie mogła zamieszczać komentarze", + "This application will be allowed to publish and manage events, post and manage comments, participate to events, manage all of your groups, including group events, resources, posts and discussions. It will also be allowed to manage your account and profile settings.": "Aplikacja ta umożliwia publikowanie wydarzeń i zarządzanie nimi, publikowanie komentarzy i zarządzanie nimi, uczestniczenie w wydarzeniach, zarządzanie wszystkimi grupami, w tym wydarzeniami grupowymi, zasobami, wpisami i dyskusjami. Pozwoli również zarządzać ustawieniami konta i profilu.", + "This application will be allowed to publish events": "Ta aplikacja będzie mogła publikować wydarzenia", + "This application will be allowed to publish events, participate to events": " ", + "This application will be allowed to publish group posts": "Ta aplikacja będzie mogła publikować wpisy grupowe", + "This application will be allowed to remove uploaded media": "Ta aplikacja będzie mogła usuwać przesłane multimedia", + "This application will be allowed to see all of your events organized, the events you participate to, as well as every data from your groups.": "Ta aplikacja pozwoli Ci zobaczyć wszystkie wydarzenia, które zorganizowałeś(-aś), wydarzenia, w których bierzesz udział, a także wszystkie dane dotyczące twoich grup.", + "This application will be allowed to see all of your events organized, the events you participate to, …": " ", + "This application will be allowed to update comments": "Ta aplikacja będzie mogła aktualizować komentarze", + "This application will be allowed to update events": "Ta aplikacja będzie mogła aktualizować zdarzenia", + "This application will be allowed to update group discussions": "Ta aplikacja będzie mogła aktualizować dyskusje grupowe", + "This application will be allowed to update group posts": "Ta aplikacja będzie mogła aktualizować wpisy grupy", + "This application will be allowed to update resources in all of the groups you're a member of": "Ta aplikacja będzie mogła aktualizować zasoby we wszystkich grupach, do których należysz", + "This application will be allowed to update your profiles": "Ta aplikacja będzie mogła aktualizować Twoje profile", + "This application will be allowed to upload media": "Ta aplikacja będzie umożliwiać przesyłanie multimediów", + "This event has been cancelled.": "To wydarzenie zostało anulowane.", + "This event is accessible only through it's link. Be careful where you post this link.": "To wydarzenie jest dostępne wyłącznie poprzez odnośnik. Uważaj, gdzie go publikujesz.", + "This group doesn't have a description yet.": "Ta grupa nie ma jeszcze opisu.", + "This group is a remote group, it's possible the original instance has more informations.": "Ta grupa jest grupą zdalną, możliwe, że instancja źródłowa ma więcej informacji.", + "This group is accessible only through it's link. Be careful where you post this link.": "To wydarzenie jest dostępne wyłącznie poprzez odnośnik. Uważaj, gdzie go publikujesz.", + "This group is invite-only": "Ta grupa jest tylko dla zaproszonych osób", + "This group was not found": "Ta grupa nie została znaleziona", + "This identifier is unique to your profile. It allows others to find you.": "Ten identyfikator jest unikatowy dla Twojego profilu. Pozwala innym Cię odnaleźć.", + "This information is saved only on your computer. Click for details": "Ta informacja jest zapisywana tylko na Twoim komputerze. Naciśnij, aby uzyskać szczegóły", + "This instance doesn't follow yours.": "Ta instancja nie obserwuje Twojej.", + "This instance hasn't got push notifications enabled.": "Ta instancja nie ma włączonych powiadomień push.", + "This instance isn't opened to registrations, but you can register on other instances.": "Ta instancja nie pozwala na rejestrację, ale możesz zarejestrować się na innych instancjach.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Ta instancja, {instanceName} ({domain}), obsługuje Twój profil, więc zapamiętaj jej nazwę.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Twój profil jest obsługiwany przez tę instancję, zatem zapamiętaj jej nazwę.", + "This is a demonstration site to test Mobilizon.": "To jest strona demonstracyjna służąca do testowania Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "To wygląda tak jak sfederowana nazwa użytkownika lub użytkowniczki ({username}) dla grup. Pozwala na znalezienie ich w federacji i masz pewność, że będą unikatowe.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "To jest jak Twoja federacyjna nazwa użytkownika / użytkowniczki ({username}) dla grup. Umożliwi ona znalezienie grupy w federacji i zagwarantuje jej unikalność.", + "This month": "W tym miesiącu", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Ten wpis jest dostępny tylko dla członków / członkiń. Masz do niego dostęp w celach moderacyjnych, ponieważ jesteś moderatorem(-ką) instancji.", + "This post is accessible only through it's link. Be careful where you post this link.": "Ten wpis jest dostępny wyłącznie poprzez odnośnik. Uważaj, gdzie go publikujesz.", + "This profile is from another instance, the informations shown here may be incomplete.": "Ten profil pochodzi z innej instancji, informacje tu przedstawione mogą być niekompletne.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Profil znajduje się na tej instancji, więc musisz {access_the_corresponding_account}, aby go zawiesić.", + "This profile was not found": "Ten profil nie został znaleziony", + "This setting will be used to display the website and send you emails in the correct language.": "To ustawienie będzie używane do wyświetlania strony internetowej i wysyłania wiadomości e-mail w odpowiednim języku.", + "This user doesn't have any profiles": "Ten użytkownik / użytkowniczka nie ma żadnych profili", + "This user was not found": "Ten użytkownik / użytkowniczka nie została znaleziona", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Ta strona nie jest moderowana i wszelkie dane które wprowadzasz będą automatycznie usuwane każdego dnia o 00:001 (strefa czasowa Paryża).", + "This week": "W tym tygodniu", + "This weekend": "W najbliższy weekend", + "This will also resolve the report.": "To również załatwi zgłoszenie.", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Ta opcja usunie/zanonimizuje całą zawartość (wydarzenia, komentarze, wiadomości, deklaracje udziału…) utworzone z tej tożsamości.", + "Time in your timezone ({timezone})": "Czas w Twojej strefie czasowej ({timezone})", + "Times in your timezone ({timezone})": "Czasy w Twojej strefie czasowej ({timezone})", + "Timezone": "Strefa czasowa", + "Timezone detected as {timezone}.": "Strefa czasowa wykryta jako {timezone}.", + "Title": "Tytuł", + "To activate more notifications, head over to the notification settings.": "Aby aktywować więcej powiadomień, przejdź do ustawień powiadomień.", + "To confirm, type your event title \"{eventTitle}\"": "Aby potwierdzić, wprowadź tytuł wydarzenia „{eventTitle}”", + "To confirm, type your identity username \"{preferredUsername}\"": "Aby potwierdzić, wprowadź nazwę tożsamości „{preferredUsername}”", + "To create and manage multiples identities from a same account": "Aby tworzyć i zarządzać wieloma tożsamościami z tego samego konta", + "To create and manage your events": "Aby tworzyć i zarządzać wydarzeniami", + "To create or join an group and start organizing with other people": "Aby tworzyć i dołączać do grup i zacząć organizować się z innymi", + "To follow groups and be informed of their latest events": "Aby obserwować grupy i otrzymywać informacje o ich najnowszych wydarzeniach", + "To register for an event by choosing one of your identities": "Aby utworzyć wydarzenie korzystając z jednej ze swoich tożsamości", + "Today": "Dzisiaj", + "Tomorrow": "Jutro", + "Tools": "Narzędzia", + "Total number of participations": "Łączna liczba uczestników", + "Transfer to {outsideDomain}": "Przenieś do {outsideDomain}", + "Triggered profile refreshment": "Uruchomiono odświeżenie profilu", + "Try different keywords.": "Spróbuj zastosować inne słowa kluczowe.", + "Try fewer keywords.": "Spróbuj zastosować mniej słów kluczowych.", + "Try more general keywords.": "Spróbuj zastosować bardziej ogólne słowa kluczowe.", + "Twitch live": "Transmisja na żywo na Twitchu", + "Twitch replay": "Powtórka na Twitchu", + "Twitter account": "Konto X (poprzednio Twitter)", + "Type": "Rodzaj", + "Type or select a date…": "Wpisz lub wybierz datę…", + "URL": "Adres URL", + "URL copied to clipboard": "Skopiowano adres URL do schowka", + "Unable to copy to clipboard": "Nie można skopiować do schowka", + "Unable to create the group. One of the pictures may be too heavy.": "Nie można utworzyć grupy. Jeden z obrazów może być zbyt duży.", + "Unable to create the profile. The avatar picture may be too heavy.": "Nie można utworzyć profilu. Obrazek awatara może być zbyt duży.", + "Unable to detect timezone.": "Nie udało się wykryć strefy czasowej.", + "Unable to load event for participation. The error details are provided below:": "Nie można załadować wydarzenia do uczestnictwa. Szczegóły błędu są dostępne poniżej:", + "Unable to save your participation in this browser.": "Nie można zapisać uczestnictwa w tej przeglądarce.", + "Unable to update the profile. The avatar picture may be too heavy.": "Nie można zaktualizować profilu. Obrazek awatara może być zbyt duży.", + "Underline": "Podkreślenie", + "Undo": "Cofnij", + "Unfollow": "Przestań obserwować", + "Unfortunately, your participation request was rejected by the organizers.": "Niestety, Twoje zgłoszenie udziału zostało odrzucone przez organizatorów(-ki).", + "Unknown": "Nieznane", + "Unknown actor": "Nieznany aktor", + "Unknown error.": "Nieznany błąd.", + "Unknown value for the openness setting.": "Nieznana wartość dla ustawienia otwartości.", + "Unlogged participation": "Uczestnictwo bez logowania", + "Unsaved changes": "Niezapisane zmiany", + "Unsubscribe to browser push notifications": "Rezygnacja z powiadomień push przeglądarki", + "Unsuspend": "Cofnij zawieszenie", + "Upcoming": "Nadchodzące", + "Upcoming events": "Nadchodzące wydarzenia", + "Upcoming events from your groups": "Nadchodzące wydarzenia z twoich grup", + "Update": "Aktualizuj", + "Update app": "Zaktualizuj aplikację", + "Update comments": "Aktualizacja komentarzy", + "Update discussion title": "Aktualizacja tytułu dyskusji", + "Update event {name}": "Zaktualizuj wydarzenie {name}", + "Update events": "Aktualizacja wydarzeń", + "Update group": "Aktualizuj grupę", + "Update group discussions": "Aktualizacja dyskusji grupowych", + "Update group posts": "Aktualizacja wpisów grupy", + "Update group resources": "Aktualizacja zasobów grupy", + "Update my event": "Zaktualizuj wydarzenie", + "Update post": "Aktualizuj wpis", + "Update profiles": "Aktualizacja profili", + "Updated": "Zaktualizowano", + "Updated at": "Zaktualizowano o", + "Upload media": "Przesyłanie multimediów", + "Uploaded media size": "Rozmiar przesłanych multimediów", + "Uploaded media total size": "Całkowity rozmiar przesłanych multimediów", + "Use my location": "Użyj mojej lokalizacji", + "User": "Użytkownik(-czka)", + "User settings": "Ustawienia użytkownika lub użytkowniczki", + "User suspended and report resolved": "Zawieszono użytkownika i załatwiono zgłoszenie", + "Username": "Nazwa użytkownika lub użytkowniczki", + "Users": "Użytkownicy lub użytkowniczki", + "Validating account": "Sprawdzanie konta", + "Validating email": "Sprawdzanie e-maila", + "Video Conference": "Konferencja wideo", + "View a reply": "Brak odpowiedzi|Zobacz jedną odpowiedź|Zobacz {totalReplies} odpowiedzi", + "View account on {hostname} (in a new window)": "Wyświetl konto na {hostname} (w nowym oknie)", + "View all": "Zobacz wszystko", + "View all categories": "Wyświetl wszystkie kategorie", + "View all events": "Zobacz wszystkie wydarzenia", + "View all posts": "Zobacz wszystkie wpisy", + "View event page": "Zobacz stronę wydarzenia", + "View everything": "Zobacz wszystko", + "View full profile": "Zobacz pełny profil", + "View less": "Zobacz mniej", + "View more": "Zobacz więcej", + "View more events": "Zobacz więcej wydarzeń", + "View more events around {position}": "Zobacz więcej wydarzeń w okolicy {position}", + "View more groups around {position}": "Wyświetl więcej grup wokół {position}", + "View more online events": "Zobacz więcej wydarzeń online", + "View page on {hostname} (in a new window)": "Zobacz stronę na {hostname} (w nowym oknie)", + "View past events": "Zobacz poprzednie wydarzenia", + "View the group profile on the original instance": "Wyświetl profil grupy w instancji źródłowej", + "Visibility was set to an unknown value.": "Widoczność została ustawiona na nieznaną wartość.", + "Visibility was set to private.": "Widoczność została ustawiona na prywatną.", + "Visibility was set to public.": "Widoczność została ustawiona na publiczną.", + "Visible everywhere on the web": "Widoczna w całej sieci", + "Visible everywhere on the web (public)": "Widoczne w całym internecie (publiczne)", + "Visit {instance_domain}": "Odwiedź {instance_domain}", + "Waiting for organization team approval.": "Oczekiwanie na zatwierdzenie przez organizatorów.", + "Warning": "Ostrzeżenie", + "We collect your feedback and the error information in order to improve this service.": "Zbieramy informacje zwrotne i informacje o błędach w celu ulepszenia tej usługi.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Nie mogliśmy zapisać Twojego uczestnictwa w tej przeglądarce. Nie martw się, Twój udział został pomyślnie potwierdzony, po prostu nie mogliśmy zapisać jego statusu w tej przeglądarce z powodu problemu technicznego.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Ulepszamy to oprogramowanie dzięki Waszym opiniom. Istnieją dwie możliwości, aby poinformować nas o tym problemie (obie niestety wymagają utworzenia konta użytkownika):", + "We just sent an email to {email}": "Wysłaliśmy e-mail do {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Korzystamy z Twojej strefy czasowej, aby zapewnić Ci otrzymywanie powiadomień o wydarzeniach we właściwym czasie.", + "We will redirect you to your instance in order to interact with this event": "Zostaniesz przekierowany(-a) na swoją instancję, aby móc wejść w interakcje z tym wydarzeniem", + "We will redirect you to your instance in order to interact with this group": "Przekierujemy Cię na Twoją instancję, abyś mógł/mogła wchodzić w interakcje z tą grupą", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Wyślemy Ci wiadomość e-mail godzinę przed rozpoczęciem wydarzenia, aby upewnić się, że nie zapomnisz o nim.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Użyjemy Twojego ustawienia strefy czasowej, aby o poranku wysyłać Ci podsumowanie Twoich wydarzeń.", + "Website": "Witryna", + "Website / URL": "Strona internetowa / URL", + "Weekly email summary": "Cotygodniowe podsumowanie przez e-mail", + "Welcome back {username}!": "Witaj ponownie, {username}!", + "Welcome back!": "Witaj ponownie!", + "Welcome to Mobilizon, {username}!": "Witaj na Mobilizon, {username}!", + "What can I do to help?": "Jak mogę pomóc?", + "What happened?": "Co się stało?", + "Wheelchair accessibility": "Dostępność dla wózków inwalidzkich", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Gdy moderator(ka) grupy utworzy wydarzenie i przypisze je do grupy, pojawi się ono tutaj.", + "When the event is private, you'll need to share the link around.": "Jeśli wydarzenie jest prywatne, konieczne będzie udostępnienie linku.", + "When the post is private, you'll need to share the link around.": "Jeśli wpis jest prywatny, konieczne będzie udostępnienie linku.", + "Whether smoking is prohibited during the event": "Czy podczas wydarzenia obowiązuje zakaz palenia", + "Whether the event is accessible with a wheelchair": "Czy wydarzenie jest dostępne dla osób na wózkach", + "Whether the event is interpreted in sign language": "Czy wydarzenie jest tłumaczone na język migowy", + "Whether the event live video is subtitled": "Czy wideo na żywo z wydarzenia ma napisy", + "Who can post a comment?": "Kto może opublikować komentarz?", + "Who can view this event and participate": "Kto może zobaczyć to wydarzenie i wziąć w nim udział", + "Who can view this post": "Kto może zobaczyć ten wpis", + "Who published {number} events": "Po opublikowaniu {number} wydarzeń", + "Why create an account?": "Dlaczego warto założyć konto?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Pozwoli na wyświetlenie i zarządzanie stanem uczestnictwa na stronie wydarzenia gdy używasz tego urządzenia. Odznacz, jeżeli korzystasz z ogólnodostępnego urządzenia.", + "With the most participants": "Z największą liczbą uczestników(-czek)", + "With unknown participants": "Z nieznanymi uczestnikami", + "With {participants}": "Z {participants}", + "Within {number} kilometers of {place}": "|W promieniu jednego kilometra od {place}|W promieniu {number} kilometrów od {place}", + "Write a new comment": "Napisz nowy komentarz", + "Write a new message": "Napisz nową wiadomość", + "Write a new reply": "Napisz nową odpowiedź", + "Write something": "Napisz coś", + "Write your post": "Stwórz wpis", + "Yesterday": "Wczoraj", + "You accepted the invitation to join the group.": "Przyjąłeś / Przyjęłaś zaproszenie do dołączenia do grupy.", + "You added the member {member}.": "Dodałeś(-aś) członka / członkinię {member}.", + "You approved {member}'s membership.": "Członkostwo {member} zostało zatwierdzone.", + "You archived the discussion {discussion}.": "Dyskusja {discussion} została przez Ciebie zarchiwizowana.", + "You are not an administrator for this group.": "Nie jesteś administratorem(-ką) tej grupy.", + "You are not part of any group.": "Nie należysz do żadnej grupy.", + "You are offline": "Jesteś offline", + "You are participating in this event anonymously": "Bierzesz udział w tym wydarzeniu anonimowo", + "You are participating in this event anonymously but didn't confirm participation": "Bierzesz udział w tym wydarzeniu anonimowo, ale nie potwierdziłeś(-aś) udziału", + "You can add resources by using the button above.": "Zasoby można dodawać za pomocą przycisku powyżej.", + "You can add tags by hitting the Enter key or by adding a comma": "Możesz dodać tagi klawiszem Enter lub stawiając przecinek", + "You can drag and drop the marker below to the desired location": "Poniższy znacznik można przeciągnąć i upuścić w wybranym miejscu", + "You can pick your timezone into your preferences.": "Możesz zmienić strefę czasową w preferencjach.", + "You can put any arbitrary content in this element. URLs will be clickable.": "W tym elemencie można umieścić dowolną zawartość. Adresy URL będą klikalne.", + "You can try another search term or add the address details manually below.": "Możesz wypróbować inne kryteria wyszukiwania lub dodać dane adresowe poniżej ręcznie.", + "You can try another search term or drag and drop the marker on the map": "Możesz spróbować innego kryterium wyszukiwania lub przeciągnąć i upuścić znacznik na mapie", + "You can't change your password because you are registered through {provider}.": "Nie możesz zmienić hasła, ponieważ zarejestrowałeś(-aś) się używając {provider}.", + "You can't use push notifications in this browser.": "W tej przeglądarce nie można korzystać z powiadomień push.", + "You changed your email or password": "Zmieniono Twój adres e-mail lub hasło", + "You created the discussion {discussion}.": "Dyskusja {discussion} została przez Ciebie utworzona.", + "You created the event {event}.": "Utworzono wydarzenie {event}.", + "You created the folder {resource}.": "Został utworzony katalog {resource}.", + "You created the group {group}.": "Grupa {group} została przez Ciebie utworzona.", + "You created the post {post}.": "Wpis {post} został utworzony.", + "You created the resource {resource}.": "Zasób {resource} został utworzony przez Ciebie.", + "You deleted the discussion {discussion}.": "Dyskusja {discussion} została przez Ciebie usunięta.", + "You deleted the event {event}.": "Wydarzenie {event} zostało usunięte.", + "You deleted the folder {resource}.": "Katalog {resource} został usunięty.", + "You deleted the post {post}.": "Wpis {post} został usunięty.", + "You deleted the resource {resource}.": "Zasób {resource} został przez Ciebie usunięty.", + "You demoted the member {member} to an unknown role.": "Zdegradowałeś(-aś) członka / członkinię {member} do nieznanej roli.", + "You demoted {member} to moderator.": "Zdegradowałeś(-aś) {member} do roli moderatora(-ki).", + "You demoted {member} to simple member.": "Zdegradowałeś(-aś) {member} do roli zwykłego członka / zwykłej członkini.", + "You didn't create or join any event yet.": "Nie utworzyłeś(-aś) ani nie dołączyłeś(-aś) do żadnego wydarzenia.", + "You don't follow any instances yet.": "Nie obserwujesz jeszcze żadnych instancji.", + "You don't have any upcoming events. Maybe try another filter?": "Nie masz żadnych nadchodzących wydarzeń. Może spróbuj użyć innego filtra?", + "You excluded member {member}.": "Nastąpiło wykluczenie {member}.", + "You have attended {count} events in the past.": "Nie uczestniczyłeś(-aś) w żadnym wydarzeniu w przeszłości.|Uczestniczyłeś(-aś) w jednym wydarzeniu w przeszłości.|Uczestniczyłeś(-aś) w {count} wydarzeniach w przeszłości.", + "You have been invited by {invitedBy} to the following group:": "Zostałeś zaproszony przez {invitedBy} do następującej grupy:", + "You have been logged-out": "Nastąpiło wylogowanie", + "You have been removed from this group's members.": "Zostałeś(-aś) usunięty(-a) spośród członków / członkiń tej grupy.", + "You have cancelled your participation": "Wycofałeś(-aś) swój udział", + "You have one event in {days} days.": "Nie masz żadnych wydarzeń w przeciągu {days} dni | Masz jedno wydarzeń w przeciągu {days} dni | Masz {count} wydarzeń w przeciągu {days} dni", + "You have one event today.": "Nie masz dziś żadnych wydarzeń | Masz dziś jedno wydarzenie. | Masz dziś {count} wydarzeń", + "You have one event tomorrow.": "Nie masz jutro żadnych wydarzeń | Masz jutro jedno wydarzenie. | Masz jutro {count} wydarzeń", + "You haven't interacted with other instances yet.": "Nie wchodziłeś(-aś) jeszcze w interakcje z innymi instancjami.", + "You invited {member}.": "Zaprosiłeś(-aś) {member}.", + "You joined the event {event}.": "Ty przystąpiłeś(-aś) do wydarzenia {event}.", + "You may also:": "Możesz także:", + "You may clear all participation information for this device with the buttons below.": "Wszystkie informacje o uczestnictwie zapisane na tym urządzeniu można usunąć przyciskami poniżej.", + "You may now close this page or {return_to_the_homepage}.": "Teraz możesz zamknąć tę stronę lub {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "Możesz teraz zamknąć to okno lub {return_to_event}.", + "You may show some members as contacts.": "Niektórzy członkowie / członkinie mogą być wyświetlani(-e) jako kontakty.", + "You moved the folder {resource} into {new_path}.": "Katalog {resource} został przez Ciebie przeniesiony do {new_path}.", + "You moved the folder {resource} to the root folder.": "Katalog {resource} został przeniesiony do katalogu głównego przez Ciebie.", + "You moved the resource {resource} into {new_path}.": "Zasób {resource} został przez Ciebie przeniesiony do {new_path}.", + "You moved the resource {resource} to the root folder.": "Zasób {resource} został przez Ciebie przeniesiony do katalogu głównego.", + "You need to enter a text": "Należy wprowadzić tekst", + "You need to login.": "Musisz się zalogować.", + "You need to provide the following code to your application. It will only be valid for a few minutes.": "Musisz dostarczyć następujący kod do swojej aplikacji. Będzie on ważny tylko przez kilka minut.", + "You posted a comment on the event {event}.": "Twój komentarz do wydarzenia {event} został zamieszczony.", + "You promoted the member {member} to an unknown role.": "Przypisałeś(-aś) członka / członkinię {member} do nieznanej roli.", + "You promoted {member} to administrator.": "Awansowałeś(-aś) {member} na administratora(-kę).", + "You promoted {member} to moderator.": "Awansowałeś(-aś) {member} na moderatora(-kę).", + "You rejected {member}'s membership request.": "Członkostwo {member} zostało odrzucone.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Nazwa dyskusji została przez Ciebie zmieniona z {old_discussion} na {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Nazwa katalogu została przez Ciebie zmieniona z {old_resource_title} na {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Nazwa zasobu została przez Ciebie zmieniona z {old_resource_title} na {resource}.", + "You replied to a comment on the event {event}.": "Twoja odpowiedź na komentarz do wydarzenia {event} została zamieszczona.", + "You replied to the discussion {discussion}.": "Odpowiedź na {discussion} została przez Ciebie udzielona.", + "You requested to join the group.": "Poprosiłeś(-aś) o dołączenie do grupy.", + "You updated the event {event}.": "Zaktualizowano wydarzenie {event}.", + "You updated the group {group}.": "Grupa {group} została przez Ciebie zaktualizowana.", + "You updated the member {member}.": "Zaktualizowałeś(-aś) członka / członkinię {member}.", + "You updated the post {post}.": "Wpis {post} został zaktualizowany.", + "You were demoted to an unknown role by {profile}.": "Zostałeś(-aś) przypisany(-a) do objęcia nieznanej roli przez {profile}.", + "You were demoted to moderator by {profile}.": "Zostałeś(-aś) zdegradowany(-a) do roli moderatora(-ki) przez {profile}.", + "You were demoted to simple member by {profile}.": "Członek / członkini {profile} został(-a) zdegradowany(-a) do roli zwykłego członka / zwykłej członkini.", + "You were promoted to administrator by {profile}.": "Zastałeś(-aś) awansowany(-a) na administratora(-kę) przez {profile}.", + "You were promoted to an unknown role by {profile}.": "Została Ci przypisana nieznana rola.", + "You were promoted to moderator by {profile}.": "Zastałeś(-aś) awansowany(-a) na moderatora(-kę) {profile}.", + "You will be able to add an avatar and set other options in your account settings.": "Będziesz mieć możliwość dodania awataru i zmiany innych opcji w ustawieniach konta.", + "You will be redirected to the original instance": "Zostaniesz przekierowany(-a) na instancję źródłową", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Znajdziesz tutaj wszystkie wydarzenia, które utworzyłeś(-aś) lub w których uczestniczysz, a także wydarzenia organizowane przez grupy, które obserwujesz lub do których należysz.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Będziesz otrzymywać powiadomienia o publicznej aktywności tej grupy w zależności od {notification_settings}.", + "You wish to participate to the following event": "Chcesz wziąć udział w następującym wydarzeniu", + "You'll be able to revoke access for this application in your account settings.": "Dostęp dla tej aplikacji można cofnąć w ustawieniach konta.", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Otrzymasz cotygodniowe przypomnienie o nadchodzących wydarzeniach co poniedziałek, jeżeli masz jakieś wydarzenia.", + "You'll need to change the URLs where there were previously entered.": "Konieczna będzie zmiana adresów URL wprowadzonych wcześniej.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Musisz podać adres URL grupy, aby inni mogli uzyskać dostęp do profilu grupy. Grupa nie będzie możliwa do odnalezienia w wyszukiwarce Mobilizon i typowych wyszukiwarkach.", + "You'll receive a confirmation email.": "Otrzymasz wiadomość potwierdzającą.", + "YouTube live": "Transmisja na żywo na YouTube", + "YouTube replay": "Powtórka na YouTube", + "Your account has been successfully deleted": "Pomyślnie usunięto Twoje konto", + "Your account has been validated": "Twoje konto zostało zweryfikowane", + "Your account is being validated": "Twoje konto jest w trakcie walidacji", + "Your account is nearly ready, {username}": "Twoje konto jest już prawie gotowe, {username}", + "Your application code": "Kod do aplikacji", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Twoje miasto lub region i promień będą używane tylko do sugerowania pobliskich wydarzeń. Promień pobliskich wydarzeń zostanie obliczony w odniesieniu do centrum administracyjnego strefy.", + "Your current email is {email}. You use it to log in.": "Twój obecny adres e-mail to {email}. Używasz go, aby się zalogować.", + "Your email": "Twój adres e-mail", + "Your email address was automatically set based on your {provider} account.": "Twój adres e-mail został ustawiony automatycznie na podstawie konta {provider}.", + "Your email has been changed": "Twój adres e-mail został zmieniony", + "Your email is being changed": "Twój adres e-mail jest w trakcie zmiany", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Twój adres e-mail zostanie wykorzystany tylko aby potwierdzić, że jesteś prawdziwą osobą i aby wysłać ewentualne aktualizacje dot. tego wydarzenia. NIE będzie przekazany innym instancjom lub organizatorowi(-ce) wydarzenia.", + "Your federated identity": "Twoja sfederowana tożsamość", + "Your membership is pending approval": "Twoje członkostwo oczekuje na zatwierdzenie", + "Your membership was approved by {profile}.": "Twoje członkostwo zostało zatwierdzone przez {profile}.", + "Your participation has been cancelled": "Twój udział został anulowany", + "Your participation has been confirmed": "Twój udział został potwierdzony", + "Your participation has been rejected": "Twoje uczestnictwo zostało odrzucone", + "Your participation has been requested": "Poprosiłeś(-aś) o uczestnictwo", + "Your participation is being cancelled": "Twój udział zostaje anulowany", + "Your participation request has been validated": "Twoje uczestnictwo zostało zweryfikowane", + "Your participation request is being validated": "Twoje uczestnictwo jest weryfikowane", + "Your participation status has been changed": "Stan Twojego uczestnictwa został zmieniony", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Twój status uczestnictwa jest zapisany tylko na tym urządzeniu i będzie usunięty miesiąc po zakończeniu wydarzenia.", + "Your participation still has to be approved by the organisers.": "Twoje zgłoszenie wciąż czeka na zatwierdzenie przez organizatorów.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Twój udział zostanie zatwierdzony po kliknięciu linku potwierdzającego w wiadomości e-mail i po ręcznym zatwierdzeniu Twojego udziału przez organizatora(-kę).", + "Your participation will be validated once you click the confirmation link into the email.": "Twój udział zostanie zweryfikowany po kliknięciu linku potwierdzającego w wiadomości e-mail.", + "Your position was not available.": "Twoja pozycja była niedostępna.", + "Your profile will be shown as contact.": "Twój profil będzie wyświetlany jako kontakt.", + "Your timezone is currently set to {timezone}.": "Twoja strefa czasowa jest obecnie ustawiona jako {timezone}.", + "Your timezone was detected as {timezone}.": "Twoja strefa czasowa została wykryta jako {timezone}.", + "Your timezone {timezone} isn't supported.": "Twoja strefa czasowa {timezone} nie jest wspierana.", + "Your upcoming events": "Twoje nadchodzące wydarzenia", + "Zoom": "Zoom", + "Zoom in": "Powiększenie", + "Zoom out": "Pomniejszenie", + "[This comment has been deleted by it's author]": "[Ten komentarz został usunięty przez jego autora (-kę)]", + "[This comment has been deleted]": "[Ten komentarz został usunięty]", + "[deleted]": "[usunięto]", + "a non-existent report": "nieistniejące zgłoszenie", + "access the corresponding account": "wejść do odpowiedniego konta", + "access to the group's private content as well": "uzyskaj również dostęp do prywatnych treści grupy", + "and {number} groups": "i {number} grup / grupy", + "any distance": "dowolna odległość", + "as {identity}": "jako {identity}", + "contact uninformed": "kontakt nie został określony", + "create a group": "utwórz grupę", + "create an event": "utwórz wydarzenie", + "default Mobilizon privacy policy": "Domyślna polityka prywatności Mobilizon", + "default Mobilizon terms": "domyślny regulamin Mobilizon", + "detail": " ", + "e.g. 10 Rue Jangot": "np. 10 Rue Jangot", + "e.g. Accessibility, Twitch, PeerTube": "np. Dostępność, Twitch, PeerTube", + "e.g. Nantes, Berlin, Cork, …": "np. Nantes, Berlin, Cork, …", + "enable the feature": "włącz tę funkcję", + "explore the events": "przeglądaj wydarzenia", + "explore the groups": "przeglądaj grupy", + "find, create and organise events": "znajdź, twórz i organizuj wydarzenia", + "full rules": "pełna treść regulaminu", + "group's upcoming public events": "nadchodzące wydarzenia publiczne grupy", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/w-morde-jeza-tajny-token", + "iCal Feed": "Kanał iCal", + "instance rules": "zasady instancji", + "mobilizon-instance.tld": "instancja-mobilizona.tld", + "more than 1360 contributors": "ponad 1360 twórców i twórczyń", + "multitude of interconnected Mobilizon websites": "multum połączonych wzajemnie witryn Mobilizona", + "new{'@'}email.com": "nowy{'@'}email.com", + "profile@instance": "profil@instancja", + "profile{'@'}instance": "profil{'@'}instancja", + "report #{report_number}": "zgłoszenie #{report_number}", + "return to the event's page": "powrót do strony wydarzenia", + "return to the homepage": "powrócić do strony głównej", + "terms of service": "ogólne warunkach użytkowania", + "tool designed to serve you": "narzędzie stworzone do tego, aby Ci służyć", + "translation": " ", + "with another identity…": "używając innej tożsamości…", + "your notification settings": "ustawienia powiadomień", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved} / {total} miejsc", + "{available}/{capacity} available places": "Brak miejsc|{available}/{capacity} dostępnych miejsc", + "{count} events": "{count} wydarzeń", + "{count} km": "{count} km", + "{count} members": "Brak członków / członkiń|Jeden członek / jedna członkini|{count} członków / członkiń / członkinie", + "{count} members or followers": "Brak członków(--iń) i osób obserwujących|Jeden członek / jedna członkini lub osoba obserwująca|{count} członków / członkinie(-ń) lub osób obserwujących", + "{count} participants": "Jeszcze nie ma uczestników / uczestniczek|Jeden uczestnik / uczestniczka|{count} uczestników / uczestniczek", + "{count} requests waiting": "{count} oczekujących zgłoszeń", + "{eventsCount} activities found": "Nie znaleziono żadnych aktywności|Znaleziono jedną aktywność|Znaleziono {eventsCount} aktywności", + "{eventsCount} events found": "Nie znaleziono wydarzeń|Znaleziono jedno wydarzenie|Znaleziono {eventsCount} wydarzenia/wydarzeń", + "{folder} - Resources": "{folder} – Zasoby", + "{groupsCount} groups found": "Nie znaleziono żadnych grup|Znaleziono jedną grupę|Znaleziono {groupsCount} grup", + "{group} activity timeline": "Oś czasu aktywności {group}", + "{group} events": "Wydarzenia grupy %{group}", + "{group} posts": "Wpisy grupy {group}", + "{group}'s events": "Wydarzenia grupy {group}", + "{group}'s todolists": "Listy do zrobienia grupy {group}", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} jest instancją oprogramowania {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} jest instancją {mobilizon_link}, darmowego oprogramowania stworzonego przez społeczność.", + "{member} accepted the invitation to join the group.": "zaproszenie do grupy zostało przyjęte przez {member}.", + "{member} joined the group.": "{member} dołączył(a) do grupy.", + "{member} rejected the invitation to join the group.": "zaproszenie do grupy zostało odrzucone przez {member}.", + "{member} requested to join the group.": "{member} poprosił(a) o dołączenie do grupy.", + "{member} was invited by {profile}.": "{member} został(a) zaproszony(-a) przez {profile}.", + "{moderator} added a note on {report}": "{moderatpr} dodał(a) notatkę do {report}", + "{moderator} closed {report}": "{moderator} zamknął(-ęła) {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} usunął(-ęła) wydarzenie nazwane „{title}”", + "{moderator} has deleted a comment from {author}": "Komentarz {author} został usunięty przez {moderator}", + "{moderator} has deleted a comment from {author} under the event {event}": "Komentarz {author} pod wydarzeniem {event} został usunięty przez {moderator}", + "{moderator} has deleted user {user}": "{moderator} usunął(-ęła) użytkownika / użytkowniczkę {user}", + "{moderator} has done an unknown action": "{moderator} wykonał(a) nieznaną czynność", + "{moderator} has unsuspended group {profile}": "Zawieszenie profilu {profile} zostało cofnięte przez {modeator}", + "{moderator} has unsuspended profile {profile}": "{modeator} cofnął(-ęła) zawieszenie profilu {profile}", + "{moderator} marked {report} as resolved": "{moderator} oznaczył(a) {report} jako rozwiązane", + "{moderator} reopened {report}": "{moderator} otworzył(a) ponownie {report}", + "{moderator} suspended group {profile}": "Profil {profil} został zawieszony przez {moderator}", + "{moderator} suspended profile {profile}": "{moderator} zawiesił(a) profil {profil}", + "{nb} km": "{nb} km", + "{numberOfCategories} selected": "wybrano {numberOfCategories}", + "{numberOfLanguages} selected": "wybrano {numberOfLanguages}", + "{number} kilometers": "{number} kilometrów", + "{number} members": "{number} członków / członkiń", + "{number} memberships": "{number} członków", + "{number} organized events": "Brak zorganizowanych wydarzeń|Jedno zorganizowane wydarzenie|{number} zorganizowanych wydarzeń", + "{number} participations": "Brak uczestników / uczestniczek|Jeden uczestnik / uczestniczka|{count} uczestników / uczestniczek", + "{number} posts": "Brak wpisów|Jeden wpis|{number} wpisów / wpisy", + "{number} seats left": "{number} wolnych miejsc", + "{old_group_name} was renamed to {group}.": "Nazwa grupy została zmieniona z {old_group_name} na {group}.", + "{profileName} (suspended)": "{profileName} (zawieszony)", + "{profile} (by default)": "{profile} (domyślnie)", + "{profile} added the member {member}.": "{profile} dodał(a)(o) członka / członkinię {member}.", + "{profile} approved {member}'s membership.": "{profile} zatwierdził(a) członkostwo {member}.", + "{profile} archived the discussion {discussion}.": "Dyskusja {discussion} została zarchiwizowana przez {profile}.", + "{profile} created the discussion {discussion}.": "Dyskusja {discussion} została utworzona przez {profile}.", + "{profile} created the folder {resource}.": "Katalog {resource} został utworzony przez {profile}.", + "{profile} created the group {group}.": "Grupa {group} została utworzona przez {profile}.", + "{profile} created the resource {resource}.": "Zasób {resource} został utworzony przez {profile}.", + "{profile} deleted the discussion {discussion}.": "Dyskusja {discussion} została usunięta przez {profile}.", + "{profile} deleted the folder {resource}.": "Katalog {resource} został usunięty przez {profile}.", + "{profile} deleted the resource {resource}.": "Zasób {resource} został usunięty przez {profile}.", + "{profile} demoted {member} to an unknown role.": "{profile} zdegradował(a)(o) {member} do nieznanej roli.", + "{profile} demoted {member} to moderator.": "{profile} zdegradował(a)(o) {member} do roli moderatora(-ki).", + "{profile} demoted {member} to simple member.": "{profile} zdegradował(a)(o) {member} do roli zwykłego członka / zwykłej członkini.", + "{profile} excluded member {member}.": "{profile} wykluczył(a)(o) członka / członkinię {member}.", + "{profile} joined the the event {event}.": "Profil {profile} przystąpił do wydarzenia {event}.", + "{profile} moved the folder {resource} into {new_path}.": "Katalog {resource} został przeniesiony do {new_path} przez {profile}.", + "{profile} moved the folder {resource} to the root folder.": "Katalog {resource} został przeniesiony do katalogu głównego przez {profile}.", + "{profile} moved the resource {resource} into {new_path}.": "Zasób {resource} został przeniesiony do {new_path} przez {profile}.", + "{profile} moved the resource {resource} to the root folder.": "Zasób {resource} został przeniesiony do katalogu głównego przez {profile}.", + "{profile} posted a comment on the event {event}.": "Komentarz napisany przez {profile} do wydarzenia {event} został zamieszczony.", + "{profile} promoted {member} to administrator.": "{profile} awansował(a)(o) {member} na administratora(-kę).", + "{profile} promoted {member} to an unknown role.": "{profile} awansował(a)(o) {member} do nieznanej roli.", + "{profile} promoted {member} to moderator.": "{profile} awansował(a)(o) {member} na moderatora(-kę).", + "{profile} quit the group.": "Nastąpiło opuszczenie grupy przez {profile}.", + "{profile} rejected {member}'s membership request.": "{profile} odrzucił(a) prośbę o członkostwo {member}.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "Nazwa dyskusji została zmieniona z {old_discussion} na {discussion} przez {profile}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "Nazwa katalogu została zmieniona z {old_resource_title} na {resource} przez {profile}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "Nazwa zasobu została zmieniona z {old_resource_title} na {resource} przez {profile}.", + "{profile} replied to a comment on the event {event}.": "Odpowiedź na komentarz do wydarzenia {event} napisana przez {profile} została zamieszczona.", + "{profile} replied to the discussion {discussion}.": "Odpowiedź na {discussion} została udzielona przez {profile}.", + "{profile} updated the group {group}.": "Grupa {group} została zaktualizowana przez {profile}.", + "{profile} updated the member {member}.": "{profile} zaktualizował(-a) członka / członkinię {member}.", + "{resultsCount} results found": "Nie znaleziono wyników|Znaleziono jeden wynik|Znaleziono {resultsCount} wyników", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} do zrobienia)", + "{username} was invited to {group}": "Zaproszono {username} do {group}", + "{user}'s follow request was accepted": "Prośba o subskrypcję od {user} została zaakceptowana", + "{user}'s follow request was rejected": "Prośba o subskrypcję od {user} została odrzucona", + "© The OpenStreetMap Contributors": "© Współtwórcy OpenStreetMap" +}); diff --git a/res/locale/pt.js b/res/locale/pt.js new file mode 100644 index 0000000..ed2b5c1 --- /dev/null +++ b/res/locale/pt.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "", + "+ Create a post": "", + "+ Create an event": "", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "É uma ferramenta simples, emanicipatória e ética para juntar, organizar e mobilizar.", + "A validation email was sent to {email}": "Um email de validação, foi enviado para {email}", + "API": "", + "Abandon editing": "Abandonar edição", + "About": "Sobre", + "About Mobilizon": "Sobre o Mobilizon", + "About anonymous participation": "", + "About instance": "", + "About this event": "Sobre este evento", + "About this instance": "Sobre esta instância", + "About {instance}": "", + "Accept": "", + "Accepted": "Aceite", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "Conta", + "Account settings": "", + "Actions": "", + "Activate browser push notifications": "", + "Activated": "", + "Active": "", + "Activity": "", + "Actor": "", + "Add": "Adicionar", + "Add / Remove…": "", + "Add a contact": "", + "Add a new post": "", + "Add a note": "Adicionar nota", + "Add a todo": "", + "Add an address": "Adicionar morada", + "Add an instance": "Adicionar instância", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "Adicionar tags", + "Add to my calendar": "Adicionar ao meu calendário", + "Additional comments": "Comentários adicionais", + "Admin": "Administrador", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "Definições de administração gravadas.", + "Administration": "Administração", + "Administrator": "", + "All activities": "", + "All good, let's continue!": "", + "All the places have already been taken": "Todos os lugares estão ocupados|Um lugar está livre|{places} lugares estão livres", + "Allow all comments from users with accounts": "", + "Allow registrations": "Permitir registos", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "Participante anonimo", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Para os participantes anónimos será pedido para comfirmar a sua participação através do email.", + "Anonymous participations": "Participação anónima", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Tens a certeza que realmente queres apagar a tua conta? Vais perder tudo. Identidades, defenições, eventos criados, mensagens e participações vão desaparecer para sempre.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "Tens a certeza que queres apagar este comentário? Esta acção não pode ser desfeita.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Tens a certeza que queres apagar este evento? Esta acção não pode ser desfeita. Talvez queiras impulsionar uma discussão com o criador deste evento ou apenas editar este evento.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Tens a certeza que queres cancelar a criação deste evento? Vais perder todas as modificações.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Tens a certeza que queres cancelar esta edição de evento? Vais perder todas as modificações.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Tens a certeza que queres cancelar a participação no evento \"{title}\"?", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "Tens a certeza que queres apagar a participação no evento ? A tua acção não pode ser revertida.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "Avatar", + "Back to group list": "", + "Back to previous page": "Voltar à página anterior", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "", + "Before you can login, you need to click on the link inside it to validate your account.": "Antes de entrar, precisas de clicar no link dentro para validar a tua conta.", + "Begins on": "", + "Big Blue Button": "", + "Bold": "", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "", + "By {group}": "", + "By {username}": "Por {username}", + "Can be an email or a link, or just plain text.": "", + "Cancel": "Cancelar", + "Cancel anonymous participation": "Cancelar participação anónima", + "Cancel creation": "Aborto", + "Cancel discussion title edition": "", + "Cancel edition": "Cancelar edição", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "Cancelar o meu pedido de participação…", + "Cancel my participation…": "Cancelar a minha participação…", + "Cancelled": "", + "Cancelled: Won't happen": "Cancelado: Não acontecerá", + "Change": "Mudar", + "Change my email": "Mudar o meu email", + "Change my identity…": "Mudar a minha identidade…", + "Change my password": "Mudar a minha palavra-passe", + "Change timezone": "", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "", + "Clear": "Limpar", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "", + "Click to upload": "Clicar para carregar", + "Close": "Fechar", + "Close comments for all (except for admins)": "Fechar os comentários para todos ( excepto administradores)", + "Closed": "Fechado", + "Comment body": "", + "Comment deleted": "Apagar comentário", + "Comment text can't be empty": "", + "Comments": "Comentário", + "Comments are closed for everybody else.": "", + "Confirm my participation": "Comfirmar a minha participação", + "Confirm my particpation": "Confirmar a minha participação", + "Confirm participation": "", + "Confirmed": "", + "Confirmed at": "", + "Confirmed: Will happen": "Confirmado: Vai acontecer", + "Congratulations, your account is now created!": "", + "Contact": "", + "Continue editing": "Continuar a editar", + "Cookies and Local storage": "", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "País", + "Create": "", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "", + "Create a new event": "Criar um novo evento", + "Create a new group": "Criar um novo grupo", + "Create a new identity": "Criar uma nova identidade", + "Create a new list": "", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "", + "Create discussion": "", + "Create event": "", + "Create group": "Criar grupo", + "Create identity": "", + "Create my event": "", + "Create my group": "", + "Create my profile": "", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "", + "Current page": "", + "Custom": "", + "Custom URL": "", + "Custom text": "", + "Daily email summary": "", + "Dashboard": "", + "Date": "", + "Date and time": "", + "Date and time settings": "", + "Date parameters": "", + "Decline": "", + "Decrease": "", + "Default": "", + "Default Mobilizon privacy policy": "", + "Default Mobilizon terms": "", + "Delete": "", + "Delete account": "", + "Delete conversation": "", + "Delete discussion": "", + "Delete event": "", + "Delete everything": "", + "Delete group": "", + "Delete my account": "", + "Delete post": "", + "Delete this discussion": "", + "Delete this identity": "", + "Delete your identity": "", + "Delete {eventTitle}": "", + "Delete {preferredUsername}": "", + "Deleting comment": "", + "Deleting event": "", + "Deleting my account will delete all of my identities.": "", + "Deleting your Mobilizon account": "", + "Demote": "", + "Description": "", + "Details": "", + "Didn't receive the instructions?": "", + "Disabled": "", + "Discussions": "", + "Discussions list": "", + "Display name": "", + "Display participation price": "", + "Displayed nickname": "", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "", + "Draft": "", + "Drafts": "", + "Due on": "", + "Duplicate": "", + "Edit": "", + "Edit post": "", + "Edit profile {profile}": "", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "", + "Either on the {instance} instance or on another instance.": "", + "Either the account is already validated, either the validation token is incorrect.": "", + "Either the email has already been changed, either the validation token is incorrect.": "", + "Either the participation request has already been validated, either the validation token is incorrect.": "", + "Element title": "", + "Element value": "", + "Email": "", + "Email address": "", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "", + "Ends on…": "", + "Enter the link URL": "", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "", + "Error details copied!": "", + "Error message": "", + "Error stacktrace": "", + "Error while changing email": "", + "Error while loading the preview": "", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "", + "Error while validating participation request": "", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "", + "Event URL": "", + "Event already passed": "", + "Event cancelled": "", + "Event creation": "", + "Event description body": "", + "Event edition": "", + "Event list": "", + "Event metadata": "", + "Event page settings": "", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "", + "Event {eventTitle} deleted": "", + "Event {eventTitle} reported": "", + "Events": "", + "Events nearby": "", + "Events tagged with {tag}": "", + "Everything": "", + "Ex: mobilizon.fr": "", + "Ex: someone@mobilizon.org": "", + "Explore": "", + "Explore events": "", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "", + "Featured events": "", + "Federated Group Name": "", + "Federation": "", + "Fediverse account": "", + "Fetch more": "", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "", + "Find an instance": "", + "Find another instance": "", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "", + "Followers": "", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "", + "Forgot your password ?": "", + "Forgot your password?": "", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "", + "From the {startDate} to the {endDate}": "", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "", + "General": "", + "General information": "", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "", + "Getting there": "", + "Glossary": "", + "Go": "", + "Go to the event page": "", + "Google Meet": "", + "Group": "", + "Group Followers": "", + "Group Members": "", + "Group URL": "", + "Group activity": "", + "Group address": "", + "Group description body": "", + "Group display name": "", + "Group name": "", + "Group profiles": "", + "Group settings": "", + "Group settings saved": "", + "Group short description": "", + "Group visibility": "", + "Group {displayName} created": "", + "Group {groupTitle} reported": "", + "Groups": "", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "", + "Hide replies": "", + "Home": "", + "Home to {number} users": "", + "Homepage": "", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "", + "I create an identity": "", + "I don't have a Mobilizon account": "", + "I have a Mobilizon account": "", + "I have an account on another Mobilizon instance.": "", + "I participate": "", + "I want to allow people to participate without an account.": "", + "I want to approve every participation request": "", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "", + "Identity {displayName} created": "", + "Identity {displayName} deleted": "", + "Identity {displayName} updated": "", + "If allowed by organizer": "", + "If an account with this email exists, we just sent another confirmation email to {email}": "", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "", + "Instance Long Description": "", + "Instance Name": "", + "Instance Privacy Policy": "", + "Instance Privacy Policy Source": "", + "Instance Privacy Policy URL": "", + "Instance Rules": "", + "Instance Short Description": "", + "Instance Slogan": "", + "Instance Terms": "", + "Instance Terms Source": "", + "Instance Terms URL": "", + "Instance administrator": "", + "Instance configuration": "", + "Instance feeds": "", + "Instance languages": "", + "Instance rules": "", + "Instance settings": "", + "Instances": "", + "Instances following you": "", + "Instances you follow": "", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "", + "Invite member": "", + "Invited": "", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "", + "Join group": "", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "", + "Language": "", + "Last IP adress": "", + "Last group created": "", + "Last published event": "", + "Last published events": "", + "Last sign-in": "", + "Last week": "", + "Latest posts": "", + "Learn more": "", + "Learn more about Mobilizon": "", + "Learn more about {instance}": "", + "Leave": "", + "Leave event": "", + "Leave group": "", + "Leaving event \"{title}\"": "", + "Legal": "", + "Let's define a few settings": "", + "License": "", + "Limited number of places": "", + "List title": "", + "Live": "", + "Load more": "", + "Load more activities": "", + "Loading comments…": "", + "Local": "", + "Local time ({timezone})": "", + "Locality": "", + "Location": "", + "Log in": "", + "Log out": "", + "Login": "", + "Login on Mobilizon!": "", + "Login on {instance}": "", + "Login status": "", + "Main languages you/your moderators speak": "", + "Manage participations": "", + "Manually approve new followers": "", + "Manually invite new members": "", + "Mark as resolved": "", + "Member": "", + "Members": "", + "Members-only post": "", + "Mentions": "", + "Message": "", + "Microsoft Teams": "", + "Mobilizon": "", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "", + "Mobilizon software": "", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "", + "Moderated comments (shown after approval)": "", + "Moderation": "", + "Moderation log": "", + "Moderation logs": "", + "Moderator": "", + "Move": "", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "", + "My events": "", + "My groups": "", + "My identities": "", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "", + "Navigated to {pageTitle}": "", + "New discussion": "", + "New email": "", + "New folder": "", + "New link": "", + "New members": "", + "New note": "", + "New password": "", + "New post": "", + "New profile": "", + "Next": "", + "Next month": "", + "Next page": "", + "Next week": "", + "No address defined": "", + "No closed reports yet": "", + "No comment": "", + "No comments yet": "", + "No discussions yet": "", + "No end date": "", + "No events found": "", + "No follower matches the filters": "", + "No group found": "", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "", + "No information": "", + "No instance follows your instance yet.": "", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "", + "No member matches the filters": "", + "No members found": "", + "No memberships found": "", + "No message": "", + "No moderation logs yet": "", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "", + "No open reports yet": "", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "", + "No posts yet": "", + "No profile matches the filters": "", + "No public upcoming events": "", + "No resolved reports yet": "", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "", + "No results for {search}": "", + "No rules defined yet.": "", + "None": "", + "Not accessible with a wheelchair": "", + "Not approved": "", + "Not confirmed": "", + "Notes": "", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "", + "Notifications": "", + "Notifications for manually approved participations to an event": "", + "Notify participants": "", + "Now, create your first profile:": "", + "Number of places": "", + "OK": "", + "Old password": "", + "On {date}": "", + "On {date} ending at {endTime}": "", + "On {date} from {startTime} to {endTime}": "", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "", + "Open": "", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Opened reports": "", + "Or": "", + "Ordered list": "", + "Organized": "", + "Organized by": "", + "Organized by {name}": "", + "Organizer": "", + "Organizer notifications": "", + "Organizers": "", + "Other": "", + "Other actions": "", + "Other notification options:": "", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "", + "Page limited to my group (asks for auth)": "", + "Page not found": "", + "Parent folder": "", + "Partially accessible with a wheelchair": "", + "Participant": "", + "Participants": "", + "Participate": "", + "Participate using your email address": "", + "Participation approval": "", + "Participation confirmation": "", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "", + "Password (confirmation)": "", + "Password reset": "", + "Past events": "", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "", + "Pick an instance": "", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "", + "Please do not use it in any real way.": "Por favor não utilize isto para eventos reais.", + "Please enter your password to confirm this action.": "", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "", + "Post": "", + "Post URL": "", + "Post a comment": "", + "Post a reply": "", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "", + "Posts": "", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "", + "Preferences": "", + "Previous": "", + "Previous month": "", + "Previous page": "", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "", + "Privacy policy": "", + "Private event": "", + "Private feeds": "", + "Profile": "", + "Profile feeds": "", + "Profiles": "", + "Profiles and federation": "", + "Promote": "", + "Public": "", + "Public RSS/Atom Feed": "", + "Public comment moderation": "", + "Public event": "", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "", + "Publish": "", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "", + "Radius": "", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "", + "Register": "", + "Register an account on {instanceName}!": "", + "Register on this instance": "", + "Registration is allowed, anyone can register.": "", + "Registration is closed.": "", + "Registration is currently closed.": "", + "Registrations": "", + "Registrations are restricted by allowlisting.": "", + "Reject": "", + "Reject member": "", + "Rejected": "", + "Remember my participation in this browser": "", + "Remove": "", + "Remove link": "", + "Rename": "", + "Rename resource": "", + "Reopen": "", + "Replay": "", + "Reply": "", + "Report": "", + "Report #{reportNumber}": "", + "Report this comment": "", + "Report this event": "", + "Report this group": "", + "Report this post": "", + "Reported": "", + "Reported by": "", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "", + "Reported group": "", + "Reported identity": "", + "Reports": "", + "Reports list": "", + "Request for participation confirmation sent": "", + "Resend confirmation email": "", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "", + "Reset password": "", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "", + "Restricted": "", + "Return to the group page": "", + "Right now": "", + "Role": "", + "Rules": "", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "", + "Save": "", + "Save draft": "", + "Schedule": "", + "Search": "", + "Search events, groups, etc.": "", + "Searching…": "", + "Select a language": "", + "Select a radius": "", + "Select a timezone": "", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "", + "Send the report": "", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "", + "Share": "", + "Share this event": "", + "Share this group": "", + "Share this post": "", + "Short bio": "", + "Show map": "", + "Show me where I am": "", + "Show remaining number of places": "", + "Show the time when the event begins": "", + "Show the time when the event ends": "", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "", + "Sign up": "", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "", + "Status": "", + "Street": "", + "Submit": "", + "Subtitles": "", + "Suspend": "", + "Suspend group": "", + "Suspended": "", + "Tag search": "", + "Task lists": "", + "Technical details": "", + "Tentative": "", + "Tentative: Will be confirmed later": "", + "Terms": "", + "Terms of service": "", + "Text": "", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "", + "The event has been published": "", + "The event has been updated": "", + "The event has been updated and published": "", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "", + "The page you're looking for doesn't exist.": "", + "The password was successfully changed": "", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "There are {participants} participants.": "", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no discussions yet": "", + "These events may interest you": "", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "", + "This event has been cancelled.": "", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "", + "This information is saved only on your computer. Click for details": "", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "", + "This weekend": "", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "", + "Timezone detected as {timezone}.": "", + "Title": "", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "", + "To create and manage your events": "", + "To create or join an group and start organizing with other people": "", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "", + "Today": "", + "Tomorrow": "", + "Tools": "", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "", + "Type or select a date…": "", + "URL": "", + "URL copied to clipboard": "", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "", + "Unknown actor": "", + "Unknown error.": "", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "", + "Upcoming events": "", + "Upcoming events from your groups": "", + "Update": "", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "", + "Update group": "", + "Update my event": "", + "Update post": "", + "Updated": "", + "Uploaded media size": "", + "Use my location": "", + "User": "", + "User settings": "", + "Username": "", + "Users": "", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "", + "View account on {hostname} (in a new window)": "", + "View all": "", + "View all events": "", + "View all posts": "", + "View event page": "", + "View everything": "", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "", + "Visible everywhere on the web (public)": "", + "Waiting for organization team approval.": "", + "Warning": "", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "", + "Website / URL": "", + "Weekly email summary": "", + "Welcome back {username}!": "", + "Welcome back!": "", + "Welcome to Mobilizon, {username}!": "", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Yesterday": "", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "", + "Your account has been validated": "", + "Your account is being validated": "", + "Your account is nearly ready, {username}": "", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "", + "Your email": "", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "", + "Your upcoming events": "", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "", + "[This comment has been deleted]": "", + "[deleted]": "", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "", + "contact uninformed": "", + "create a group": "", + "create an event": "", + "default Mobilizon privacy policy": "", + "default Mobilizon terms": "", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "", + "instance rules": "", + "more than 1360 contributors": "", + "profile@instance": "", + "report #{report_number}": "", + "return to the event's page": "", + "terms of service": "", + "with another identity…": "", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "", + "{number} members": "", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "", + "© The OpenStreetMap Contributors": "" +}); diff --git a/res/locale/pt_BR.js b/res/locale/pt_BR.js new file mode 100644 index 0000000..84d5837 --- /dev/null +++ b/res/locale/pt_BR.js @@ -0,0 +1,1258 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Oculto)", + "(this folder)": "(esta pasta)", + "(this link)": "(este link)", + "+ Add a resource": "+ Adicionar um recurso", + "+ Create a post": "", + "+ Create an event": "+ Criar um evento", + "+ Start a discussion": "+ Iniciar uma conversa", + "{contact} will be displayed as contact.": "{contact} será mostrado como contato.|{contact} será mostrado como contatos.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Um cookie é um arquivo pequeno contendo informações que são enviadas ao seu computador quando você visita um site web. Quando você visita o site novamente, o cookie permite que o site reconheça o seu navegador. Os cookies podem armazenar preferências do usuário e outras informações. Você pode configurar o seu navegador para que ele recuse todos os cookies. Contudo, isso talvez faça com que alguns recursos ou serviços do site funcionem parcialmente. Armazenamento local funciona da mesma maneira, mas possibilita armazenar mais dados.", + "A discussion has been created or updated": "", + "A federated software": "Um aplicativo federado", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Um lugar para o seu código de conduta, regras ou diretrizes. Você pode usar tags HTML.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Um lugar para explicar quem é você e as coisas que diferenciam a sua instância. Pode usar tags HTML.", + "A place to publish something to the whole world, your community or just your group members.": "Um lugar para você publicar alguma coisa para o mundo inteiro, sua comunidade ou apenas os membros do seu grupo.", + "A place to store links to documents or resources of any type.": "Um lugar para guardar links para os documentos ou recursos de qualquer tipo.", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "Uma ferramenta prática", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Um slogan para a página de início da sua instância. O valor predefinido é \"Reunir - Organizar - Mobiliar\"", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Uma ferramenta amigável, emancipadora e ética para se reunir, organizar e mobilizar.", + "A validation email was sent to {email}": "Um email de confirmação foi enviado para {email}", + "API": "API", + "Abandon editing": "Abandonar a edição", + "About": "Sobre", + "About Mobilizon": "Sobre o Mobilizon", + "About anonymous participation": "", + "About instance": "", + "About this event": "Sobre este evento", + "About this instance": "Sobre esta instância", + "About {instance}": "Sobre {instance}", + "Accept": "Aceitar", + "Accepted": "Aceito", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "Acessível apenas aos membros", + "Accessible through link": "Acessível através do link", + "Account": "Conta", + "Account settings": "", + "Actions": "Ações", + "Activate browser push notifications": "", + "Activated": "Ativado", + "Active": "Ativo", + "Activity": "", + "Actor": "Participante", + "Add": "Adicionar", + "Add / Remove…": "Adicionar / Remover…", + "Add a contact": "Adicionar um contato", + "Add a new post": "Adicionar nova publicação", + "Add a note": "Adicionar uma nota", + "Add a todo": "Adicionar uma tarefa", + "Add an address": "Adicionar um endereço", + "Add an instance": "Adicionar uma instância", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "Adicionar algumas tags", + "Add to my calendar": "Adicionar ao meu calendário", + "Additional comments": "Adicionar comentários", + "Admin": "Administrador", + "Admin dashboard": "", + "Admin settings": "Configuração do administrador", + "Admin settings successfully saved.": "Configurações do administrador gravadas com sucesso.", + "Administration": "Administração", + "Administrator": "Administrador", + "All activities": "", + "All good, let's continue!": "Ótimo, vamos continuar !", + "All the places have already been taken": "Todos os lugares já foram ocupados", + "Allow all comments from users with accounts": "Permitir todos os comentários de usuários que efetuaram acesso", + "Allow registrations": "Permitir inscrições", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "Uma alternativa ética", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Uma instância é uma versão instalada do aplicativo Mobilizon em um servidor. Uma instância pode ser administrada por qualquer pessoa que utilize o {mobilizon_sotware} ou outro aplicativo federado, também conhecido como \"fediverse\". O nome dessa instância é {instance_name}. O Mobilizon é uma rede federada de múltiplas instâncias (exatamente como os servidores de email), usuários registrados em diferente instâncias podem se comunicar mesmo que eles não se registraram na mesma instância.", + "And {number} comments": "E {number} comentários", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "Participante anônimo", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Os participantes anônimos deverão confirmar sua participação por email.", + "Anonymous participations": "Participações anônimas", + "Any day": "Qualquer dia", + "Any type": "", + "Anyone can join freely": "Qualquer pessoa pode entrar livremente", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "Qualquer pessoa que queira ser membra deste grupo poderá fazer inscrição a partir da página do grupo.", + "Application": "Aplicação", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Tem certeza que você quer apagar toda sua conta? Você perderá tudo, identidades, configurações, eventos criados, mensagens e as participações desaparecerão para sempre.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Tem certeza que você quer apagar completamente este grupo? Todos os membros - incluindo membros remotos - serão notificados e removidos deste grupo e todos os dados do grupo (eventos, publicações, conversas, tarefas…) serão irremediavelmente destruídos.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Tem certeza que você quer apagar este comentário? Esta ação não pode ser desfeita.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Tem certeza que você quer apagar este evento? Esta ação não pode ser desfeita. Talvez você queira tentar uma conversa com o criador do evento ou então editar este evento.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Tem certeza que você quer suspendereste grupo? Todos os membros - incluindo os membros remotos - serão notificados e removidos do grupo, e todos os dados do grupo (eventos, publicações, conversas, tarefas...) serão irremediavelmente destruídos.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Tem certeza que você quer suspender este grupo? Visto que este grupo é oriundo da instância {instance}, isto irá remover apenas os membros locais e apagar os dados locais, como também rejeitar todos os dados futuros.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Tem certeza que você quer cancelar a criação do evento? Você perderá todas as modificações.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Tem certeza que você quer cancelar a edição do evento? Você perderá todas as modificações.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Tem certeza que você quer cancelar a sua participação no evento \"{title}\"?", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "Tem certeza que você quer apagar este evento? Esta ação não pode ser desfeita.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "Atribuído a", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "Avatar", + "Back to group list": "", + "Back to previous page": "Voltar à página anterior", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "Banner", + "Before you can login, you need to click on the link inside it to validate your account.": "Antes de você entrar, você precisa clicar no link interno para validar a sua conta.", + "Begins on": "Começa às", + "Big Blue Button": "", + "Bold": "Negrito", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "", + "By {group}": "Por {group}", + "By {username}": "Por {username}", + "Can be an email or a link, or just plain text.": "Pode ser um email ou um link, ou apenas um texto simples.", + "Cancel": "Cancelar", + "Cancel anonymous participation": "Cancelar participação anônima", + "Cancel creation": "Cancelar a criação", + "Cancel discussion title edition": "", + "Cancel edition": "Cancelar a edição", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "Cancelar o meu pedido de participação…", + "Cancel my participation…": "Cancelar minha participação…", + "Cancelled": "", + "Cancelled: Won't happen": "Cancelado: Não irá acontecer", + "Change": "Alterar", + "Change my email": "Alterar o meu email", + "Change my identity…": "Alterar a minha identidade…", + "Change my password": "Alterar a minha senha", + "Change timezone": "Mudar fuso horário", + "Check your inbox (and your junk mail folder).": "Verifique sua caixa de emails (e também a sua pasta de spam).", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "", + "Clear": "Limpar", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "", + "Click to upload": "Click para enviar", + "Close": "Fechar", + "Close comments for all (except for admins)": "Fechar comentários para todos (exceto para administradores)", + "Closed": "Fechado", + "Comment body": "", + "Comment deleted": "Comentário apagado", + "Comment from {'@'}{username} reported": "Comentário de {'@'}{username} reportado", + "Comment text can't be empty": "", + "Comments": "Comentários", + "Comments are closed for everybody else.": "Os comentários estão fechados para todos os demais.", + "Confirm my participation": "Confirmar minha participação", + "Confirm my particpation": "Confirmar minha participação", + "Confirm participation": "", + "Confirmed": "Confirmado", + "Confirmed at": "Confirmado às", + "Confirmed: Will happen": "Confirmado: Irá acontecer", + "Congratulations, your account is now created!": "Parabéns, sua conta está criada agora!", + "Contact": "Contato", + "Continue editing": "Continuar a edição", + "Cookies and Local storage": "Cookies e armazenamento local", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "País", + "Create": "Criar", + "Create a calc": "Criar um calc", + "Create a discussion": "Criar uma conversa", + "Create a folder": "Criar uma pasta", + "Create a new event": "Criar um novo evento", + "Create a new group": "Criar um novo grupo", + "Create a new identity": "Criar uma nova identidade", + "Create a new list": "Criar uma nova lista", + "Create a new profile": "", + "Create a pad": "Criar um pad", + "Create a videoconference": "Criar uma videoconferência", + "Create an account": "Criar um conta", + "Create discussion": "", + "Create event": "", + "Create group": "Criar grupo", + "Create identity": "", + "Create my event": "Criar meu evento", + "Create my group": "Criar meu grupo", + "Create my profile": "Criar meu perfil", + "Create new links": "", + "Create resource": "Criar recurso", + "Create the discussion": "Criar a conversa", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Crie uma lista para todas as tarefas que você precisa fazer, atribua-as e defina datas de vencimento.", + "Create token": "Criar token", + "Created by {name}": "Criado por {name}", + "Created by {username}": "Criado por {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "A identidade atual foi alterada para {identityName} para poder administrar este evento.", + "Current page": "Página atual", + "Custom": "Personalizar", + "Custom URL": "URL personalizada", + "Custom text": "Texto personalizado", + "Daily email summary": "Resumo diário por email", + "Dashboard": "Painel de controle", + "Date": "Data", + "Date and time": "Data e hora", + "Date and time settings": "Configuração da data e hora", + "Date parameters": "Parâmetros da data", + "Decline": "Recusar", + "Decrease": "", + "Default": "Padrão", + "Default Mobilizon privacy policy": "Políticas padrões de privacidade do Mobilizon", + "Default Mobilizon terms": "Condições gerais padrões do Mobilizon", + "Delete": "Apagar", + "Delete account": "Apagar conta", + "Delete conversation": "Apagar conversa", + "Delete discussion": "", + "Delete event": "Apagar evento", + "Delete everything": "Apagar tudo", + "Delete group": "Apagar grupo", + "Delete my account": "Apagar minha conta", + "Delete post": "Apagar publicação", + "Delete this discussion": "", + "Delete this identity": "Apagar esta identidade", + "Delete your identity": "Apagar a sua identidade", + "Delete {eventTitle}": "Apagar {eventTitle}", + "Delete {preferredUsername}": "Apagar {preferredUsername}", + "Deleting comment": "Apagar comentário", + "Deleting event": "Apagar evento", + "Deleting my account will delete all of my identities.": "Apagar minha conta apagará todas as minhas identidades.", + "Deleting your Mobilizon account": "Apagando sua conta Mobilizon", + "Demote": "Retroceder", + "Description": "Descrição", + "Details": "", + "Didn't receive the instructions?": "Você não recebeu as instruções?", + "Disabled": "Desativado", + "Discussions": "Conversas", + "Discussions list": "", + "Display name": "Mostrar nome", + "Display participation price": "Mostrar preço para participação", + "Displayed nickname": "Apelido exibido", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Mostrado na página de início e nas meta tags. Descreva o que é Mobilizon e o que torna esta instância especial em apenas um parágrafo.", + "Do not receive any mail": "Não receber nenhum email", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "Domínio", + "Draft": "Rascunho", + "Drafts": "Rascunhos", + "Due on": "Previsto para", + "Duplicate": "Duplicar", + "Edit": "Editar", + "Edit post": "Editar publicação", + "Edit profile {profile}": "", + "Edited {ago}": "Editado {ago}", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "Exemplo: São Paulo, Dança, Xadrez…", + "Either on the {instance} instance or on another instance.": "Tanto na instância {instance} como em outra instância.", + "Either the account is already validated, either the validation token is incorrect.": "Ou a conta já está validada, ou o token de validação está incorreto.", + "Either the email has already been changed, either the validation token is incorrect.": "Ou o email foi alterado, ou a validação do token está incorreta.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Ou o pedido de participação já foi validado, ou a validação do token está incorreta.", + "Element title": "", + "Element value": "", + "Email": "Email", + "Email address": "Endereço de email", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "Habilitado", + "Ends on…": "Termina em…", + "Enter the link URL": "Insira o link URL", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Insira o seu endereço de email abaixo e nós enviaremos à você um email com instruções de como mudar a senha.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Insira sua própria política de privacidade. Tags HTML são permitidas. As {mobilizon_privacy_policy} são oferecidas como modelo.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Insira suas próprias condições gerais. Tags HTML são permitidas. As {mobilizon_terms} são oferecidas como modelo.", + "Error": "Erro", + "Error details copied!": "", + "Error message": "", + "Error stacktrace": "", + "Error while changing email": "Erro ao modificar o email", + "Error while loading the preview": "", + "Error while login with {provider}. Retry or login another way.": "Erro ao entrar com {provider}. Tente novamente ou entre de outra maneira.", + "Error while login with {provider}. This login provider doesn't exist.": "Erro ao entrar com {provider}. O provedor deste login não existe.", + "Error while reporting group {groupTitle}": "Erro ao denunciar o grupo {groupTitle}", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "Erro ao validar a conta", + "Error while validating participation request": "Erro ao validar o pedido de participação", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Alternativa ética aos eventos, grupos e páginas do Facebook, o Mobilizon é uma ferramenta criada pra servir você. Ponto.", + "Event": "Evento", + "Event URL": "", + "Event already passed": "Evento já aconteceu", + "Event cancelled": "Evento cancelado", + "Event creation": "Criação de evento", + "Event description body": "", + "Event edition": "Edição de evento", + "Event list": "Lista de eventos", + "Event metadata": "", + "Event page settings": "Configuração da página do evento", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "Evento a ser confirmado", + "Event {eventTitle} deleted": "Evento {eventTitle} foi apagado", + "Event {eventTitle} reported": "Evento {eventTitle} foi reportado", + "Events": "Eventos", + "Events nearby": "", + "Events tagged with {tag}": "Eventos etiquetados com {tag}", + "Everything": "Tudo", + "Ex: mobilizon.fr": "Ex: mobilizon.fr", + "Ex: someone@mobilizon.org": "Ex: alguém@mobilizon.org", + "Explore": "Explorar", + "Explore events": "Explorar eventos", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "Falha ao gravar as configurações do administrador", + "Featured events": "Eventos em destaque", + "Federated Group Name": "Nome do grupo federado", + "Federation": "Federação", + "Fediverse account": "", + "Fetch more": "Buscar mais", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "Encontrar um endereço", + "Find an instance": "Encontrar uma instância", + "Find another instance": "Encontre outra instância", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "", + "Followers": "Seguidores", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "Seguindo", + "For instance: London": "Por exemplo: Londres", + "For instance: London, Taekwondo, Architecture…": "Por exemplo: Londres, Taekwondo, Arquitetura…", + "Forgot your password ?": "Esqueceu a sua senha?", + "Forgot your password?": "Esqueceu a sua senha?", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "De {startDate} às {startTime} até {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "De {startDate} às {startTime} até {endDate} às {endTime}", + "From the {startDate} to the {endDate}": "De {startDate} até {endDate}", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "Reunir⋅ Organizar⋅ Mobilizar", + "General": "Geral", + "General information": "Informações gerais", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "Obter a localização", + "Getting there": "", + "Glossary": "Glossário", + "Go": "Vamos", + "Go to the event page": "Vá para a página do evento", + "Google Meet": "", + "Group": "", + "Group Followers": "", + "Group Members": "Membros do grupo", + "Group URL": "", + "Group activity": "", + "Group address": "Endereço do grupo", + "Group description body": "", + "Group display name": "Nome de exibição do grupo", + "Group name": "Nome do grupo", + "Group profiles": "", + "Group settings": "Configurações de grupo", + "Group settings saved": "Configurações do grupo salvas", + "Group short description": "Descrição curta do grupo", + "Group visibility": "Visibilidade do grupo", + "Group {displayName} created": "Grupo {displayName} criado", + "Group {groupTitle} reported": "Grupo {groupTitle} denunciado", + "Groups": "Grupos", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Os grupos são espaços para coordenação e preparação para melhor organizar eventos e administrar a sua comunidade.", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "Imagem de manchete", + "Hide replies": "Esconder as respostas", + "Home": "Início", + "Home to {number} users": "Início para {number} usuários", + "Homepage": "", + "Hourly email summary": "Resumo por e-mail à cada hora", + "I agree to the {instanceRules} and {termsOfService}": "Eu concordo com as {instanceRules} e {termsOfService}", + "I create an identity": "Eu crio uma identidade", + "I don't have a Mobilizon account": "Eu não tenho uma conta Mobilizon", + "I have a Mobilizon account": "Eu tenho uma conta Mobilizon", + "I have an account on another Mobilizon instance.": "Eu tenho uma conta em uma outra instância Mobilizon.", + "I participate": "Eu participo", + "I want to allow people to participate without an account.": "Eu quero permitir pessoas participarem sem uma conta.", + "I want to approve every participation request": "Eu quero aprovar cada pedido de participação", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "", + "Identity {displayName} created": "Identidade {displayName} criada", + "Identity {displayName} deleted": "Identidade {displayName} apagada", + "Identity {displayName} updated": "Identidade {displayName} atualizada", + "If allowed by organizer": "Se autorizado pelo organizador", + "If an account with this email exists, we just sent another confirmation email to {email}": "Se uma conta com esse email existe, nós acabamos de enviar um outro email de confirmação para {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Se esta identidade é o único administrador de alguns grupos, você precisa apagar esses grupos antes de poder apagar esta identidade.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Se você optou por validação manual dos participantes, o Mobilizon enviará à você um email informando os novos participantes a serem processados. Você pode escolher a frequência dessas notificações abaixo.", + "If you want, you may send a message to the event organizer here.": "Se você quiser, você pode enviar uma mensagem para o organizador do evento aqui.", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "No contexto que se segue, uma aplicação é um software, seja fornecido pela equipe Mobilizon ou por um terceiro, usado para interagir com a sua instância.", + "In the past": "", + "Increase": "", + "Instance": "Instância", + "Instance Long Description": "Descrição longa da instância", + "Instance Name": "Nome da instância", + "Instance Privacy Policy": "Política de privacidade da instância", + "Instance Privacy Policy Source": "Fonte da política de privacidade da instância", + "Instance Privacy Policy URL": "URL da política de privacidade da instância", + "Instance Rules": "Regras da instância", + "Instance Short Description": "Descrição curta da instância", + "Instance Slogan": "Slogan da instância", + "Instance Terms": "Termos de uso da instância", + "Instance Terms Source": "Fonte dos termos de uso da instância", + "Instance Terms URL": "URL dos termos de uso da instância", + "Instance administrator": "Administrador da instância", + "Instance configuration": "Configuração da instância", + "Instance feeds": "", + "Instance languages": "Idiomas da instância", + "Instance rules": "Regras da instância", + "Instance settings": "Configurações da instância", + "Instances": "Instâncias", + "Instances following you": "Instâncias seguindo você", + "Instances you follow": "Instâncias que você segue", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "Convidar um novo membro", + "Invite member": "Convidar membro", + "Invited": "Convidado", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "Itálico", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "Juntar-se a {instance}, uma instância Mobilizon", + "Join group": "Juntar-se ao grupo", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "Mantenha toda a conversa sobre um tema específico em apenas uma página.", + "Key words": "Palavras chave", + "Language": "Idioma", + "Last IP adress": "Último endereço IP", + "Last group created": "Último grupo criado", + "Last published event": "Último evento publicado", + "Last published events": "", + "Last sign-in": "Último log-in", + "Last week": "Última semana", + "Latest posts": "Últimas publicações", + "Learn more": "Saiba mais", + "Learn more about Mobilizon": "Saiba mais sobre o Mobilizon", + "Learn more about {instance}": "Aprenda mais sobre {instance}", + "Leave": "Sair", + "Leave event": "Deixar o evento", + "Leave group": "", + "Leaving event \"{title}\"": "Deixar o evento \"{title}\"", + "Legal": "Legal", + "Let's define a few settings": "Vamos definir algumas configurações", + "License": "Licença", + "Limited number of places": "Número de lugares limitados", + "List title": "Título da lista", + "Live": "", + "Load more": "Ver mais", + "Load more activities": "", + "Loading comments…": "", + "Local": "Local", + "Local time ({timezone})": "", + "Locality": "Localidade", + "Location": "Local", + "Log in": "Entrar", + "Log out": "Sair", + "Login": "Entrar", + "Login on Mobilizon!": "Entrar no Mobilizon!", + "Login on {instance}": "Entrar em {instance}", + "Login status": "Estado do Login", + "Main languages you/your moderators speak": "Principais línguas faladas por você ou seus moderadores", + "Manage participations": "Gerenciar participações", + "Manually approve new followers": "", + "Manually invite new members": "Convide manualmente integrantes", + "Mark as resolved": "Marcar como resolvido", + "Member": "Membro", + "Members": "Membros", + "Members-only post": "", + "Mentions": "", + "Message": "Mensagem", + "Microsoft Teams": "", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "O Mobilizon é uma rede federada. Você pode interagir com este evento por meio de um outro servidor.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon é um software federado, o que significa que pode interagir - dependendo das configurações federais da administração - com conteúdos de outras instâncias, como participar de grupos e eventos criados em outro lugar.", + "Mobilizon is a tool that helps you find, create and organise events.": "O Mobilizon é uma ferramenta que ajuda você a encontrar, criar e organizar eventos.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon não é uma plataforma gigante, mas uma multitude de sites web Mobilizon interconectados.", + "Mobilizon software": "Aplicativo Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon utiliza um sistema de perfis para compartilhar suas atividades. Você pode criar quantos perfis quiser.", + "Mobilizon version": "Versão Mobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon te enviará um email quando o evento que você estiver participando tiver mudanças importantes: data e hora, endereço, confirmação ou cancelamento, etc.", + "Moderate new members": "", + "Moderated comments (shown after approval)": "Comentários moderados (mostrados após aprovação)", + "Moderation": "Moderação", + "Moderation log": "Relatório de moderação", + "Moderation logs": "", + "Moderator": "Moderador", + "Move": "Mover", + "Move \"{resourceName}\"": "Mover \"{resourceName}\"", + "Move resource to the root folder": "", + "Move resource to {folder}": "Mover recurso para {folder}", + "My account": "Minha conta", + "My events": "Meus eventos", + "My groups": "Meus grupos", + "My identities": "Minhas identidades", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "NOTA! As condições gerais não foram verificadas por um advogado e, portanto, é pouco provável que ofereçam proteção legal para todas as situações para um administrador de instância utilizá-las. E também não são específicas para todos os países e jurisdições. Se você não está seguro, favor verificar com um advogado.", + "Name": "Nome", + "Navigated to {pageTitle}": "", + "New discussion": "Nova conversa", + "New email": "Novo email", + "New folder": "Nova pasta", + "New link": "Novo link", + "New members": "Novos membros", + "New note": "Nova nota", + "New password": "Nova senha", + "New post": "", + "New profile": "Novo perfil", + "Next": "Próximo", + "Next month": "Próximo mês", + "Next page": "Próxima página", + "Next week": "Na próxima semana", + "No address defined": "Nenhum endereço definido", + "No closed reports yet": "Nenhum relatório fechado ainda", + "No comment": "Nenhum comentário", + "No comments yet": "Nenhum comentário ainda", + "No discussions yet": "Nenhuma conversa ainda", + "No end date": "Não há data final", + "No events found": "Nenhum evento encontrado", + "No follower matches the filters": "", + "No group found": "Nenhum grupo encontrado", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "Nenhum grupo encontrado", + "No information": "", + "No instance follows your instance yet.": "Nenhuma instância segue a sua instância ainda.", + "No instance to approve|Approve instance|Approve {number} instances": "Nenhuma instância para aprovar|Aprovar instância|Aprovar {number} instâncias", + "No instance to reject|Reject instance|Reject {number} instances": "Nenhuma instância para rejeitar|Rejeitar instância|Rejeitar {number} instâncias", + "No instance to remove|Remove instance|Remove {number} instances": "Nenhuma instância para remover|Remover instância|Remover {number} instâncias", + "No languages found": "Nenhum idioma encontrado", + "No member matches the filters": "Nenhum membro corresponde aos filtros", + "No members found": "", + "No memberships found": "", + "No message": "Nenhuma mensagem", + "No moderation logs yet": "Nenhum relatório de moderação ainda", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "Ninguém está participando|Uma pessoa está participando|{vão} pessoas participando", + "No open reports yet": "Nenhum relatório aberto ainda", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "Nenhum participante corresponde aos filtros", + "No participant to approve|Approve participant|Approve {number} participants": "Nenhum participante para aprovar|Aprovar participante|Aprovar {number} participantes", + "No participant to reject|Reject participant|Reject {number} participants": "Nenhum participante para rejeitar|Rejeitar participante|Rejeitar {number} participantes", + "No participations listed": "", + "No posts found": "Nenhuma publicação encontrada", + "No posts yet": "Nenhuma publicação ainda", + "No profile matches the filters": "Nenhum perfil corresponde aos filtros", + "No public upcoming events": "Não há próximos eventos públicos", + "No resolved reports yet": "Nenhum relatório resolvido ainda", + "No resources in this folder": "Nenhum recurso nessa pasta", + "No resources selected": "Nenhum recurso selecionado|Um recurso selecionado|{count} recursos selecionados", + "No resources yet": "Nenhum recurso ainda", + "No results for \"{queryText}\"": "Não há resultado para \"{queryText}\"", + "No results for {search}": "", + "No rules defined yet.": "Nenhuma regra definida ainda.", + "None": "Nenhum", + "Not accessible with a wheelchair": "", + "Not approved": "Não aprovado", + "Not confirmed": "Não confirmado", + "Notes": "Notas", + "Notification before the event": "Notificações antes do evento", + "Notification on the day of the event": "Notificações no dia do evento", + "Notification settings": "", + "Notifications": "", + "Notifications for manually approved participations to an event": "Notificações para participações aprovadas manualmente para um evento", + "Notify participants": "", + "Now, create your first profile:": "Agora, crie seu primeiro perfil:", + "Number of places": "Número de lugares", + "OK": "OK", + "Old password": "Senha antiga", + "On {date}": "Em {date}", + "On {date} ending at {endTime}": "Em {date} terminando às {endTime}", + "On {date} from {startTime} to {endTime}": "Em {date} de {startTime} até {endTime}", + "On {date} starting at {startTime}": "Em {date} começando às {startTime}", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "Acessível apenas através do link", + "Only accessible through link (private)": "Acessível somente através de link (privado)", + "Only accessible to members of the group": "Acessível apenas aos membros do grupo", + "Only alphanumeric lowercased characters and underscores are supported.": "Permitido apenas caracteres alfanuméricos minúsculos e caracter de sublinhado.", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "Somente moderadores do grupo podem criar, editar e deletar publicações.", + "Only registered users may fetch remote events from their URL.": "", + "Open": "Aberto", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Opened reports": "Relatórios abertos", + "Or": "Ou", + "Ordered list": "", + "Organized": "Organizado", + "Organized by": "Organizado por", + "Organized by {name}": "Organizado por {name}", + "Organizer": "Organizador", + "Organizer notifications": "Notificações do organizador", + "Organizers": "Organizadores", + "Other": "Outro", + "Other actions": "", + "Other notification options:": "Outras opções de notificações:", + "Other software may also support this.": "Outros aplicativos talvez também suportem esta funcionalidade.", + "Otherwise this identity will just be removed from the group administrators.": "Caso contrário, esta identidade será removida do grupo de administradores.", + "Page": "Página", + "Page limited to my group (asks for auth)": "Acesso limitado ao meu grupo (solicite o acesso)", + "Page not found": "Página não encontrada", + "Parent folder": "Pasta pai", + "Partially accessible with a wheelchair": "", + "Participant": "Participante", + "Participants": "Participantes", + "Participate": "Participar", + "Participate using your email address": "Participar utilizando o seu endereço de email", + "Participation approval": "Aprovação de participação", + "Participation confirmation": "Confirmação da participação", + "Participation notifications": "Notificações de participações", + "Participation requested!": "Participação solicitada!", + "Participation with account": "", + "Participation without account": "", + "Participations": "Participações", + "Password": "Senha", + "Password (confirmation)": "Senha (confirmação)", + "Password reset": "Resetar a senha", + "Past events": "Eventos passados", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "Pendente", + "Personal feeds": "", + "Pick": "Escolha", + "Pick a profile or a group": "Escolha um perfil ou um grupo", + "Pick an identity": "Escolha uma identidade", + "Pick an instance": "Escolha uma instância", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "Favor verificar sua caixa de spam caso não tenha recebido o email.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Por favor contate o administrador desta instância Mobilizon se você pensa se tratar de um erro.", + "Please do not use it in any real way.": "Por favor, não o use de forma real.", + "Please enter your password to confirm this action.": "Favor inserir sua senha para confirmar esta ação.", + "Please make sure the address is correct and that the page hasn't been moved.": "Favor certificar-se de que o endereço está correto e de que a página não foi movida.", + "Please read the {fullRules} published by {instance}'s administrators.": "Favor ler as {fullRules} publicadas pelos administradores da instância {instance}.", + "Post": "Publicação", + "Post URL": "", + "Post a comment": "Envie um comentário", + "Post a reply": "Envie uma resposta", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "Código postal", + "Posts": "Publicações", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Distribuído por {mobilizon}. © 2018 - {date} Os contribuidores do Mobilizon - Feito com o apoio financeiro dos {contributors}.", + "Preferences": "Preferências", + "Previous": "Anterior", + "Previous month": "", + "Previous page": "Página anterior", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "Política de privacidade", + "Privacy policy": "Política de privacidade", + "Private event": "Evento privado", + "Private feeds": "Feeds privados", + "Profile": "", + "Profile feeds": "", + "Profiles": "Perfis", + "Profiles and federation": "Perfis e federação", + "Promote": "Promover", + "Public": "Público", + "Public RSS/Atom Feed": "RSS público/Feed Atom", + "Public comment moderation": "Moderação de comentários públicos", + "Public event": "Evento público", + "Public feeds": "Feeds públicos", + "Public iCal Feed": "Feed iCal público", + "Public preview": "", + "Publication date": "Data da publicação", + "Publish": "Publicar", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "Eventos publicados com {comments} comentários e {participations} participações confirmadas", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "RSS/Feed Atom", + "Radius": "Radio", + "Recap every week": "Resumo semanal", + "Receive one email for each activity": "", + "Receive one email per request": "Receber um email por solicitação", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "Redirecionando ao conteúdo…", + "Redo": "", + "Refresh profile": "Atualizar perfil", + "Regenerate new links": "", + "Region": "Região", + "Register": "Inscrever", + "Register an account on {instanceName}!": "Registrar uma conta em {instanceName}!", + "Register on this instance": "Registrar-se nesta instância", + "Registration is allowed, anyone can register.": "Inscrições autorizadas, qualquer um pode se inscrever.", + "Registration is closed.": "Inscrições fechadas.", + "Registration is currently closed.": "Inscrições estão atualmente fechadas.", + "Registrations": "Inscrições", + "Registrations are restricted by allowlisting.": "As inscrições são reservadas à lista de acesso.", + "Reject": "Rejeitar", + "Reject member": "", + "Rejected": "Rejeitado", + "Remember my participation in this browser": "Lembrar a minha participação neste navegador", + "Remove": "Remover", + "Remove link": "", + "Rename": "Renomear", + "Rename resource": "Renomear recurso", + "Reopen": "Reabrir", + "Replay": "", + "Reply": "Responder", + "Report": "Relatar", + "Report #{reportNumber}": "Relatório #{reportNumber}", + "Report this comment": "Relatar este comentário", + "Report this event": "Relatar este evento", + "Report this group": "Denunciar este grupo", + "Report this post": "", + "Reported": "Reportado", + "Reported by": "Relatado por", + "Reported by someone on {domain}": "Relatado por alguém em {domain}", + "Reported by {reporter}": "Relatado por {reporter}", + "Reported group": "Grupo denunciado", + "Reported identity": "Identidade reportada", + "Reports": "Relatórios", + "Reports list": "", + "Request for participation confirmation sent": "Pedido de confirmação de participação enviado", + "Resend confirmation email": "Reenviar um novo email de confirmação", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "Resetar a minha senha", + "Reset password": "", + "Resolved": "Resolvido", + "Resource provided is not an URL": "O recurso oferecido não é uma URL", + "Resources": "Recursos", + "Restricted": "Limitado", + "Return to the group page": "", + "Right now": "Agora mesmo", + "Role": "Papel", + "Rules": "Regras", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL e seu sucessor TLS são tecnologias de criptografia que protege comunicação de dados quando se usa o serviço. Você pode reconhecer uma conexão criptografada na linha de endereço do seu navegador quando o URL começa com {https} e o ícone de um cadeado é mostrado na barra de endereço do seu navegador.", + "SSL/TLS": "SSL/TLS", + "Save": "Salvar", + "Save draft": "Salvar rascunho", + "Schedule": "", + "Search": "Buscar", + "Search events, groups, etc.": "Buscar eventos, grupos, etc.", + "Searching…": "Buscando…", + "Select a language": "Selecione um idioma", + "Select a radius": "", + "Select a timezone": "Selecionar um fuso horário", + "Select languages": "Selecionar idioma", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "Enviar email", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "Enviar o email de confirmação novamente", + "Send the report": "Enviar o relato", + "Set an URL to a page with your own privacy policy.": "Defina um endereço URL apontando para uma página web com a sua própria política de privacidade.", + "Set an URL to a page with your own terms.": "Insira uma URL apontando para uma página contendo os seus próprios termos.", + "Settings": "Parâmetros", + "Share": "", + "Share this event": "Compartilhar este evento", + "Share this group": "", + "Share this post": "", + "Short bio": "Breve biografia", + "Show map": "Mostrar mapa", + "Show me where I am": "", + "Show remaining number of places": "Mostrar o número de lugares restantes", + "Show the time when the event begins": "Mostrar o horário de início do evento", + "Show the time when the event ends": "Mostrar o horário de término do evento", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "Entrar com", + "Sign up": "Registrar", + "Since you are a new member, private content can take a few minutes to appear.": "Uma vez que você é um membro novo, conteúdo privado pode levar alguns minutos para aparecer.", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Alguns termos, técnicos ou não, utilizados no texto abaixo talvez trate de conceitos que são difíceis de compreender. Oferecemos aqui um glossário para ajudar você a compreendê-los melhor:", + "Starts on…": "Começa em…", + "Status": "Estado", + "Street": "Rua", + "Submit": "Enviar", + "Subtitles": "", + "Suspend": "Suspender", + "Suspend group": "Suspender o grupo", + "Suspended": "Suspenso", + "Tag search": "", + "Task lists": "Lista de tarefas", + "Technical details": "", + "Tentative": "", + "Tentative: Will be confirmed later": "Provisório: será confirmado mais tarde", + "Terms": "Termos de uso", + "Terms of service": "Condições de uso", + "Text": "Texto", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "O endereço de email da conta foi modificado. Olhe seus emails para verificar isso.", + "The actual number of participants may differ, as this event is hosted on another instance.": "O número atual de participantes pode variar, já que este evento é hospedado em outra instância.", + "The content came from another server. Transfer an anonymous copy of the report?": "O conteúdo vem de um outro servidor. Transferir uma cópia anônima do relatório?", + "The draft event has been updated": "O rascunho do evento foi atualizado", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "Evento criado como um rascunho", + "The event has been published": "Evento publicado", + "The event has been updated": "Evento atualizado", + "The event has been updated and published": "Evento atualizado e publicado", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "O organizador do evento escolheu validar manualmente as participações. Você quer adicionar uma pequena nota para explicar porque você quer participar deste evento?", + "The event organizer didn't add any description.": "O organizador do evento não inseriu nenhuma descrição.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "O organizador do evento aprova manualmente as participações. Visto que você escolheu participar sem uma conta, por favor explique porque você quer participar deste evento.", + "The event title will be ellipsed.": "O título do evento será reticulado.", + "The event will show as attributed to this group.": "O evento será mostrado como atribuído a este grupo.", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "O evento será mostrado como atribuído a seu perfil pessoal.", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "O grupo será publicamente listado nos resultados de buscas e pode ser sugerido na seção « Exploração ». Apenas informações públicas serão mostradas nessa página.", + "The group's avatar was changed.": "", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "O administrador da instância é a pessoa ou entidade que administra esta instância Mobilizon.", + "The member was approved": "", + "The member was removed from the group {group}": "O membro foi removido do grupo {group}", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "O único jeito para que seu grupo possua integrantes será pelo convite da Administração.", + "The organiser has chosen to close comments.": "O organizador optou por fechar comentários.", + "The page you're looking for doesn't exist.": "A página que você está procurando não existe.", + "The password was successfully changed": "A senha foi alterada com sucesso", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "O relato será enviado aos moderadores da sua instância. Você pode explicar porque você relatou o conteúdo abaixo.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "A {default_privacy_policy} será usada. Elas serão traduzidas no idioma do usuário.", + "The {default_terms} will be used. They will be translated in the user's language.": "Os {default_terms} será usado. Eles serão traduzidos no idioma do usuário.", + "There are {participants} participants.": "Há {participants} participantes.", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "Não será possível recuperar os seus dados.", + "There's no discussions yet": "", + "These events may interest you": "Estes eventos talvez interessem a você", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Esta instância Mobilizon e o organizador deste evento permitem participantes anônimos, mas solicita a validação através da confirmação do email.", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "Este URL não é compatível", + "This event has been cancelled.": "Este evento foi cancelado.", + "This event is accessible only through it's link. Be careful where you post this link.": "Este evento é acessível apenas através do seu link. Tenha cuidado onde você publica este link.", + "This group doesn't have a description yet.": "Este grupo ainda não possui uma descrição.", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "É preciso receber convite para participar deste grupo", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "Este identificador é único para o seu perfil. Permite que outros te encontrem.", + "This information is saved only on your computer. Click for details": "Esta informação é gravada apenas no seu computador. Clique para mais detalhes", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "Esta instância não está aberta para registros, mas você pode se registrar em outras instâncias.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Esta instância, {instanceName} ({domain}), guarda seu perfil, então lembre-se deste nome.", + "This is a demonstration site to test Mobilizon.": "Este é um site de demonstração para testar o Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Isto é como o seu usuário ({username}) federado para grupos. Ele permitirá que o grupo seja encontrado na federação e garante que seja único.", + "This month": "Este mês", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "Esta configuração será utilizada para disponibilizar o site e te enviar emails no idioma indicado.", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Este website não é moderado e a data que você insere será destruída às 00:01 (zona horária de Paris).", + "This week": "Esta semana", + "This weekend": "Este fim de semana", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Isto irá apagar / tornar anônimo todo o conteúdo (eventos, comentários, mensagens, participantes...) criados por esta identidade.", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "Fuso horário", + "Timezone detected as {timezone}.": "Fuso horário detectado como {timezone}.", + "Title": "Título", + "To activate more notifications, head over to the notification settings.": "Para ativar mais notificações, vá até configurações de notificações.", + "To confirm, type your event title \"{eventTitle}\"": "Para confirmar, insira o título do seu evento \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "Para confirmar, insira o seu nome de usuário da identidade \"{preferredUsername}\"", + "To create and manage multiples identities from a same account": "Para criar e administrar múltiplas identidades de uma mesma conta", + "To create and manage your events": "Para criar e administrar seus eventos", + "To create or join an group and start organizing with other people": "Para criar ou juntar-se a um grupo e começar a organizar com outras pessoas", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "Para se inscrever em um evento escolhendo uma de suas identidades", + "Today": "Hoje", + "Tomorrow": "Amanhã", + "Tools": "", + "Transfer to {outsideDomain}": "Transferir para {outsideDomain}", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "Tipo", + "Type or select a date…": "", + "URL": "URL", + "URL copied to clipboard": "URL copiado para a área de transferência", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "Impossível detectar o fuso horário.", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "Infelizmente, seu pedido de participação foi rejeitado pelos organizadores.", + "Unknown": "Desconhecido", + "Unknown actor": "Ator desconhecido", + "Unknown error.": "Erro desconhecido.", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "Alterações não salvas", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "Anular a suspensão", + "Upcoming": "Em breve", + "Upcoming events": "Próximos eventos", + "Upcoming events from your groups": "", + "Update": "Atualizar", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "Atualizar evento {name}", + "Update group": "Atualizar grupo", + "Update my event": "Atualizar meu evento", + "Update post": "Atualizar publicação", + "Updated": "Atualizado", + "Uploaded media size": "", + "Use my location": "Use minha localização", + "User": "Usuário", + "User settings": "", + "Username": "Nome de usuário", + "Users": "Usuários", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "|Ver uma resposta|Ver {totalReplies} respostas", + "View account on {hostname} (in a new window)": "", + "View all": "Ver tudo", + "View all events": "", + "View all posts": "Ver todas as publicações", + "View event page": "Ver a página do evento", + "View everything": "Ver tudo", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "Ver a página em {hostname} (em uma nova janela)", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "Visível por toda parte na web", + "Visible everywhere on the web (public)": "Visível a todo mundo na web (público)", + "Waiting for organization team approval.": "Aguardando pela aprovação da equipe de organização.", + "Warning": "Atenção", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "Acabamos de enviar um email para {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Nós usamos seu fuso horário para assegurar que você recebe as notificações de um evento no horário correto.", + "We will redirect you to your instance in order to interact with this event": "Iremos redirecionar você para sua instância para você interagir com este evento", + "We will redirect you to your instance in order to interact with this group": "Redirecionaremos você à sua instância para interagir com este grupo.", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Enviaremos um e-mail uma hora antes do início do evento, para assegurar que você não o esquecerá.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Nós usaremos suas configurações de fuso horário para enviar um resumo dos seus eventos pela manhã.", + "Website": "Site web", + "Website / URL": "Website / URL", + "Weekly email summary": "", + "Welcome back {username}!": "Bem-vindo(a) novamente {username}!", + "Welcome back!": "Bem-vindo(a) de volta!", + "Welcome to Mobilizon, {username}!": "Bem-vindo(a) ao Mobilizon, {username}!", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Quando um moderador do grupo cria um evento e ao atribu ao grupo, irá mostrar aqui.", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "Quem pode ver este evento e participar", + "Who can view this post": "Quem pode ver esta publicação", + "Who published {number} events": "Quem publicou {number} eventos", + "Why create an account?": "Por que criar uma conta?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Permitirá mostrar e administrar o estado da sua participação na página do evento quando usar este aparelho. Desmarque se você está usando um dispositivo público.", + "Within {number} kilometers of {place}": "", + "Yesterday": "", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "Você não é um administrador deste grupo.", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "Você está participando deste evento de forma anônima", + "You are participating in this event anonymously but didn't confirm participation": "Você está participando deste evento de forma anônima, mas você não confirmou a sua participação", + "You can add tags by hitting the Enter key or by adding a comma": "Você pode adicionar tags pressionando a tecla Enter ou adicionando uma vírgula", + "You can pick your timezone into your preferences.": "Você pode selecionar seu fuso horário nas suas preferências.", + "You can try another search term or drag and drop the marker on the map": "Você pode tentar inserir outro termo de busca ou arrastar o marcador no mapa", + "You can't change your password because you are registered through {provider}.": "Você não pode mudar sua senha porque você está registrado em {provider}.", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "Você não segue nenhuma instância ainda.", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "Você foi convidado por {invitedBy} para o seguinte grupo:", + "You have been removed from this group's members.": "Você foi removido dos membros deste grupo.", + "You have cancelled your participation": "Você cancelou a sua participação", + "You have one event in {days} days.": "Você não tem eventos nos próximos {days} dias. |Você tem um evento em {days} dias. | Você tem {count} eventos em {days} dias", + "You have one event today.": "Você não tem evento hoje | Você tem um evento hoje. | Você tem {count} eventos hoje", + "You have one event tomorrow.": "Você não tem eventos amanhã | Você tem um evento amanhã. | Você tem {count} eventos amanhã", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "Você pode agora fechar a janela, ou {return_to_event}.", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "Você precisa entrar.", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "Você poderá adicionar um avatar e definir outras opções nas configurações da sua conta.", + "You will be redirected to the original instance": "Você será redirecionado para a instância original", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "Você deseja participar do seguinte evento", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Todas as segundas-feiras você receberá um resumo dos próximos eventos, se você tiver algum.", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Você precisará transmitir a URL do grupo para que as pessoas possam acessar o perfil do grupo. O grupo não será encontrado no motor de busca do Mobilizon ou nos demais motores de busca.", + "You'll receive a confirmation email.": "Você receberá um email de confirmação.", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "Sua conta foi apagada com sucesso", + "Your account has been validated": "Sua conta foi validada", + "Your account is being validated": "Sua conta esta sendo validada", + "Your account is nearly ready, {username}": "Sua conta está quase pronta, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "Seu email atual é {email}. Utilize-o para fazer entrar.", + "Your email": "Seu email", + "Your email address was automatically set based on your {provider} account.": "Seu endereço de email foi configurado baseado na sua conta {provider}.", + "Your email has been changed": "Seu email foi alterado", + "Your email is being changed": "Seu email está sendo alterado", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Seu email será usado apenas para confirmar que você é uma pessoa real e para enviar à você eventuais atualizações para este evento. Ele NÃO será enviado a outras instâncias ou ao organizador do evento.", + "Your federated identity": "Sua identidade federada", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "Sua participação foi confirmada", + "Your participation has been rejected": "Sua participação foi rejeitada", + "Your participation has been requested": "Sua participação foi solicitada", + "Your participation request has been validated": "Sua participação foi validada", + "Your participation request is being validated": "Sua participação está sendo validada", + "Your participation status has been changed": "O estado da sua participação foi modificado", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "Sua participação ainda tem que ser aprovada pelos organizadores.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "Seu perfil será mostrado como contato.", + "Your timezone is currently set to {timezone}.": "Seu fuso horário está configurado para {timezone}.", + "Your timezone was detected as {timezone}.": "Seu fuso horário foi detectado como {timezone}.", + "Your timezone {timezone} isn't supported.": "Sua zona horária {timezone} não é compatível.", + "Your upcoming events": "", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "[Este comentário foi apagado pelo seu autor]", + "[This comment has been deleted]": "[Este comentário foi apagado]", + "[deleted]": "[apagado]", + "a non-existent report": "Um relatório inexistente", + "access to the group's private content as well": "", + "and {number} groups": "e {number} grupos", + "any distance": "qualquer distância", + "as {identity}": "como {identity}", + "contact uninformed": "Contato não especificado", + "create a group": "", + "create an event": "", + "default Mobilizon privacy policy": "Política padrão de privacidade do Mobilizon", + "default Mobilizon terms": "Termos de utilização padrão do Mobilizon.org", + "e.g. 10 Rue Jangot": "por exemplo: Rua Jangot, 10", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "Regras completas", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "Feed iCal", + "instance rules": "regras da instância", + "more than 1360 contributors": "mais de 1360 contribuidores", + "profile@instance": "perfil@instance", + "report #{report_number}": "relatório #{report_number}", + "return to the event's page": "", + "terms of service": "condições gerais do serviço", + "with another identity…": "com uma outra identidade…", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "{approved} / {total} lugares", + "{available}/{capacity} available places": "Nenhum lugar sobrando|{available}/{capacity} lugares disponíveis", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "Nenhum participante ainda | Um participante | {count} participantes", + "{count} requests waiting": "{count} solicitações aguardando", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "Eventos do {group}", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} é uma instância do aplicativo {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "{moderator} adicionou uma nota no {report}", + "{moderator} closed {report}": "{moderator} fechou {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} apagou um evento chamado \"{title}\"", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "{moderator} apagou o usuário {user}", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "{moderator} anulou a suspensão de {profile}", + "{moderator} marked {report} as resolved": "{moderator} marcou {report} como resolvido", + "{moderator} reopened {report}": "{moderator} reabriu {report}", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "{moderator} suspendeu o perfil {profile}", + "{nb} km": "{nb} km", + "{number} members": "{number} membros", + "{number} memberships": "", + "{number} organized events": "Nenhum evento organizado|Um evento organizado|{number} eventos organizados", + "{number} participations": "Nenhuma participação|Uma participação|{number} participações", + "{number} posts": "Nenhuma publicação|Uma publicação|{number} publicações", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "{profile} (padrão)", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "{title} ({count} tarefas pendentes)", + "{username} was invited to {group}": "{username} foi convidado para o {group}", + "© The OpenStreetMap Contributors": "© Os colaboradores do OpenStreetMap" +}); diff --git a/res/locale/ru.js b/res/locale/ru.js new file mode 100644 index 0000000..dbaae1e --- /dev/null +++ b/res/locale/ru.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Скрыто)", + "(this folder)": "(эта папка)", + "(this link)": "(эта ссылка)", + "+ Add a resource": "+ Добавить ресурс", + "+ Create a post": "+ Создать пост", + "+ Create an event": "+ Создать мероприятие", + "+ Start a discussion": "+ Начать обсуждение", + "{contact} will be displayed as contact.": "{contact} будет отображаться как контакт.|{contact} будут отображаться как контакты.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "Запрос на подписку от @{username} принят", + "@{username}'s follow request was rejected": "Запрос на подписку от @{username} отклонён", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Cookie - это небольшой файл, содержащий информацию, которая сохраняется на вашем компьютере при посещении веб-сайта. Когда вы снова посещаете эту страницу, cookie позволяет сайту распознавать ваш браузер. Cookie могут хранить настройки пользователя и другую информацию. Вы можете настроить свой браузер так, чтобы он не принимал файлы cookie. Однако это может привести к тому, что часть функционала веб-сайта не будет работать. Локальное хранилище работает так же, но позволяет хранить больше данных.", + "A discussion has been created or updated": "Обсуждение было создано или обновлено", + "A federated software": "Федеративное программное обеспечение", + "A fediverse account URL to follow for event updates": "URL-адрес учетной записи fediverse, для отслеживания изменений в мероприятиях", + "A link to a page presenting the event schedule": "Ссылка на расписание мероприятий", + "A link to a page presenting the price options": "Ссылка на прайслист", + "A member has been updated": "Участник обновлён", + "A member requested to join one of my groups": "Участник попросил присоединиться к одной из моих групп", + "A new version is available.": "Доступна новая версия.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Тут можно разместить общие правила, положения или руководства. Вы можете использовать HTML-теги.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Тут можно подробно описать кто вы и что делает этот узел особенным. Вы можете использовать HTML-теги.", + "A place to publish something to the whole world, your community or just your group members.": "Место для публикации чего-либо для всего мира, вашего сообщества или только участников вашей группы.", + "A place to store links to documents or resources of any type.": "Место для хранения ссылок на документы или ресурсы любого типа.", + "A post has been published": "Пост был опубликован", + "A post has been updated": "Пост был обновлён", + "A practical tool": "Удобный инструмент", + "A resource has been created or updated": "Ресурс был создан или обновлён", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Короткий слоган для домашней страницы вашего узла. По умолчанию: \"Собирать ⋅ Организовывать ⋅ Мобилизовывать\"", + "A twitter account handle to follow for event updates": "Идентификатор учетной записи Twitter, для слежения за обновлениями мероприятий", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Удобный, свободный и этичный инструмент для объединения, организации и мобилизации.", + "A validation email was sent to {email}": "Письмо с подтверждением было отправлено на адрес {email}", + "API": "API", + "Abandon editing": "Отменить изменения", + "About": "О нас", + "About Mobilizon": "О Mobilizon", + "About anonymous participation": "Об анонимном участии", + "About instance": "Об узле", + "About this event": "Об этом мероприятии", + "About this instance": "Об этом узле", + "About {instance}": "О {instance}", + "Accept": "Принять", + "Accepted": "Принято", + "Accessibility": "Доступность", + "Accessible only by link": "", + "Accessible only to members": "Доступно только участникам", + "Accessible through link": "Доступно по ссылке", + "Account": "Учётная запись", + "Account settings": "Настройки учётной записи", + "Actions": "Действия", + "Activate browser push notifications": "Активировать push-уведомления в браузере", + "Activated": "Активирован", + "Active": "Активный", + "Activity": "Активность", + "Actor": "Агент", + "Add": "Добавить", + "Add / Remove…": "Добавить / удалить…", + "Add a contact": "Добавить контакт", + "Add a new post": "Добавить новый пост", + "Add a note": "Добавить заметку", + "Add a todo": "Добавить в список задач", + "Add an address": "Добавить адрес", + "Add an instance": "Добавить узел", + "Add link": "Добавить ссылку", + "Add new…": "Добавить новый…", + "Add picture": "Добавить изображение", + "Add some tags": "Добавить теги", + "Add to my calendar": "Добавить в мой календарь", + "Additional comments": "Дополнительные комментарии", + "Admin": "Админ", + "Admin dashboard": "Панель администратора", + "Admin settings": "Настройки администратора", + "Admin settings successfully saved.": "Настройки администратора успешно сохранены.", + "Administration": "Администрирование", + "Administrator": "Администратор", + "All activities": "Все действия", + "All good, let's continue!": "Все хорошо, продолжим!", + "All the places have already been taken": "Все места уже заняты", + "Allow all comments from users with accounts": "Разрешить все комментарии от авторизованных пользователей", + "Allow registrations": "Разрешить регистрацию", + "An URL to an external ticketing platform": "URL-адрес внешней платформы продажи билетов", + "An error has occured while refreshing the page.": "Произошла ошибка при обновлении страницы.", + "An error has occured. Sorry about that. You may try to reload the page.": "Произошла ошибка. Приносим вам тысячу извинений. Вы можете попробовать перезагрузить страницу.", + "An ethical alternative": "Этичная альтернатива", + "An event I'm going to has been updated": "Мероприятие, на которое я собираюсь, обновлено", + "An event I'm going to has posted an announcement": "О мероприятии, на которое я собираюсь, было опубликовано объявление", + "An event I'm organizing has a new comment": "У мероприятия, которое я организую, есть новый комментарий", + "An event I'm organizing has a new participation": "В мероприятии, которое я организую, появился новый участник", + "An event I'm organizing has a new pending participation": "В мероприятии, которое я организую, ожидается новый участник", + "An event from one of my groups has been published": "Опубликовано мероприятие одной из моих групп", + "An event from one of my groups has been updated or deleted": "Мероприятие одной из моих групп было обновлено или удалено", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Узел - это программное обеспечение Mobilizon, установленное на сервере. Узел может быть запущен кем угодно, использующим {mobilizon_software} или другие федеративные приложения, называемые «Федиверзум». Имя этого узла - {instance_name}. Mobilizon - это федеративная сеть, состоящая из нескольких узлов (как почтовые серверы). Пользователи могут свободно общаться друг с другом, даже если они зарегистрированы на разных узлах.", + "And {number} comments": "И {number} комментариев", + "Announcements and mentions notifications are always sent straight away.": "Уведомления об объявлениях и упоминаниях всегда отправляются незамедлительно.", + "Anonymous participant": "Анонимный участник", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Анонимные участники получат запрос на подтверждение своего участия по электронной почте.", + "Anonymous participations": "Анонимное участие", + "Any day": "В любой день", + "Any type": "", + "Anyone can join freely": "Каждый может присоединиться", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "Каждый, кто хочет стать участником вашей группы, сможет сделать это на странице этой группы.", + "Application": "Приложение", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Вы действительно уверены, что хотите удалить свою учетную запись? Вы потеряете всё. Идентификаторы, настройки, созданные мероприятия, сообщения и история исчезнут навсегда.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Вы действительно хотите полностью удалить эту группу? Все участники, включая участников с других узлов, будут уведомлены и удалены из группы, а все данные группы (мероприятия, сообщения, обсуждения, задачи…) будут безвозвратно уничтожены.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Вы действительно хотите удалить этот комментарий? Это действие не может быть отменено.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Вы действительно хотите удалить это мероприятие? Это действие не может быть отменено. Вы можете обсудить мероприятие с его автором, или просто отредактировать его.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Вы действительно хотите заблокировать эту группу? Все участники, включая участников с других узлов, будут уведомлены и удалены из группы, а все данные группы (мероприятия, сообщения, обсуждения, задачи…) будут безвозвратно уничтожены.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Вы действительно хотите заблокировать эту группу? Поскольку эта группа принадлежит узлу {instance}, то будут удалены только локальные члены и локальные данные. Так же это приведёт к запрету публикации любых данных этой группой.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Вы уверены, что хотите отменить создание мероприятия? Все изменения будут потеряны.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Вы уверены, что хотите отменить редактирование мероприятия? Все изменения будут потеряны.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Вы действительно хотите отказаться от участия в мероприятии \"{title}\"?", + "Are you sure you want to delete this entire discussion?": "Вы уверены, что хотите полностью удалить это обсуждение?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Вы уверены, что хотите удалить это мероприятие? Это действие нельзя отменить.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Поскольку организатор мероприятия решил вручную подтверждать запросы на участие, ваше участие будет фактически подтверждено после того, как вы получите электронное письмо о том, что оно было одобрено.", + "Ask your instance admin to {enable_feature}.": "Попросите администратора вашего узла {enable_feature}.", + "Assigned to": "Присвоен", + "Atom feed for events and posts": "Atom лента для мероприятий и публикаций", + "Attending": "", + "Avatar": "Аватар", + "Back to group list": "", + "Back to previous page": "Вернуться на предыдущую страницу", + "Back to profile list": "", + "Back to top": "Вернуться в начало", + "Back to user list": "", + "Banner": "Баннер", + "Before you can login, you need to click on the link inside it to validate your account.": "Перед тем как войти в систему, вы должны перейти по указанной в письме ссылке, чтобы подтвердить свою учетную запись.", + "Begins on": "Начинается", + "Big Blue Button": "Big Blue Button", + "Bold": "Жирный", + "Booking": "Бронирование", + "Breadcrumbs": "Хлебные крошки", + "Browser notifications": "Уведомления в браузере", + "Bullet list": "Маркированный список", + "By others": "Другими", + "By {group}": "Автор: {group}", + "By {username}": "От {username}", + "Can be an email or a link, or just plain text.": "Может быть адресом электронной почты, ссылкой или простым текстом.", + "Cancel": "Отмена", + "Cancel anonymous participation": "Отменить анонимное участие", + "Cancel creation": "Отменить создание", + "Cancel discussion title edition": "Отменить редактирование заголовка обсуждения", + "Cancel edition": "Отменить редактирование", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "Отменить мою заявку на участие…", + "Cancel my participation…": "Отменить моё участие…", + "Cancelled": "Отменено", + "Cancelled: Won't happen": "Отменено: Не состоится", + "Change": "Изменить", + "Change my email": "Изменить мой адрес электронной почты", + "Change my identity…": "Изменить мой идентификатор…", + "Change my password": "Изменить свой пароль", + "Change timezone": "Изменить часовой пояс", + "Check your inbox (and your junk mail folder).": "Проверьте свою электронную почту (и папку со спамом).", + "Choose the source of the instance's Privacy Policy": "Выберите источник Политики конфиденциальности узла", + "Choose the source of the instance's Terms": "Выберите источник Условий использования узла", + "City or region": "Город, регион или область", + "Clear": "Очистить", + "Clear address field": "Очистить поле адреса", + "Clear date filter field": "", + "Clear participation data for all events": "Очистить данные об участии для всех мероприятий", + "Clear participation data for this event": "Очистить данные об участии в этом мероприятии", + "Clear timezone field": "Очистить поле часового пояса", + "Click for more information": "Кликнете для получения дополнительной информации", + "Click to upload": "Нажмите, чтобы загрузить", + "Close": "Закрыть", + "Close comments for all (except for admins)": "Закрыть комментарии для всех (кроме админов)", + "Closed": "Закрыто", + "Comment body": "Содержимое комментария", + "Comment deleted": "Комментарий удален", + "Comment text can't be empty": "Комментарий не может быть пустым", + "Comments": "Комментарии", + "Comments are closed for everybody else.": "Комментарии закрыты для всех остальных.", + "Confirm my participation": "Подтвердите мое участие", + "Confirm my particpation": "Подтвердите мое участие", + "Confirm participation": "Подтвердите участие", + "Confirmed": "Подтверждённый", + "Confirmed at": "Подтверждён в", + "Confirmed: Will happen": "Подтверждено: Состоится", + "Congratulations, your account is now created!": "Поздравляем, ваша учетная запись создана!", + "Contact": "Контакт", + "Continue editing": "Продолжить редактирование", + "Cookies and Local storage": "Файлы cookie и локальное хранилище", + "Copy URL to clipboard": "Скопировать URL в буфер обмена", + "Copy details to clipboard": "Копировать подробности в буфер обмена", + "Country": "Страна", + "Create": "Создать", + "Create a calc": "Создать таблицу", + "Create a discussion": "Начать обсуждение", + "Create a folder": "Создать папку", + "Create a new event": "Создать новое мероприятие", + "Create a new group": "Создать новую группу", + "Create a new identity": "Создать новый идентификатор", + "Create a new list": "Создать новый список", + "Create a new profile": "Создать новый профиль", + "Create a pad": "Создать документ", + "Create a videoconference": "Создать видеоконференцию", + "Create an account": "Создать учётную запись", + "Create discussion": "Создать обсуждение", + "Create event": "Создать мероприятие", + "Create group": "Создать группу", + "Create identity": "Создать идентификатор", + "Create my event": "Создать мое мероприятие", + "Create my group": "Создать мою группу", + "Create my profile": "Создать мой профиль", + "Create new links": "Создать новые ссылки", + "Create resource": "Создать ресурс", + "Create the discussion": "Начать обсуждение", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Создавайте списки дел для каждой нужной вам задачи, назначайте их другим, и устанавливайте сроки выполнения.", + "Create token": "Создать токен", + "Created by {name}": "Создано {name}", + "Created by {username}": "Создано {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "Текущий идентификатор был изменен на {identityName}, чтобы иметь возможность управлять этим событием.", + "Current page": "Текущая страница", + "Custom": "Пользовательский", + "Custom URL": "Пользовательский URL", + "Custom text": "Пользовательский текст", + "Daily email summary": "Ежедневная сводка на электронную почту", + "Dashboard": "Панель", + "Date": "Дата", + "Date and time": "Дата и время", + "Date and time settings": "Настройки даты и времени", + "Date parameters": "Параметры даты", + "Decline": "Отклонить", + "Decrease": "Уменьшить", + "Default": "По умолчанию", + "Default Mobilizon privacy policy": "Политика конфиденциальности Mobilizon по умолчанию", + "Default Mobilizon terms": "Условия использования Mobilizon по умолчанию", + "Delete": "Удалить", + "Delete account": "Удалить учётную запись", + "Delete conversation": "Удалить беседу", + "Delete discussion": "Удалить обсуждение", + "Delete event": "Удалить мероприятие", + "Delete everything": "Удалить всё", + "Delete group": "Удалить группу", + "Delete my account": "Удалить мою учётную запись", + "Delete post": "Удалить пост", + "Delete this discussion": "Удалить это обсуждение", + "Delete this identity": "Удалить этот идентификатор", + "Delete your identity": "Удалить ваш идентификатор", + "Delete {eventTitle}": "Удалить {eventTitle}", + "Delete {preferredUsername}": "Удалить {preferredUsername}", + "Deleting comment": "Удаление комментария", + "Deleting event": "Удаление мероприятия", + "Deleting my account will delete all of my identities.": "Удаление моей учетной записи приведет к удалению всех моих личных данных.", + "Deleting your Mobilizon account": "Удаление моей учётной записи Mobilizon", + "Demote": "Понизить", + "Description": "Описание", + "Details": "Подробности", + "Didn't receive the instructions?": "Не получили инструкции?", + "Disabled": "Отключено", + "Discussions": "Обсуждения", + "Discussions list": "Список обсуждений", + "Display name": "Отображаемое имя", + "Display participation price": "Показать стоимость участия", + "Displayed nickname": "Отображаемый ник", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Отображается на главной странице и в метатегах. Опишите в одном абзаце, что такое Mobilizon и что делает этот узел особенным.", + "Do not receive any mail": "Не получать электронные письма", + "Do you wish to {create_event} or {explore_events}?": "Вы хотите {create_event} или {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Вы хотите {create_group} или {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "Нужно ли подтверждать мероприятие позже или оно отменяется?", + "Domain": "Домен", + "Draft": "Черновик", + "Drafts": "Черновики", + "Due on": "Выполнить к", + "Duplicate": "Копировать", + "Edit": "Редактировать", + "Edit post": "Редактировать пост", + "Edit profile {profile}": "Редактировать профиль {profile}", + "Edited {ago}": "Изменено {ago}", + "Edited {relative_time} ago": "Изменено {relative_time} назад", + "Eg: Stockholm, Dance, Chess…": "Например: Москва, танцы, шахматы…", + "Either on the {instance} instance or on another instance.": "На узле {instance}, либо на другом.", + "Either the account is already validated, either the validation token is incorrect.": "Учетная запись уже активирована или проверочный токен недействителен.", + "Either the email has already been changed, either the validation token is incorrect.": "Адрес электронной почты уже был изменён или проверочный токен недействителен.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Заявка на участие уже подтверждена или проверочный токен недействителен.", + "Element title": "Название элемента", + "Element value": "Значение элемента", + "Email": "Электронная почта", + "Email address": "Адрес электронной почты", + "Email validate": "Подтверждение электронной почты", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "Включено", + "Ends on…": "Заканчивается в…", + "Enter the link URL": "Введите URL ссылки", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Введите ниже свой адрес электронной почты, и мы пришлём вам инструкции по изменению пароля.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Введите свою политику конфиденциальности. Вы можете использовать HTML-теги. {mobilizon_privacy_policy} используется в качестве шаблона.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Введите свои собственные условия. Вы можете использовать HTML-теги. {mobilizon_terms} используется в качестве шаблона.", + "Error": "Ошибка", + "Error details copied!": "Подробности об ошибке скопированы!", + "Error message": "Сообщение об ошибке", + "Error stacktrace": "Стектрейс ошибки", + "Error while changing email": "Произошла ошибка при изменении адреса электронной почты", + "Error while loading the preview": "Ошибка при загрузке превью", + "Error while login with {provider}. Retry or login another way.": "Не удалось войти через {provider}. Повторите попытку или войдите другим способом.", + "Error while login with {provider}. This login provider doesn't exist.": "Не удалось войти через {provider}. Такого провайдера аутентификации не существует.", + "Error while reporting group {groupTitle}": "Ошибка при отправке отчёта о группе {groupTitle}", + "Error while subscribing to push notifications": "Ошибка при подписке на push-уведомления", + "Error while suspending group": "Ошибка при блокировке группы", + "Error while updating participation status inside this browser": "Ошибка при обновлении статуса участия в этом браузере", + "Error while validating account": "Ошибка подтверждения учётной записи", + "Error while validating participation request": "Произошла ошибка при проверке заявки на участие", + "Etherpad notes": "Заметки Etherpad", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Mobilizon - это этичная альтернатива мероприятиям, группам и страницам Facebook. Это инструмент, созданный для вас. И точка.", + "Event": "Мероприятие", + "Event URL": "URL мероприятия", + "Event already passed": "Мероприятие уже прошло", + "Event cancelled": "Мероприятие отменено", + "Event creation": "Создание мероприятия", + "Event description body": "Содержимое описания мероприятия", + "Event edition": "Редактирования мероприятия", + "Event list": "Список мероприятий", + "Event metadata": "Метаданные мероприятия", + "Event page settings": "Настройки страницы мероприятия", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Часовой пояс мероприятия по умолчанию будет соответствовать часовому поясу адреса мероприятия, если он есть, или вашей настройке часового пояса.", + "Event to be confirmed": "Мероприятие должно быть подтверждено", + "Event {eventTitle} deleted": "Мероприятие {eventTitle} удалено", + "Event {eventTitle} reported": "Жалоба на мероприятие {eventTitle} отправлена", + "Events": "Мероприятия", + "Events nearby": "Ближайшие мероприятия", + "Events tagged with {tag}": "События с тегом {tag}", + "Everything": "Всё", + "Ex: mobilizon.fr": "Например: mobilizon.fr", + "Ex: someone@mobilizon.org": "Например: user@mobilizon.org", + "Explore": "Обзор", + "Explore events": "Обзор мероприятий", + "Export": "Экспорт", + "Failed to get location.": "Не удалось определить местоположение.", + "Failed to save admin settings": "Не удалось сохранить настройки администратора", + "Featured events": "Избранные мероприятия", + "Federated Group Name": "Имя федеративной группы", + "Federation": "Федерализация", + "Fediverse account": "Аккаунт Fediverse", + "Fetch more": "Загрузить больше", + "Filter": "Фильтр", + "Filter by name": "Фильтр по имени", + "Filter by profile or group name": "Фильтр по профилю или названию группы", + "Find an address": "Найти адрес", + "Find an instance": "Найти узел", + "Find another instance": "Найти другой узел", + "Find or add an element": "Найти или добавить элемент", + "First steps": "Первые шаги", + "Follow": "", + "Follower": "Подписчик", + "Followers": "Подписчики", + "Followers will receive new public events and posts.": "Подписчики будут оповещены о новых публичных мероприятиях и публикациях.", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "Подписки", + "For instance: London": "Например: Москва", + "For instance: London, Taekwondo, Architecture…": "Например: Москва, йога, архитектура…", + "Forgot your password ?": "Забыли свой пароль?", + "Forgot your password?": "Забыли свой пароль?", + "Framadate poll": "Опрос Framadate", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "От {startDate}, {startTime} до {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "От {startDate}, {startTime} до {endDate}, {endTime}", + "From the {startDate} to the {endDate}": "От {startDate} до {endDate}", + "From yourself": "От себя", + "Fully accessible with a wheelchair": "Полностью доступно для инвалидов-колясочников", + "Gather ⋅ Organize ⋅ Mobilize": "Объединять ⋅ Организовывать ⋅ Мобилизовывать", + "General": "Общая", + "General information": "Общая информация", + "General settings": "Основные настройки", + "Geolocation was not determined in time.": "Геолокация не была определена вовремя.", + "Getting location": "Получить местоположение", + "Getting there": "Как туда добраться", + "Glossary": "Глоссарий", + "Go": "Идти", + "Go to the event page": "Перейти на страницу мероприятия", + "Google Meet": "Google Meet", + "Group": "Группа", + "Group Followers": "Группа подписчиков", + "Group Members": "Участники группы", + "Group URL": "URL группы", + "Group activity": "Групповая активность", + "Group address": "Адрес группы", + "Group description body": "Содержимое описания группы", + "Group display name": "Отображаемое имя группы", + "Group name": "Название группы", + "Group profiles": "Профили группы", + "Group settings": "Настройки группы", + "Group settings saved": "Настройки группы сохранены", + "Group short description": "Краткое описание группы", + "Group visibility": "Видимость группы", + "Group {displayName} created": "Группа {displayName} создана", + "Group {groupTitle} reported": "Жалоба на группу {groupTitle} отправлена", + "Groups": "Группы", + "Groups are not enabled on this instance.": "Группы не включены на этом узле.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Группы - это места для координации и подготовки, где вы занимаетесь организацией мероприятий и управлением своим сообществом.", + "Heading Level 1": "Заголовок 1-го уровня", + "Heading Level 2": "Заголовок 2-го уровня", + "Heading Level 3": "Заголовок 3-го уровня", + "Headline picture": "Заглавное изображение", + "Hide replies": "Скрыть ответы", + "Home": "Домашняя страница", + "Home to {number} users": "Дом для {number} пользователей", + "Homepage": "Домашняя страница", + "Hourly email summary": "Ежечасная сводка на электронную почту", + "I agree to the {instanceRules} and {termsOfService}": "Я принимаю {instanceRules} и {termsOfService}", + "I create an identity": "Я создаю идентификатор", + "I don't have a Mobilizon account": "У меня нет учётной записи Mobilizon", + "I have a Mobilizon account": "У меня есть учётная запись Mobilizon", + "I have an account on another Mobilizon instance.": "У меня есть учётная запись на другом узле Mobilizon.", + "I participate": "Я участвую", + "I want to allow people to participate without an account.": "Я хочу разрешить участие людям без учетной записи.", + "I want to approve every participation request": "Я хочу одобрять каждую заявку на участие", + "I've been mentionned in a comment under an event": "Меня упомянули в комментарии под мероприятием", + "I've been mentionned in a group discussion": "Меня упомянули в групповом обсуждении", + "ICS feed for events": "ICS лента для мероприятий", + "ICS/WebCal Feed": "ICS/WebCal лента", + "Identities": "Идентификаторы", + "Identity {displayName} created": "Идентификатор {displayName} создан", + "Identity {displayName} deleted": "Идентификатор {displayName} удалён", + "Identity {displayName} updated": "Идентификатор {displayName} обновлён", + "If allowed by organizer": "Если разрешено организатором", + "If an account with this email exists, we just sent another confirmation email to {email}": "Если учетная запись с этим адресом электронной почты существует, мы отправим еще одно письмо с подтверждением на адрес {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Если этот идентификатор является единственным администратором некоторых групп, то сперва нужно удалить эти группы, прежде чем вы сможете удалить этот идентификатор.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Если вас спрашивают ваш федеративный идентификатор, то он состоит из вашего имени пользователя и имени вашего узла. Например, федеративный идентификатор для вашего первого профиля:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Если вы выбрали одобрение участников вручную, Mobilizon отправит вам электронное письмо о новых заявках на участие. Ниже вы можете выбрать, как часто вы желаете получать эти уведомления.", + "If you want, you may send a message to the event organizer here.": "Здесь вы можете отправить сообщение организатору мероприятия.", + "Ignore": "Игнорировать", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "Приложение в этом контексте - это программное обеспечение, предоставленное командой Mobilizon или третьей стороной, которое используется для взаимодействия с вашим узлом.", + "In the past": "", + "Increase": "Увеличить", + "Instance": "Узел", + "Instance Long Description": "Подробное описание узла", + "Instance Name": "Имя узла", + "Instance Privacy Policy": "Политика конфиденциальности узла", + "Instance Privacy Policy Source": "Источник политики конфиденциальности узла", + "Instance Privacy Policy URL": "URL-адрес политики конфиденциальности узла", + "Instance Rules": "Правила узла", + "Instance Short Description": "Краткое описание узла", + "Instance Slogan": "Слоган узла", + "Instance Terms": "Условия использования узла", + "Instance Terms Source": "Условия использования этого узла", + "Instance Terms URL": "URL условий использования узла", + "Instance administrator": "Администратор узла", + "Instance configuration": "Настройки узла", + "Instance feeds": "Ленты узла", + "Instance languages": "Языки узла", + "Instance rules": "Правила узла", + "Instance settings": "Настройки узла", + "Instances": "Узлы", + "Instances following you": "Узлы, подписанные на вас", + "Instances you follow": "Узлы, на которые вы подписаны", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Интегрировать это мероприятие со сторонними сервисами и просмотреть его метаданные.", + "Interact": "Взаимодействовать", + "Interact with a remote content": "Взаимодействовать с удаленным контентом", + "Invite a new member": "Пригласить нового участника", + "Invite member": "Пригласить участника", + "Invited": "Приглашён", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Контент может быть недоступен на этом узле, потому что узел заблокировал профили или группы, которым этот контент принадлежит.", + "Italic": "Курсив", + "Jitsi Meet": "Jitsi Meet", + "Join {instance}, a Mobilizon instance": "Присоединиться к {instance}, узлу Mobilizon", + "Join group": "Вступить в группу", + "Join group {group}": "Вступить в группу {group}", + "Keep the entire conversation about a specific topic together on a single page.": "Храните всю беседу по определенной теме на одной странице.", + "Key words": "Ключевые слова", + "Language": "Язык", + "Last IP adress": "Последний IP-адрес", + "Last group created": "Последняя созданная группа", + "Last published event": "Последнее опубликованное мероприятие", + "Last published events": "Последние опубликованные мероприятия", + "Last sign-in": "Последний вход", + "Last week": "На прошлой неделе", + "Latest posts": "Последние записи", + "Learn more": "Узнать больше", + "Learn more about Mobilizon": "Узнать больше о Mobilizon", + "Learn more about {instance}": "Подробнее о {instance}", + "Leave": "Покинуть", + "Leave event": "Покинуть мероприятие", + "Leave group": "", + "Leaving event \"{title}\"": "Покинуть мероприятие \"{title}\"", + "Legal": "Правовая информация", + "Let's define a few settings": "Сделаем некоторые настройки", + "License": "Лицензия", + "Limited number of places": "Ограниченное количество мест", + "List title": "Заголовок списка", + "Live": "Живой", + "Load more": "Загрузить больше", + "Load more activities": "Загрузить больше действий", + "Loading comments…": "Загрузка комментариев…", + "Local": "Местный", + "Local time ({timezone})": "Местное время ({timezone})", + "Locality": "Местонахождение", + "Location": "Местонахождение", + "Log in": "Вход в систему", + "Log out": "Выйти", + "Login": "Войти", + "Login on Mobilizon!": "Авторизуйтесь на Mobilizon!", + "Login on {instance}": "Войдите на узел {instance}", + "Login status": "Статус входа", + "Main languages you/your moderators speak": "Основные языки, на которых говорите вы/ваши модераторы", + "Manage participations": "Управление участниками", + "Manually approve new followers": "Одобрять новых подписчиков вручную", + "Manually invite new members": "Пригласите новых участников вручную", + "Mark as resolved": "Отметить как решённое", + "Member": "Участник", + "Members": "Участники", + "Members-only post": "Пост только для участников", + "Mentions": "Упоминания", + "Message": "Сообщение", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon - это федеративная сеть. Вы можете взаимодействовать с этим мероприятием с другого сервера.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon - это федеративное программное обеспечение. Это означает, что в зависимости от настроек федерализации администратором, вы можете взаимодействовать с контентом на других узлах, например присоединяться к группам или мероприятиям, созданным в другом месте.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon - это инструмент, который поможет вам находить, создавать и организовывать мероприятия.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon - это не огромная платформа, а множество взаимосвязанных узлов Mobilizon.", + "Mobilizon software": "Программное обеспечение Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon использует разные профили для разных видов деятельности. Вы можете создать столько профилей, сколько захотите.", + "Mobilizon version": "Версия Mobilizon", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon отправит вам электронное письмо, если в мероприятиях, в которых вы участвуете, произошли важные изменения: дата и время, адрес, подтверждение или отмена и т.д.", + "Moderate new members": "", + "Moderated comments (shown after approval)": "Модерируемые комментарии (будут видны после одобрения)", + "Moderation": "Модерирование", + "Moderation log": "Журнал модерирования", + "Moderation logs": "Журналы модерации", + "Moderator": "Модератор", + "Move": "Переместить", + "Move \"{resourceName}\"": "Переместить \"{resourceName}\"", + "Move resource to the root folder": "Переместить ресурс в корневую папку", + "Move resource to {folder}": "Переместить ресурс в {folder}", + "My account": "Моя учётная запись", + "My events": "Мои мероприятия", + "My groups": "Мои группы", + "My identities": "Мои идентификаторы", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "ВНИМАНИЕ! Условия по умолчанию не были проверены юристом и, вероятно, не обеспечивают полную правовую защиту во всех ситуациях для администратора узла, использующего их. Они также не подходит для каждого государства и правовой системы. Если вы не уверены, проконсультируйтесь с юристом.", + "Name": "Имя", + "Navigated to {pageTitle}": "Перейти на {pageTitle}", + "New discussion": "Новое обсуждение", + "New email": "Новый адрес электронной почты", + "New folder": "Новая папка", + "New link": "Новая ссылка", + "New members": "Новые участники", + "New note": "Новая заметка", + "New password": "Новый пароль", + "New post": "Новая публикация", + "New profile": "Новый профиль", + "Next": "Следующий", + "Next month": "В следующем месяце", + "Next page": "Следующая страница", + "Next week": "На следующей неделе", + "No address defined": "Адрес не указан", + "No closed reports yet": "Пока нет закрытых отчётов", + "No comment": "Нет комментариев", + "No comments yet": "Пока нет комментариев", + "No discussions yet": "Пока нет обсуждений", + "No end date": "Без даты окончания", + "No events found": "Мероприятий не найдено", + "No follower matches the filters": "Ни один подписчик не соответствует критериям", + "No group found": "Группа не найдена", + "No group matches the filters": "Ни одна группа не соответствует фильтрам", + "No group member found": "", + "No groups found": "Группы не найдены", + "No information": "Нет информации", + "No instance follows your instance yet.": "Ни один узел еще не подписан на ваш узел.", + "No instance to approve|Approve instance|Approve {number} instances": "Нет узлов для одобрения | Одобрить узел | Одобрить {number} узлов", + "No instance to reject|Reject instance|Reject {number} instances": "Нет узлов для отклонения | Отклонить узел | Отклонить {number} узлов", + "No instance to remove|Remove instance|Remove {number} instances": "Нет узлов для удаления | Удалить узел | Удалить {number} узлов", + "No languages found": "Язык не найден", + "No member matches the filters": "Ни один участник не соответствует критериям", + "No members found": "Участники не найдены", + "No memberships found": "Участники не найдены", + "No message": "Нет сообщений", + "No moderation logs yet": "Журналов модерования пока нет", + "No more activity to display.": "Больше нет действия для отображения.", + "No one is participating|One person participating|{going} people participating": "Никто не участвует|Один человек участвует|{going} человек участвуют", + "No open reports yet": "Пока нет открытых отчётов", + "No organized events found": "Организованных мероприятий не найдено", + "No organized events listed": "В списке нет организованных мероприятий", + "No participant matches the filters": "Ни один участник не соответствует критериям", + "No participant to approve|Approve participant|Approve {number} participants": "Нет участников для одобрения | Принять участника | Принять {number} участников", + "No participant to reject|Reject participant|Reject {number} participants": "Нет участников для отклонения | Отклонить участника | Отклонить {number} участников", + "No participations listed": "Не указано ни одного участия", + "No posts found": "Публикаций не найдено", + "No posts yet": "Публикаций пока нет", + "No profile matches the filters": "Ни один профиль не соответствует критериям", + "No public upcoming events": "Нет предстоящих публичных мероприятий", + "No resolved reports yet": "Решённых отчётов пока нет", + "No resources in this folder": "В этой папке нет ресурсов", + "No resources selected": "Ресурсы не выбраны|Выбран один ресурс|Выбрано {count} ресурсов", + "No resources yet": "Ресурсов пока нет", + "No results for \"{queryText}\"": "Нет результатов по запросу \"{queryText}\"", + "No results for {search}": "Нет результатов по запросу {search}", + "No rules defined yet.": "Правила еще не определены.", + "None": "Никто", + "Not accessible with a wheelchair": "Не доступно для инвалидов-колясочников", + "Not approved": "Не одобрено", + "Not confirmed": "Не подтверждено", + "Notes": "Примечания", + "Notification before the event": "Уведомление перед мероприятием", + "Notification on the day of the event": "Уведомление в день мероприятия", + "Notification settings": "Настройки уведомлений", + "Notifications": "Уведомления", + "Notifications for manually approved participations to an event": "Уведомления об участиях в мероприятиях, одобренных вручную", + "Notify participants": "Уведомить участников", + "Now, create your first profile:": "Теперь создайте свой первый профиль:", + "Number of places": "Количество мест", + "OK": "OK", + "Old password": "Прежний пароль", + "On {date}": "{date}", + "On {date} ending at {endTime}": "{date}, заканчивается в {endTime}", + "On {date} from {startTime} to {endTime}": "{date} c {startTime} до {endTime}", + "On {date} starting at {startTime}": "{date}, начало в {startTime}", + "On {instance} and other federated instances": "В {instance} и других федеративных узлах", + "Online": "", + "Online ticketing": "Продажа билетов онлайн", + "Only accessible through link": "Доступно только по ссылке", + "Only accessible through link (private)": "Доступно только по ссылке (приватно)", + "Only accessible to members of the group": "Доступно только участникам группы", + "Only alphanumeric lowercased characters and underscores are supported.": "Допустимы только буквенно-цифровые символы нижнего регистра и подчеркивания.", + "Only group members can access discussions": "Только участники группы имеют доступ к обсуждениям", + "Only group moderators can create, edit and delete events.": "Только модераторы группы могут создавать, редактировать и удалять мероприятия.", + "Only group moderators can create, edit and delete posts.": "Только модераторы группы могут создавать, редактировать и удалять публикации.", + "Only registered users may fetch remote events from their URL.": "", + "Open": "Открыто", + "Open a topic on our forum": "Откройте тему на нашем форуме", + "Open an issue on our bug tracker (advanced users)": "Сообщить о проблеме в нашем багтрекере (для опытных пользователей)", + "Opened reports": "Открытые отчёты", + "Or": "Или", + "Ordered list": "Нумерованный список", + "Organized": "Организованно", + "Organized by": "Организатор", + "Organized by {name}": "Организатор: {name}", + "Organizer": "Организатор", + "Organizer notifications": "Уведомления организатора", + "Organizers": "Организаторы", + "Other": "Другой", + "Other actions": "Другие действия", + "Other notification options:": "Другие настройки уведомлений:", + "Other software may also support this.": "Другое программное обеспечение также может поддерживать это.", + "Otherwise this identity will just be removed from the group administrators.": "В противном случае этот идентификатор будет удалён у администраторов группы.", + "Page": "Страница", + "Page limited to my group (asks for auth)": "Страница предназначена только для моей группы (требуется авторизация)", + "Page not found": "Страница не найдена", + "Parent folder": "Родительская папка", + "Partially accessible with a wheelchair": "Частично доступно для инвалидов-колясочников", + "Participant": "Участник", + "Participants": "Участники", + "Participate": "Принять участие", + "Participate using your email address": "Участвуйте, используя свой адрес электронной почты", + "Participation approval": "Разрешение на участие", + "Participation confirmation": "Подтверждение участия", + "Participation notifications": "Уведомления об участии", + "Participation requested!": "Вы попросили присоединиться!", + "Participation with account": "Участие под учётной записью", + "Participation without account": "Участие без учётной записи", + "Participations": "Участие", + "Password": "Пароль", + "Password (confirmation)": "Пароль (подтверждение)", + "Password reset": "Сброс пароля", + "Past events": "Прошедшие мероприятия", + "PeerTube live": "Стрим на PeerTube", + "PeerTube replay": "Воспроизведение на PeerTube", + "Pending": "В ожидании", + "Personal feeds": "Личные ленты", + "Pick": "Выбрать", + "Pick a profile or a group": "Выберите профиль или группу", + "Pick an identity": "Выберите идентификатор", + "Pick an instance": "Выберите узел", + "Please add as many details as possible to help identify the problem.": "Сообщите нам как можно больше подробностей, чтобы мы смогли идентифицировать проблему.", + "Please check your spam folder if you didn't receive the email.": "Если вы не получили письмо, проверьте папку со спамом.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Если вы считаете, что произошла ошибка, обратитесь к администратору этого узла.", + "Please do not use it in any real way.": "Пожалуйста, используйте это только для тестовых целей.", + "Please enter your password to confirm this action.": "Введите свой пароль, чтобы подтвердить это действие.", + "Please make sure the address is correct and that the page hasn't been moved.": "Убедитесь, что адрес правильный и страница не была перемещена.", + "Please read the {fullRules} published by {instance}'s administrators.": "Пожалуйста, прочтите {fullRules}, опубликованные администраторами {instance}.", + "Post": "Публикация", + "Post URL": "", + "Post a comment": "Оставить комментарий", + "Post a reply": "Ответить", + "Post body": "Содержимое публикации", + "Post {eventTitle} reported": "", + "Postal Code": "Почтовый индекс", + "Posts": "Публикации", + "Powered by Mobilizon": "На платформе Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "На основе {mobilizon}. © 2018 - {date} Участники Mobilizon - Создан благодаря финансовой поддержке {contributors}.", + "Preferences": "Персональные настройки", + "Previous": "Предыдущий", + "Previous month": "Предыдущий месяц", + "Previous page": "Предыдущая страница", + "Price sheet": "Прайс лист", + "Privacy": "Конфиденциальность", + "Privacy Policy": "Политика конфиденциальности", + "Privacy policy": "Политика конфиденциальности", + "Private event": "Приватное мероприятие", + "Private feeds": "Приватная лента", + "Profile": "Профиль", + "Profile feeds": "Ленты профиля", + "Profiles": "Профили", + "Profiles and federation": "Профили и федерализация", + "Promote": "Поднять", + "Public": "Публичный", + "Public RSS/Atom Feed": "Публичная RSS/Atom новостная лента", + "Public comment moderation": "Модерация публичных комментариев", + "Public event": "Публичное мероприятие", + "Public feeds": "Публичные ленты", + "Public iCal Feed": "Публичная iCal-лента", + "Public preview": "Публичный предварительный просмотр", + "Publication date": "Дата публикации", + "Publish": "Опубликовать", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "Опубликованные мероприятия с {comments} комментариями и {participations} подтвержденными участниками", + "Push": "Push", + "Quote": "Цитата", + "RSS/Atom Feed": "RSS/Atom новостная лента", + "Radius": "Радиус", + "Recap every week": "Подводить итоги каждую неделю", + "Receive one email for each activity": "Получать одно электронное письмо для каждого действия", + "Receive one email per request": "Получать электронное письмо на каждый запрос", + "Redirecting in progress…": "Выполняется перенаправление…", + "Redirecting to Mobilizon": "Перенаправление на Mobilizon", + "Redirecting to content…": "Перенаправление к содержимому…", + "Redo": "Повторить", + "Refresh profile": "Обновить профиль", + "Regenerate new links": "Восстановить новые ссылки", + "Region": "Область", + "Register": "Регистр", + "Register an account on {instanceName}!": "Зарегистрируйте аккаунт на {instanceName}!", + "Register on this instance": "Зарегистрируйтесь на этом узле", + "Registration is allowed, anyone can register.": "Регистрация разрешена, зарегистрироваться может любой желающий.", + "Registration is closed.": "Регистрация закрыта.", + "Registration is currently closed.": "Регистрация на данный момент закрыта.", + "Registrations": "Регистрация", + "Registrations are restricted by allowlisting.": "Регистрация ограничена белым списком.", + "Reject": "Отклонить", + "Reject member": "", + "Rejected": "Отклонено", + "Remember my participation in this browser": "Запомнить моё участие для этого браузера", + "Remove": "Удалить", + "Remove link": "Удалить ссылку", + "Rename": "Переименовать", + "Rename resource": "Переименовать ресурс", + "Reopen": "Открыть заново", + "Replay": "Воспроизвести", + "Reply": "Ответ", + "Report": "Жалоба", + "Report #{reportNumber}": "Отчёт #{reportNumber}", + "Report this comment": "Пожаловаться на этот комментарий", + "Report this event": "Пожаловаться на это мероприятие", + "Report this group": "Пожаловаться на эту группу", + "Report this post": "", + "Reported": "Уведомлено", + "Reported by": "Сообщил", + "Reported by someone on {domain}": "Об этом сообщил пользователь из {domain}", + "Reported by {reporter}": "Сообщил {reporter}", + "Reported group": "Жалоба на группу", + "Reported identity": "Идентификатор сообщившего", + "Reports": "Отчеты", + "Reports list": "Список отчётов", + "Request for participation confirmation sent": "Запрос на подтверждение участия отправлен", + "Resend confirmation email": "Отправить письмо с подтверждением ещё раз", + "Resent confirmation email": "Повторно отправить письмо с подтверждением", + "Reset": "Сбросить", + "Reset my password": "Сбросить пароль", + "Reset password": "Сброс пароля", + "Resolved": "Решено", + "Resource provided is not an URL": "Указанный ресурс не является URL-адресом", + "Resources": "Ресурсы", + "Restricted": "Ограниченный", + "Return to the group page": "Вернуться на страницу группы", + "Right now": "Прямо сейчас", + "Role": "Роль", + "Rules": "Правила", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL и его преемник TLS - это технологии шифрования для защиты передачи данных при использовании сервиса. Вы можете увидеть в браузере, что соединение зашифровано, если адрес начинается с {https}, а в адресной строке есть значок замка.", + "SSL/TLS": "SSL/TLS", + "Save": "Сохранить", + "Save draft": "Сохранить черновик", + "Schedule": "Расписание", + "Search": "Поиск", + "Search events, groups, etc.": "Искать мероприятия, группы и т. п.", + "Searching…": "Поиск…", + "Select a language": "Выберите язык", + "Select a radius": "Выберите радиус", + "Select a timezone": "Выберите часовой пояс", + "Select languages": "Выберите языки", + "Select the activities for which you wish to receive an email or a push notification.": "Выберите действия, для которых вы хотите получать электронные письма или push-уведомления.", + "Send": "", + "Send email": "Отправить электронное письмо", + "Send notification e-mails": "Отправлять уведомления по электронной почте", + "Send password reset": "Запрос на сброс пароля", + "Send the confirmation email again": "Отправьте письмо с подтверждением еще раз", + "Send the report": "Отправить отчёт", + "Set an URL to a page with your own privacy policy.": "Укажите URL-адрес страницы с вашей собственной политикой конфиденциальности.", + "Set an URL to a page with your own terms.": "Установите URL-адрес на страницу с вашими собственными условиями.", + "Settings": "Настройки", + "Share": "Поделиться", + "Share this event": "Поделиться этим мероприятием", + "Share this group": "Поделиться этой группой", + "Share this post": "", + "Short bio": "Коротко о себе", + "Show map": "Показать карту", + "Show me where I am": "Показать моё местоположение", + "Show remaining number of places": "Показать оставшееся количество мест", + "Show the time when the event begins": "Показать время начала мероприятия", + "Show the time when the event ends": "Показать время окончания мероприятия", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "Сурдоперевод", + "Sign in with": "Войти в систему с", + "Sign up": "Зарегистрироваться", + "Since you are a new member, private content can take a few minutes to appear.": "Поскольку вы новый участник, может потребоваться несколько минут, чтобы приватный контент стал видимым.", + "Skip to main content": "Перейти к основному содержанию", + "Social": "Социальный", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Некоторые термины, технические или иные, используемые в приведенном ниже тексте, могут охватывать трудные для понимания концепции. Мы подготовили глоссарий чтобы помочь вам лучше их освоить:", + "Starts on…": "Начало…", + "Status": "Статус", + "Street": "Улица", + "Submit": "Отправить", + "Subtitles": "Субтитры", + "Suspend": "Заблокировать", + "Suspend group": "Заблокировать группу", + "Suspended": "Приостановлен", + "Tag search": "Поиск по тегам", + "Task lists": "Списки задач", + "Technical details": "Технические подробности", + "Tentative": "Предварительный", + "Tentative: Will be confirmed later": "Предварительно: будет подтверждено позже", + "Terms": "Условия", + "Terms of service": "Условия обслуживания", + "Text": "Текст", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "URL-адрес видеоконференции Big Blue Button", + "The Google Meet video teleconference URL": "URL-адрес видеоконференции Google Meet", + "The Jitsi Meet video teleconference URL": "URL-адрес видеоконференции Jitsi Meet", + "The Microsoft Teams video teleconference URL": "URL-адрес видеоконференции Microsoft Teams", + "The URL of a pad where notes are being taken collaboratively": "URL-адрес блокнота с совместными заметками", + "The URL of a poll where the choice for the event date is happening": "URL-адрес опроса, в котором происходит выбор даты мероприятия", + "The URL where the event can be watched live": "URL-адрес, по которому мероприятие можно посмотреть в прямом эфире", + "The URL where the event live can be watched again after it has ended": "URL-адрес, по которому событие транслируется в прямом эфире, можно будет просмотреть снова после его завершения", + "The Zoom video teleconference URL": "URL-адрес видеоконференции Zoom", + "The account's email address was changed. Check your emails to verify it.": "Почтовый адрес аккаунта был изменён. Проверьте свою электронную почту, чтобы убедиться в этом.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Фактическое количество участников может отличаться, так как это мероприятие проводится на другом узле.", + "The content came from another server. Transfer an anonymous copy of the report?": "Контент пришел с другого сервера. Переслать анонимную копию отчета?", + "The draft event has been updated": "Черновик мероприятия обновлён", + "The event has a sign language interpreter": "На мероприятии есть сурдопереводчик", + "The event has been created as a draft": "Мероприятие было создано в виде черновика", + "The event has been published": "Мероприятие опубликовано", + "The event has been updated": "Мероприятие обновлено", + "The event has been updated and published": "Мероприятие обновлено и опубликовано", + "The event hasn't got a sign language interpreter": "На мероприятии нет сурдопреводчика", + "The event is fully online": "Мероприятие полностью в онлайне", + "The event live video contains subtitles": "Прямая трансляция мероприятия содержит субтитры", + "The event live video does not contain subtitles": "Прямая трансляция мероприятия не содержит субтитров", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Организатор мероприятия решил подтверждать участие вручную. Хотели бы вы добавить короткую заметку, объясняющую, почему вы хотите участвовать в этом мероприятии?", + "The event organizer didn't add any description.": "Организатор мероприятия не добавил описания.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Организатор мероприятия утверждает участие вручную. Поскольку вы выбрали участие без учётной записи, объясните, почему вы хотите участвовать в этом мероприятии.", + "The event title will be ellipsed.": "Название этого мероприятие сокращено троеточием.", + "The event will show as attributed to this group.": "Событие будет отображаться как связанное с этой группой.", + "The event will show as attributed to this profile.": "Мероприятие будет отображаться как связанное с этим профилем.", + "The event will show as attributed to your personal profile.": "Мероприятие будет отображаться как связанное с вашим личным профилем.", + "The event {event} was created by {profile}.": "Мероприятие {event} было создано пользователем {profile}.", + "The event {event} was deleted by {profile}.": "Мероприятие {event} было удалено пользователем {profile}.", + "The event {event} was updated by {profile}.": "Мероприятие {event} было обновлено пользователем {profile}.", + "The events you created are not shown here.": "Созданные вами мероприятия здесь не отображаются.", + "The geolocation prompt was denied.": "Запрос на геолокацию был отклонен.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "Теперь каждый может присоединиться к группе.", + "The group can now only be joined with an invite.": "Теперь к группе можно присоединиться только по приглашению.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Группа будет представлена в результатах поиска и может быть предложена в разделе «Обзор». На её странице будет отображаться только общедоступная информация.", + "The group's avatar was changed.": "Аватар группы был изменён.", + "The group's banner was changed.": "Баннер группы был изменён.", + "The group's physical address was changed.": "Физический адрес группы был изменён.", + "The group's short description was changed.": "Краткое описание группы было изменено.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "Администратор узла - это физическое или юридическое лицо, которое управляет данным узлом Mobilizon.", + "The member was approved": "", + "The member was removed from the group {group}": "Участник удалён из группы {group}", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "Новые участники смогут вступать в вашу группу только по приглашению администратора.", + "The organiser has chosen to close comments.": "Организатор решил отключить комментарии.", + "The page you're looking for doesn't exist.": "Страницы, которую вы ищете, не существует.", + "The password was successfully changed": "Пароль был успешно изменен", + "The post {post} was created by {profile}.": "Публикация {post} была создана пользователем {profile}.", + "The post {post} was deleted by {profile}.": "Публикация {post} была удалена пользователем {profile}.", + "The post {post} was updated by {profile}.": "Публикация {post} была обновлена пользователем {profile}.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Отчёт будет отправлен модераторам вашего узла. Вы можете объяснить причину своей жалобы ниже.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "Выбранное изображение слишком большое. Вы должны выбрать файл меньше, чем {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Технические подробности ошибки могут помочь разработчикам быстрее решить проблему. Пожалуйста, добавьте их в свой отзыв.", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Будет использоваться {default_privacy_policy}. Они будут переведены на язык пользователя.", + "The {default_terms} will be used. They will be translated in the user's language.": "Будут использоваться {default_terms}. Они будут переведены на язык пользователя.", + "There are {participants} participants.": "Имеется {participants} участников.", + "There is no activity yet. Start doing some things to see activity appear here.": "Пока нет действий. Действия появятся здесь, после того, как вы сделаете что-либо.", + "There will be no way to recover your data.": "Восстановить ваши данные будет невозможно.", + "There's no discussions yet": "Пока нет обсуждений", + "These events may interest you": "Эти мероприятия могут вас заинтересовать", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Эти ленты содержат данные о мероприятиях, участником или создателем которых является любой из ваших профилей. Вы должны держать их в секрете. Вы можете найти ленты для конкретного профиля на его странице с настройками.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Эти ленты содержат данные о мероприятиях, участником или создателем которых является данный профиль. Вы должны держать их в секрете. Вы можете найти ленты для всех ваших профилей в настройках уведомлений.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Этот узел Mobilizon и этот организатор мероприятия допускают анонимное участие, но требуют подтверждения по электронной почте.", + "This URL doesn't seem to be valid": "Этот URL-адрес кажется недействительным", + "This URL is not supported": "Этот URL не поддерживается", + "This event has been cancelled.": "Это мероприятие было отменено.", + "This event is accessible only through it's link. Be careful where you post this link.": "Это мероприятие доступно только по ссылке. Будьте осторожны, когда публикуете её.", + "This group doesn't have a description yet.": "У этой группы ещё нет описания.", + "This group is accessible only through it's link. Be careful where you post this link.": "Эта группа доступна только по её ссылке. Будьте осторожны, когда размещаете эту ссылку.", + "This group is invite-only": "Эта группа только для приглашённых", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "Этот идентификатор уникален для вашего профиля. Он даёт возможность другим найти вас.", + "This information is saved only on your computer. Click for details": "Эта информация сохраняется только на вашем компьютере. Нажмите, чтобы узнать подробности", + "This instance hasn't got push notifications enabled.": "На этом узле не включены push-уведомления.", + "This instance isn't opened to registrations, but you can register on other instances.": "Этот узел не позволяет регистрироваться, но вы можете зарегистрироваться на других.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Этот узел, {instanceName} ({domain}), содержит ваш профиль, поэтому запомните его имя.", + "This is a demonstration site to test Mobilizon.": "Это демонстрационная площадка для тестирования Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Подобно федеративному имени пользователя ({username}) для групп. Это дает возможность найти группу во всей сети и гарантирует ее уникальность.", + "This month": "В этом месяце", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Этот пост доступен только для участников. У вас есть доступ к нему для модерации только потому, что вы являетесь модератором узла.", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "Этот параметр используется для отображения веб-сайта и отправки вам электронных писем на соответствующем языке.", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Эта веб-сайт не модерируется, и любые введенные вами данные будут автоматически удаляться каждый день в 00:01 (время по Парижу).", + "This week": "На этой неделе", + "This weekend": "На эти выходные", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Это приведет к удалению / анонимизации всего контента (событий, комментариев, сообщений, участия…), созданного с помощью этого идентификатора.", + "Time in your timezone ({timezone})": "Время в вашем часовом поясе ({timezone})", + "Times in your timezone ({timezone})": "Время в вашем часовом поясе ({timezone})", + "Timezone": "Часовой пояс", + "Timezone detected as {timezone}.": "Часовой пояс определен как {timezone}.", + "Title": "Заголовок", + "To activate more notifications, head over to the notification settings.": "Перейдите в настройки уведомлений, чтобы включить дополнительные уведомления.", + "To confirm, type your event title \"{eventTitle}\"": "Для подтверждения введите название мероприятия \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "Для подтверждения введите имя пользователя \"{preferredUsername}\" идентификатора", + "To create and manage multiples identities from a same account": "Для создания и управления несколькими идентификаторами из одной учётной записи", + "To create and manage your events": "Для создания и управления вашими мероприятиями", + "To create or join an group and start organizing with other people": "Создавать группы и присоединяться к ним для объединения с другими людьми", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "Чтобы зарегистрироваться на мероприятие, выбрав один из ваших идентификаторов", + "Today": "Сегодня", + "Tomorrow": "Завтра", + "Tools": "Инструменты", + "Transfer to {outsideDomain}": "Перенос в {outsideDomain}", + "Triggered profile refreshment": "Запуск обновления профиля", + "Twitch live": "Стрим на Twitch", + "Twitch replay": "Воспроизведение на Twitch", + "Twitter account": "Аккаунт Twitter", + "Type": "Тип", + "Type or select a date…": "Введите или выберите дату…", + "URL": "URL-адрес", + "URL copied to clipboard": "URL скопирован в буфер обмена", + "Unable to copy to clipboard": "Невозможно скопировать в буфер обмена", + "Unable to create the group. One of the pictures may be too heavy.": "Группа не может быть создана. Одно из изображений, похоже, слишком большое.", + "Unable to create the profile. The avatar picture may be too heavy.": "Профиль не может быть создан. Аватарка, похоже, слишком большая..", + "Unable to detect timezone.": "Не удалось определить часовой пояс.", + "Unable to load event for participation. The error details are provided below:": "Не удалось загрузить мероприятие для участия. Подробная информация об ошибке представлена ниже:", + "Unable to save your participation in this browser.": "Невозможно сохранить статус вашего участия в этом браузере.", + "Unable to update the profile. The avatar picture may be too heavy.": "Профиль не может быть обновлен. Аватарка, похоже, слишком большая.", + "Underline": "Нижнее подчёркивание", + "Undo": "Отменить", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "К сожалению, ваша заявка на участие была отклонена организаторами.", + "Unknown": "Неизвестный", + "Unknown actor": "Неизвестный агент", + "Unknown error.": "Неизвестная ошибка.", + "Unknown value for the openness setting.": "Неизвестное значение ограничений доступа.", + "Unlogged participation": "Незарегистрированное участие", + "Unsaved changes": "Несохранённые изменения", + "Unsubscribe to browser push notifications": "Отказаться от подписки на push-уведомления браузера", + "Unsuspend": "Отменить приостановку", + "Upcoming": "Предстоящие", + "Upcoming events": "Предстоящие мероприятия", + "Upcoming events from your groups": "", + "Update": "Обновить", + "Update app": "Обновить приложение", + "Update discussion title": "Обновить заголовок обсуждения", + "Update event {name}": "Обновить мероприятие {name}", + "Update group": "Обновить группу", + "Update my event": "Обновить моё мероприятие", + "Update post": "Обновить пост", + "Updated": "Обновлено", + "Uploaded media size": "Размер загруженного медиафайла", + "Use my location": "Использовать моё местоположение", + "User": "Пользователь", + "User settings": "Настройки пользователя", + "Username": "Имя пользователя", + "Users": "Пользователи", + "Validating account": "Проверка учётной записи", + "Validating email": "Проверка электронной почты", + "Video Conference": "Видео-конференция", + "View a reply": "|Посмотреть один ответ|Посмотреть {totalReplies} ответов", + "View account on {hostname} (in a new window)": "Просмотреть аккаунт на {hostname} (в новом окне)", + "View all": "Посмотреть всё", + "View all events": "Посмотреть все мероприятия", + "View all posts": "Просмотреть все публикации", + "View event page": "Просмотреть страницу мероприятия", + "View everything": "Посмотреть всё", + "View full profile": "", + "View less": "Показать меньше", + "View more": "Показать больше", + "View page on {hostname} (in a new window)": "Просмотреть страницу на {hostname} (в новом окне)", + "Visibility was set to an unknown value.": "Видимость изменена на неизвестное значение.", + "Visibility was set to private.": "Видимость изменена на приватную.", + "Visibility was set to public.": "Видимость изменена на публичную.", + "Visible everywhere on the web": "Видно всем в Интернете", + "Visible everywhere on the web (public)": "Видно во всем Интернете (публично)", + "Waiting for organization team approval.": "Ожидает одобрения организаторами.", + "Warning": "Предупреждение", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Нам не удалось сохранить ваше участие в этом браузере. Не волнуйтесь, вы успешно подтвердили свое участие, мы просто не смогли сохранить его статус в этом браузере из-за технической проблемы.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Мы улучшаем это программное обеспечение благодаря вашим отзывам. У вас есть два способа сообщить нам об этой проблеме (оба, увы, требуют создания учетной записи пользователя):", + "We just sent an email to {email}": "Мы отправили электронное письмо на адрес {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Мы используем настройки вашего часового пояса, чтобы вы своевременно получали уведомления о мероприятиях.", + "We will redirect you to your instance in order to interact with this event": "Вы будете перенаправлены на свой узел, чтобы иметь возможность взаимодействовать с этим событием", + "We will redirect you to your instance in order to interact with this group": "Мы перенаправим вас на ваш узел, чтобы вы могли взаимодействовать с этой группой", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Мы отправим вам электронное письмо за час до начала мероприятия, чтобы вы не забыли про него.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Мы используем настройки вашего часового пояса, чтобы утром отправить вам напоминание о мероприятии.", + "Website": "Веб-сайт", + "Website / URL": "Веб-сайт / URL", + "Weekly email summary": "Еженедельная сводка по электронной почте", + "Welcome back {username}!": "С возвращением, {username}!", + "Welcome back!": "С возвращением!", + "Welcome to Mobilizon, {username}!": "Добро пожаловать в Mobilizon, {username}!", + "What can I do to help?": "Чем я могу помочь?", + "Wheelchair accessibility": "Доступность для инвалидов-колясочников", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Когда модератор группы создаёт событие и назначает его группе, оно появляется здесь.", + "When the event is private, you'll need to share the link around.": "Если мероприятие является частным, вам нужно будет поделиться ссылкой.", + "When the post is private, you'll need to share the link around.": "Если публикация является частной, вам нужно будет поделиться ссылкой.", + "Whether the event is accessible with a wheelchair": "Если мероприятие доступно для участников в инвалидных колясках", + "Whether the event is interpreted in sign language": "Сопровождается ли мероприятие сурдопереводом", + "Whether the event live video is subtitled": "Есть ли субтитры для прямой трансляции мероприятия", + "Who can post a comment?": "Кто может оставлять комментарии?", + "Who can view this event and participate": "Кто может просматривать и участвовать в мероприятии", + "Who can view this post": "Кто может видеть этот пост", + "Who published {number} events": "Которые опубликовали {number} мероприятий", + "Why create an account?": "Почему стоит создать учётную запись?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Это позволит вам просматривать и управлять своим статусом участия на странице мероприятия при использовании этого устройства. Снимите флажок, если вы используете общедоступное устройство.", + "Within {number} kilometers of {place}": "|В пределах километра от {place}|В пределах {number} километров от {place}", + "Yesterday": "Вчера", + "You accepted the invitation to join the group.": "Вы приняли приглашение присоединиться к группе.", + "You added the member {member}.": "Вы добавили участника {member}.", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "Вы отправили {discussion} обсуждение в архив.", + "You are not an administrator for this group.": "Вы не являетесь администратором этой группы.", + "You are not part of any group.": "Вы не состоите ни в одной группе.", + "You are offline": "Вы не в сети", + "You are participating in this event anonymously": "Вы участвуете в этом мероприятии анонимно", + "You are participating in this event anonymously but didn't confirm participation": "Вы участвуете в этом мероприятии анонимно, но не подтвердили свое участие", + "You can add tags by hitting the Enter key or by adding a comma": "Вы можете добавлять тэги, нажимая клавишу Enter или разделяя слова запятой", + "You can pick your timezone into your preferences.": "Вы можете изменить часовой пояс по своему усмотрению.", + "You can try another search term or drag and drop the marker on the map": "Вы можете попробовать другие критерии поиска или перетащить маркер на карту", + "You can't change your password because you are registered through {provider}.": "Вы не можете изменить свой пароль, потому что вы зарегистрированы через {provider}.", + "You can't use push notifications in this browser.": "В этом браузере нельзя использовать push-уведомления.", + "You changed your email or password": "Вы изменили свой адрес электронной почты или пароль", + "You created the discussion {discussion}.": "Вы создали обсуждение {discussion}.", + "You created the event {event}.": "Вы создали мероприятие {event}.", + "You created the folder {resource}.": "Вы создали папку {resource}.", + "You created the group {group}.": "Вы создали группу {group}.", + "You created the post {post}.": "Вы создали публикацию {post}.", + "You created the resource {resource}.": "Вы создали ресурс {resource}.", + "You deleted the discussion {discussion}.": "Вы удалили обсуждение {discussion}.", + "You deleted the event {event}.": "Вы удалили мероприятие {event}.", + "You deleted the folder {resource}.": "Вы удалили папку {resource}.", + "You deleted the post {post}.": "Вы удалили публикацию {post}.", + "You deleted the resource {resource}.": "Вы удалили ресурс {resource}.", + "You demoted the member {member} to an unknown role.": "Вы понизили статус {member} до неизвестной роли.", + "You demoted {member} to moderator.": "Вы понизили статус {member} до модератора.", + "You demoted {member} to simple member.": "Вы понизили статус {member} до обычного участника.", + "You didn't create or join any event yet.": "Вы ещё не создали и не участвовали ни в одном мероприятии.", + "You don't follow any instances yet.": "Вы пока не подписаны ни на один узел.", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "Вы исключили участника {member}.", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "Вы были приглашены пользователем {invitedBy} в следующую группу:", + "You have been removed from this group's members.": "Вы были удалены из участников этой группы.", + "You have cancelled your participation": "Вы отказались от участия", + "You have one event in {days} days.": "У вас нет мероприятий в течение {days} дней | У вас одно мероприятие в течении {days} дней | У вас {count} мероприятий в течении {days} дней", + "You have one event today.": "У вас сегодня нет мероприятий | У вас сегодня одно мероприятие. | У вас сегодня {count} мероприятий", + "You have one event tomorrow.": "Завтра у вас нет мероприятий | Завтра у вас одно мероприятие. | Завтра у вас {count} мероприятий", + "You invited {member}.": "Вы пригласили {member}.", + "You may clear all participation information for this device with the buttons below.": "Вы можете удалить всю информацию об участии для этого устройства с помощью кнопок ниже.", + "You may now close this window, or {return_to_event}.": "Теперь вы можете закрыть это окно, или {return_to_event}.", + "You may show some members as contacts.": "Вы можете просматривать некоторых участников как контакты.", + "You moved the folder {resource} into {new_path}.": "Вы переместили папку {resource} в {new_path}.", + "You moved the folder {resource} to the root folder.": "Вы переместили папку {resource} в корневую папку.", + "You moved the resource {resource} into {new_path}.": "Вы переместили ресурс {resource} в {new_path}.", + "You moved the resource {resource} to the root folder.": "Вы переместили ресурс {resource} в корневую папку.", + "You need to login.": "Вы должны авторизоваться.", + "You posted a comment on the event {event}.": "Вы оставили комментарий к мероприятию {event}.", + "You promoted the member {member} to an unknown role.": "Вы повысили статус {member} до неизвестной роли.", + "You promoted {member} to administrator.": "Вы повысили статус {member} до администратора.", + "You promoted {member} to moderator.": "Вы повысили статус {member} до модератора.", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "Вы переименовали обсуждение с {old_discussion} в {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Вы переименовали папку с {old_resource_title} в {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Вы переименовали ресурс с {old_resource_title} в {resource}.", + "You replied to a comment on the event {event}.": "Вы ответили на комментарий к мероприятию {event}.", + "You replied to the discussion {discussion}.": "Вы ответили на обсуждение {discussion}.", + "You requested to join the group.": "Вы попросили присоединиться к группе.", + "You updated the event {event}.": "Вы обновили мероприятие {event}.", + "You updated the group {group}.": "Вы обновили группу {group}.", + "You updated the member {member}.": "Вы обновили участника {member}.", + "You updated the post {post}.": "Вы обновили публикацию {post}.", + "You were demoted to an unknown role by {profile}.": "{profile} понизил ваш статус до неизвестной роли.", + "You were demoted to moderator by {profile}.": "{profile} понизил ваш статус до модератора.", + "You were demoted to simple member by {profile}.": "{profile} понизил ваш статус до обычного участника.", + "You were promoted to administrator by {profile}.": "{profile} повысил ваш статус до администратора.", + "You were promoted to an unknown role by {profile}.": "{profile} повысил ваш статус до неизвестной роли.", + "You were promoted to moderator by {profile}.": "{profile} повысил ваш статус до модератора.", + "You will be able to add an avatar and set other options in your account settings.": "Вы сможете добавить аватар и изменить другие параметры в настройках своей учётной записи.", + "You will be redirected to the original instance": "Вы будете перенаправлены на исходный узел", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "Вы хотите принять участие в следующем мероприятии", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Каждый понедельник вы будете получать сводку о предстоящих мероприятиях, в которых вы принимаете участие.", + "You'll need to change the URLs where there were previously entered.": "Вы должны изменить URL-адреса там, где они были введены ранее.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Вы должны предоставить URL-адрес группы, чтобы другие могли получить доступ к её профилю. Группу нельзя будет найти ни в поиске Mobilizon, ни в обычных поисковых системах.", + "You'll receive a confirmation email.": "Вы получите электронное письмо с подтверждением.", + "YouTube live": "Стрим на YouTube", + "YouTube replay": "Воспроизведение на YouTube", + "Your account has been successfully deleted": "Ваша учетная запись была успешно удалена", + "Your account has been validated": "Ваша учетная запись была подтверждена", + "Your account is being validated": "Ваша учетная запись проверяется", + "Your account is nearly ready, {username}": "Ваш аккаунт почти готов, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Ваш город, регион или область будут использоваться только для рекомендации вам ближайших мероприятий. Радиус мероприятия считается относительно административного центра области.", + "Your current email is {email}. You use it to log in.": "Ваш адрес электронной почты {email}. Вы используете его для входа в систему.", + "Your email": "Ваш адрес электронной почты", + "Your email address was automatically set based on your {provider} account.": "Ваш адрес электронной почты был автоматически установлен на основе вашей учётной записи {provider}.", + "Your email has been changed": "Ваш адрес электронной почты был изменен", + "Your email is being changed": "Ваш адрес электронной почты меняется", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Ваш адрес электронной почты будет использоваться только для подтверждения того, что вы настоящий человек, и для отправки вам возможных новостей об этом мероприятии. Он НЕ будет передан другим узлам или организатору мероприятия.", + "Your federated identity": "Ваш федеративный идентификатор", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "Ваше участие подтверждено", + "Your participation has been rejected": "Ваше участие было отклонено", + "Your participation has been requested": "Вы попросили принять участие", + "Your participation request has been validated": "Ваше участие подтверждено", + "Your participation request is being validated": "Ваше участие проверяется", + "Your participation status has been changed": "Ваш статус участия был изменен", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Ваш статус участия сохраняется только на этом устройстве и будет удалён через месяц после завершения мероприятия.", + "Your participation still has to be approved by the organisers.": "Ваша заявка всё ещё ожидает одобрения организаторов.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Ваше участие будет подтверждено, когда вы перейдете по ссылке в электронном письме, а также после того, как организатор вручную одобрит ваше участие.", + "Your participation will be validated once you click the confirmation link into the email.": "Ваше участие будет подтверждено, как только вы перейдете по ссылке в электронном письме.", + "Your position was not available.": "Ваше местоположение не доступно.", + "Your profile will be shown as contact.": "Ваш профиль будет отображаться как контакт.", + "Your timezone is currently set to {timezone}.": "Ваш часовой пояс в настоящее время установлен на {timezone}.", + "Your timezone was detected as {timezone}.": "Ваш часовой пояс был определен как {timezone}.", + "Your timezone {timezone} isn't supported.": "Ваш часовой пояс {timezone} не поддерживается.", + "Your upcoming events": "Ваши предстоящие мероприятия", + "Zoom": "Zoom", + "Zoom in": "Увеличить", + "Zoom out": "Уменьшить", + "[This comment has been deleted by it's author]": "[Этот комментарий был удален автором]", + "[This comment has been deleted]": "[Этот комментарий был удалён]", + "[deleted]": "[удалено]", + "a non-existent report": "несуществующий отчет", + "access to the group's private content as well": "", + "and {number} groups": "и {number} групп", + "any distance": "любое расстояние", + "as {identity}": "как {identity}", + "contact uninformed": "контакт не уведомлен", + "create a group": "создать группу", + "create an event": "создать мероприятие", + "default Mobilizon privacy policy": "Политика конфиденциальности Mobilizon по умолчанию", + "default Mobilizon terms": "условия использования Mobilizon по умолчанию", + "e.g. 10 Rue Jangot": "например: Садовая 10", + "e.g. Accessibility, Twitch, PeerTube": "например Доступность, Twitch, PeerTube", + "enable the feature": "включить функцию", + "explore the events": "просмотреть мероприятия", + "explore the groups": "посмотреть группы", + "full rules": "полные правила", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/секретный-токен", + "iCal Feed": "iCal лента", + "instance rules": "правила узла", + "more than 1360 contributors": "более 1360 участников", + "profile@instance": "профиль@узел", + "report #{report_number}": "отчёт #{report_number}", + "return to the event's page": "вернуться на страницу мероприятия", + "terms of service": "условия обслуживания", + "with another identity…": "с другим идентификатором…", + "your notification settings": "", + "{'@'}{username}": "{'@'}{username}", + "{approved} / {total} seats": "{approved} / {total} мест", + "{available}/{capacity} available places": "Мест нет|{available}/{capacity} свободных мест", + "{count} km": "{count} км", + "{count} members": "Нет участников|Один участник|{count} участников", + "{count} members or followers": "", + "{count} participants": "Нет участников | Один участник | {count} участников", + "{count} requests waiting": "{count} ожидающих рассмотрения заявок", + "{folder} - Resources": "{folder} - Ресурсы", + "{group} activity timeline": "История активности {group}", + "{group} events": "{group} мероприятия", + "{group} posts": "{group} публикации", + "{group}'s events": "Мероприятия {group}", + "{group}'s todolists": "Список задач {group}", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} - это узел использующий ПО {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} — это узел {mobilizon_link}, бесплатного программного обеспечения, созданного при участии сообщества.", + "{member} accepted the invitation to join the group.": "{member} принял приглашение присоединиться к группе.", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "{member} отклонил приглашение присоединиться к группе.", + "{member} requested to join the group.": "{member} попросил присоединиться к группе.", + "{member} was invited by {profile}.": "{member} был приглашен пользователем {profile}.", + "{moderator} added a note on {report}": "{moderator} добавил примечание к {report}", + "{moderator} closed {report}": "{moderator} закрыл {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} удалил мероприятие с названием \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} удалил комментарий от {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} удалил комментарий от {author} под мероприятием {event}", + "{moderator} has deleted user {user}": "{moderator} удалил пользователя {user}", + "{moderator} has done an unknown action": "{moderator} совершил неизвестное действие", + "{moderator} has unsuspended group {profile}": "{moderator} разблокировал группу {profile}", + "{moderator} has unsuspended profile {profile}": "{modeator} снял блокировку профиля {profile}", + "{moderator} marked {report} as resolved": "{moderator} пометил {report} как решённый", + "{moderator} reopened {report}": "{moderator} повторно открыл {report}", + "{moderator} suspended group {profile}": "{moderator} заблокировал группу {profile}", + "{moderator} suspended profile {profile}": "{moderator} заблокировал профиль {profile}", + "{nb} km": "{nb} км", + "{number} members": "{number} участников", + "{number} memberships": "{number} участников", + "{number} organized events": "Нет организованных мероприятий|Организованно одно мероприятие|Организованно {number} мероприятий", + "{number} participations": "Нет участников|Один участник|{number} участников", + "{number} posts": "Нет публикаций|Одна публикация|{number} публикаций", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "{old_group_name} переименована в {group}.", + "{profile} (by default)": "{profile} (по умолчанию)", + "{profile} added the member {member}.": "{profile} добавил участника {member}.", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "{profile} отправил обсуждение {discussion} в архив.", + "{profile} created the discussion {discussion}.": "{profile} создал обсуждение {discussion}.", + "{profile} created the folder {resource}.": "{profile} создал папку {resource}.", + "{profile} created the group {group}.": "{profile} создал группу {group}.", + "{profile} created the resource {resource}.": "{profile} создал ресурс {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} удалил обсуждение {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} удалил папку {resource}.", + "{profile} deleted the resource {resource}.": "{profile} удалил ресурс {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} понизил статус {member} до неизвестной роли.", + "{profile} demoted {member} to moderator.": "{profile} понизил статус {member} до модератора.", + "{profile} demoted {member} to simple member.": "{profile} понизил статус {member} до обычного участника.", + "{profile} excluded member {member}.": "{profile} исключил участника {member}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} переместил папку {resource} в {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} переместил папку {resource} в корневую папку.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} переместил ресурс {resource} в {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} переместил ресурс {resource} в корневую папку.", + "{profile} posted a comment on the event {event}.": "{profile} оставил комментарий к мероприятию {event}.", + "{profile} promoted {member} to administrator.": "{profile} повысил статус {member} до администратора.", + "{profile} promoted {member} to an unknown role.": "{profile} повысил статус {member} до неизвестной роли.", + "{profile} promoted {member} to moderator.": "{profile} повысил статус {member} до модератора.", + "{profile} quit the group.": "{profile} покинул группу.", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} переименовал обсуждение с {old_discussion} в {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} переименовал папку с {old_resource_title} в {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} переименовал ресурс с {old_resource_title} в {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} ответил на комментарий к мероприятию {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} ответил на обсуждение {обсуждение}.", + "{profile} updated the group {group}.": "{profile} обновил группу {group}.", + "{profile} updated the member {member}.": "{profile} обновил участника {member}.", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} незавершенных задач)", + "{username} was invited to {group}": "{username} был приглашён в {group}", + "© The OpenStreetMap Contributors": "© Авторы OpenStreetMap" +}); diff --git a/res/locale/sl.js b/res/locale/sl.js new file mode 100644 index 0000000..c7cf003 --- /dev/null +++ b/res/locale/sl.js @@ -0,0 +1,1257 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Maskirano)", + "(this folder)": "(ta mapa)", + "(this link)": "(ta povezava)", + "+ Add a resource": "+ Dodaj vir", + "+ Create a post": "", + "+ Create an event": "+ Ustvari dogodek", + "+ Start a discussion": "+ Začni razpravo", + "{contact} will be displayed as contact.": "{contact} bo prikazan kot stik.|{contact} bodo prikazani kot stiki.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "Prošnja za sledenje je bila sprejeta. @{username} vam sedaj sledi", + "@{username}'s follow request was rejected": "Prošnja za sledenje od uporabnika @{username} je bila zavrnjena", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Piškotek je majhna datoteka, ki vsebuje informacije, ki se pošljejo v vaš računalnik, ko obiščete spletno mesto. Ko znova obiščete spletno mesto, mu piškotek omogoča, da prepozna vaš brskalnik. Piškotki lahko shranjujejo uporabniške nastavitve in druge informacije. Vaš brskalnik lahko nastavite tako, da zavrne vse piškotke, vendar lahko nekatere funkcije ali storitve spletnega mesta delujejo le delno. Lokalni pomnilnik deluje na enak način, vendar omogoča shranjevanje več podatkov.", + "A discussion has been created or updated": "", + "A federated software": "Federirana programska oprema", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Prostor za kodeks ravnanja, pravila ali smernice. Uporabite lahko oznake HTML.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Prostor, kjer lahko razložite, kdo ste, in stvari, ki ločujejo vaše vozlišče od drugih. Uporabite lahko oznake HTML.", + "A place to publish something to the whole world, your community or just your group members.": "Prostor za objavo nečesa širnemu svetu, skupnosti ali samo članom skupine.", + "A place to store links to documents or resources of any type.": "Prostor za shranjevanje povezav do dokumentov ali virov katere koli vrste.", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "Praktično orodje", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Kratek slogan za domačo stran vašega vozlišča. Privzeto je »Zberi ⋅ Organiziraj ⋅ Mobiliziraj«", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Uporabniku prijazno, emancipatorno in etično orodje za zbiranje, organiziranje in mobilizacijo.", + "A validation email was sent to {email}": "E-pošta za potrditev je bla poslana na {email}", + "API": "API", + "Abandon editing": "Opusti urejanje", + "About": "O Mobilizonu", + "About Mobilizon": "O Mobilizon-u", + "About anonymous participation": "O anonimni udeležbi", + "About instance": "", + "About this event": "O tem dogodku", + "About this instance": "O tem vozlišču", + "About {instance}": "O {instance}", + "Accept": "Sprejmi", + "Accepted": "Sprejet", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "Dostopno samo članom", + "Accessible through link": "Dostopno prek povezave", + "Account": "Račun", + "Account settings": "", + "Actions": "Dejanja", + "Activate browser push notifications": "", + "Activated": "Dejavno", + "Active": "Aktivno", + "Activity": "Dejavnost", + "Actor": "Igralec", + "Add": "Dodaj", + "Add / Remove…": "Dodaj / odstrani …", + "Add a contact": "Dodaj stik", + "Add a new post": "Dodaj novo objavo", + "Add a note": "Dodaj opombo", + "Add a todo": "Dodaj opravilo", + "Add an address": "Dodaj naslov", + "Add an instance": "Dodaj vozlišče", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "Dodaj oznake", + "Add to my calendar": "Dodaj v moj koledar", + "Additional comments": "Dodatni komentarji", + "Admin": "Skrbnik", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "Nastavitve skrbnika so bile uspešno shranjene.", + "Administration": "Skrbništvo", + "Administrator": "Skrbnik", + "All activities": "Vse aktivnosti", + "All good, let's continue!": "Vse je dobro, nadaljujmo!", + "All the places have already been taken": "Vsa mesta so že zasedena", + "Allow all comments from users with accounts": "Dovoli vse komentarje prijavljenih uporabnikov", + "Allow registrations": "Dovoli registracije", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "Prišlo je do napake. Se opravičujemo. Stran lahko poskusite ponovno naložiti.", + "An ethical alternative": "Etična alternativa", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Vozlišče je nameščena različica programske opreme Mobilizon, ki se izvaja na strežniku. Vozlišče lahko zažene vsak, ki uporablja {mobilizon_software} ali druge federirane aplikacije, imenovane tudi \"fediverse\". Ime tega vozlišča je {instance_name}. Mobilizon je federirano omrežje več vozlišč (tako kot e-poštni strežniki), uporabniki, registrirani na različnih vozliščih, lahko komunicirajo, čeprav niso registrirani na istem vozlišču.", + "And {number} comments": "In {number} komentarjev", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "Anonimni udeleženec", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Anonimni udeleženci bodo morali svojo udeležbo potrditi preko e-pošte.", + "Anonymous participations": "Anonimni udeleženci", + "Any day": "Katerikoli dan", + "Any type": "", + "Anyone can join freely": "Vsak se lahko prosto pridruži", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "Vsakdo, ki želi postati član vaše skupine, bo to lahko storil na vaši strani skupine.", + "Application": "Program", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Ali ste prepričani, da želite izbrisati celoten račun? Izgubili boste vse. Identitete, nastavitve, ustvarjeni dogodki, sporočila in udeležbe bodo za vedno izbrisane.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Ali ste prepričani, da želite popolnoma izbrisati to skupino? Vsi člani - vključno z oddaljenimi - bodo obveščeni in odstranjeni iz skupine, vsi podatki skupine (dogodki, objave, razprave, zapiski…) pa bodo nepovratno uničeni.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Ali ste prepričani, da želite izbrisati ta komentar? Tega dejanja ni mogoče razveljaviti.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Ali ste prepričani, da želite izbrisati ta dogodek? Tega dejanja ni mogoče razveljaviti. Morda boste želeli sodelovati v razpravi z ustvarjalcem dogodka ali urediti njegov dogodek.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Ali ste prepričani, da želite začasno ustaviti to skupino? Vsi člani - vključno z oddaljenimi - bodo obveščeni in odstranjeni iz skupine, vsi podatki skupine (dogodki, objave, razprave, zapiski…) pa bodo nepovratno uničeni.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Ali ste prepričani, da želite začasno ustaviti to skupino? Ker ta skupina izvira iz vozlišča {instance}, bo to odstranilo le lokalne člane in lokalne podatke ter zavrnilo vse prihodnje podatke.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Ali ste prepričani, da želite preklicati ustvarjanje dogodka? Izgubili boste vse spremembe.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Ali ste prepričani, da želite preklicati izdajo dogodka? Izgubili boste vse spremembe.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Ali ste prepričani, da želite preklicati udeležbo na dogodku \"{title}\"?", + "Are you sure you want to delete this entire discussion?": "Ste prepričani, da želite izbrisati celotno razpravo?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Ali ste prepričani, da želite izbrisati ta dogodek? Tega dejanja ni mogoče razveljaviti.", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Ker se je organizator dogodka odločil za ročno preverjanje prošenj za udeležbo, bo vaša udeležba potrjena šele, ko boste prejeli potrditveno e-pošto.", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "Dodeljeno", + "Atom feed for events and posts": "Vir Atom za dogodke in objave", + "Attending": "", + "Avatar": "Podoba", + "Back to group list": "", + "Back to previous page": "Nazaj na prejšnjo stran", + "Back to profile list": "", + "Back to top": "", + "Back to user list": "", + "Banner": "Pasica", + "Before you can login, you need to click on the link inside it to validate your account.": "Preden se lahko prijavite, morate klikniti na povezavo znotraj njega, da potrdite svoj račun.", + "Begins on": "Začne se v", + "Big Blue Button": "", + "Bold": "Krepko", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "", + "Bullet list": "", + "By others": "Od drugih", + "By {group}": "Od {group}", + "By {username}": "Od {username}", + "Can be an email or a link, or just plain text.": "Lahko je e-pošta ali povezava ali preprosto besedilo.", + "Cancel": "Prekliči", + "Cancel anonymous participation": "Prekliči anonimno udeležbo", + "Cancel creation": "Prekliči ustvarjanje", + "Cancel discussion title edition": "", + "Cancel edition": "Prekliči izdajo", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "Prekliči mojo prošnjo za udeležbo …", + "Cancel my participation…": "Prekliči mojo udeležbo …", + "Cancelled": "Prekinjeno", + "Cancelled: Won't happen": "Preklicano: Ne bo se zgodilo", + "Change": "Spremeni", + "Change my email": "Spremeni moj e-poštni naslov", + "Change my identity…": "Spremeni mojo identiteto …", + "Change my password": "Spremeni moje geslo", + "Change timezone": "Spremeni časovni pas", + "Check your inbox (and your junk mail folder).": "Preverite mapo »Prejeto« (in mapo z neželeno pošto).", + "Choose the source of the instance's Privacy Policy": "", + "Choose the source of the instance's Terms": "", + "City or region": "Mesto ali regija", + "Clear": "Izbriši", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "Izbriši podatke o udeležbi za vse dogodke", + "Clear participation data for this event": "Izbriši podatke o udeležbi za ta dogodek", + "Clear timezone field": "", + "Click for more information": "Klikni za več informacij", + "Click to upload": "Kliknite za pošiljanje", + "Close": "Zapri", + "Close comments for all (except for admins)": "Zapri komentarje za vse (razen za skrbnike)", + "Closed": "Zaprto", + "Comment body": "", + "Comment deleted": "Komentar je izbrisan", + "Comment text can't be empty": "Besedilo komentarja ne sme biti prazno", + "Comments": "Komentarji", + "Comments are closed for everybody else.": "Komentarji so zaprti za vse ostale.", + "Confirm my participation": "Potrdi mojo udeležbo", + "Confirm my particpation": "Potrdi mojo udeležbo", + "Confirm participation": "", + "Confirmed": "Potrjeno", + "Confirmed at": "Potrjeno ob", + "Confirmed: Will happen": "Potrjeno: Zgodilo se bo", + "Congratulations, your account is now created!": "Čestitam, vaš račun je zdaj ustvarjen!", + "Contact": "Kontakt", + "Continue editing": "Nadaljuj z urejanjem", + "Cookies and Local storage": "Piškotki in lokalna shramba", + "Copy URL to clipboard": "", + "Copy details to clipboard": "Kopiraj podrobnosti v odložišče", + "Country": "Država", + "Create": "Ustvari", + "Create a calc": "Ustvari preglednico", + "Create a discussion": "Ustvari razpravo", + "Create a folder": "Ustvari mapo", + "Create a new event": "Ustvari nov dogodek", + "Create a new group": "Ustvari novo skupino", + "Create a new identity": "Ustvari novo identiteto", + "Create a new list": "Ustvari nov seznam", + "Create a new profile": "Ustvari nov profil", + "Create a pad": "Ustvari beležko", + "Create a videoconference": "Ustvari videokonferenco", + "Create an account": "Ustvari račun", + "Create discussion": "", + "Create event": "Ustvari dogodek", + "Create group": "Ustvari skupino", + "Create identity": "", + "Create my event": "Ustvari moj dogodek", + "Create my group": "Ustvari mojo skupino", + "Create my profile": "Ustvari moj profil", + "Create new links": "Ustvari nove povezave", + "Create resource": "Ustvari vir", + "Create the discussion": "Ustvari razpravo", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Ustvarite sezname opravil za vse naloge, ki jih morate opraviti, jih dodelite in določite roke.", + "Create token": "Ustvari žeton", + "Created by {name}": "Ustvaril/a {name}", + "Created by {username}": "Ustvaril/a {username}", + "Current identity has been changed to {identityName} in order to manage this event.": "Trenutna identiteta je bila spremenjena v {identityName}, da bi lahko upravljali ta dogodek.", + "Current page": "Trenutna stran", + "Custom": "Po meri", + "Custom URL": "URL po meri", + "Custom text": "Besedilo po meri", + "Daily email summary": "Dnevni povzetek po e-pošti", + "Dashboard": "Nadzorna plošča", + "Date": "Datum", + "Date and time": "Datum in čas", + "Date and time settings": "Nastavitve datuma in ure", + "Date parameters": "Parametri datuma", + "Decline": "Zavrni", + "Decrease": "", + "Default": "Privzeto", + "Default Mobilizon privacy policy": "Privzeti pravilnik o zasebnosti za Mobilizon", + "Default Mobilizon terms": "Privzeti pogoji za Mobilizon", + "Delete": "Izbriši", + "Delete account": "Izbriši račun", + "Delete conversation": "Izbriši pogovor", + "Delete discussion": "Izbriši razpravo", + "Delete event": "Izbriši dogodek", + "Delete everything": "Izbriši vse", + "Delete group": "Izbriši skupino", + "Delete my account": "Izbriši moj račun", + "Delete post": "Izbriši objavo", + "Delete this discussion": "Izbriši to razpravo", + "Delete this identity": "Izbriši to identiteto", + "Delete your identity": "Izbriši svojo identiteto", + "Delete {eventTitle}": "Izbriši {eventTitle}", + "Delete {preferredUsername}": "Izbriši {preferredUsername}", + "Deleting comment": "Brisanje komentarja", + "Deleting event": "Brisanje dogodka", + "Deleting my account will delete all of my identities.": "Če izbrišete račun, se izbrišejo vse moje identitete.", + "Deleting your Mobilizon account": "Brisanje računa Mobilizon", + "Demote": "Degradiraj", + "Description": "Opis", + "Details": "", + "Didn't receive the instructions?": "Niste prejeli navodil?", + "Disabled": "Onemogočeno", + "Discussions": "Razprave", + "Discussions list": "", + "Display name": "Prikazno ime", + "Display participation price": "Prikaži ceno udeležbe", + "Displayed nickname": "Prikazan vzdevek", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Prikazano na domači strani in metaoznakah. V enem odstavku opišite, kaj je Mobilizon in zakaj je to vozlišče posebno.", + "Do not receive any mail": "Ne prejemaj nobene e-pošte", + "Do you wish to {create_event} or {explore_events}?": "Želite {create_event} ali {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Želite {create_group} ali {explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "Domena", + "Draft": "Osnutek", + "Drafts": "Osnutki", + "Due on": "Zapade", + "Duplicate": "Podvoji", + "Edit": "Uredi", + "Edit post": "Uredi objavo", + "Edit profile {profile}": "Uredi profil {profile}", + "Edited {ago}": "Urejeno {ago}", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "Npr.: Stockholm, ples, šah …", + "Either on the {instance} instance or on another instance.": "Ali na vozlišču {instance}, ali na drugem.", + "Either the account is already validated, either the validation token is incorrect.": "Ali je račun že potrjen, ali je žeton za preverjanje veljavnosti napačen.", + "Either the email has already been changed, either the validation token is incorrect.": "Ali je bil e-poštni naslov že spremenjen, ali je žeton za preverjanje veljavnosti napačen.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Ali je bila prošnja za udeležbo že potrjena, ali je žeton za preverjanje veljavnosti napačen.", + "Element title": "", + "Element value": "", + "Email": "E-pošta", + "Email address": "E-poštni naslov", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "Omogočeno", + "Ends on…": "Se konča …", + "Enter the link URL": "Vnesite URL povezave", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Spodaj vnesite svoj e-poštni naslov, mi pa vam bomo poslali navodila, kako spremeniti geslo.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Vnesite svoj pravilnik o zasebnosti. Dovoljene so oznake HTML.{mobilizon_privacy_policy} je naveden kot predloga.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Vnesite svoje pogoje. Dovoljene so oznake HTML. {mobilizon_terms} so navedeni kot predloga.", + "Error": "Napaka", + "Error details copied!": "Podrobnosti o napaki so kopirani!", + "Error message": "Sporočilo o napaki", + "Error stacktrace": "Sledenje napake", + "Error while changing email": "Napaka pri spreminjanju e-poštnega naslova", + "Error while loading the preview": "Napaka pri nalaganju predogleda", + "Error while login with {provider}. Retry or login another way.": "Napaka pri prijavi s {provider}. Poskusite znova ali se prijavite na drug način.", + "Error while login with {provider}. This login provider doesn't exist.": "Napaka pri prijavi s {provider}. Ta ponudnik ne obstaja.", + "Error while reporting group {groupTitle}": "Napaka pri poročanju skupine {groupTitle}", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "Napaka pri preverjanju veljavnosti računa", + "Error while validating participation request": "Napaka pri preverjanju veljavnosti računa", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Etična alternativa dogodkom, skupinam in stranem na Facebooku, Mobilizon je orodje, namenjeno vam. Pika.", + "Event": "Dogodek", + "Event URL": "", + "Event already passed": "Dogodek je že minil", + "Event cancelled": "Dogodek preklican", + "Event creation": "Ustvarjanje dogodkov", + "Event description body": "", + "Event edition": "Izdaja dogodka", + "Event list": "Seznam dogodkov", + "Event metadata": "", + "Event page settings": "Nastavitve dogodka", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "Dogodek bo potrjen", + "Event {eventTitle} deleted": "Dogodek {eventTitle} je izbrisan", + "Event {eventTitle} reported": "Dogodek {eventTitle} je prijavljen", + "Events": "Dogodki", + "Events nearby": "Zapri dogodke", + "Events tagged with {tag}": "Dogodki z oznako {tag}", + "Everything": "Vse", + "Ex: mobilizon.fr": "Npr.: mobilizon.fr", + "Ex: someone@mobilizon.org": "Npr.: nekdo@mobilizon.org", + "Explore": "Razišči", + "Explore events": "Razišči dogodke", + "Export": "", + "Failed to get location.": "", + "Failed to save admin settings": "Skrbniških nastavitev ni bilo mogoče shraniti", + "Featured events": "Izbrani dogodki", + "Federated Group Name": "Ime federirane skupine", + "Federation": "Federacija", + "Fediverse account": "", + "Fetch more": "Pridobi več", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "Poišči naslov", + "Find an instance": "Poišči vozlišče", + "Find another instance": "Poišči drugo vozlišče", + "Find or add an element": "", + "First steps": "", + "Follow": "", + "Follower": "Sledilec", + "Followers": "Sledilci", + "Followers will receive new public events and posts.": "Sledilci bodo prejemali nove javne dogodke in objave.", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "Sledi", + "For instance: London": "Na primer: Ljubljana", + "For instance: London, Taekwondo, Architecture…": "Na primer: London, taekwondo, arhitektura …", + "Forgot your password ?": "Ste pozabili geslo?", + "Forgot your password?": "Ste pozabili geslo?", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "Od {startDate} ob {startTime}, do {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Od {startDate} ob {startTime}, do {endDate} ob {endTime}", + "From the {startDate} to the {endDate}": "Od {startDate}, do {endDate}", + "From yourself": "Od sebe", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "Zberi ⋅ Organiziraj ⋅ Mobiliziraj", + "General": "Splošno", + "General information": "Splošne informacije", + "General settings": "", + "Geolocation was not determined in time.": "", + "Getting location": "Pridobivanje lokacije", + "Getting there": "Približujemo se", + "Glossary": "Slovar", + "Go": "Pojdi", + "Go to the event page": "Pojdi na stran dogodka", + "Google Meet": "", + "Group": "", + "Group Followers": "Sledilci skupine", + "Group Members": "Člani skupine", + "Group URL": "", + "Group activity": "", + "Group address": "Naslov skupine", + "Group description body": "", + "Group display name": "Prikazno ime skupine", + "Group name": "Ime skupine", + "Group profiles": "", + "Group settings": "Nastavitve skupine", + "Group settings saved": "Nastavitve skupine so shranjene", + "Group short description": "Kratek opis skupine", + "Group visibility": "Vidnost skupine", + "Group {displayName} created": "Skupina {displayName} je ustvarjena", + "Group {groupTitle} reported": "Skupina {groupTitle} je prijavljena", + "Groups": "Skupine", + "Groups are not enabled on this instance.": "Skupine na tem vozlišču niso omogočene.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Skupine so prostori za usklajevanje in priprave za boljšo organizacijo dogodkov in upravljanje vaše skupnosti.", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "Naslovna slika", + "Hide replies": "Skrij odgovore", + "Home": "Domov", + "Home to {number} users": "Dom {number} uporabnikom", + "Homepage": "", + "Hourly email summary": "Urni povzetek po e-pošti", + "I agree to the {instanceRules} and {termsOfService}": "Strinjam se s {instanceRules} in {termsOfService}", + "I create an identity": "Ustvarim identiteto", + "I don't have a Mobilizon account": "Nimam Mobilizon računa", + "I have a Mobilizon account": "Imam Mobilizon račun", + "I have an account on another Mobilizon instance.": "Imam račun na drugem Mobilizon vozlišču.", + "I participate": "Sodelujem", + "I want to allow people to participate without an account.": "Ljudem želim omogočiti udeležbo brez računa.", + "I want to approve every participation request": "Želim odobriti vsako prošnjo za udeležbo", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "Vir ICS za dogodke", + "ICS/WebCal Feed": "Vir ICS/WebCal", + "Identities": "Identitete", + "Identity {displayName} created": "Identiteta {displayName} je ustvarjena", + "Identity {displayName} deleted": "Identiteta {displayName} je izbrisana", + "Identity {displayName} updated": "Identiteta {displayName} je posodobljena", + "If allowed by organizer": "Če dovoli organizator", + "If an account with this email exists, we just sent another confirmation email to {email}": "Če račun s tem e-poštnim naslovom obstaja, smo pravkar poslali novo potrditveno e-pošto na {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Če je ta identiteta edini skrbnik katerih skupin, jih morate izbrisati, preden lahko izbrišete identiteto.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Če vas prosijo za federirano identiteto, je sestavljena iz vašega uporabniškega imena in vozlišča. Na primer, federirana identiteta za vaš prvi profil je:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Če ste se odločili za ročno potrjevanje udeležencev, vam bo Mobilizon poslal e-pošto o novih udeležbah, ki jih je treba obravnavati. Pogostost teh obvestil lahko izberete spodaj.", + "If you want, you may send a message to the event organizer here.": "Če želite, lahko tukaj pošljete sporočilo organizatorju dogodka.", + "Ignore": "", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "V naslednjem kontekstu je program programska oprema, ki jo je zagotovila skupina Mobilizon ali neodvisna stranka in se uporablja za interakcijo z vašim vozliščem.", + "In the past": "", + "Increase": "", + "Instance": "Vozlišče", + "Instance Long Description": "Daljši opis vozlišča", + "Instance Name": "Ime vozlišča", + "Instance Privacy Policy": "Pravilnik o zasebnosti za vozlišče", + "Instance Privacy Policy Source": "Vir do pravilnika o zasebnosti za vozlišče", + "Instance Privacy Policy URL": "URL pravilnika o zasebnosti za vozlišče", + "Instance Rules": "Pravila vozlišča", + "Instance Short Description": "Kratek opis vozlišča", + "Instance Slogan": "Slogan vozlišča", + "Instance Terms": "Pogoji uporabe vozlišča", + "Instance Terms Source": "Viri pogojev uporabe vozlišča", + "Instance Terms URL": "URL pogojev uporabe vozlišča", + "Instance administrator": "Skrbnik vozlišča", + "Instance configuration": "Nastavitve vozlišča", + "Instance feeds": "Viri vozlišča", + "Instance languages": "Jezik vozlišča", + "Instance rules": "Pravila vozlišča", + "Instance settings": "Nastavitve vozlišča", + "Instances": "Vozlišča", + "Instances following you": "Vozlišča, ki vam sledijo", + "Instances you follow": "Vozlišča, katerim sledite", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "Povabi novega člana", + "Invite member": "Povabi člana", + "Invited": "Povabljeni", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Možno je, da vsebina na tem vozlišču ni dostopna, ker je to vozlišče blokiralo profile ali skupine, ki stojijo za to vsebino.", + "Italic": "Ležeče", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "Pridruži se {instance}, ki je Mobilizon vozlišče", + "Join group": "Pridruži se skupini", + "Join group {group}": "", + "Keep the entire conversation about a specific topic together on a single page.": "Celoten pogovor o določeni temi naj bo na eni strani.", + "Key words": "Ključne besede", + "Language": "Jezik", + "Last IP adress": "Zadnji naslov IP", + "Last group created": "Zadnja skupina ustvarjena", + "Last published event": "Zadnji objavljeni dogodek", + "Last published events": "Zadnji objavljeni dogodki", + "Last sign-in": "Zadnja prijava", + "Last week": "Prejšnji teden", + "Latest posts": "Zadnje objave", + "Learn more": "Izvedi več", + "Learn more about Mobilizon": "Preberite več o Mobilizonu", + "Learn more about {instance}": "Več o {instance}", + "Leave": "Zapusti", + "Leave event": "Zapusti dogodek", + "Leave group": "", + "Leaving event \"{title}\"": "Zapuščanje dogodka »{title}«", + "Legal": "Pravno", + "Let's define a few settings": "Določimo nekaj nastavitev", + "License": "Licenca", + "Limited number of places": "Omejeno število mest", + "List title": "Naslov seznama", + "Live": "", + "Load more": "Naloži več", + "Load more activities": "Naloži več dejavnosti", + "Loading comments…": "Nalaganje komentarjev…", + "Local": "Lokalno", + "Local time ({timezone})": "", + "Locality": "Okolica", + "Location": "Lokacija", + "Log in": "Vpiši se", + "Log out": "Odjava", + "Login": "Prijava", + "Login on Mobilizon!": "Prijava v Mobilizon!", + "Login on {instance}": "Prijava v {instance}", + "Login status": "Stanje prijave", + "Main languages you/your moderators speak": "Glavni jeziki, ki jih govorite vi/vaši moderatorji", + "Manage participations": "Upravljaj udeležbe", + "Manually approve new followers": "Ročno potrdite nove sledilce", + "Manually invite new members": "Ročno povabi nove člane", + "Mark as resolved": "Označi kot razrešeno", + "Member": "Član", + "Members": "Člani", + "Members-only post": "", + "Mentions": "", + "Message": "Sporočilo", + "Microsoft Teams": "", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon je federirano omrežje. S tem dogodkom lahko komunicirate z drugega strežnika.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon je federirana programska oprema, kar pomeni, da lahko komunicirate (odvisno od skrbniških nastavitev federacije) z vsebino iz drugih vozlišč, na primer z združevanjem skupin ali dogodkov, ki so bili ustvarjeni drugje.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon je orodje, ki vam pomaga najti, ustvariti in organizirati dogodke.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon ni velikanska platforma, temveč množica med seboj povezanih spletnih mest Mobilizon.", + "Mobilizon software": "Programska oprema Mobilizon", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon uporablja sistem profilov za ločevanje vaših dejavnosti. Ustvarili boste lahko poljubno število profilov.", + "Mobilizon version": "Mobilizon različica", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon vam bo poslal e-pošto, ko se bodo dogodki, ki se jih udeležujete, spremenili: datum in čas, naslov, potrditev ali odpoved itd.", + "Moderate new members": "", + "Moderated comments (shown after approval)": "Moderirani komentarji (prikazani po odobritvi)", + "Moderation": "Moderiranje", + "Moderation log": "Dnevnik moderiranja", + "Moderation logs": "", + "Moderator": "Moderator", + "Move": "Premakni", + "Move \"{resourceName}\"": "Premakni \"{resourceName}\"", + "Move resource to the root folder": "", + "Move resource to {folder}": "Premakni vir v {folder}", + "My account": "Moj račun", + "My events": "Moji dogodki", + "My groups": "Moje skupine", + "My identities": "Moje identitete", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "OPOMBA! Privzetih pogojev ni preveril odvetnik in zato verjetno ne bodo zagotovili popolnega pravnega varstva za vse primere, ki jih uporablja skrbnika vozlišča. Prav tako niso značilne za vse države in jurisdikcije. Če niste prepričani, se obrnite na odvetnika.", + "Name": "Ime", + "Navigated to {pageTitle}": "", + "New discussion": "Nova razprava", + "New email": "Nov e-poštni naslov", + "New folder": "Nova mapa", + "New link": "Nova povezava", + "New members": "Novi člani", + "New note": "Nova opomba", + "New password": "Novo geslo", + "New post": "Nova objava", + "New profile": "Nov profil", + "Next": "Naslednje", + "Next month": "Naslednji mesec", + "Next page": "Naslednja stran", + "Next week": "Naslednji teden", + "No address defined": "Naslov ni določen", + "No closed reports yet": "Še ni zaključenih poročil", + "No comment": "Brez komentarja", + "No comments yet": "Še brez komentarja", + "No discussions yet": "Nobenih razprav", + "No end date": "Brez končnega datuma", + "No events found": "Najdenih ni nobenih dogodkov", + "No follower matches the filters": "Noben sledilec ne ustreza filtrom", + "No group found": "Najdena ni nobena skupina", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "Najdenih ni nobenih skupin", + "No information": "Ni informacij", + "No instance follows your instance yet.": "Nobeno vozlišče še ne sledi vašemu.", + "No instance to approve|Approve instance|Approve {number} instances": "Nobenega vozlišča za odobritev|Odobri vozlišče|Odobri {number} vozlišč", + "No instance to reject|Reject instance|Reject {number} instances": "Nobenega vozlišča za zavrnitev|Zavrni vozlišče|Zavrni {number} vozlišč", + "No instance to remove|Remove instance|Remove {number} instances": "Nobenega vozlišča za odstranitev|Odstrani vozlišče|Odstrani {number} vozlišč", + "No languages found": "Ni najdenih jezikov", + "No member matches the filters": "Noben član se ne ujema s filtri", + "No members found": "Ni najdenih članov", + "No memberships found": "", + "No message": "Ni sporočil", + "No moderation logs yet": "Nobenega dnevnika moderiranja še ni", + "No more activity to display.": "Ni več dejavnosti za prikaz.", + "No one is participating|One person participating|{going} people participating": "Nihče se ne udeležuje|Ena oseba se udeležuje|{going} oseb se udeležuje", + "No open reports yet": "Še ni odprtih poročil", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "Noben udeleženec se ne ujema s filtri", + "No participant to approve|Approve participant|Approve {number} participants": "Nobenega udeleženca za odobritev|Odobri udeleženca|Odobri {number} udeležencev", + "No participant to reject|Reject participant|Reject {number} participants": "Nobenega udeleženca za zavrnitev|Zavrni udeleženca|Zavrni {number} udeležencev", + "No participations listed": "", + "No posts found": "Ni najdenih objav", + "No posts yet": "Nobenih objav", + "No profile matches the filters": "Noben profil se ne ujema s filtri", + "No public upcoming events": "Ni javnih prihajajočih dogodkov", + "No resolved reports yet": "Še ni razrešenih poročil", + "No resources in this folder": "V tej mapi ni virov", + "No resources selected": "Izbran ni noben vir|En vir je izbran|{count} virov je izbranih", + "No resources yet": "Nobenih virov", + "No results for \"{queryText}\"": "Ni rezultatov za \"{queryText}\"", + "No results for {search}": "", + "No rules defined yet.": "Pravila še niso določena.", + "None": "Nihče", + "Not accessible with a wheelchair": "", + "Not approved": "Ni odobreno", + "Not confirmed": "Ni potrjeno", + "Notes": "Opombe", + "Notification before the event": "Obvestilo pred dogodkom", + "Notification on the day of the event": "Obvestilo na dan dogodka", + "Notification settings": "", + "Notifications": "Obvestila", + "Notifications for manually approved participations to an event": "Obvestila o ročno odobrenih udeležbah na dogodku", + "Notify participants": "", + "Now, create your first profile:": "Ustvarite svoj prvi profil:", + "Number of places": "Število mest", + "OK": "V redu", + "Old password": "Staro geslo", + "On {date}": "{date}", + "On {date} ending at {endTime}": "{date}, do {endTime}", + "On {date} from {startTime} to {endTime}": "{date}, od {startTime} do {endTime}", + "On {date} starting at {startTime}": "{date}, ob {startTime}", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Only accessible through link": "Dostopno samo prek povezave", + "Only accessible through link (private)": "Dostopno samo prek povezave (zasebno)", + "Only accessible to members of the group": "Dostopno samo članom skupine", + "Only alphanumeric lowercased characters and underscores are supported.": "Podprte so samo alfanumerične male črke in podčrtaji.", + "Only group members can access discussions": "Do razprav lahko dostopajo samo člani skupine", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "Samo moderatorji skupin lahko ustvarjajo, urejajo in brišejo objave.", + "Only registered users may fetch remote events from their URL.": "", + "Open": "Odpri", + "Open a topic on our forum": "Odpri temo na forumu", + "Open an issue on our bug tracker (advanced users)": "Odprite težavo v našem programu za sledenje hroščev (napredni uporabniki)", + "Opened reports": "Odprta poročila", + "Or": "Ali", + "Ordered list": "", + "Organized": "Organizirano", + "Organized by": "Organizira", + "Organized by {name}": "Organizira {name}", + "Organizer": "Organizator", + "Organizer notifications": "Obvestila organizatorja", + "Organizers": "Organizatorji", + "Other": "Ostalo", + "Other actions": "", + "Other notification options:": "Druge možnosti obveščanja:", + "Other software may also support this.": "To lahko podpira tudi druga programska oprema.", + "Otherwise this identity will just be removed from the group administrators.": "V nasprotnem primeru bo ta identiteta odstranjena samo iz skupine skrbnikov.", + "Page": "Stran", + "Page limited to my group (asks for auth)": "Stran je omejena na mojo skupino (prosi za avtorizacijo)", + "Page not found": "", + "Parent folder": "Nadrejena mapa", + "Partially accessible with a wheelchair": "", + "Participant": "Udeleženec", + "Participants": "Udeleženci", + "Participate": "Udeleži se", + "Participate using your email address": "Udeleži se s svojim e-poštnim naslovom", + "Participation approval": "Odobritev udeležbe", + "Participation confirmation": "Potrditev udeležbe", + "Participation notifications": "Obvestila o udeležbi", + "Participation requested!": "Udeležba zahtevana!", + "Participation with account": "", + "Participation without account": "", + "Participations": "Udeležbe", + "Password": "Geslo", + "Password (confirmation)": "Geslo (potrditev)", + "Password reset": "Ponastavitev gesla", + "Past events": "Pretekli dogodki", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "Na čakanju", + "Personal feeds": "Osebni viri", + "Pick": "Izberi", + "Pick a profile or a group": "Izberi profil ali skupino", + "Pick an identity": "Izberi si identiteto", + "Pick an instance": "Izberi vozlišče", + "Please add as many details as possible to help identify the problem.": "Dodajte čim več podrobnosti, da bomo lažje ugotovili težavo.", + "Please check your spam folder if you didn't receive the email.": "Če niste prejeli e-pošte, preverite mapo z vsiljeno pošto.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Če menite, da gre za napako, se obrnite na skrbnika tega Mobilizon vozlišča.", + "Please do not use it in any real way.": "Prosim, ne uporabljajte ga na noben resen način.", + "Please enter your password to confirm this action.": "Vnesite svoje geslo, da potrdite to dejanje.", + "Please make sure the address is correct and that the page hasn't been moved.": "Prepričajte se, da je naslov pravilen in da stran ni bila premaknjena.", + "Please read the {fullRules} published by {instance}'s administrators.": "Preberite {fullRules}, ki so jih objavili skrbniki vozlišča {instance}.", + "Post": "Objava", + "Post URL": "", + "Post a comment": "Objavi komentar", + "Post a reply": "Objavi odgovor", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "Poštna številka", + "Posts": "Objave", + "Powered by Mobilizon": "", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Poganja {mobilizon}. © 2018 - {date} Mobilizon sodelavci - Izdelano s finančno podporo {contributors}.", + "Preferences": "Možnosti", + "Previous": "Prejšnje", + "Previous month": "", + "Previous page": "Prejšnja stran", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "Pravilnik o zasebnosti", + "Privacy policy": "Politika zasebnosti", + "Private event": "Zasebni dogodek", + "Private feeds": "Zasebni viri", + "Profile": "Profil", + "Profile feeds": "Viri profilov", + "Profiles": "Profili", + "Profiles and federation": "Profili in federacija", + "Promote": "Povišaj", + "Public": "Javno", + "Public RSS/Atom Feed": "Javni vir RSS/Atom", + "Public comment moderation": "Moderiranje javnih komentarjev", + "Public event": "Javni dogodek", + "Public feeds": "Javni viri", + "Public iCal Feed": "Javni vir iCal", + "Public preview": "", + "Publication date": "Datum objave", + "Publish": "Objavi", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "Objavljeni dogodki s {comments} komentarji in {participations} potrjenimi udeležbami", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "Vir RSS/Atom", + "Radius": "Območje", + "Recap every week": "Povzetek vsak teden", + "Receive one email for each activity": "", + "Receive one email per request": "Na zahtevo prejmi eno e-pošto", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "", + "Redirecting to content…": "Preusmeritev na vsebino …", + "Redo": "", + "Refresh profile": "Osveži profil", + "Regenerate new links": "Obnovi nove povezave", + "Region": "Regija", + "Register": "Registriraj", + "Register an account on {instanceName}!": "Registrirajte račun na {instanceName}!", + "Register on this instance": "Registriraj se na tem vozlišču", + "Registration is allowed, anyone can register.": "Registracija je dovoljena, prijavi se lahko vsak.", + "Registration is closed.": "Registracija je zaprta.", + "Registration is currently closed.": "Registracija je trenutno zaprta.", + "Registrations": "Registracije", + "Registrations are restricted by allowlisting.": "Registracije so omejene s seznamom dovoljenj.", + "Reject": "Zavrni", + "Reject member": "", + "Rejected": "Zavrnjeno", + "Remember my participation in this browser": "Zapomni si moje udeležbe v tem brskalniku", + "Remove": "Odstrani", + "Remove link": "", + "Rename": "Preimenuj", + "Rename resource": "Preimenuj vir", + "Reopen": "Ponovno odprto", + "Replay": "", + "Reply": "Odgovori", + "Report": "Prijavi", + "Report #{reportNumber}": "Prijava #{reportNumber}", + "Report this comment": "Prijavi ta komentar", + "Report this event": "Prijavi ta dogodek", + "Report this group": "Prijavi to skupino", + "Report this post": "", + "Reported": "Prijavljeno", + "Reported by": "Prijavil", + "Reported by someone on {domain}": "Prijavil nekdo na {domain}", + "Reported by {reporter}": "Prijavil {reporter}", + "Reported group": "Skupina je prijavljena", + "Reported identity": "Prijavljena identiteta", + "Reports": "Prijave", + "Reports list": "", + "Request for participation confirmation sent": "Prošnja za potrditev udeležbe je poslana", + "Resend confirmation email": "Ponovno pošljite potrditveno e-pošto", + "Resent confirmation email": "", + "Reset": "", + "Reset my password": "Ponastavi geslo", + "Reset password": "", + "Resolved": "Razrešeno", + "Resource provided is not an URL": "Navedeni vir ni URL", + "Resources": "Viri", + "Restricted": "Omejeno", + "Return to the group page": "Vrni se na stran skupine", + "Right now": "Takoj zdaj", + "Role": "Vloga", + "Rules": "Pravila", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL in njegov naslednik TLS sta tehnologiji šifriranja za zaščito podatkovnih komunikacij pri uporabi storitve. Šifrirano povezavo lahko prepoznate v naslovni vrstici brskalnika, ko se URL začne s {https} in je v naslovni vrstici brskalnika prikazana ikona ključavnice.", + "SSL/TLS": "SSL/TLS", + "Save": "Shrani", + "Save draft": "Shrani osnutek", + "Schedule": "", + "Search": "Poišči", + "Search events, groups, etc.": "Poišči dogodke, skupine itd.", + "Searching…": "Iskanje…", + "Select a language": "Izberi jezik", + "Select a radius": "Izberite območje", + "Select a timezone": "Izberi časovni pas", + "Select languages": "Izberi jezike", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "Pošlji e-pošto", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "Ponovno pošlji potrditveno e-pošto", + "Send the report": "Pošlji prijavo", + "Set an URL to a page with your own privacy policy.": "Nastavite URL strani s lastnim pravilnikom o zasebnosti.", + "Set an URL to a page with your own terms.": "Nastavi URL na stran s svojimi pogoji.", + "Settings": "Nastavitve", + "Share": "", + "Share this event": "Daj dogodek v skupno rabo", + "Share this group": "", + "Share this post": "", + "Short bio": "Kratka biografija", + "Show map": "Pokaži zemljevid", + "Show me where I am": "", + "Show remaining number of places": "Prikaži preostalo število mest", + "Show the time when the event begins": "Prikaži uro, ko se dogodek začne", + "Show the time when the event ends": "Prikaži uro, ko se dogodek konča", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "Prijavi se z", + "Sign up": "Registracija", + "Since you are a new member, private content can take a few minutes to appear.": "Ker ste novi član, lahko traja nekaj minut, da se prikaže zasebna vsebina.", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Nekateri izrazi, tehnični ali drugačni, uporabljeni v spodnjem besedilu, lahko zajemajo pojme, ki jih je težko razumeti. Tukaj smo pripravili slovar, ki vam bo pomagal bolje jih razumeti:", + "Starts on…": "Začne se…", + "Status": "Stanje", + "Street": "Ulica", + "Submit": "Pošlji", + "Subtitles": "", + "Suspend": "Suspendiraj", + "Suspend group": "Začasno ustavi skupino", + "Suspended": "Suspendirano", + "Tag search": "", + "Task lists": "Seznami nalog", + "Technical details": "Tehnične podrobnosti", + "Tentative": "Začasno", + "Tentative: Will be confirmed later": "Okvirno: kasneje bo potrjeno", + "Terms": "Pogoji", + "Terms of service": "Pogoji storitve", + "Text": "Tekst", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "E-poštni naslov računa je bil spremenjen. Poglejte e-pošto, da preverite naslov.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Dejansko število udeležencev se lahko razlikuje, saj ta dogodek gosti drugo vozlišče.", + "The content came from another server. Transfer an anonymous copy of the report?": "Vsebina je prišla z drugega strežnika. Želite prenesti anonimno kopijo poročila?", + "The draft event has been updated": "Osnutek dogodka je posodobljen", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "Dogodek je ustvarjen kot osnutek", + "The event has been published": "Dogodek je objavljen", + "The event has been updated": "Dogodek je posodobljen", + "The event has been updated and published": "Dogodek je posodobljen in objavljen", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Organizator dogodka se je odločil, da ročno potrdi udeležbe. Ali želite dodati kratko opombo, da razložite, zakaj želite sodelovati na tem dogodku?", + "The event organizer didn't add any description.": "Organizator dogodka ni dodal nobenega opisa.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Organizator dogodka ročno odobri udeležbe. Ker ste se odločili za udeležbo brez računa, pojasnite, zakaj želite sodelovati na tem dogodku.", + "The event title will be ellipsed.": "Naslov dogodka bo zatemnjen.", + "The event will show as attributed to this group.": "Dogodek bo prikazan kot dodeljen tej skupini.", + "The event will show as attributed to this profile.": "Dogodek bo prikazan kot dodeljen temu profilu.", + "The event will show as attributed to your personal profile.": "Dogodek bo prikazan kot pripisan vašemu osebnemu profilu.", + "The event {event} was created by {profile}.": "Dogodek {event} je ustvaril/a {profil}.", + "The event {event} was deleted by {profile}.": "Dogodek {event} je izbrisal/a {profil}.", + "The event {event} was updated by {profile}.": "Dogodek {event} je posodobil/a {profile}.", + "The events you created are not shown here.": "Dogodki, ki ste jih ustvarili, tukaj niso prikazani.", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "Skupini se lahko pridruži kdorkoli.", + "The group can now only be joined with an invite.": "Skupini se lahko pridružite le z vabilom.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Skupina bo javno navedena v rezultatih iskanja in bo morda predlagana v razdelku za raziskovanje. Na tej strani bodo prikazane samo javne informacije.", + "The group's avatar was changed.": "Podoba skupine je bila spremenjena.", + "The group's banner was changed.": "Naslovnica skupine je bila spremenjena.", + "The group's physical address was changed.": "Fizični naslov skupine je bil spremenjen.", + "The group's short description was changed.": "Kratek opis skupine je bil spremenjen.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "Skrbnik vozlišča je fizična ali pravna oseba, ki vodi to Mobilizon vozlišče.", + "The member was approved": "", + "The member was removed from the group {group}": "Član je bil odstranjen iz skupine {group}", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "Edini način, da vaša skupina pridobi nove člane, je da jih povabi skrbnik.", + "The organiser has chosen to close comments.": "Organizator se je odločil zapreti komentarje.", + "The page you're looking for doesn't exist.": "Stran, ki jo iščete, ne obstaja.", + "The password was successfully changed": "Geslo je bilo uspešno spremenjeno", + "The post {post} was created by {profile}.": "Objavo {post} je ustvaril/a {profil}.", + "The post {post} was deleted by {profile}.": "Objavo {post} je izbrisal/a {profil}.", + "The post {post} was updated by {profile}.": "Objavo {post} je posodobil/a {profil}.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Poročilo bo poslano moderatorjem vašega vozlišča. Spodaj lahko razložite, zakaj prijavljate to vsebino.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "Izbrana slika je prevelika. Izbrati morate datoteko, ki je manjša od {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Tehnične podrobnosti napake lahko razvijalcem pomagajo pri lažjem reševanju težave. Dodajte jih v povratne informacije.", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "Uporabljen bo {default_privacy_policy}. Preveden bo v uporabnikov jezik.", + "The {default_terms} will be used. They will be translated in the user's language.": "Uporabljeni bodo {default_terms}. Prevedeni bodo v uporabnikov jezik.", + "There are {participants} participants.": "Sodeluje {participants} udeležencev.", + "There is no activity yet. Start doing some things to see activity appear here.": "Ni še nobene dejavnosti. Postanite aktivni, da se bo tu pojavila dejavnost.", + "There will be no way to recover your data.": "Vaših podatkov ne bo mogoče obnoviti.", + "There's no discussions yet": "Ni še nobenih razprav", + "These events may interest you": "Ti dogodki vas lahko zanimajo", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Viri vsebujejo podatke za dogodke, pri katerih je kateri koli od vaših profilov udeleženec ali ustvarjalec. Ti viri naj bodo zasebni. Viri za posamezne profile so na voljo na strani za urejanje profila.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Viri vsebujejo podatke za dogodke, pri katerih je ta profil udeleženec ali ustvarjalec. Ti viri naj bodo zasebni. Viri za vse svoje profile so na voljo v nastavitvah obveščanja.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "To Mobilizon vozlišče in organizator dogodkov omogočata anonimne udeležbe, vendar zahtevata potrditev po e-pošti.", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "Ta URL ni podprt", + "This event has been cancelled.": "Ta dogodek je bil preklican.", + "This event is accessible only through it's link. Be careful where you post this link.": "Ta dogodek je dostopen samo prek njegove povezave. Bodite previdni, kje objavite to povezavo.", + "This group doesn't have a description yet.": "Ta skupina še nima opisa.", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "Ta skupina je samo za povabljence", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "Ta identifikator je edinstven za vaš profil. Omogoča drugim, da vas najdejo.", + "This information is saved only on your computer. Click for details": "Ti podatki so shranjeni samo na vašem računalniku. Kliknite za podrobnosti", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "To vozlišče ni odprto za registracije, lahko pa se registrirate na drugih vozliščih.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Vozlišče {instanceName} ({domain}) gosti vaš profil, zato si zapomnite njegovo ime.", + "This is a demonstration site to test Mobilizon.": "To je demonstracijska stran za preizkušanje Mobilizona.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "To je kot vaše federirano uporabniško ime ({username}) za skupine. To omogoči, da skupino lahko najdejo v federaciji in ji zagotovi edinstvenost.", + "This month": "Ta mesec", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "Ta nastavitev bo uporabljena za prikaz spletišča in pošiljanje e-pošte v pravilnem jeziku.", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "To spletno mesto ni moderirano in vneseni podatki se samodejno uničijo vsak dan ob 00:01 (pariški časovni pas).", + "This week": "Ta teden", + "This weekend": "Ta vikend", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "S tem boste izbrisali / anonimizirali vso vsebino (dogodke, komentarje, sporočila, udeležbe ...), ustvarjeno iz te identitete.", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "Časovni pas", + "Timezone detected as {timezone}.": "Časovni pas je zaznan kot {timezone}.", + "Title": "Naslov", + "To activate more notifications, head over to the notification settings.": "Če želite omogočiti več obvestil, pojdite na nastavitve obvestil.", + "To confirm, type your event title \"{eventTitle}\"": "Za potrditev vnesite naslov dogodka \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "Za potrditev vnesite svoje uporabniško ime \"{preferredUsername}\"", + "To create and manage multiples identities from a same account": "Ustvarjanje in upravljanje več identitet iz istega računa", + "To create and manage your events": "Ustvarjanje in upravljanje dogodkov", + "To create or join an group and start organizing with other people": "Če želite ustvariti skupino ali se ji pridružiti in začeti organizirati z drugimi", + "To follow groups and be informed of their latest events": "", + "To register for an event by choosing one of your identities": "Če se želite prijaviti na dogodek z izbiro ene od svojih identitet", + "Today": "Danes", + "Tomorrow": "Jutri", + "Tools": "", + "Transfer to {outsideDomain}": "Prenesi na {outsideDomain}", + "Triggered profile refreshment": "", + "Twitch live": "", + "Twitch replay": "", + "Twitter account": "", + "Type": "Tip", + "Type or select a date…": "Vnesite ali izberite datum…", + "URL": "URL", + "URL copied to clipboard": "URL je kopiran v odložišče", + "Unable to copy to clipboard": "Ni mogoče kopirati v odložišče", + "Unable to create the group. One of the pictures may be too heavy.": "Skupine ni mogoče ustvariti. Ena od slik je morda prevelika.", + "Unable to create the profile. The avatar picture may be too heavy.": "Ni mogoče ustvariti profila. Slika podobe je morda prevelika.", + "Unable to detect timezone.": "Časovnega pasu ni mogoče zaznati.", + "Unable to load event for participation. The error details are provided below:": "Ni mogoče naložiti dogodka za udeležbo. Podrobnosti o napaki so navedene spodaj:", + "Unable to save your participation in this browser.": "V tem brskalniku ni mogoče shraniti vaše udeležbe.", + "Unable to update the profile. The avatar picture may be too heavy.": "Ni mogoče posodobiti profila. Slika podobe je morda prevelika.", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "Na žalost so organizatorji zavrnili vašo prošnjo za udeležbo.", + "Unknown": "Neznano", + "Unknown actor": "Neznani udeleženec", + "Unknown error.": "Neznana napaka.", + "Unknown value for the openness setting.": "Neznana vrednost za nastavitev odprtosti.", + "Unlogged participation": "", + "Unsaved changes": "Neshranjene spremembe", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "Odsuspendiraj", + "Upcoming": "Prihajajoči", + "Upcoming events": "Prihajajoči dogodki", + "Upcoming events from your groups": "", + "Update": "Posodobi", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "Posodobi dogodek {name}", + "Update group": "Posodobi skupino", + "Update my event": "Posodobi moj dogodek", + "Update post": "Posodobi objavo", + "Updated": "Posodobljeno", + "Uploaded media size": "Velikost poslanega medija", + "Use my location": "Uporabi mojo lokacijo", + "User": "Uporabnik", + "User settings": "", + "Username": "Uporabniško ime", + "Users": "Uporabniki", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "|Pokaži en odgovor|Pokaži {totalReplies} odgovorov", + "View account on {hostname} (in a new window)": "", + "View all": "Poglej vse", + "View all events": "Prikaži vse dogodke", + "View all posts": "Prikaži vse objave", + "View event page": "Pokaži stran dogodka", + "View everything": "Pokaži vse", + "View full profile": "", + "View less": "", + "View more": "", + "View page on {hostname} (in a new window)": "Pokaži stran na {hostname} (v novem oknu)", + "Visibility was set to an unknown value.": "Vidnost je bila nastavljena na neznano vrednost.", + "Visibility was set to private.": "Vidnost je bila nastavljena na zasebno.", + "Visibility was set to public.": "Vidnost je bila nastavljena na javno.", + "Visible everywhere on the web": "Vidno povsod po spletu", + "Visible everywhere on the web (public)": "Vidno povsod v spletu (javno)", + "Waiting for organization team approval.": "Čakanje na odobritev organizacijske ekipe.", + "Warning": "Opozorilo", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Zaradi vaših povratnih informacij lahko to programsko opremo izboljšujemo. Če nas želite obvestiti o tej težavi, lahko uporabite dve možnosti (obe žal zahtevata ustvarjanje uporabniškega računa):", + "We just sent an email to {email}": "Pravkar smo poslali e-pošto na naslov {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Vaš časovni pas uporabljamo za to, da ob pravem času prejemate obvestila o dogodku.", + "We will redirect you to your instance in order to interact with this event": "Za interakcijo s tem dogodkom vas bomo preusmerili na vaše vozlišče", + "We will redirect you to your instance in order to interact with this group": "Za interakcijo s to skupino vas bomo preusmerili na vaše vozlišče", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Eno uro pred začetkom dogodka vam bomo poslali e-pošto, da ne boste pozabili na dogodek.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Na podlagi časovnega pasa, bomo poslali povzetek na jutro dogodka.", + "Website": "Spletna stran", + "Website / URL": "URL spletne strani", + "Weekly email summary": "", + "Welcome back {username}!": "Dobrodošli nazaj {username}!", + "Welcome back!": "Dobrodošli nazaj!", + "Welcome to Mobilizon, {username}!": "Dobrodošli na Mobilizonu, {username}!", + "What can I do to help?": "Kako lahko pomagam?", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Ko moderator iz skupine ustvari dogodek in ga pripiše skupini, se bo prikazal tukaj.", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "Kdo si lahko ogleda ta dogodek in se ga udeleži", + "Who can view this post": "Kdo si lahko ogleda to objavo", + "Who published {number} events": "Ki so objavili {number} dogodkov", + "Why create an account?": "Zakaj ustvariti račun?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Omogoča prikaz in upravljanje vašega stanja udeležbe na napravi. Odoznači, če uporabljate javno napravo.", + "Within {number} kilometers of {place}": "|Znotraj kilometra od {place}|Znotraj {number} kilometrov od {place}", + "Yesterday": "Včeraj", + "You accepted the invitation to join the group.": "Sprejeli ste povabilo v skupino.", + "You added the member {member}.": "Dodali ste člana {member}.", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "Arhivirali ste razpravo {discussion}.", + "You are not an administrator for this group.": "Niste skrbnik te skupine.", + "You are not part of any group.": "Niste član nobene skupine.", + "You are offline": "Nimaš povezave", + "You are participating in this event anonymously": "Tega dogodka se udeležujete anonimno", + "You are participating in this event anonymously but didn't confirm participation": "Tega dogodka se udeležujete anonimno, vendar niste potrdili udeležbe", + "You can add tags by hitting the Enter key or by adding a comma": "Oznake lahko dodate tako, da pritisnete tipko Enter ali z vejico", + "You can pick your timezone into your preferences.": "Časovni pas lahko izberete po svojih željah.", + "You can try another search term or drag and drop the marker on the map": "Lahko poskusite z drugim iskalnim izrazom ali povlečete in spustite oznako na zemljevidu", + "You can't change your password because you are registered through {provider}.": "Gesla ne morete spremeniti, ker ste registrirani pri {provider}.", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "Ustvarili ste razpravo {discussion}.", + "You created the event {event}.": "Ustvarili ste dogodek {event}.", + "You created the folder {resource}.": "Ustvarili ste mapo {resource}.", + "You created the group {group}.": "Ustvarili ste skupino {group}.", + "You created the post {post}.": "Ustvarili ste objavo {post}.", + "You created the resource {resource}.": "Ustvarili ste vir {resource}.", + "You deleted the discussion {discussion}.": "Izbrisali ste razpravo {discussion}.", + "You deleted the event {event}.": "Izbrisali ste dogodek {event}.", + "You deleted the folder {resource}.": "Izbrisali ste mapo {resource}.", + "You deleted the post {post}.": "Izbrisali ste objavo {post}.", + "You deleted the resource {resource}.": "Izbrisali ste vir {resource}.", + "You demoted the member {member} to an unknown role.": "Člana {member} ste degradirali v neznano vlogo.", + "You demoted {member} to moderator.": "Člana {member} ste degradirali v moderatorja.", + "You demoted {member} to simple member.": "Člana {member} ste degradirali v navadnega člana.", + "You didn't create or join any event yet.": "Niste ustvarili nobenega dogodka ali se mu pridružili.", + "You don't follow any instances yet.": "Še nobenega vozlišča ne spremljate.", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "Izključili ste člana {member}.", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "{invitedBy} vas je povabil v naslednjo skupino:", + "You have been removed from this group's members.": "Odstranjeni ste bili iz te skupine.", + "You have cancelled your participation": "Odpovedali ste udeležbo", + "You have one event in {days} days.": "V {days} dneh nimate dogodkov | V {days} dneh imate en dogodek | V {days} dneh imate {count} dogodkov", + "You have one event today.": "Danes nimate dogodkov | Danes imate en dogodek | Danes imate {count} dogodkov", + "You have one event tomorrow.": "Jutri nimate dogodkov | Jutri imate en dogodek | Jutri imate {count} dogodkov", + "You invited {member}.": "Povabili ste {member}.", + "You may clear all participation information for this device with the buttons below.": "Vse podatke o udeležbi za to napravo lahko počistite s spodnjimi gumbi.", + "You may now close this window, or {return_to_event}.": "Zdaj lahko zaprete to okno ali {return_to_event}.", + "You may show some members as contacts.": "Nekatere člane lahko prikažete kot stike.", + "You moved the folder {resource} into {new_path}.": "Premaknili ste mapo {resource} v {new_path}.", + "You moved the folder {resource} to the root folder.": "Premaknili ste mapo {resource} v korensko mapo.", + "You moved the resource {resource} into {new_path}.": "Vir {resource} ste premaknili v {new_path}.", + "You moved the resource {resource} to the root folder.": "Vir {resource} ste premaknili v korensko mapo.", + "You need to login.": "Morate se prijaviti.", + "You posted a comment on the event {event}.": "Objavili ste komentar o dogodku {event}.", + "You promoted the member {member} to an unknown role.": "Člana {member} ste povišali v neznano vlogo.", + "You promoted {member} to administrator.": "Člana {member} ste povišali v skrbnika.", + "You promoted {member} to moderator.": "Člana {member} ste povišali v moderatorja.", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "Razpravo ste preimenovali iz {old_discussion} v {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Preimenovali ste mapo iz {old_resource_title} v {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Vir ste preimenovali iz {old_resource_title} v {resource}.", + "You replied to a comment on the event {event}.": "Odgovorili ste na komentar o dogodku {event}.", + "You replied to the discussion {discussion}.": "Odgovorili ste na razpravo {discussion}.", + "You requested to join the group.": "Zaprosili ste za članstvo v skupini.", + "You updated the event {event}.": "Posodobili ste dogodek {event}.", + "You updated the group {group}.": "Posodobili ste skupino {group}.", + "You updated the member {member}.": "Posodobili ste člana {član}.", + "You updated the post {post}.": "Posodobili ste objavo {post}.", + "You were demoted to an unknown role by {profile}.": "V neznano vlogo vas je degradiral/a {profil}.", + "You were demoted to moderator by {profile}.": "V moderatorja vas je degradiral/a {profile}.", + "You were demoted to simple member by {profile}.": "V navadnega člana vas je degradiral/a {profile}.", + "You were promoted to administrator by {profile}.": "V skrbnika vas je povišal/a {profile}.", + "You were promoted to an unknown role by {profile}.": "V neznano vlogo vas je povišal/a {profile}.", + "You were promoted to moderator by {profile}.": "V moderatorja vas je povišal/a {profile}.", + "You will be able to add an avatar and set other options in your account settings.": "V nastavitvah računa boste lahko dodali podobo in nastavili druge možnosti.", + "You will be redirected to the original instance": "Preusmerjeni boste na prvotno vozlišče", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "Želite se udeležiti naslednjega dogodka", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Vsak ponedeljek boste dobili tedenski povzetek prihajajočih dogodkov.", + "You'll need to change the URLs where there were previously entered.": "Spremeniti boste morali naslove URL, ki so bili predhodno vneseni.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Morali boste poslati URL skupine, da bodo lahko ljudje dostopali do profila skupine. Skupine ne bo mogoče najti v iskalnikih Mobilizon ali običajnih iskalnikih.", + "You'll receive a confirmation email.": "Prejeli boste potrditveno e-pošto.", + "YouTube live": "", + "YouTube replay": "", + "Your account has been successfully deleted": "Vaš račun je uspešno izbrisan", + "Your account has been validated": "Vaš račun je potrjen", + "Your account is being validated": "Vaš račun je v procesu potrjevanja", + "Your account is nearly ready, {username}": "Vaš račun je skoraj pripravljen, {username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Vaše mesto ali regija in območje bosta uporabljena le za predlaganje dogodkov v bližini. Območje dogodka bo upošteval upravno središče območja.", + "Your current email is {email}. You use it to log in.": "Vaš trenutni e-poštni naslov je {email}. Uporabljate ga za prijavo.", + "Your email": "Vaša e-pošta", + "Your email address was automatically set based on your {provider} account.": "Vaš e-poštni naslov je bil samodejno nastavljen glede na račun ponudnika {provider}.", + "Your email has been changed": "Vaš e-poštni naslov je bil spremenjen", + "Your email is being changed": "Vaš e-poštni naslov je bil spremenjen", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Vaš e-poštni naslov bo uporabljen samo za potrditev, da ste resnična oseba, in za morebitne posodobitve za ta dogodek. NE bo posredovan drugim vozliščem ali organizatorju dogodka.", + "Your federated identity": "Vaša federirana identiteta", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "Vaša udeležba je potrjena", + "Your participation has been rejected": "Vaša udeležba je bila zavrnjena", + "Your participation has been requested": "Zahtevana je vaša udeležba", + "Your participation request has been validated": "Vaša udeležba je potrjena", + "Your participation request is being validated": "Vaša udeležba je v procesu potrjevanja", + "Your participation status has been changed": "Vaše stanje udeležbe je bilo spremenjeno", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Stanje udeležbe je shranjeno samo v tej napravi in bo izbrisano en mesec po preteku dogodka.", + "Your participation still has to be approved by the organisers.": "Organizatorji morajo še odobriti vašo udeležbo.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Udeležba bo potrjena, ko boste kliknili potrditveno povezavo v e-pošti in ko bo organizator ročno potrdil vašo udeležbo.", + "Your participation will be validated once you click the confirmation link into the email.": "Udeležba bo potrjena, ko boste kliknili potrditveno povezavo v e-pošti..", + "Your position was not available.": "", + "Your profile will be shown as contact.": "Vaš profil bo prikazan kot stik.", + "Your timezone is currently set to {timezone}.": "Vaš časovni pas je trenutno nastavljen na {timezone}.", + "Your timezone was detected as {timezone}.": "Vaš časovni pas je bil zaznan kot {timezone}.", + "Your timezone {timezone} isn't supported.": "Vaš časovni pas {timezone} ni podprt.", + "Your upcoming events": "Prihajajoči dogodki", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "[Ta komentar je avtor izbrisal]", + "[This comment has been deleted]": "[Ta komentar je bil izbrisan]", + "[deleted]": "[izbrisano]", + "a non-existent report": "neobstoječe poročilo", + "access to the group's private content as well": "", + "and {number} groups": "in {number} skupin", + "any distance": "vse razdalje", + "as {identity}": "kot {identity}", + "contact uninformed": "neobveščen stik", + "create a group": "ustvari skupino", + "create an event": "ustvari dogodek", + "default Mobilizon privacy policy": "privzet pravilnik o zasebnosti za Mobilizon", + "default Mobilizon terms": "privzeti pogoji Mobilizona", + "e.g. 10 Rue Jangot": "npr. Kersnikova ulica 4", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "razišči dogodke", + "explore the groups": "razišči skupine", + "full rules": "polna pravila", + "group's upcoming public events": "", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "vir iCal", + "instance rules": "pravila vozlišča", + "more than 1360 contributors": "več kot 1360 sodelavcev", + "profile@instance": "profil@vozlišče", + "report #{report_number}": "poročilo #{report_number}", + "return to the event's page": "vrnitev na stran dogodka", + "terms of service": "pogoji storitve", + "with another identity…": "z drugo identiteto…", + "your notification settings": "", + "{'@'}{username}": "{'@'}{username}", + "{approved} / {total} seats": "{approved} / {total} mest", + "{available}/{capacity} available places": "Prostih mest ni več|{available}/{capacity} prostih mest", + "{count} km": "{count} km", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "Še ni udeležencev | En udeleženec | {count} udeležencev", + "{count} requests waiting": "{count} zahtev čaka", + "{folder} - Resources": "", + "{group} activity timeline": "Časovnica dejavnosti od {group}", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "Dogodki skupine {group}", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} je vozlišče programske opreme {mobilizon}.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} je vozlišče {mobilizon_link} brezplačne programske opreme, ki je nastala v sodelovanju s skupnostjo.", + "{member} accepted the invitation to join the group.": "{member} je sprejel/a povabilo v skupino.", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "{member} je zavrnil/a povabilo v skupino.", + "{member} requested to join the group.": "{member} je zaprosil/a za članstvo v skupini.", + "{member} was invited by {profile}.": "{profile} je povabil/a {member}.", + "{moderator} added a note on {report}": "{moderator} je dodal_a opombo o {report}", + "{moderator} closed {report}": "{moderator} zaprl_a {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} je izbrisal_a dogodek z imenom \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} je izbrisal_a komentar {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} je izbrisal_a komentar {author} na dogodku {event}", + "{moderator} has deleted user {user}": "{moderator} je izbrisal_a uporabnika_co {user}", + "{moderator} has done an unknown action": "{moderator} je storil_a neznano dejanje", + "{moderator} has unsuspended group {profile}": "{moderator} je umaknil_a suspenz skupine {profile}", + "{moderator} has unsuspended profile {profile}": "{moderator} je odsuspendiral_a profil {profile}", + "{moderator} marked {report} as resolved": "{moderator} je označil_a {report} kot razrešeno", + "{moderator} reopened {report}": "{moderator} je ponovno odprl_a {report}", + "{moderator} suspended group {profile}": "{moderator} je suspendiral_a skupino {profile}", + "{moderator} suspended profile {profile}": "{moderator} je suspendiral_a profil {profile}", + "{nb} km": "{nb} km", + "{number} members": "{number} članov", + "{number} memberships": "", + "{number} organized events": "Ni organiziranih dogodkov|En organiziran dogodek|{number} organiziranih dogodkov", + "{number} participations": "Ni udeležencev|En udeleženec|{number} udeležencev", + "{number} posts": "Ni objav|Ena objava|{number} objav", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "{old_group_name} je bilo preimenovano v {group}.", + "{profile} (by default)": "{profile} (privzeto)", + "{profile} added the member {member}.": "{profile} je dodal/a člana {member}.", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "{profile} je arhiviral/a razpravo {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} je ustvaril/a razpravo {discussion}.", + "{profile} created the folder {resource}.": "{profile} je ustvaril/a mapo {resource}.", + "{profile} created the group {group}.": "{profile} je ustvaril/a skupino {group}.", + "{profile} created the resource {resource}.": "{profile} je ustvaril/a vir {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} je izbrisal/a razpravo {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} je izbrisal/a mapo {resource}.", + "{profile} deleted the resource {resource}.": "{profile} je izbrisal/a vir {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} je degradiral {member} v neznano vlogo.", + "{profile} demoted {member} to moderator.": "{profile} je degradiral {member} v moderatorja.", + "{profile} demoted {member} to simple member.": "{profile} je degradiral {member} v navadnega člana.", + "{profile} excluded member {member}.": "{profile} je izključil/a člana {member}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} je premaknil/a mapo {resource} v {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} je premaknil/a mapo {resource} v korensko mapo.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} je premaknil/a vir {resource} v {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} je premaknil/a vir {resource} v korensko mapo.", + "{profile} posted a comment on the event {event}.": "{profile} je objavil/a komentar o dogodku {event}.", + "{profile} promoted {member} to administrator.": "{profile} je promoviral {member} v skrbnika.", + "{profile} promoted {member} to an unknown role.": "{profile} je promoviral {member} v neznano vlogo.", + "{profile} promoted {member} to moderator.": "{profile} je promoviral {member} v moderatorja.", + "{profile} quit the group.": "{profile} je zapustil/a skupno.", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} je preimenoval/a razpravo iz {old_discussion} v {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} je preimenoval/a mapo iz {old_resource_title} v {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} je preimenoval/a vir iz {old_resource_title} v {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} je odgovoril/a na komentar o dogodku {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} je odgovoril/a na razpravo {discussion}.", + "{profile} updated the group {group}.": "{profile} je posodobil/a skupino {group}.", + "{profile} updated the member {member}.": "{profile} je posodobil člana {member}.", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "{title} ({count} todos)", + "{username} was invited to {group}": "{username} je povabljen/a v {group}", + "© The OpenStreetMap Contributors": "© The OpenStreetMap Contributors" +}); diff --git a/res/locale/sv.js b/res/locale/sv.js new file mode 100644 index 0000000..10dd6b5 --- /dev/null +++ b/res/locale/sv.js @@ -0,0 +1,1641 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(Maskerad)", + "(this folder)": "(denna mapp)", + "(this link)": "(denna länk)", + "+ Add a resource": "+ Lägg till en resurs", + "+ Create a post": "+ Skapa ett inlägg", + "+ Create an event": "+ Skapa ett evenemang", + "+ Start a discussion": "+ Starta en diskussion", + "0 Bytes": "0 Byte", + "{contact} will be displayed as contact.": "{contact} kommer att visas som kontakt.|{contact} kommer att visas som kontakter.", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "@{username}s följförfrågan accepterades", + "@{username}'s follow request was rejected": "@{username}s begäran om att följa avvisades", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "En cookie är en liten fil med information som skickas till din dator när du besöker en webbplats. När du besöker webbplatsen igen gör cookien det möjligt för webbplatsen att känna igen din webbläsare. Cookies kan lagra användarinställningar och annan information. Du kan konfigurera din webbläsare så att alla cookies nekas. Detta kan dock leda till att vissa funktioner eller tjänster på webbplatsen inte fungerar fullt ut. Lokal lagring fungerar på samma sätt men gör att du kan lagra mer data.", + "A discussion has been created or updated": "En diskussion har skapats eller uppdaterats", + "A federated software": "En federerad programvara", + "A fediverse account URL to follow for event updates": "URLen till ett Fediverse-konto att följa för uppdateringar om evenemanget", + "A few lines about your group": "Några rader om din grupp", + "A link to a page presenting the event schedule": "En länk till en sida som presenterar evenemangets schema", + "A link to a page presenting the price options": "En länk till en sida där prisalternativen presenteras", + "A member has been updated": "En medlem har uppdaterats", + "A member requested to join one of my groups": "En medlem begärde att få gå med i en av mina grupper", + "A new version is available.": "En ny version är tillgänglig.", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "En plats för din uppförandekod, dina regler eller riktlinjer. Du kan använda HTML-taggar.", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "En plats där du kan förklara vem du är och vad som utmärker din instans. Du kan använda HTML-taggar.", + "A place to publish something to the whole world, your community or just your group members.": "En plats där du kan publicera något för hela världen, din community eller bara dina gruppmedlemmar.", + "A place to store links to documents or resources of any type.": "En plats för att lagra länkar till dokument eller resurser av alla slag.", + "A post has been published": "Ett inlägg har publicerats", + "A post has been updated": "Ett inlägg har uppdaterats", + "A practical tool": "Ett praktiskt verktyg", + "A resource has been created or updated": "En resurs har skapats eller uppdaterats", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "En kort slogan för din instans hemsida. Standardinställningen är \"Samla ⋅ Organisera ⋅ Mobilisera\"", + "A twitter account handle to follow for event updates": "Ett Twitter-konto att följa för uppdateringar om evenemanget", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Ett användarvänligt, frigörande och etiskt verktyg för att samlas, organisera och mobilisera.", + "A validation email was sent to {email}": "Ett valideringsmail skickades till {email}", + "API": "API", + "Abandon editing": "Överge redigering", + "About": "Om", + "About Mobilizon": "Om Mobilizon", + "About anonymous participation": "Om anonymt deltagande", + "About instance": "Om instans", + "About this event": "Om det här evenemanget", + "About this instance": "Om den här instansen", + "About {instance}": "Om {instance}", + "Accept": "Acceptera", + "Accept follow": "Acceptera följning", + "Accepted": "Accepterad", + "Access drafts events": "Åtkomst till evenemangsutkast", + "Access followed groups": "Tillgång till följda grupper", + "Access group activities": "Tillgång till gruppaktiviteter", + "Access group discussions": "Få tillgång till gruppdiskussioner", + "Access group events": "Få tillgång till grupphändelser", + "Access group followers": "Tillgång till gruppföljare", + "Access group members": "Åtkomst till gruppmedlemmar", + "Access group memberships": "Tillgång till gruppmedlemskap", + "Access group suggested events": "Åtkomst till gruppföreslagna evenemang", + "Access group todo-lists": "Tillgång till gruppens att-göra listor", + "Access organized events": "Tillgång till organiserade evenemang", + "Access participations": "Tillgång till deltaganden", + "Access your group's resources": "Få tillgång till din grupps resurser", + "Accessibility": "Tillgänglighet", + "Accessible only by link": "Tillgänglig endast via länk", + "Accessible only to members": "Endast tillgängligt för medlemmar", + "Accessible through link": "Tillgänglig via länk", + "Account": "Konto", + "Account settings": "Kontoinställningar", + "Actions": "Åtgärder", + "Activate browser push notifications": "Aktivera push-aviseringar i webbläsaren", + "Activate notifications": "Aktivera aviseringar", + "Activated": "Aktiverad", + "Active": "Aktiv", + "Activity": "Aktivitet", + "Actor": "Skådespelare", + "Adapt to system theme": "Anpassa till systemets tema", + "Add": "Lägg till", + "Add / Remove…": "Lägg till / Ta bort…", + "Add a contact": "Lägg till en kontakt", + "Add a new post": "Skapa ett nytt inlägg", + "Add a note": "Lägg till en kommentar", + "Add a recipient": "Lägg till en mottagare", + "Add a todo": "Lägg till en att-göra", + "Add an address": "Lägg till en adress", + "Add an instance": "Lägg till en instans", + "Add link": "Lägg till länk", + "Add new…": "Lägg till ny…", + "Add picture": "Lägg till bild", + "Add some tags": "Lägg till några taggar", + "Add to my calendar": "Lägg till i min kalender", + "Additional comments": "Yttligare kommentarer", + "Admin": "Administratör", + "Admin dashboard": "Administratörspanel", + "Admin settings": "Admin-inställningar", + "Admin settings successfully saved.": "Administratörsinställningarna har sparats.", + "Administration": "Administration", + "Administrator": "Administratör", + "All": "Alla", + "All activities": "Alla aktiviteter", + "All good, let's continue!": "Toppen, vi fortsätter!", + "All the places have already been taken": "Alla platser är redan upptagna", + "Allow all comments from users with accounts": "Tillåt alla kommentarer från inloggade användare", + "Allow registrations": "Tillåt kontoregistrering", + "An URL to an external ticketing platform": "En URL till en extern biljettplattform", + "An anonymous profile joined the event {event}.": "En anonym profil gick med i evenemanget {event}.", + "An error has occured while refreshing the page.": "Ett fel uppstod när sidan uppdaterades.", + "An error has occured. Sorry about that. You may try to reload the page.": "Ett fel har uppstått. Vi beklagar detta. Du kan försöka ladda om sidan.", + "An ethical alternative": "Ett etiskt alternativ", + "An event I'm going to has been updated": "Ett evenemang jag ska gå på har uppdaterats", + "An event I'm going to has posted an announcement": "Ett evenemang som jag ska gå på har publicerat ett tillkännagivande", + "An event I'm organizing has a new comment": "Ett evenemang som jag organiserar har fått en ny kommentar", + "An event I'm organizing has a new participation": "Ett evenemang som jag organiserar har ett nytt deltagande", + "An event I'm organizing has a new pending participation": "Ett evenemang som jag organiserar har ett nytt väntande deltagande", + "An event from one of my groups has been published": "Ett evenemang från en av mina grupper har publicerats", + "An event from one of my groups has been updated or deleted": "Ett evenemang från en av mina grupper har uppdaterats eller tagits bort", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "En instans är en Mobilizon-mjukvara som installerats och körs på en server. En instans kan drivas av vem som helst som använder {mobilizon_software} eller andra federerade appar ur det s.k. \"fediverse\". Den här instansen heter {instance_name}. Mobilizon är ett federerat nätverk av flera instanser (precis som mejlservrar!), och användare kan kommunicera med varandra även om de är registrerade på olika instanser.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "Ett \"application programming interface\" eller \"API\" är ett kommunikationsprotokoll som gör det möjligt för programvarukomponenter att kommunicera med varandra. Mobilizon APIet kan t.ex. göra det möjligt för tredjepartsverktyg att kommunicera med Mobilizon-instanser för att utföra vissa åtgärder, såsom att lägga upp evenemang, automatiskt och på distans.", + "An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events, automatically and remotely.": "Ett \"application programming interface\" eller \"API\" är ett kommunikationsprotokoll som gör det möjligt för programvarukomponenter att kommunicera med varandra. Mobilizon API kan t.ex. göra det möjligt för tredjepartsverktyg att kommunicera med Mobilizon-instanser för att utföra vissa åtgärder, såsom att lägga upp evenemang, automatiskt och på distans.", + "And {number} comments": "Och {number} kommentarer", + "Announcements": "Tillkännagivanden", + "Announcements and mentions notifications are always sent straight away.": "Tillkännagivanden och omnämnanden skickas alltid direkt.", + "Announcements for {eventTitle}": "Meddelanden för {eventTitle}", + "Anonymous participant": "Anonym deltagare", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Anonyma deltagare måste bekräfta sitt deltagande via e-post.", + "Anonymous participations": "Anonyma deltagare", + "Any category": "Alla kategorier", + "Any day": "Alla dagar", + "Any distance": "Alla avstånd", + "Any type": "Vilken typ som helst", + "Anyone can join freely": "Alla kan ansluta sig fritt", + "Anyone can request being a member, but an administrator needs to approve the membership.": "Vem som helst kan ansöka om att bli medlem, men en administratör måste godkänna medlemskapet.", + "Anyone wanting to be a member from your group will be able to from your group page.": "Alla som vill bli medlemmar i din grupp kan göra det från din gruppsida.", + "Application": "Applikation", + "Application authorized": "Applikationen auktoriserad", + "Application not found": "Applikationen hittades inte", + "Application was revoked": "Applikationen återkallades", + "Apply filters": "Tillämpa filter", + "Approve member": "Godkänn medlem", + "Apps": "Appar", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Är du verkligen säker på att du vill ta bort hela ditt konto? Du förlorar allt. Identiteter, inställningar, skapade händelser, meddelanden och deltagande försvinner för alltid.", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Är du säker på att du vill fullständigt radera den här gruppen? Alla medlemmar - även fjärrmedlemmar - kommer att meddelas och tas bort från gruppen, och alla gruppdata (händelser, inlägg, diskussioner, todos...) kommer oåterkalleligen att förstöras.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Är du säker på att du vill radera den här kommentaren? Detta kan inte ångras.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Är du säker på att du vill radera den här kommentaren? Detta kan inte ångras.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator and ask them to edit their event instead.": "Är du säker på att du vill ta bort detta evenemang? Denna åtgärd kan inte ångras. Du kanske vill ta upp diskussionen med den som skapade evenemanget och be dem att redigera sitt evenemang istället.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Är du säker på att du vill radera det här evenemanget? Denna åtgärd kan inte ångras. Du kanske vill delta i diskussionen med evenemangsskaparen eller redigera det istället.", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "Är du säker på att du vill stänga den här gruppen? Alla medlemmar - även fjärrmedlemmar - kommer att meddelas och tas bort från gruppen, och alla gruppdata (händelser, inlägg, diskussioner, todos...) kommer oåterkalleligen att förstöras.", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Är du säker på att du vill stänga ned denna grupp? Eftersom denna grupp härstammar från instans {instance}, kommer detta endast att ta bort lokala medlemmar och radera lokala data, samt avvisa alla framtida data.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Är du säker på att du vill avbryta evenemangskapandet? Du kommer förlora alla ändringar.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Är du säker på att du vill avbryta evenemangredigeringen? Du kommer förlora alla ändringar.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "Är du säker på att du vill avsluta ditt deltagande i evenemanget \"{title}\"?", + "Are you sure you want to delete this entire conversation?": "Är du säker på att du vill radera hela den här konversationen?", + "Are you sure you want to delete this entire discussion?": "Är du säker på att du vill radera hela den här diskussionen?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Är du säker på att du vill radera det här evenemanget? Den här handlingen kan inte ångras.", + "Are you sure you want to delete this post? This action cannot be reverted.": "Är du säker på att du vill radera detta inlägget? Den här handlingen kan inte ångras.", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "Är du säker på att du vill lämna gruppen {groupName}? Då förlorar du åtkomsten till gruppens privata innehåll. Denna åtgärd kan inte ångras.", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Eftersom organisatören har valt att manuellt validera förfrågningar om deltagande, kommer ditt deltagande att bekräftas först när du får ett e-postmeddelande om att det har accepterats.", + "Ask your instance admin to {enable_feature}.": "Be din instansadministratör att {enable_feature}.", + "Assigned to": "Tilldelad till", + "Atom feed for events and posts": "Atom-flöde för händelser och inlägg", + "Attending": "Deltagande", + "Authorize": "Auktorisera", + "Authorize application": "Auktorisera applikation", + "Authorized on {authorization_date}": "Godkänd den {authorization_date}", + "Autorize this application to access your account?": "Auktorisera denna applikation att komma åt ditt konto?", + "Avatar": "Avatar", + "Back to group list": "Tillbaka till grupplistan", + "Back to homepage": "Tillbaka till hemsidan", + "Back to previous page": "Tillbaka till föregående sida", + "Back to profile list": "Tillbaka till profillistan", + "Back to top": "Tillbaka till toppen", + "Back to user list": "Tillbaka till användarlistan", + "Banner": "Banner", + "Become part of the community and start organizing events": "Bli en del av gänget och börja organisera evenemang", + "Before you can login, you need to click on the link inside it to validate your account.": "Innan du loggar in måste du klicka på länken inuti det för att validera ditt konto.", + "Begins on": "Börjar den", + "Best match": "Bästa träff", + "Big Blue Button": "Big Blue Button", + "Bold": "Fet", + "Booking": "Bokning", + "Breadcrumbs": "Brödsmulor", + "Browser notifications": "Webbläsarnotifikationer", + "Bullet list": "Punktlista", + "By bike": "Med cykel", + "By car": "Med bil", + "By others": "Av andra", + "By transit": "Med kollektivtrafik", + "By {group}": "Av {group}", + "By {username}": "Av {username}", + "Can be an email or a link, or just plain text.": "Kan vara en e-postadress eller en länk, eller bara vanlig text.", + "Cancel": "Avbryt", + "Cancel anonymous participation": "Avbryt anonymt deltagande", + "Cancel creation": "Avbryt skapandet", + "Cancel discussion title edition": "Avbryt diskussion titel utgåva", + "Cancel edition": "Avbryt redigeringen", + "Cancel follow request": "Avbryt följningsbegäran", + "Cancel membership request": "Avbryt begäran om medlemskap", + "Cancel my participation request…": "Avbryt min ansökan om att delta…", + "Cancel my participation…": "Avsluta mitt deltagande…", + "Cancel participation": "Avbryt deltagande", + "Cancelled": "Inställt", + "Cancelled: Won't happen": "Inställt: Kommer inte ske", + "Categories": "Kategorier", + "Category": "Kategori", + "Category illustrations credits": "Erkännande kategoriillustrationer", + "Category list": "Kategorilista", + "Change": "Ändra", + "Change email": "Byt e-postadress", + "Change my email": "Ändra min e-postadress", + "Change my identity…": "Ändra min identitet…", + "Change my password": "Ändra mitt lösenord", + "Change role": "Ändra roll", + "Change the filters.": "Byt filtren.", + "Change timezone": "Ändra tidszon", + "Change user email": "Ändra användarens e-postadress", + "Change user role": "Ändra användarens roll", + "Check your device to continue. You may now close this window.": "Kontrollera din enhet för att fortsätta. Du kan nu stänga detta fönster.", + "Check your inbox (and your junk mail folder).": "Kontrollera din inkorg (och din skräppostmapp).", + "Choose the source of the instance's Privacy Policy": "Välj källan till instansens Integritetspolicy", + "Choose the source of the instance's Terms": "Välj källan till instansens Villkor", + "City or region": "Stad eller region", + "Clear": "Rensa", + "Clear address field": "Radera adressfält", + "Clear date filter field": "Rensa fältet för datumfilter", + "Clear participation data for all events": "Rensa deltagaruppgifter för alla evenemang", + "Clear participation data for this event": "Rensa deltagaruppgifter för detta evenemang", + "Clear timezone field": "Rensa fältet för tidszon", + "Click for more information": "Klicka för mer information", + "Click to upload": "Klicka för att ladda upp", + "Close": "Stäng", + "Close comments for all (except for admins)": "Stäng kommentarerna för alla (förutom administratörer)", + "Close map": "Stäng karta", + "Closed": "Stängd", + "Comment body": "Kommentarskropp", + "Comment deleted": "Kommentar raderad", + "Comment deleted and report resolved": "Kommentar raderad och anmälan löst", + "Comment from a private conversation": "Kommentar från en privat konversation", + "Comment from an event announcement": "Kommentar från ett evenemangsmeddelande", + "Comment from {'@'}{username} reported": "Kommentaren från {'@'}{username} rapporterades", + "Comment text can't be empty": "Kommentartexten kan inte vara tom", + "Comment under event {eventTitle}": "Kommentar under evenemang {eventTitle}", + "Comments": "Kommentarer", + "Comments are closed for everybody else.": "Kommentarer är stängda för alla andra.", + "Confirm": "Bekräfta", + "Confirm my participation": "Bekräfta mitt deltagande", + "Confirm my particpation": "Bekräfta mitt deltagande", + "Confirm participation": "Bekräfta deltagande", + "Confirm user": "Bekräfta användare", + "Confirmed": "Bekräftad", + "Confirmed at": "Bekräftades vid", + "Confirmed: Will happen": "Fastställt: Kommer ske", + "Congratulations, your account is now created!": "Grattis, ditt konto är nu skapat!", + "Contact": "Kontakta", + "Continue": "Fortsätt", + "Continue editing": "Fortsätt redigera", + "Conversation with {participants}": "Konversation med {participants}", + "Conversations": "Konversationer", + "Cookies and Local storage": "Kakor och lokal lagring", + "Copy URL to clipboard": "Kopiera URL till urklipp", + "Copy details to clipboard": "Kopiera detaljer till urklipp", + "Country": "Land", + "Create": "Skapa", + "Create a calc": "Skapa en kalkyl", + "Create a discussion": "Skapa en diskussion", + "Create a folder": "Skapa en mapp", + "Create a new event": "Skapa ett nytt evenemang", + "Create a new group": "Skapa en ny grupp", + "Create a new identity": "Skapa en ny identitet", + "Create a new list": "Skapa en ny lista", + "Create a new metadata element": "Skapa ett nytt metadataelement", + "Create a new profile": "Skapa en ny profil", + "Create a pad": "Skapa en padda", + "Create a videoconference": "Skapa en videokonferens", + "Create an account": "Skapa ett konto", + "Create discussion": "Skapa diskussion", + "Create event": "Skapa evenemang", + "Create feed tokens": "Skapa flödes-tokens", + "Create group": "Skapa grupp", + "Create group discussions": "Skapa gruppdiskussioner", + "Create group resources": "Skapa gruppresurser", + "Create identity": "Skapa identitet", + "Create my event": "Skapa mitt evenemang", + "Create my group": "Skapa min grupp", + "Create my profile": "Skapa min profil", + "Create new links": "Skapa nya länkar", + "Create new profiles": "Skapa nya profiler", + "Create resource": "Skapa en resurs", + "Create the discussion": "Skapa diskussionen", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Skapa att göra-listor för alla uppgifter du behöver göra, tilldela dem och ange förfallodatum.", + "Create token": "Skapa token", + "Created by {name}": "Skapad av {name}", + "Created by {username}": "Skapad av {användarnamn}", + "Current identity has been changed to {identityName} in order to manage this event.": "Aktiv identitet har ändrats till {identityName} för att hantera det här evenemanget.", + "Current page": "Nuvarande sida", + "Custom": "Anpassad", + "Custom URL": "Anpassad länk", + "Custom text": "Anpassad text", + "Daily email summary": "Daglig mejlsammanfattning", + "Dark": "Mörkt", + "Dashboard": "Kontrollpanel", + "Date": "Datum", + "Date and time": "Datum och tid", + "Date and time settings": "Datum- och tidsinställningar", + "Date parameters": "Datumparametrar", + "Deactivate notifications": "Avaktivera aviseringar", + "Decline": "Neka", + "Decrease": "Minska", + "Default": "Standard", + "Default Mobilizon privacy policy": "Standard-integritetsvillkor för Mobilizon", + "Default Mobilizon terms": "Standardvillkor för Mobilizon", + "Delete": "Radera", + "Delete account": "Radera konto", + "Delete comment": "Radera kommentar", + "Delete comment and resolve report": "Radera kommentar och stäng anmälan", + "Delete comments": "Radera kommentarer", + "Delete conversation": "Ta bort konversationen", + "Delete discussion": "Radera diskussion", + "Delete event": "Radera evenemang", + "Delete event and resolve report": "Radera evenemang och stäng anmälan", + "Delete events": "Radera evenemang", + "Delete everything": "Radera allting", + "Delete feed tokens": "Radera flödes-tokens", + "Delete group": "Radera grupp", + "Delete group discussions": "Radera gruppdiskussioner", + "Delete group posts": "Ta bort gruppinlägg", + "Delete group resources": "Radera gruppresurser", + "Delete my account": "Radera mitt konto", + "Delete post": "Radera inlägg", + "Delete profiles": "Radera profiler", + "Delete this conversation": "Radera denna konversation", + "Delete this discussion": "Radera denna diskussion", + "Delete this identity": "Radera den här identiteten", + "Delete your identity": "Radera din identitet", + "Delete {eventTitle}": "Radera {eventTitle}", + "Delete {preferredUsername}": "Radera {preferredUsername}", + "Deleting comment": "Radera kommentar", + "Deleting event": "Raderar evenemang", + "Deleting my account will delete all of my identities.": "Genom att radera mitt konto, tas även mina identiteter bort.", + "Deleting your Mobilizon account": "Radera ditt Mobilizon-konto", + "Demote": "Degradera", + "Describe your event": "Beskriv ditt evenemang", + "Description": "Beskrivning", + "Details": "Detaljer", + "Device activation": "Enhetsaktivering", + "Didn't receive the instructions?": "Fick inte instruktionerna?", + "Disabled": "avaktiverad", + "Discussions": "Diskussioner", + "Discussions list": "Diskussionslista", + "Display name": "Visa namn", + "Display participation price": "Visa pris för deltagande", + "Displayed nickname": "Visat smeknamn", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Visas på hemsida och metataggar. Beskriv vad Mobilizon är och vad som gör denna instans speciell i ett enda stycke.", + "Distance": "Avstånd", + "Do not receive any mail": "Motta inga mejl", + "Do you really want to suspend the account « {emailAccount} » ?": "Vill du verkligen stänga av kontot « {emailAccount} » ?", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "Vill du verkligen stänga av det här kontot? Alla användarens profiler kommer att raderas.", + "Do you really want to suspend this profile? All of the profiles content will be deleted.": "Vill du verkligen stänga av den här profilen? Allt innehåll i profilen kommer att raderas.", + "Do you wish to {create_event} or {explore_events}?": "Vill du {create_event} eller {explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "Vill du {skapa_grupp} eller {utforska_grupper}?", + "Does the event needs to be confirmed later or is it cancelled?": "Måste evenemanget bekräftas senare eller är det inställt?", + "Domain": "Domän", + "Domain or instance name": "Domän- eller instansnamn", + "Draft": "Utkast", + "Drafts": "Utkast", + "Due on": "Förfaller den", + "Duplicate": "Kopiera", + "Edit": "Redigera", + "Edit post": "Redigera inlägg", + "Edit profile {profile}": "Redigera profil {profile}", + "Edit user email": "Redigera användarens e-post", + "Edited {ago}": "Redigera {ago}", + "Edited {relative_time} ago": "Redigerad {relative_time} sedan", + "Eg: Stockholm, Dance, Chess…": "E.g.: Stockholm, Dans, Schack…", + "Either on the {instance} instance or on another instance.": "Antingen på instansen {instance}, eller någon annan.", + "Either the account is already validated, either the validation token is incorrect.": "Antingen är kontot redan validerat eller så är valideringstoken inkorrekt.", + "Either the email has already been changed, either the validation token is incorrect.": "Antingen så har emailadressen redan ändrats eller så är valideringstoken felaktigt.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Antingen har begäran om deltagande redan validerats eller så är valideringstoken felaktig.", + "Either your participation has already been cancelled, either the validation token is incorrect.": "Antingen har ditt deltagande redan avbokats, eller så är valideringstoken felaktig.", + "Element title": "Elementtitel", + "Element value": "Elementvärde", + "Email": "E-post", + "Email address": "Mejladress", + "Email validate": "E-post validera", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "E-postmeddelanden innehåller vanligtvis inte versaler, se till att du inte har gjort ett stavfel.", + "Enabled": "Aktiverad", + "Ends on…": "Slutar…", + "Enter the code displayed on your device": "Ange koden som visas på din enhet", + "Enter the link URL": "Skriv in länken", + "Enter your email address below, and we'll email you instructions on how to change your password.": "Fyll i din mejladress nedan, så mejlar vi dig instruktioner för hu du återställer ditt lösenord.", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Ange din egen integritetspolicy. HTML-taggar tillåtna. {mobilizon_privacy_policy} tillhandahålls som mall.", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Ange dina egna nyckelord. HTML-taggar är tillåtna. {mobilizon_terms} tillhandhålls som mall.", + "Error": "Fel", + "Error details copied!": "Felmeddelandedetaljer kopierade!", + "Error message": "Felmeddelande", + "Error stacktrace": "Stacktrace för fel", + "Error while cancelling your participation": "Fel vid avbokning av ditt deltagande", + "Error while changing email": "Fel vid byte av e-post", + "Error while loading the preview": "Fel vid laddning av förhandsgranskningen", + "Error while login with {provider}. Retry or login another way.": "Fel vid inloggning med {provider}. Försök igen eller logga in på annat sätt.", + "Error while login with {provider}. This login provider doesn't exist.": "Fel vid inloggning med {provider}. Den som ska tillhandahålla inloggningen finns inte.", + "Error while reporting group {groupTitle}": "Fel vid anmälning av grupp {groupTitle}", + "Error while subscribing to push notifications": "Fel vid prenumeration på push-aviseringar", + "Error while suspending group": "Fel vid avstängning av grupp", + "Error while updating participation status inside this browser": "Fel vid uppdatering av deltagarstatus i denna webbläsare", + "Error while validating account": "Fel vid validering av konto", + "Error while validating participation request": "Fel vid validering av deltagandeförfrågan", + "Etherpad notes": "Etherpad-anteckningar", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "Etiska alternativ till Facebookevenemang, grupper och sidor. Mobilizon är ett verktyg utformat för att tjäna dig. Punkt.", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "Etiskt alternativ till Facebooks evenemang, grupper och sidor. Mobilizon är ett {tool_designed_to_serve_you}. Punkt.", + "Event": "Evenemang", + "Event URL": "Evenemangs-URL", + "Event already passed": "Evenemanget är över", + "Event cancelled": "Evenemanget är inställt", + "Event creation": "Evenemangskapande", + "Event date": "Evenemangsdatum", + "Event deleted": "Evenemang raderat", + "Event deleted and report resolved": "Evenemanget raderat och anmälan stängd", + "Event description body": "Evenemangsbeskrivning kropp", + "Event edition": "Evenemangredigerande", + "Event list": "Evenemanglista", + "Event metadata": "Evenemangsmetadata", + "Event page settings": "Evenemangsidans inställningar", + "Event status": "Evenemangsstatus", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "Tidszon för evenemanget kommer som standard att vara tidszonen för evenemangets adress om det finns en sådan, eller din egen tidszoninställning.", + "Event to be confirmed": "Evenemang ska bekräftas", + "Event {eventTitle} deleted": "Evenemang {eventTitle} raderat", + "Event {eventTitle} reported": "Evenemang {eventTitle} rapporterat", + "Events": "Evenemang", + "Events close to you": "Evenemang nära dig", + "Events nearby": "Evenemang i närheten", + "Events nearby {position}": "Evenemang i närheten av {position}", + "Events tagged with {tag}": "Event taggade med {tag}", + "Everything": "Allt", + "Ex: mobilizon.fr": "T.ex: mobilizon.fr", + "Ex: someone@mobilizon.org": "Till exempel: någon@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "Ex: någon{'@'}mobilizon.org", + "Explore": "Utforska", + "Explore events": "Utforska evenemang", + "Explore!": "Utforska!", + "Export": "Exportera", + "External provider URL": "URL för extern leverantör", + "External registration": "Extern registrering", + "Failed to get location.": "Lyckades inte hitta platsen.", + "Failed to save admin settings": "Det gick inte att spara admininställningar", + "Featured events": "Utvalda evenemang", + "Federated Group Name": "Federerat Gruppnamn", + "Federation": "Federation", + "Fediverse account": "Fediverse-konto", + "Fetch more": "Hämta fler", + "Filter": "Filter", + "Filter by name": "Filtrera efter namn", + "Filter by profile or group name": "Filtrera efter profil- eller gruppnamn", + "Find an address": "Hitta en adress", + "Find an instance": "Hitta en instans", + "Find another instance": "Hitta en annan instans", + "Find or add an element": "Hitta eller lägg till ett element", + "First steps": "De första stegen", + "Follow": "Följ", + "Follow a new instance": "Följ en ny instans", + "Follow instance": "Följ instans", + "Follow request pending approval": "Följbegäran väntar på godkännande", + "Follow requests will be approved by a group moderator": "Följningsförfrågningar kommer att godkännas av en gruppmoderator", + "Follow status": "Följstatus", + "Followed": "Följer", + "Followed, pending response": "Följt, väntar på svar", + "Follower": "Följare", + "Followers": "Följare", + "Followers will receive new public events and posts.": "Följare kommer att få nya offentliga händelser och inlägg.", + "Following": "Följer", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "Genom att följa gruppen kan du få information om {group_upcoming_public_events}, medans genom att gå med i gruppen får du {access_to_group_private_content_as_well}, inklusive gruppdiskussioner, gruppresurser och inlägg som endast är tillgängliga för medlemmar.", + "Followings": "Följer", + "Follows us": "Följer oss", + "Follows us, pending approval": "Följer oss, väntar på godkännande", + "For instance: London": "Till exempel: London", + "For instance: London, Taekwondo, Architecture…": "Till exempel: London, Taekwondo, Arkitektur …", + "Forgot your password ?": "Glömt ditt lösenord?", + "Forgot your password?": "Glömt ditt lösenord?", + "Framadate poll": "Framadate-poll", + "From my groups": "Från mina grupper", + "From the {startDate} at {startTime} to the {endDate}": "Från {startDate} klockan {startTime} till {endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "Från {startDate} klockan {startTime} till {endDate} klockan {endTime}", + "From the {startDate} to the {endDate}": "Från {startDate} till {endDate}", + "From yourself": "Från dig själv", + "Fully accessible with a wheelchair": "Fullt tillgänglig med rullstol", + "Gather ⋅ Organize ⋅ Mobilize": "Samlas ⋅ Organisera ⋅ Mobilisera", + "General": "Allmänt", + "General information": "Generell information", + "General settings": "Allmänna inställningar", + "Geolocate me": "Geolokalisera mig", + "Geolocation was not determined in time.": "Geolokalisering fastställdes inte i tid.", + "Get informed of the upcoming public events": "Få information om kommande offentliga evenemang", + "Getting location": "Hämtar plats", + "Getting there": "Ta sig dit", + "Glossary": "Ordlista", + "Go": "Gå", + "Go to booking": "Gå till bokning", + "Go to the event page": "Gå till evenemangssidan", + "Go!": "Kör!", + "Google Meet": "Google Meet", + "Group": "Grupp", + "Group Followers": "Gruppföljare", + "Group Members": "Gruppmedlemmar", + "Group URL": "Grupp-URL", + "Group activity": "Gruppaktivitet", + "Group address": "Gruppadress", + "Group description body": "Gruppbeskrivning kropp", + "Group display name": "Gruppens visningsnamn", + "Group members": "Gruppmedlemmar", + "Group name": "Gruppnamn", + "Group profiles": "Grupprofiler", + "Group settings": "Gruppinställningar", + "Group settings saved": "Gruppinställningar sparade", + "Group short description": "Kort gruppbeskrivning", + "Group visibility": "Gruppsynlighet", + "Group {displayName} created": "Gruppen {displayName} har skapats", + "Group {groupTitle} reported": "Grupp {groupTitle} anmäld", + "Groups": "Grupper", + "Groups are not enabled on this instance.": "Grupper är inte aktiverade på denna instans.", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "Grupper är utrymmen för samordning och förberedelser för att bättre organisera evenemang och hantera ditt community.", + "Heading Level 1": "Rubrik Nivå 1", + "Heading Level 2": "Rubrik Nivå 2", + "Heading Level 3": "Rubrik Nivå 3", + "Headline picture": "Huvudbild", + "Hide filters": "Dölj filter", + "Hide replies": "Dölj svar", + "Home": "Hem", + "Home to {number} users": "Hem för {number} användare", + "Homepage": "Hemsida", + "Hourly email summary": "Timvis mejlsammanfattning", + "I agree to the {instanceRules} and {termsOfService}": "Jag godkänner {instanceRules} och {termsOfService}", + "I create an identity": "Jag skapar en identitet", + "I don't have a Mobilizon account": "Jag har inget Mobilizon konto", + "I have a Mobilizon account": "Jag har ett Mobilizon konto", + "I have an account on another Mobilizon instance.": "Jag har ett konto i en annan Mobilizon instans.", + "I have an account on {instance}.": "Jag har ett konto på {instance}.", + "I participate": "Jag deltar", + "I want to allow people to participate without an account.": "Jag vill låta personer utan ett konto delta.", + "I want to approve every participation request": "Jag vill godkänna varje deltagande", + "I want to manage the registration with an external provider": "Jag vill hantera registreringen med en extern leverantör", + "I've been mentionned in a comment under an event": "Jag har blivit omnämnd i en kommentar under ett evenemang", + "I've been mentionned in a conversation": "Jag har nämnts i en konversation", + "I've been mentionned in a group discussion": "Jag har blivit omnämnd i en gruppdiskussion", + "I've clicked on X, then on Y": "Jag har klickat på X, sedan på Y", + "ICS feed for events": "ICS-flöde för evenemang", + "ICS/WebCal Feed": "ICS/WebCal-flöde", + "IP Address": "IP-adress", + "Identities": "Identiteter", + "Identity {displayName} created": "Identiteten {displayName} skapad", + "Identity {displayName} deleted": "Identiteten {displayName} raderad", + "Identity {displayName} updated": "Identiteten {displayName} uppdaterad", + "If allowed by organizer": "Om organisatören tillåter", + "If an account with this email exists, we just sent another confirmation email to {email}": "Om ett konto med den här e-postadressen finns skickade vi precis ett till meddelande till {email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Om den här identiteten är den enda administratören av vissa grupper måste du radera dem innan du kan radera den här identiteten.", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Om du blir tillfrågad om din federerade identitet består den av ditt användarnamn och din instans. Den federerade identiteten för din första profil är t.ex:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Om du har valt manuell validering av deltagare kommer Mobilizon att skicka ett e-postmeddelande till dig för att informera dig om nya deltagare som ska behandlas. Du kan välja frekvens för dessa meddelanden nedan.", + "If you want, you may send a message to the event organizer here.": "Om du vill så kan du skicka ett meddelande till händelsens organisatör här.", + "Ignore": "Ignorera", + "Illustration picture for “{category}” by {author} on {source} ({license})": "Illustrationsbild för \"{category}\" av {author} på {source} ({license})", + "In person": "Personligen", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "I den här kontexten är en applikation mjukvara som tillhanahålls av Mobilizon-teamet eller av tredje part, och som använd för att interagera med din instans.", + "In the past": "I det förflutna", + "In this instance's network": "På den här instansens nätverk", + "Increase": "Öka", + "Instance": "Instans", + "Instance Long Description": "Kort beskrivning av instansen", + "Instance Name": "Instansnamn", + "Instance Privacy Policy": "Instansens integritetspolicy", + "Instance Privacy Policy Source": "Källa till instansens Integritetspolicy", + "Instance Privacy Policy URL": "URL för instansens integritetspolicy", + "Instance Rules": "Instansregler", + "Instance Short Description": "Kort beskrivning av instansen", + "Instance Slogan": "Instansens slogan", + "Instance Terms": "Instansvillkor", + "Instance Terms Source": "Källa för instansens villkor", + "Instance Terms URL": "Instansvillkor URL", + "Instance administrator": "Instansadministratör", + "Instance configuration": "Instanskonfiguration", + "Instance feeds": "Instansflöden", + "Instance languages": "Instansens språk", + "Instance rules": "Instansregler", + "Instance settings": "Instansinställningar", + "Instances": "Instanser", + "Instances following you": "Instanser som följer dig", + "Instances you follow": "Instanser du följer", + "Integrate this event with 3rd-party tools and show metadata for the event.": "Integrera detta evenemang med tredjepartsverktyg och visa metadata för evenemanget.", + "Interact": "Interagera", + "Interact with a remote content": "Interagera med distansinnehåll", + "Invite a new member": "Bjud in en ny medlem", + "Invite member": "Bjud in en medlem", + "Invited": "Inbjudna", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Det är möjligt att innehållet inte är tillgängligt på denna instans, eftersom denna instans har blockerat profilerna eller grupperna bakom detta innehåll.", + "Italic": "Kursiv", + "Jitsi Meet": "Jitsi Meet", + "Join": "Delta", + "Join {instance}, a Mobilizon instance": "Gå med i {instance}, en Mobilizon instans", + "Join group": "Gå med i grupp", + "Join group {group}": "Gå med i grupp {group}", + "Join {instance}, a Mobilizon instance": "Gå med i {instance}, en Mobilizon-instans", + "Keep the entire conversation about a specific topic together on a single page.": "Håll hela diskussionen om ett specifikt ämne samlad på en enda sida.", + "Key words": "Nyckelord", + "Keyword, event title, group name, etc.": "Nyckelord, evenemangsrubrik, gruppnamn, etc.", + "Language": "Språk", + "Languages": "Språk", + "Last IP adress": "Senaste IP-adress", + "Last group created": "Senaste grupp skapad", + "Last published event": "Senast publicerade evenemang", + "Last published events": "Senast publicerade evenemang", + "Last seen on": "Senast sedd den", + "Last sign-in": "Senaste inloggning", + "Last used on {last_used_date}": "Senast använd den {last_used_date}", + "Last week": "Senaste veckan", + "Latest posts": "Senaste inläggen", + "Learn more": "Lär dig mer", + "Learn more about Mobilizon": "Lär dig mer om Mobilizon", + "Learn more about {instance}": "Läs mer om {instance}", + "Least recently published": "Äldst publicerad", + "Leave": "Lämna", + "Leave event": "Lämna evenemang", + "Leave group": "Lämna grupp", + "Leaving event \"{title}\"": "Lämnar evenemanget \"{title}\"", + "Legal": "Juridisk information", + "Let's define a few settings": "Dags att fixa några inställningar", + "License": "Licens", + "Light": "Ljust", + "Limited number of places": "Begränsat antal platser", + "List": "Lista", + "List of conversations": "Lista över konversationer", + "List title": "Listrubrik", + "Live": "Direktsändning", + "Load more": "Ladda fler", + "Load more activities": "Ladda fler aktiviteter", + "Loading comments…": "Laddar kommentarer…", + "Loading map": "Laddar karta", + "Local": "Lokalt", + "Local time ({timezone})": "Lokal tid ({timezone})", + "Local times ({timezone})": "Lokala tider ({timezone})", + "Locality": "Plats", + "Location": "Plats", + "Log in": "Logga in", + "Log out": "Logga ut", + "Login": "Logga in", + "Login on Mobilizon!": "Logga in på Mobilizon!", + "Login on {instance}": "Logga in på {instance}", + "Login status": "Inloggningsstatus", + "Main languages you/your moderators speak": "Språk som du eller dina moderatorer behärskar", + "Make sure that all words are spelled correctly.": "Se till att alla ord är korrekt stavade.", + "Manage activity settings": "Hantera aktivitetsinställningar", + "Manage event participations": "Hantera deltagande i evenemang", + "Manage group members": "Hantera gruppmedlemmar", + "Manage group memberships": "Hantera gruppmedlemskap", + "Manage participations": "Hantera deltaganden", + "Manage push notification settings": "Hantera inställningar för push-notiser", + "Manually approve new followers": "Manuellt godkänn nya följare", + "Manually enter address": "Ange adress manuellt", + "Manually invite new members": "Manuellt bjuda in nya medlemmar", + "Map": "Karta", + "Mark as resolved": "Markera som löst", + "Maybe the content was removed by the author or a moderator": "Kanske har innehållet tagits bort av författaren eller en moderator", + "Member": "Medlem", + "Members": "Medlemmar", + "Members will also access private sections like discussions, resources and restricted posts.": "Medlemmar har också tillgång till privata sektioner som diskussioner, resurser och begränsade inlägg.", + "Members-only post": "Inlägg endast för medlemmar", + "Membership requests will be approved by a group moderator": "Medlemskapsförfrågningar kommer att godkännas av en gruppmoderator", + "Memberships": "Medlemskap", + "Mentions": "Omnämnanden", + "Message": "Meddelande", + "Message body": "Meddelandets huvuddel", + "Microsoft Teams": "Microsoft Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon är ett federerat nätverk. Du kan interagera med den här händelsen från en annan server.", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon är en federerad programvara, vilket innebär att du - beroende på dina federationsinställningar - kan interagera med innehåll från andra instanser, t.ex. gå med i grupper eller evenemang som skapats någon annanstans.", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon är ett verktyg som hjälper dig att hitta, skapa och organisera evenemang.", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon är ett verktyg som hjälper dig att {find_create_organize_events}.", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon är inte en gigantisk plattform, utan en mängd sammankopplade Mobilizon-webbplatser.", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon är inte en gigantisk plattform, utan en {multitude_of_interconnected_mobilizon_websites}.", + "Mobilizon software": "Mobilizon-mjukvara", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon använder ett system med profiler för att jämföra dina aktiviteter. Du kommer att kunna skapa så många profiler som du vill.", + "Mobilizon version": "Mobilizon-version", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon skickar dig ett mejl när evenemangen du deltar i har viktiga ändringar: datum och tid, plats, bekräftelse eller avbokning, etc.", + "Moderate new members": "Moderera nya medlemmar", + "Moderated comments (shown after approval)": "Modererade kommentarer (visas när de godkänts)", + "Moderation": "Moderering", + "Moderation log": "Moderationslogg", + "Moderation logs": "Moderationsloggar", + "Moderator": "Moderator", + "Modify all of your account's data": "Ändra alla data för ditt konto", + "More options": "Fler alternativ", + "Most recently published": "Senast publicerade", + "Move": "Flytta", + "Move \"{resourceName}\"": "Flytta \"{resourceName}\"", + "Move resource to the root folder": "Flytta resurs till rotmappen", + "Move resource to {folder}": "Flytta resurs till {mapp}", + "My account": "Mitt konto", + "My events": "Mina evenemang", + "My federated identity ends in {domain}": "Min federerade identitet slutar på {domain}", + "My groups": "Mina grupper", + "My identities": "Mina identiteter", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "OBS! Standardvillkoren har inte kollats av en jurist, och är inte anpassade för alla länder eller jurisdiktioner. Om du är osäker, stäm av dem med en jurist.", + "Name": "Namn", + "Navigated to {pageTitle}": "Navigerade till {pageTitle}", + "Never used": "Aldrig använd", + "New announcement": "Nytt tillkännagivande", + "New discussion": "Ny diskussion", + "New email": "Nytt e-postmeddelande", + "New folder": "Ny mapp", + "New link": "Ny länk", + "New members": "Nya medlemmar", + "New note": "Ny anteckning", + "New password": "Nytt lösenord", + "New post": "Nytt inlägg", + "New private message": "Nytt privat meddelande", + "New profile": "Ny profil", + "Next": "Nästa", + "Next month": "Nästa månad", + "Next page": "Nästa sida", + "Next week": "Nästa vecka", + "No address defined": "Ingen adress fastställd", + "No apps authorized yet": "Inga appar godkända ännu", + "No categories with public upcoming events on this instance were found.": "Inga kategorier med offentliga kommande evenemang på denna instans hittades.", + "No closed reports yet": "Inga stängda rapporter än", + "No comment": "Ingen kommentar", + "No comments yet": "Inga kommentarer än", + "No content found": "Inget innehåll hittades", + "No discussions yet": "Inga diskussioner ännu", + "No end date": "Inget slutdatum", + "No event found at this address": "Inga evenemang hittades på denna adress", + "No events found": "Inga evenemang hittade", + "No events found for {search}": "Inga händelser hittades för {search}", + "No follower matches the filters": "Ingen följare matchar filtren", + "No group found": "Ingen grupp hittades", + "No group matches the filters": "Ingen grupp matchar filtren", + "No group member found": "Ingen gruppmedlem hittades", + "No groups found": "Inga grupper hittades", + "No groups found for {search}": "Inga grupper hittades för {search}", + "No information": "Ingen information", + "No instance follows your instance yet.": "Ingen instans följer din instans än.", + "No instance found.": "Ingen instans hittades.", + "No instance to approve|Approve instance|Approve {number} instances": "Ingen instans att godkänna|Godkänn instans|Godkänn {number} instanser", + "No instance to reject|Reject instance|Reject {number} instances": "Ingen instans att avvisa|Avvisa instans|Avvisa {number} instanser", + "No instance to remove|Remove instance|Remove {number} instances": "Inga instanser att ta bort|Ta bort instans|Ta bort {number} instanser", + "No instances match this filter. Try resetting filter fields?": "Inga instanser matchar detta filter. Försök återställa filterfälten?", + "No languages found": "Inga språk hittades", + "No member matches the filters": "Ingen medlem matchar filtren", + "No members found": "Inga medlemmar hittades", + "No memberships found": "Inga medlemskap hittades", + "No message": "Inget meddelande", + "No moderation logs yet": "Inga modereringsloggar än", + "No more activity to display.": "Ingen mer aktivitet att visa.", + "No one is participating|One person participating|{going} people participating": "Ingen deltar|En person deltar|{going} personer deltar", + "No open reports yet": "Inga öppna rapporter än", + "No organized events found": "Inga organiserade evenemang hittades", + "No organized events listed": "Inga organiserade evenemang listade", + "No participant matches the filters": "Ingen deltagare matchar filtren", + "No participant to approve|Approve participant|Approve {number} participants": "Ingen deltagare att godkänna|Godkänn deltagare|Godkänn {number} deltagare", + "No participant to reject|Reject participant|Reject {number} participants": "Ingen deltagare att avvisa|Avvisa deltagare|Avvisa {number} deltagare", + "No participations listed": "Inga deltaganden listade", + "No posts found": "Inga inlägg hittades", + "No posts yet": "Inga inlägg ännu", + "No profile matches the filters": "Ingen profil matchar filtren", + "No public upcoming events": "Inga publika kommande evenemang", + "No resolved reports yet": "Inga lösta rapporter än", + "No resources in this folder": "Inga resurser i denna mapp", + "No resources selected": "Ingen resurs vald|En resurs vald|{count} resurser valda", + "No resources yet": "Inga resurser ännu", + "No results for \"{queryText}\"": "Inga resultat för \"{queryText}\"", + "No results for {search}": "Inga resultat för {search}", + "No results found": "Inga träffar", + "No results found for {search}": "Inga resultat hittades för {search}", + "No rules defined yet.": "Inga regler definierade ännu.", + "No user matches the filter": "Ingen användare matchar filtret", + "No user matches the filters": "Ingen användare matchar filtren", + "None": "Ingen", + "Not accessible with a wheelchair": "Ej tillgänglig med rullstol", + "Not approved": "Ej godkända", + "Not confirmed": "Obekräftade", + "Notes": "Anteckningar", + "Notification before the event": "Avisering för evenemanget", + "Notification on the day of the event": "Avisering under dagen för evenemanget", + "Notification settings": "Notifikationsinställningar", + "Notifications": "Notifikationer", + "Notifications for manually approved participations to an event": "Notifieringar för manuellt godkända deltaganden i ett evenemang", + "Notify participants": "Meddela deltagare", + "Notify the user of the change": "Meddela användaren om ändringen", + "Now, create your first profile:": "Skapa nu din första profil:", + "Number of members": "Antal medlemmar", + "Number of places": "Antalet platser", + "OK": "OK", + "Old password": "Gammalt lösenord", + "On foot": "Till fots", + "On the Fediverse": "På Fediverse", + "On {date}": "På {date}", + "On {date} ending at {endTime}": "På {date}, slutar vid {endTime}", + "On {date} from {startTime} to {endTime}": "På {date} från {startTime} till {endTime}", + "On {date} starting at {startTime}": "På {date} startar vid {startTime}", + "On {instance} and other federated instances": "På {instance} och andra federerade instanser", + "Online": "Online", + "Online events": "Online-evenemang", + "Online ticketing": "Biljettförsäljning online", + "Online upcoming events": "Kommande evenemang online", + "Only accessible through link": "Endast tillgängligt via länk", + "Only accessible through link (private)": "Endast tillgänglig via länk (privat)", + "Only accessible to members of the group": "Endast tillgängligt för gruppmedlemmar", + "Only alphanumeric lowercased characters and underscores are supported.": "Endast alfanumeriska små tecken och understreck stöds.", + "Only group members can access discussions": "Endast gruppmedlemmar har tillgång till diskussioner", + "Only group moderators can create, edit and delete events.": "Endast gruppmoderatorer kan skapa, redigera och ta bort inlägg.", + "Only group moderators can create, edit and delete posts.": "Endast gruppmoderatorer kan skapa, redigera och ta bort inlägg.", + "Only instances with an application actor can be followed": "Endast instanser med en applikationsaktör kan följas", + "Only registered users may fetch remote events from their URL.": "Endast registrerade användare kan hämta fjärrhändelser från sin URL.", + "Open": "Öppna", + "Open a topic on our forum": "Öppna ett ämne i vårt forum", + "Open an issue on our bug tracker (advanced users)": "Öppna ett problem i vår bugtracker (avancerade användare)", + "Open conversations": "Öppna konversationer", + "Open main menu": "Öppna huvudmenyn", + "Open user menu": "Öppna användarmenyn", + "Opened reports": "Öppnade rapporter", + "Or": "Eller", + "Ordered list": "Ordnad lista", + "Organized": "Organiserad", + "Organized by": "Organiseras av", + "Organized by {name}": "Organiserades av {namn}", + "Organized events": "Organiserade evenemang", + "Organizer": "Organisatör", + "Organizer notifications": "Organisatörsnotifieringar", + "Organizers": "Organisatörer", + "Other": "Annan", + "Other actions": "Andra åtgärder", + "Other notification options:": "Andra notifieringsinställningar:", + "Other software may also support this.": "Annan mjukvara kanske också stöttar det här.", + "Other users with the same IP address": "Andra användare med samma IP-adress", + "Other users with the same email domain": "Andra användare med samma e-postdomän", + "Otherwise this identity will just be removed from the group administrators.": "Annars kommer den här identiteten bara raderas från gruppens administratörer.", + "Owncast": "Owncast", + "Page": "Sida", + "Page limited to my group (asks for auth)": "Sida begränsad till min grupp (frågar efter autentisering)", + "Page not found": "Sidan hittades inte", + "Parent folder": "Föräldramapp", + "Partially accessible with a wheelchair": "Delvis tillgänglig med rullstol", + "Participant": "Deltagare", + "Participants": "Deltagare", + "Participants to {eventTitle}": "Deltagare till {eventTitle}", + "Participate": "Delta", + "Participate using your email address": "Delta genom att använda din e-postadress", + "Participation approval": "Godkännande för att delta", + "Participation confirmation": "Bekräftelse för att delta", + "Participation notifications": "Deltagarnotifieringar", + "Participation requested!": "Du har ansökt om deltagande!", + "Participation with account": "Deltagande med konto", + "Participation without account": "Deltagande utan konto", + "Participations": "Deltaganden", + "Password": "Lösenord", + "Password (confirmation)": "Lösenord (bekräftelse)", + "Password reset": "Återställ lösenord", + "Past events": "Tidigare evenemang", + "PeerTube live": "PeerTube live", + "PeerTube replay": "PeerTube-återuppspelning", + "Pending": "Avvaktande", + "Personal feeds": "Personliga flöden", + "Photo by {author} on {source}": "Foto av {author} på {source}", + "Pick": "Välj", + "Pick a profile or a group": "Välj en profil eller en grupp", + "Pick an identity": "Välj en identitet", + "Pick an instance": "Välj en instans", + "Please add as many details as possible to help identify the problem.": "Lägg till så många detaljer som möjligt för att hjälpa till att identifiera problemet.", + "Please check your spam folder if you didn't receive the email.": "Vänligen kontrollera din skräppost-mapp om du inte fick e-postmeddelandet.", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "Vänligen kontakta den här instansens Mobilizon-administratör om du tror det här är ett misstag.", + "Please do not use it in any real way.": "Använd det inte på riktigt.", + "Please enter your password to confirm this action.": "Vänligen fyll i ditt lösenord för att bekräfta den här åtgärden.", + "Please make sure the address is correct and that the page hasn't been moved.": "Vänligen se till att adressen är korrekt och att sidan inte har blivit flyttad.", + "Please read the {fullRules} published by {instance}'s administrators.": "Läs de {fullständiga regler} som publicerats av {instans}s administratörer.", + "Popular groups close to you": "Populära grupper nära dig", + "Popular groups nearby {position}": "Populära grupper i närheten av {position}", + "Post": "Publicera", + "Post URL": "Inläggs-URL", + "Post a comment": "Skriv en kommentar", + "Post a reply": "Skriv ett svar", + "Post body": "Inläggskropp", + "Post comments": "Publicera kommentarer", + "Post {eventTitle} reported": "Inlägg {eventTitle} anmält", + "Postal Code": "Postkod", + "Posts": "Inlägg", + "Powered by Mobilizon": "Drivs av Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "Drivs av {mobilizon}. © 2018 - {datum} Mobilizon bidragsgivare - Gjord med ekonomiskt stöd av {bidragsgivare}.", + "Preferences": "Egenskaper", + "Previous": "Föregående", + "Previous email": "Tidigare e-postadress", + "Previous month": "Föregående månad", + "Previous page": "Föregående sida", + "Price sheet": "Prislista", + "Privacy": "Integritet", + "Privacy Policy": "Integritetspolicy", + "Privacy policy": "Integritetspolicy", + "Private event": "Privat evenemang", + "Private feeds": "Privata flöden", + "Profile": "Profil", + "Profile feeds": "Profilflöden", + "Profile suspended and report resolved": "Profil avstängd och anmälan löst", + "Profiles": "Profiler", + "Profiles and federation": "Profiler och federation", + "Promote": "Befordra", + "Public": "Publik", + "Public RSS/Atom Feed": "Publikt RSS/Atom-flöde", + "Public comment moderation": "Publik kommentarmoderering", + "Public event": "Publikt evenemang", + "Public feeds": "Publika flöden", + "Public iCal Feed": "Publika iCal-flöde", + "Public preview": "Publik förhandsvisning", + "Publication date": "Publiceringsdatum", + "Publish": "Publicera", + "Publish events": "Publicera evenemang", + "Publish group posts": "Publicera gruppinlägg", + "Published by {name}": "Publicerad av {name}", + "Published events with {comments} comments and {participations} confirmed participations": "Publicera evenemang med {comments}kommentarer och {participations} bekräftade deltaganden", + "Published events with {comments} comments and {participations} confirmed participations": "Publicerade evenemang med {comments} kommentarer och {participations} bekräftade deltagare", + "Push": "Push", + "Quote": "Citat", + "RSS/Atom Feed": "RSS/Atom-flöde", + "Radius": "Avstånd", + "Read all of your account's data": "Läs alla uppgifter om ditt konto", + "Read user activity settings": "Läs inställningar för användaraktivitet", + "Read user media": "Läsa användarmedia", + "Read user memberships": "Läsa användarmedlemskap", + "Read user participations": "Läsa användarnas deltagande", + "Read user settings": "Läs användarinställningar", + "Recap every week": "Sammanfatta varje vecka", + "Receive one email for each activity": "Få ett e-postmeddelande för varje aktivitet", + "Receive one email per request": "Ta emot ett mejl per förfrågan", + "Redirecting in progress…": "Omdirigering pågår…", + "Redirecting to Mobilizon": "Omdirigering till Mobilizon", + "Redirecting to content…": "Omdirigerar till innehåll…", + "Redo": "Gör om", + "Refresh profile": "Uppdatera profil", + "Regenerate new links": "Återskapa nya länkar", + "Region": "Region", + "Register": "Registrera", + "Register an account on {instanceName}!": "Registrera ett konto på {instanceName}!", + "Register on this instance": "Registrera ett konto på den här instansen", + "Registration is allowed, anyone can register.": "Registrering tillåts, alla kan registrera.", + "Registration is closed.": "Registrering är stängd.", + "Registration is currently closed.": "Registrering är för närvarande stängt.", + "Registrations": "Registreringar", + "Registrations are restricted by allowlisting.": "Registreringar begränsas av vitlisting.", + "Reject": "Avfärda", + "Reject follow": "Avfärda följning", + "Reject member": "Avfärda medlem", + "Rejected": "Avvisades", + "Remember my participation in this browser": "Kom ihåg mitt deltagande i denna webbläsare", + "Remove": "Ta bort", + "Remove link": "Ta bort länk", + "Remove uploaded media": "Ta bort uppladdad media", + "Rename": "Byt namn på", + "Rename resource": "Byt namn på resursen", + "Reopen": "Öppna igen", + "Replay": "Repris", + "Reply": "Svara", + "Report": "Rapportera", + "Report #{reportNumber}": "Rapport #{reportNumber}", + "Report as ham": "Anmäl som skräppost", + "Report as spam": "Anmäl som skräppost", + "Report as undetected spam": "Anmäl som oupptäckt skräppost", + "Report reason": "Orsak för anmälan", + "Report status": "Anmälningsstatus", + "Report this comment": "Rapportera den här kommentaren", + "Report this event": "Rapportera det här evenemanget", + "Report this group": "Anmäl denna grupp", + "Report this post": "Anmäl detta inlägg", + "Reported": "Rapporterad", + "Reported at": "Rapporterad den", + "Reported by": "Rapporterades av", + "Reported by an unknown actor": "Rapporterad av en okänd aktör", + "Reported by someone anonymously": "Rapporterad av någon anonymt", + "Reported by someone on {domain}": "Rapporterades av någon på {domain}", + "Reported by {reporter}": "Rapporterades av {reporter}", + "Reported content": "Anmält innehåll", + "Reported group": "Anmäld grupp", + "Reported identity": "Rapporterad identitet", + "Reports": "Rapporter", + "Reports list": "Lista över rapporter", + "Request for participation confirmation sent": "Begäran om bekräftelse på deltagande skickad", + "Resend confirmation email": "Skicka bekräftelsemailet igen", + "Resent confirmation email": "Skicka bekräftelsemail igen", + "Reset": "Återställ", + "Reset filters": "Återställ filter", + "Reset my password": "Återställ mitt lösenord", + "Reset password": "Återställ lösenord", + "Resolved": "Löst", + "Resource provided is not an URL": "Resursen är inte en URL", + "Resources": "Resurser", + "Restricted": "Begränsad", + "Return to the event page": "Återgå till evenemangssidan", + "Return to the group page": "Återgå till gruppsidan", + "Revoke": "Återkalla", + "Right now": "Just nu", + "Role": "Roll", + "Rules": "Regler", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL, och dess föregångare TLS, är krypteringsverktyg som används för att skydda den data som skickas när tjänsten används. Du kan känna igen en krypterad anslutning genom att titta i din webbläsares adressfält, där URLen börjar med {https} och ett hänglås visas i adressfältet.", + "SSL/TLS": "SSL/TLS", + "Save": "Spara", + "Save draft": "Spara utkast", + "Schedule": "Schema", + "Search": "Sök", + "Search events, groups, etc.": "Sök evenemang, grupper, etc.", + "Search target": "Sök på", + "Searching…": "Söker…", + "Select a category": "Välj en kategori", + "Select a language": "Välj språk", + "Select a radius": "Välj en radie", + "Select a timezone": "Välj en tidszon", + "Select all resources": "Välj alla resurser", + "Select languages": "Välj språk", + "Select the activities for which you wish to receive an email or a push notification.": "Välj de aktiviteter för vilka du vill få ett e-postmeddelande eller en push-avisering.", + "Select this resource": "Välj denna resurs", + "Send": "Skicka", + "Send email": "Skicka e-post", + "Send feedback": "Skicka feedback", + "Send notification e-mails": "Skicka e-postnotifikationer", + "Send password reset": "Skicka återställning av lösenord", + "Send the confirmation email again": "Skicka bekräftelsemejlet igen", + "Send the report": "Skicka rapporten", + "Sent to {count} participants": "Skickat till inga deltagare|Skickat till en deltagare|Skickat till {count} deltagare", + "Set an URL to a page with your own privacy policy.": "Ange en URL till en sida med din egen integritetspolicy.", + "Set an URL to a page with your own terms.": "Ange en URL till en sida med dina egna villkor.", + "Settings": "Inställningar", + "Share": "Dela", + "Share this event": "Dela det här evenemanget", + "Share this group": "Dela denna grupp", + "Share this post": "Dela detta inlägg", + "Short bio": "Kort biografi", + "Show filters": "Visa filter", + "Show map": "Visa karta", + "Show me where I am": "Visa mig var jag är", + "Show remaining number of places": "Visa antal lediga platser", + "Show the time when the event begins": "Visa vilken tid evenemanget börjar", + "Show the time when the event ends": "Visa vilken tid evenemanget slutar", + "Showing events before": "Visar evenemang före", + "Showing events starting on": "Visar evenemang som börjar den", + "Sign Language": "Teckenspråk", + "Sign in with": "Logga in med", + "Sign up": "Gå med", + "Since you are a new member, private content can take a few minutes to appear.": "Eftersom att du är ny i gruppen kan privat innehåll behöva några minuter innan det dyker upp.", + "Skip to main content": "Hoppa till huvudinnehållet", + "Smoke free": "Rökfri", + "Smoking allowed": "Rökning tillåten", + "Social": "Socialt", + "Software details: {software_details}": "Programvarudetaljer: {software_details}", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Vissa begrepp som används i texten nedan kan vara svåra att greppa. Vi tillhandahåller en ordlista här för att underlätta:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "Tyvärr kunde vi inte spara din feedback. Oroa dig inte, vi ska försöka lösa problemet i alla fall.", + "Sort by": "Sortera efter", + "Starts on…": "Börjar…", + "Status": "Status", + "Statuses": "Statusar", + "Stop following instance": "Sluta följ instans", + "Street": "Gata", + "Submit": "Skicka", + "Submit to Akismet": "Skicka till Akismet", + "Subtitles": "Undertexter", + "Suggestions:": "Förslag:", + "Suspend": "Stäng av", + "Suspend group": "Stäng av grupp", + "Suspend the account": "Stäng av kontot", + "Suspend the account?": "Stäng av kontot?", + "Suspend the profile": "Stäng av profilen", + "Suspend the profile?": "Stäng av profilen?", + "Suspended": "Avstängd", + "Tag search": "Sök efter taggar", + "Task lists": "Uppgiftslistor", + "Technical details": "Tekniska detaljer", + "Tentative": "Preliminär", + "Tentative: Will be confirmed later": "Preliminär: Kommer bekräftas senare", + "Terms": "Användarvillkor", + "Terms of service": "Användarvillkor", + "Text": "Text", + "Thanks a lot, your feedback was submitted!": "Tack så mycket, din feedback skickades in!", + "That you follow or of which you are a member": "Som du följer eller som du är medlem i", + "The Big Blue Button video teleconference URL": "URL för Big Blue Button videokonferens", + "The Google Meet video teleconference URL": "URL för Google Meet-videokonferens", + "The Jitsi Meet video teleconference URL": "Jitsi Meet videokonferens-URLen", + "The Microsoft Teams video teleconference URL": "URL för Microsoft Teams videotelekonferens", + "The URL of a pad where notes are being taken collaboratively": "URLen till ett block där anteckningar görs gemensamt", + "The URL of a poll where the choice for the event date is happening": "URLen till en omröstning där valet av datum för evenemanget sker", + "The URL where the event can be watched live": "URLen där evenemanget kan ses live", + "The URL where the event live can be watched again after it has ended": "URL:en där evenemangets live kan ses igen efter att det har avslutats", + "The Zoom video teleconference URL": "URL för Zoom-videokonferens", + "The account's email address was changed. Check your emails to verify it.": "Kontots e-postadress ändrades. Kontrollera din e-post för att verifiera den.", + "The actual number of participants may differ, as this event is hosted on another instance.": "Det faktiska antalet deltagare kan skilja sig åt, eftersom evenemanget hålls i en annan instans.", + "The calc will be created on {service}": "Räknearket kommer att skapas på {service}", + "The content came from another server. Transfer an anonymous copy of the report?": "Innehållet kom rån en annan server. Överför en anonym kopia av rapporten?", + "The device code is incorrect or no longer valid.": "Enhetskoden är felaktig eller inte längre giltig.", + "The draft event has been updated": "Utkastet har uppdaterats", + "The event has a sign language interpreter": "Evenemanget har en teckenspråkstolk", + "The event has been created as a draft": "Evenemanget har skapats som ett utkast", + "The event has been published": "Evenemanget har publicerats", + "The event has been updated": "Evenemanget har uppdaterats", + "The event has been updated and published": "Evenemanget har uppdaterats och publicerats", + "The event hasn't got a sign language interpreter": "Evenemanget har ingen teckenspråkstolk", + "The event is fully online": "Evenemanget är helt online", + "The event live video contains subtitles": "Livevideon från evenemanget innehåller undertexter", + "The event live video does not contain subtitles": "Livevideon från evenemanget innehåller inga undertexter", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "Evenemangets arrangör har valt att validera manuellt deltagande. Vill du lägga till en liten anteckning för att förklara varför du vill delta i det här evenemanget?", + "The event organizer didn't add any description.": "Evenemangets organisatör lade inte till någon beskrivning.", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Evenemangsarrangören godkänner deltagarna manuellt. Eftersom du har valt att delta utan konto, förklara varför du vill delta i det här evenemanget.", + "The event title will be ellipsed.": "Evenemangets titel kommer förkortas med en ellipsis.", + "The event will show as attributed to this group.": "Händelsen kommer att visas som attribut till denna grupp.", + "The event will show as attributed to this profile.": "Evenemanget kommer att visas som attribuerad denna profil.", + "The event will show as attributed to your personal profile.": "Evenemanget kommer att visas som attribut i din personliga profil.", + "The event {event} was created by {profile}.": "Evenemanget {event} skapades av {profile}.", + "The event {event} was deleted by {profile}.": "Evenemanget {event} togs bort av {profile}.", + "The event {event} was updated by {profile}.": "Evenemanget {event} uppdaterades av {profile}.", + "The events you created are not shown here.": "De händelser du skapade visas inte här.", + "The following participants are groups, which means group members are able to reply to this conversation:": "Följande deltagare är grupper, vilket innebär att gruppmedlemmar kan svara på denna konversation:", + "The following user's profiles will be deleted, with all their data:": "Följande användares profiler kommer att raderas, med alla deras data:", + "The geolocation prompt was denied.": "Begäran om geolokalisering nekades.", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "Nu kan vem som helst gå med i gruppen, men nya medlemmar måste godkännas av en administratör.", + "The group can now be joined by anyone.": "Vem som helst kan nu ansluta sig till gruppen.", + "The group can now only be joined with an invite.": "En inbjudan krävs nu för att gå med i gruppen.", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Gruppen visas i sökresultat och kan rekommenderas i Utforska-delen. Endast offentlig information visas på sidan.", + "The group's avatar was changed.": "Gruppens avatar ändrades.", + "The group's banner was changed.": "Gruppens banner ändrades.", + "The group's physical address was changed.": "Gruppens fysiska adress ändrades.", + "The group's short description was changed.": "Gruppens korta beskrivning ändrades.", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "Instansadministratören är den person eller enhet som driver den här Mobilizon-instansen.", + "The member was approved": "Medlemmen godkändes", + "The member was removed from the group {group}": "Medlemmen har tagits bort från gruppen {group}", + "The membership request from {profile} was rejected": "Medlemskapsförfrågan från {profile} avfärdades", + "The only way for your group to get new members is if an admininistrator invites them.": "Det enda sättet för din grupp att få nya medlemmar är om en administratör bjuder in dem.", + "The organiser has chosen to close comments.": "Arrangören har valt att stänga kommentarerna.", + "The pad will be created on {service}": "Padden kommer att skapas på {service}", + "The page you're looking for doesn't exist.": "Sidan du letar efter existerar inte.", + "The password was successfully changed": "Lösenordet ändrades", + "The post {post} was created by {profile}.": "Inlägget {post} skapades av {profile}.", + "The post {post} was deleted by {profile}.": "Inlägget {post} togs bort av {profile}.", + "The post {post} was updated by {profile}.": "Inlägget {post} uppdaterades av {profile}.", + "The provided application was not found.": "Den angivna applikationen hittades inte.", + "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.": "Anmälningens innehåll (eventuella kommentarer och evenemang) och de rapporterade profiluppgifterna kommer att överföras till Akismet.", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Rapporten kommer skickas till moderatorerna på din instans. Du kan förklara varför du rapporterade det här innehållet här under.", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "Den valda bilden är för stor. Du måste välja en fil som är mindre än {size}.", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "De tekniska detaljerna om felet kan hjälpa utvecklare att lösa problemet lättare. Lägg till dem i din feedback.", + "The user has been disabled": "Användaren har inaktiverats", + "The videoconference will be created on {service}": "Videokonferensen kommer att skapas på {service}", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "{default_privacy_policy} kommer att användas. De kommer att översättas till användarens språk.", + "The {default_terms} will be used. They will be translated in the user's language.": "{default_terms} kommer att användas. De kommer att översättas till användarens språk.", + "Theme": "Tema", + "There are {participants} participants.": "Det är {participants} deltagare.", + "There is no activity yet. Start doing some things to see activity appear here.": "Det finns ingen aktivitet ännu. Börja göra några saker för att se aktivitet visas här.", + "There will be no way to recover your data.": "Det kommer inte att finnas något sätt för att återställa din data.", + "There will be no way to restore the profile's data!": "Det går inte att återställa profilens data!", + "There will be no way to restore the user's data!": "Det kommer inte att finnas något sätt att återställa användarens data!", + "There's no announcements yet": "Det finns inga tillkännagivanden ännu", + "There's no conversations yet": "Det finns inga konversationer ännu", + "There's no discussions yet": "Det finns inga diskussioner ännu", + "These apps can access your account through the API. If you see here apps that you don't recognize, that don't work as expected or that you don't use anymore, you can revoke their access.": "Dessa appar kan komma åt ditt konto via API. Om du ser appar som du inte känner igen, som inte fungerar som förväntat eller som du inte använder längre kan du återkalla deras åtkomst.", + "These events may interest you": "Dessa evenemang kanske intresserar dig", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Dessa flöden innehåller evenemangsdata för de evenemang där någon av dina profiler är deltagare eller skapare. Du bör hålla dessa privata. Du hittar flöden för specifika profiler på varje profilutgåvas sida.", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Dessa flöden innehåller evenemangsdata för de evenemang där denna specifika profil är en deltagare eller skapare. Du bör hålla dessa privata. Du kan hitta flöden för alla dina profiler i dina aviseringsinställningar.", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Den här Mobilizon-instansen och evenemangsarrangören tillåter anonymt deltagande, men kräver bekräftelse-validering via e-post.", + "This URL doesn't seem to be valid": "Denna URL verkar inte vara giltig", + "This URL is not supported": "Denna URL stöds inte", + "This announcement will be send to all participants with the statuses selected below. They will not be allowed to reply to your announcement, but they can create a new conversation with you.": "Detta meddelande kommer att skickas till alla deltagare med de statusar som valts nedan. De kommer inte att kunna svara på ditt meddelande, men de kan skapa en ny konversation med dig.", + "This application asks for the following permissions:": "Denna applikation efterfrågar följande behörigheter:", + "This application didn't ask for known permissions. It's likely the request is incorrect.": "Den här applikationen begärde inte kända behörigheter. Det är troligt att begäran är felaktig.", + "This application will be able to access all of your informations and post content. Make sure you only approve applications you trust.": "Denna applikation kommer att kunna komma åt all din information och publicerat innehåll. Se till att du bara godkänner applikationer som du litar på.", + "This application will be allowed to access all of the groups you're a member of": "Den här applikationen får tillgång till alla grupper som du är medlem i", + "This application will be allowed to access group activities in all of the groups you're a member of": "Den här applikationen kommer få åtkomst till gruppaktiviteter i alla grupper som du är medlem i", + "This application will be allowed to access your user activity settings": "Denna applikation kommer att få tillgång till dina aktivitetsinställningar", + "This application will be allowed to access your user settings": "Denna applikation kommer att få tillgång till dina användarinställningar", + "This application will be allowed to create feed tokens": "Denna applikation kommer att tillåtas att skapa flödes-tokens", + "This application will be allowed to create group discussions": "Denna applikation kommer att tillåtas att skapa gruppdiskussioner", + "This application will be allowed to create new profiles for your account": "Denna applikation kommer att tillåtas att skapa nya profiler för ditt konto", + "This application will be allowed to create resources in all of the groups you're a member of": "Den här applikationen kommer få skapa resurser i alla de grupper du är medlem i", + "This application will be allowed to delete comments": "Denna applikation kommer att tillåtas att radera kommentarer", + "This application will be allowed to delete events": "Denna applikation kommer att tillåtas att radera evenemang", + "This application will be allowed to delete feed tokens": "Denna applikation kommer att tillåtas att radera flödes-tokens", + "This application will be allowed to delete group discussions": "Denna applikation kommer att tillåtas att radera gruppdiskussioner", + "This application will be allowed to delete group posts": "Denna applikation kommer att tillåtas att radera gruppinlägg", + "This application will be allowed to delete resources in all of the groups you're a member of": "Den här applikationen kommer få radera resurser i alla de grupper du är medlem i", + "This application will be allowed to delete your profiles": "Denna applikation kommer att tillåtas radera dina profiler", + "This application will be allowed to join and leave groups": "Denna applikation kommer att tillåtas att gå med i och lämna grupper", + "This application will be allowed to list and access group discussions in all of the groups you're a member of": "Den här applikationen kommer få lista och komma åt gruppdiskussioner i alla de grupper du är medlem i", + "This application will be allowed to list and access group events in all of the groups you're a member of": "Den här applikationen kommer få lista och komma åt gruppevenemang i alla de grupper du är medlem i", + "This application will be allowed to list and access group todo-lists in all of the groups you're a member of": "Denna applikation kommer att tillåtas att lista och komma åt gruppens att-göra listor i alla de grupper du är medlem i", + "This application will be allowed to list and view the events you're participating to": "Den här applikationen kommer kunna lista och visa de evenemang du deltar i", + "This application will be allowed to list and view the groups you're a member of": "Den här applikationen kommer få lista och visa de grupper du är medlem i", + "This application will be allowed to list and view the groups you're following": "Den här applikationen kommer få lista och visa de grupper du följer", + "This application will be allowed to list and view your draft events": "Denna applikation kommer att tillåtas att lista och visa dina evenemangsutkast", + "This application will be allowed to list and view your organized events": "Denna applikation kommer att tillåtas för att lista och visa dina organiserade evenemang", + "This application will be allowed to list group followers in all of the groups you're a member of": "Den här applikationen kommer få lista följare av alla grupper som du är medlem i", + "This application will be allowed to list group members in all of the groups you're a member of": "Den här applikationen kommer få lista gruppmedlemmar i alla grupper som du är medlem i", + "This application will be allowed to list the media you've uploaded": "Denna applikation kommer att kunna lista de media du har laddat upp", + "This application will be allowed to list your suggested group events": "Denna applikation kommer att kunna lista dina föreslagna gruppevenemang", + "This application will be allowed to manage events participations": "Denna applikation kommer att tillåtas att hantera deltagande i evenemang", + "This application will be allowed to manage group members in all of the groups you're a member of": "Den här applikationen kommer få hantera gruppmedlemmar i alla de grupper du är medlem i", + "This application will be allowed to manage your account activity settings": "Denna applikation kommer att tillåtas hantera dina inställningar för kontoaktivitet", + "This application will be allowed to manage your account push notification settings": "Denna applikation kommer att tillåtas hantera dina inställningar för push-notifieringar", + "This application will be allowed to post comments": "Denna applikation kommer att tillåtas att publicera kommentarer", + "This application will be allowed to publish and manage events, post and manage comments, participate to events, manage all of your groups, including group events, resources, posts and discussions. It will also be allowed to manage your account and profile settings.": "Den här applikationen kommer kunna publicera och hantera evenemang, publicera och hantera kommentarer, delta i evenemang, hantera alla dina grupper, inklusive grupphändelser, resurser, inlägg och diskussioner. Den kommer också få hantera ditt konto och profilinställningar.", + "This application will be allowed to publish events": "Denna applikation kommer att tillåtas att publicera evenemang", + "This application will be allowed to publish group posts": "Denna applikation kommer att tillåtas publicera gruppinlägg", + "This application will be allowed to remove uploaded media": "Denna applikation kommer att tillåtas att ta bort uppladdade media", + "This application will be allowed to see all of your events organized, the events you participate to, as well as every data from your groups.": "Denna applikation kommer att kunna se alla dina organiserade evenemang, de evenemang du deltar i, samt all data från dina grupper.", + "This application will be allowed to update comments": "Denna applikation kommer att tillåtas att uppdatera kommentarer", + "This application will be allowed to update events": "Denna applikation kommer att tillåtas uppdatera evenemang", + "This application will be allowed to update group discussions": "Denna applikation kommer att tillåtas att uppdatera gruppdiskussioner", + "This application will be allowed to update group posts": "Denna applikation kommer att tillåtas att uppdatera gruppinlägg", + "This application will be allowed to update resources in all of the groups you're a member of": "Den här applikationen kommer få uppdatera resurser i alla de grupper du är medlem i", + "This application will be allowed to update your profiles": "Denna applikation kommer att tillåtas uppdatera dina profiler", + "This application will be allowed to upload media": "Denna applikation kommer att tillåtas att ladda upp media", + "This event has been cancelled.": "Det här evenemanget har blivit inställt.", + "This event is accessible only through it's link. Be careful where you post this link.": "Det här evenemanget går bara att komma åt genom dess länk. Tänk efter rörande var du publicerar länken.", + "This group doesn't have a description yet.": "Denna grupp har ännu ingen beskrivning.", + "This group is a remote group, it's possible the original instance has more informations.": "Denna grupp är en fjärrgrupp, det är möjligt att den ursprungliga instansen har mer information.", + "This group is accessible only through it's link. Be careful where you post this link.": "Det här evenemanget går bara att komma åt genom dess länk. Tänk på var du publicerar länken.", + "This group is invite-only": "Denna grupp är endast öppen för inbjudna", + "This group was not found": "Denna grupp hittades inte", + "This identifier is unique to your profile. It allows others to find you.": "Denna identifierare är unik för din profil. Den gör det möjligt för andra att hitta dig.", + "This information is saved only on your computer. Click for details": "Denna information sparas endast på din dator. Klicka för detaljer", + "This instance doesn't follow yours.": "Denna instans följer inte din.", + "This instance hasn't got push notifications enabled.": "Denna instans har inte aktiverat push-aviseringar.", + "This instance isn't opened to registrations, but you can register on other instances.": "Den här isntansen är inte öppen för registrering, men du kan registrera på andra instanser.", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "Den här instansen, {instanceName} ({domain}), är värd för din profil, så kom ihåg dess namn.", + "This instance, {instanceName}, hosts your profile, so remember its name.": "Den här instansen, {instanceName}, är värd för din profil, så kom ihåg dess namn.", + "This is a announcement from the organizers of event {event}. You can't reply to it, but you can send a private message to event organizers.": "Detta är ett meddelande från arrangörerna av evenemanget {event}. Du kan inte svara på det, men du kan skicka ett privat meddelande till evenemangsarrangörerna.", + "This is a demonstration site to test Mobilizon.": "Det här är en demonstrationssida för att testa Mobilizon.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Detta är som ditt federerade användarnamn ({username}) för grupper. Det gör att gruppen kan hittas i federationen och är garanterat unikt.", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Detta är som ditt federerade användarnamn ({username}) för grupper. Det gör att gruppen kan hittas i federationen och är garanterat unikt.", + "This month": "Den här månaden", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "Detta inlägg är endast tillgängligt för medlemmar. Du har tillgång till det enbart i modereringssyfte eftersom du är en instansmoderator.", + "This post is accessible only through it's link. Be careful where you post this link.": "Detta inlägget går bara att komma åt genom dess länk. Tänk på var du publicerar länken.", + "This profile is from another instance, the informations shown here may be incomplete.": "Denna profil är från en annan instans, informationen som visas här kan vara ofullständig.", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "Den här profilen finns på den här instansen, så du måste {access_the_corresponding_account} för att stänga av den.", + "This profile was not found": "Denna profil hittades inte", + "This setting will be used to display the website and send you emails in the correct language.": "Denna inställning kommer att användas för att visa webbplatsen och skicka e-post till dig på rätt språk.", + "This user doesn't have any profiles": "Den här användaren har inga profiler", + "This user was not found": "Denna användare hittades inte", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Denna webbplats är inte modererad och de uppgifter som du anger kommer att raderas automatiskt varje dag kl. 00.01 (Paris tidszon).", + "This week": "Den här veckan", + "This weekend": "I helgen", + "This will also resolve the report.": "Detta kommer också att stänga anmälan.", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Det här kommer radera / anonymisera allt innehåll (evenemang, kommentarer, meddelanden, deltaganden...) skapade av den här identiteten.", + "Time in your timezone ({timezone})": "Tid i din tidszon ({timezone})", + "Times in your timezone ({timezone})": "Tider i din tidszon ({timezone})", + "Timezone": "Tidszon", + "Timezone detected as {timezone}.": "Tidszon har identifierats som {timezone}.", + "Title": "Titel", + "To activate more notifications, head over to the notification settings.": "För att slå på fler notifieringar, gå in i notifieringsinställningarna.", + "To confirm, type your event title \"{eventTitle}\"": "För att bekräfta, skriv in evenemangets titel \"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "För att bekräfta, skriv in din identitets användarnamn \"{preferredUsername}\"", + "To create and manage multiples identities from a same account": "För att skapa och hantera flera identiteter från ett och samma konto", + "To create and manage your events": "För att skapa och hantera dina evenemang", + "To create or join an group and start organizing with other people": "För att skapa eller gå med i en grupp och börja organisera med andra människor", + "To follow groups and be informed of their latest events": "Att följa grupper och få information om deras senaste händelser", + "To register for an event by choosing one of your identities": "För att registrera dig för ett evenemang genom att välja en av dina identiteter", + "Today": "Idag", + "Tomorrow": "Imorgon", + "Tools": "Verktyg", + "Total number of participations": "Totalt antal deltagningar", + "Transfer to {outsideDomain}": "Överför till {outsideDomain}", + "Triggered profile refreshment": "Triggade uppdatering av profil", + "Try different keywords.": "Pröva andra nyckelord.", + "Try fewer keywords.": "Pröva färre nyckelord.", + "Try more general keywords.": "Pröva mer generella nyckelord.", + "Twitch live": "Twitch live", + "Twitch replay": "Twitch-återuppspelning", + "Twitter account": "Twitter-konto", + "Type": "Typ", + "Type or select a date…": "Ange eller välj ett datum…", + "URL": "Länk", + "URL copied to clipboard": "URL kopierad till urklipp", + "Unable to copy to clipboard": "Kunde inte kopiera till urklipp", + "Unable to create the group. One of the pictures may be too heavy.": "Det gick inte att skapa gruppen. En av bilderna kan vara för stor.", + "Unable to create the profile. The avatar picture may be too heavy.": "Det går inte att skapa profilen. Avatarbilden kan vara för stor.", + "Unable to detect timezone.": "Kan inte identifiera tidszon.", + "Unable to load event for participation. The error details are provided below:": "Det gick inte att ladda evenemanget för deltagande. Information om felet finns nedan:", + "Unable to save your participation in this browser.": "Det går inte att spara ditt deltagande i denna webbläsare.", + "Unable to update the profile. The avatar picture may be too heavy.": "Det går inte att uppdatera profilen. Avatarbilden kan vara för stor.", + "Underline": "Understrykning", + "Undo": "Ångra", + "Unfollow": "Sluta följ", + "Unfortunately, your participation request was rejected by the organizers.": "Tyvärr blev ditt deltagande avfärdat av organisatörerna.", + "Unknown": "Okänd", + "Unknown actor": "Okänd skådespelare", + "Unknown error.": "Okänt fel.", + "Unknown value for the openness setting.": "Okänt värde för inställningen öppenhet.", + "Unlogged participation": "Utloggat deltagande", + "Unsaved changes": "Osparade ändringar", + "Unsubscribe to browser push notifications": "Avsluta prenumerationen på push-notiser från webbläsaren", + "Unsuspend": "Återkalla avstängning", + "Upcoming": "Kommande", + "Upcoming events": "Kommande evenemang", + "Upcoming events from your groups": "Kommande evenemang från dina grupper", + "Update": "Uppdatera", + "Update app": "Uppdatera app", + "Update comments": "Uppdatera kommentarer", + "Update discussion title": "Uppdatera diskussionsrubrik", + "Update event {name}": "Uppdatera evenemang {name}", + "Update events": "Uppdatera evenemang", + "Update group": "Uppdatera grupp", + "Update group discussions": "Uppdatera gruppdiskussioner", + "Update group posts": "Uppdatera gruppinlägg", + "Update group resources": "Uppdatera gruppresurser", + "Update my event": "Uppdatera mitt evenemang", + "Update post": "Uppdatera inlägg", + "Update profiles": "Uppdatera profiler", + "Updated": "Uppdaterad", + "Updated at": "Uppdaterad den", + "Upload media": "Ladda upp media", + "Uploaded media size": "Storlek på uppladdad media", + "Uploaded media total size": "Uppladdad media total storlek", + "Use my location": "Använd min plats", + "User": "Användare", + "User settings": "Användarinställningar", + "User suspended and report resolved": "Användaren avstängd och anmälan löst", + "Username": "Användarnamn", + "Users": "Användare", + "Validating account": "Validering av konto", + "Validating email": "Validering av e-postadress", + "Video Conference": "Videokonferens", + "View a reply": "Visa inga svar|Visa ett svar|Visa {totalReplies} svar", + "View account on {hostname} (in a new window)": "Visa konto på {hostname} (i ett nytt fönster)", + "View all": "Visa alla", + "View all categories": "Visa alla kategorier", + "View all events": "Se alla evenemang", + "View all posts": "Visa alla inlägg", + "View event page": "Visa evenemangsidan", + "View everything": "Visa allt", + "View full profile": "Visa fullständig profil", + "View less": "Visa mindre", + "View more": "Visa mer", + "View more events": "Se fler evenemang", + "View more events around {position}": "Se fler evenemang i närheten av {position}", + "View more groups around {position}": "Se fler grupper i närheten av {position}", + "View more online events": "Se fler online-evenemang", + "View page on {hostname} (in a new window)": "Visa sidan hos {hostname} (öppnas i ett nytt fönster)", + "View past events": "Visa tidigare evenemang", + "View the group profile on the original instance": "Se grupprofilen på den ursprungliga instansen", + "Visibility was set to an unknown value.": "Synlighet sattes till ett okänt värde.", + "Visibility was set to private.": "Synlighet sattes till privat.", + "Visibility was set to public.": "Synlighet sattes till publik.", + "Visible everywhere on the web": "Synligt för hela webben", + "Visible everywhere on the web (public)": "Synlig överallt på internet (publikt)", + "Visit {instance_domain}": "Besök {instance_domain}", + "Waiting for organization team approval.": "Väntar på godkännande från organisationsteamet.", + "Warning": "Varning", + "We collect your feedback and the error information in order to improve this service.": "Vi samlar in din feedback och felinformation för att kunna förbättra denna tjänst.", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "Vi kunde inte spara ditt deltagande i den här webbläsaren. Oroa dig inte, du har bekräftat ditt deltagande, vi kunde bara inte spara dess status i den här webbläsaren på grund av ett tekniskt problem.", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Vi förbättrar denna programvara tack vare din feedback. För att meddela oss om detta problem finns det två möjligheter (båda kräver tyvärr att ett användarkonto skapas):", + "We just sent an email to {email}": "Vi skickade precis ett mail till {email}", + "We use your timezone to make sure you get notifications for an event at the correct time.": "Vi använder din tidszon för att se till att du får notifieringar om ett event vid rätt tid.", + "We will redirect you to your instance in order to interact with this event": "Vi kommer att omdirigera dig till din instans för att du ska kunna interagera med det här evenemanget", + "We will redirect you to your instance in order to interact with this group": "Vi kommer att omdirigera dig till din instans för att du ska kunna interagera med den här gruppen", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Vi skickar dig ett e-postmeddelande en timme innan evenemanget börjar för att se till att du inte glömmer det.", + "We'll use your timezone settings to send a recap of the morning of the event.": "Vi kommer att använda dina inställningar för tidszon för att skicka en sammanfattning av evenemangets morgon.", + "Website": "Hemsida", + "Website / URL": "Hemsida / URL", + "Weekly email summary": "Veckovis sammanfattning via e-post", + "Welcome back {username}!": "Välkommen tillbaka {username}!", + "Welcome back!": "Välkommen tillbaka!", + "Welcome to Mobilizon, {username}!": "Välkommen till Mobilizon, {username}!", + "What can I do to help?": "Vad kan jag göra för att hjälpa till?", + "What happened?": "Vad hände?", + "Wheelchair accessibility": "Tillgänglighet för rullstolar", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "När en moderator från gruppen skapar ett evenemang och attribuerar det till gruppen kommer det att visas här.", + "When the event is private, you'll need to share the link around.": "När evenemanget är privat måste du dela länken med andra.", + "When the post is private, you'll need to share the link around.": "När inlägget är privat måste du dela länken med andra.", + "Whether smoking is prohibited during the event": "Om rökning är förbjuden under evenemanget", + "Whether the event is accessible with a wheelchair": "Om evenemanget är tillgängligt med rullstol", + "Whether the event is interpreted in sign language": "Om evenemanget tolkas på teckenspråk", + "Whether the event live video is subtitled": "Om livevideon från evenemanget är textad", + "Who can post a comment?": "Vem kan skriva en kommentar?", + "Who can view this event and participate": "Vem kan se och delta i detta evenemang", + "Who can view this post": "Vilka kan se det här inlägget", + "Who published {number} events": "Som publicerade {number} events", + "Why create an account?": "Varför skapa ett konto?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Gör det möjligt att visa och hantera din deltagarstatus på evenemangssidan när du använder den här enheten. Avmarkera om du använder en offentlig enhet.", + "With the most participants": "Med flest deltagare", + "With unknown participants": "Med okända deltagare", + "With {participants}": "Med {participants}", + "Within {number} kilometers of {place}": "|Inom en kilometer från {place}|Inom {number} kilometer från {place}", + "Write a new comment": "Skriv en ny kommentar", + "Write a new message": "Skriv ett nytt meddelande", + "Write a new reply": "Skriv ett nytt svar", + "Write something": "Skriv något", + "Write your post": "Skriv ditt inlägg", + "Yesterday": "Igår", + "You accepted the invitation to join the group.": "Du accepterade inbjudan att gå med i gruppen.", + "You added the member {member}.": "Du lade till medlemmen {member}.", + "You approved {member}'s membership.": "Du godkände {member}s medlemskap.", + "You archived the discussion {discussion}.": "Du arkiverade diskussionen {discussion}.", + "You are not an administrator for this group.": "Du är inte en administratör för den här gruppen.", + "You are not part of any group.": "Du är inte en del av någon grupp.", + "You are offline": "Du är offline", + "You are participating in this event anonymously": "Du deltar i det här evenemanget anonymt", + "You are participating in this event anonymously but didn't confirm participation": "Du deltar i detta evenemanget anonymt, men har inte bekräftat deltagande", + "You can add resources by using the button above.": "Du kan lägga till resurser genom att använda knappen ovan.", + "You can add tags by hitting the Enter key or by adding a comma": "Du kan lägga till taggar genom att trycka Enter eller skriva ett komma", + "You can drag and drop the marker below to the desired location": "Du kan dra och släppa markören nedan till önskad plats", + "You can pick your timezone into your preferences.": "Du kan välja din tidszon i dina inställningar.", + "You can put any arbitrary content in this element. URLs will be clickable.": "Du kan lägga in godtyckligt innehåll i detta element. URL-adresser kommer att vara klickbara.", + "You can try another search term or add the address details manually below.": "Du kan prova en annan sökterm eller lägga till adressuppgifterna manuellt nedan.", + "You can try another search term or drag and drop the marker on the map": "Du kan försöka med ett annat sökord eller dra och släpp markören på kartan", + "You can't change your password because you are registered through {provider}.": "Du kan inte ändra ditt lösenord eftersom att du är registrerad genom {provider}.", + "You can't use push notifications in this browser.": "Du kan inte använda pushnotiser i den här webbläsaren.", + "You changed your email or password": "Du har ändrat din e-postadress eller lösenord", + "You created the discussion {discussion}.": "Du skapade diskussionen {discussion}.", + "You created the event {event}.": "Du skapade evenemanget {event}.", + "You created the folder {resource}.": "Du skapade mappen {resource}.", + "You created the group {group}.": "Du skapade gruppen {group}.", + "You created the post {post}.": "Du skapade inlägget {post}.", + "You created the resource {resource}.": "Du skapade resursen {resource}.", + "You deleted the discussion {discussion}.": "Du raderade diskussionen {discussion}.", + "You deleted the event {event}.": "Du har raderat evenemanget {event}.", + "You deleted the folder {resource}.": "Du raderade mappen {resource}.", + "You deleted the post {post}.": "Du raderade inlägget {post}.", + "You deleted the resource {resource}.": "Du tog bort resursen {resource}.", + "You demoted the member {member} to an unknown role.": "Du degraderade medlemmen {member} till en okänd roll.", + "You demoted {member} to moderator.": "Du degraderade {member} till moderator.", + "You demoted {member} to simple member.": "Du degraderade {member} till enkel medlem.", + "You didn't create or join any event yet.": "Du har inte skapat eller gått med i något evenemang ännu.", + "You don't follow any instances yet.": "Du följer inga instanser ännu.", + "You don't have any upcoming events. Maybe try another filter?": "Du har inga kommande evenemang. Kanske prova ett annat filter?", + "You excluded member {member}.": "Du uteslöt medlem {member}.", + "You have access to this conversation as a member of the {group} group": "Du har tillgång till detta samtal som medlem i {group}-gruppen", + "You have attended {count} events in the past.": "Du har inte deltagit i några evenemang under de senaste åren.|Du har deltagit i ett evenemang under de senaste åren.|Du har deltagit i {count} evenemang under de senaste åren.", + "You have been invited by {invitedBy} to the following group:": "Du har blivit inbjuden av {invitedBy} till följande grupp:", + "You have been logged-out": "Du har blivit utloggad", + "You have been removed from this group's members.": "Du har blivit borttagen som gruppmedlem.", + "You have cancelled your participation": "Du har avslutat ditt deltagande", + "You have one event in {days} days.": "Du har inga evenemang under nästa {days} dagar|Du har ett evenemang under nästa {days} dagar.|Du har {count} under nästa {days} dagar", + "You have one event today.": "Du har inga evenemang idag|Du har ett evenemang idag.|Du har {count} evenemang idag", + "You have one event tomorrow.": "Du har inga evenemang imorgon|Du har ett evenemang imorgon|Du har {count} evenemang imorgon", + "You haven't interacted with other instances yet.": "Du har inte interagerat med andra instanser ännu.", + "You invited {member}.": "Du bjöd in {member}.", + "You joined the event {event}.": "Du gick med i evenemanget {event}.", + "You may also:": "Du kan också:", + "You may clear all participation information for this device with the buttons below.": "Du kan rensa all deltagarinformation för den här enheten med knapparna nedan.", + "You may now close this page or {return_to_the_homepage}.": "Du kan nu stänga denna sida eller {return_to_the_homepage}.", + "You may now close this window, or {return_to_event}.": "Du kan nu stänga detta fönster, eller {return_to_event}.", + "You may show some members as contacts.": "Du kan visa vissa medlemmar som kontakter.", + "You moved the folder {resource} into {new_path}.": "Du flyttade mappen {resource} till {new_path}.", + "You moved the folder {resource} to the root folder.": "Du flyttade mappen {resource} till rotmappen.", + "You moved the resource {resource} into {new_path}.": "Du flyttade resursen {resource} till {new_path}.", + "You moved the resource {resource} to the root folder.": "Du flyttade resursen {resource} till rotmappen.", + "You need to login.": "Du måste logga in.", + "You need to provide the following code to your application. It will only be valid for a few minutes.": "Du måste ange följande kod till din applikation. Den kommer bara att vara giltig i några minuter.", + "You posted a comment on the event {event}.": "Du publicerade en kommentar om evenemanget {event}.", + "You promoted the member {member} to an unknown role.": "Du befordrade medlemmen {member} till en okänd roll.", + "You promoted {member} to administrator.": "Du befordrade {member} till administratör.", + "You promoted {member} to moderator.": "Du befordrade {member} till moderator.", + "You rejected {member}'s membership request.": "Du avslog {member}s begäran om medlemskap.", + "You renamed the discussion from {old_discussion} to {discussion}.": "Du döpte om diskussionen från {old_discussion} till {discussion}.", + "You renamed the folder from {old_resource_title} to {resource}.": "Du har bytt namn på mappen från {old_resource_title} till {resource}.", + "You renamed the resource from {old_resource_title} to {resource}.": "Du har bytt namn på resursen från {old_resource_title} till {resource}.", + "You replied to a comment on the event {event}.": "Du svarade på en kommentar om evenemanget {event}.", + "You replied to the discussion {discussion}.": "Du svarade på diskussionen {discussion}.", + "You requested to join the group.": "Du har begärt att få ansluta dig till gruppen.", + "You updated the event {event}.": "Du uppdaterade evenemanget {event}.", + "You updated the group {group}.": "Du uppdaterade gruppen {group}.", + "You updated the member {member}.": "Du uppdaterade medlemmen {member}.", + "You updated the post {post}.": "Du uppdaterade inlägget {post}.", + "You were demoted to an unknown role by {profile}.": "Du degraderades till en okänd roll av {profile}.", + "You were demoted to moderator by {profile}.": "Du degraderades till moderator av {profile}.", + "You were demoted to simple member by {profile}.": "Du degraderades till enkel medlem av {profile}.", + "You were promoted to administrator by {profile}.": "Du befordrades till administratör av {profile}.", + "You were promoted to an unknown role by {profile}.": "Du befordrades till en okänd roll av {profile}.", + "You were promoted to moderator by {profile}.": "Du befordrades till moderator av {profile}.", + "You will be able to add an avatar and set other options in your account settings.": "Du kommer att kunna lägga till en avatar och ställa in andra alternativ i dina kontoinställningar.", + "You will be redirected to the original instance": "Du kommer att omdirigeras till den ursprungliga instansen", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "Här hittar du alla evenemang som du har skapat eller som du deltar i, samt evenemang som anordnas av grupper som du följer eller är medlem i.", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "Du kommer att få meddelanden om denna grupps offentliga aktivitet beroende på %{notification_settings}.", + "You wish to participate to the following event": "Du önskar att delta i det följande evenemanget", + "You'll be able to revoke access for this application in your account settings.": "Du kan återkalla åtkomsten för den här applikationen i dina kontoinställningar.", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "Du får en veckovis sammanfattning varje måndag för kommande evenemang, om du har några.", + "You'll need to change the URLs where there were previously entered.": "Du måste ändra webbadresserna där de tidigare angetts.", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Du behöver skicka gruppens URL så att andra kan komma åt gruppens profil. Gruppen kommer inte att kunna hittas i Mobilizons sökmotor eller vanliga sökmotorer.", + "You'll receive a confirmation email.": "Du får en bekräftelse via e-post.", + "YouTube live": "YouTube live", + "YouTube replay": "YouTube-repris", + "Your account has been successfully deleted": "Borttagningen av ditt konto lyckades", + "Your account has been validated": "Ditt konto har validerats", + "Your account is being validated": "Ditt konto håller på att valideras", + "Your account is nearly ready, {username}": "Ditt konto är nästan redo, {username}", + "Your application code": "Din applikationskod", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Din stad eller region och radien kommer endast att användas för att föreslå evenemang i närheten. Evenemangets radie kommer att ta hänsyn till områdets administrativa centrum.", + "Your current email is {email}. You use it to log in.": "Din nuvarande e-postadress är {email}. Du använder den för att logga in.", + "Your email": "Din e-post", + "Your email address was automatically set based on your {provider} account.": "Din mejladress fylldes i automatiskt baserat på ditt {provider}-konto.", + "Your email has been changed": "Din e-postadress har ändrats", + "Your email is being changed": "Din e-postadress håller på att ändras", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Din e-postadress kommer endast att användas för att bekräfta att du är en riktig person och för att skicka dig eventuella uppdateringar om detta evenemang. Den kommer INTE att överföras till andra instanser eller till arrangören av evenemanget.", + "Your federated identity": "Din federerade identitet", + "Your membership is pending approval": "Ditt medlemskap väntar på godkännande", + "Your membership was approved by {profile}.": "Ditt medlemskap godkändes av {profile}.", + "Your participation has been cancelled": "Ditt deltagande har ställts in", + "Your participation has been confirmed": "Ditt deltagande har bekräftats", + "Your participation has been rejected": "Ditt deltagande har avvisats", + "Your participation has been requested": "Ditt deltagande har förfrågats", + "Your participation is being cancelled": "Ditt deltagande avbryts", + "Your participation request has been validated": "Ditt deltagande har bekräftats", + "Your participation request is being validated": "Ditt deltagande valideras", + "Your participation status has been changed": "Din deltagarstatus har ändrats", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Din deltagarstatus sparas endast på denna enhet och raderas en månad efter att evenemanget har avslutats.", + "Your participation still has to be approved by the organisers.": "Ditt deltagande måste fortfarande godkännas av arrangörerna.", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Ditt deltagande kommer att valideras när du klickar på bekräftelselänken i e-postmeddelandet och efter att organisatören manuellt validerar ditt deltagande.", + "Your participation will be validated once you click the confirmation link into the email.": "Ditt deltagande kommer att bekräftas när du klickar på bekräftelselänken i e-postmeddelandet.", + "Your position was not available.": "Din position var inte tillgänglig.", + "Your profile will be shown as contact.": "Din profil kommer att visas som kontakt.", + "Your timezone is currently set to {timezone}.": "Din tidszon är för närvarande inställd på {tidszon}.", + "Your timezone was detected as {timezone}.": "Din tidszon verkar vara {timezone}.", + "Your timezone {timezone} isn't supported.": "Din tidszon {tidszon} stöds inte.", + "Your upcoming events": "Dina kommande evenemang", + "Zoom": "Zoom", + "Zoom in": "Zooma in", + "Zoom out": "Zooma ut", + "[This comment has been deleted by it's author]": "[Den här kommentaren har tagits bort av den som skrev den]", + "[This comment has been deleted]": "[Den här kommentaren har tagits bort]", + "[deleted]": "[togs bort]", + "a non-existent report": "en icke-existerande rapport", + "access the corresponding account": "tillgång till motsvarande konto", + "access to the group's private content as well": "också tillgång till gruppens privata innehåll", + "and {number} groups": "och {number} grupper", + "any distance": "alla avstånd", + "as {identity}": "som {identitet}", + "contact uninformed": "kontakta oinformerade", + "create a group": "skapa en grupp", + "create an event": "skapa ett evenemang", + "default Mobilizon privacy policy": "Standard-integritetspolicy för Mobilizon", + "default Mobilizon terms": "standardvillkor för Mobilizon", + "e.g. 10 Rue Jangot": "e.g. 10 Rue Jangot", + "e.g. Accessibility, Twitch, PeerTube": "t.ex. Accessibility, Twitch, PeerTube", + "e.g. Nantes, Berlin, Cork, …": "t.ex. Nantes, Berlin, Cork, …", + "enable the feature": "aktivera funktionen", + "explore the events": "utforska evenemang", + "explore the groups": "utforska grupperna", + "find, create and organise events": "hitta, skapa och organisera evenemang", + "full rules": "fullständiga regler", + "group's upcoming public events": "gruppens kommande offentliga evenemang", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/en-hemlig-token", + "iCal Feed": "iCal-feed", + "instance rules": "instansregler", + "mobilizon-instance.tld": "mobilizon-instance.tld", + "more than 1360 contributors": "mer än 1360 bidragsgivare", + "multitude of interconnected Mobilizon websites": "en mängd sammankopplade Mobilizon-webbplatser", + "new{'@'}email.com": "ny{'@'}email.com", + "profile@instance": "profil@instans", + "profile{'@'}instance": "profil{'@'}instans", + "report #{report_number}": "rapport #{report_number}", + "return to the event's page": "återgå till evenemangets sida", + "return to the homepage": "återgå till startsidan", + "terms of service": "servicevillkor", + "tool designed to serve you": "verktyg utformat för att tjäna dig", + "with another identity…": "med en annan identitet…", + "your notification settings": "dina notifikationsinställningar", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved} / {total} platser", + "{available}/{capacity} available places": "Inga platser kvar|{available}/{capacity} tillgängliga platser", + "{count} events": "{count} händelser", + "{count} km": "{count} km", + "{count} members": "Inga medlemmar|En medlem|{count} medlemmar", + "{count} members or followers": "Inga medlemmar eller följare|En medlem eller följare|{count} medlemmar eller följare", + "{count} participants": "Inga deltagande ännu|En deltagande|{count} deltagande", + "{count} requests waiting": "{count} förfrågningar väntar", + "{eventsCount} events found": "Inga händelser hittades|En händelse hittades|{eventsCount} händelser hittades", + "{folder} - Resources": "{folder} - Resurser", + "{groupsCount} groups found": "Inga grupper funna|En grupp funnen|{groupsCount} grupper funna", + "{group} activity timeline": "{group} aktivitetstidslinje", + "{group} events": "{group} händelser", + "{group} posts": "{group} inlägg", + "{group}'s events": "{grupp}s evenemang", + "{group}'s todolists": "{group}s att-göra listor", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} är en {mobilizon}-instans.", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} är en instans av {mobilizon_link}, en fri programvara som byggts tillsammans med gemenskapen.", + "{member} accepted the invitation to join the group.": "{member} accepterade inbjudan att gå med i gruppen.", + "{member} joined the group.": "{member} gick med i gruppen.", + "{member} rejected the invitation to join the group.": "{member} tackade nej till inbjudan att bli medlem i gruppen.", + "{member} requested to join the group.": "{member} bad att få gå med i gruppen.", + "{member} was invited by {profile}.": "{member} bjöds in av {profile}.", + "{moderator} added a note on {report}": "{moderator} la till en anteckning rörande {report}", + "{moderator} closed {report}": "{moderator} avslutade {report}", + "{moderator} deleted an event named \"{title}\"": "{moderator} tog bort evenemanget \"{title}\"", + "{moderator} has deleted a comment from {author}": "{moderator} har raderat en kommentar från {author}", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator} har raderat en kommentar från {author} under evenemanget {event}", + "{moderator} has deleted user {user}": "{moderator} har tagit bort användaren {user}", + "{moderator} has done an unknown action": "{moderator} har gjort en okänd åtgärd", + "{moderator} has unsuspended group {profile}": "{moderator} har ångrat avstängningen av grupp {profile}", + "{moderator} has unsuspended profile {profile}": "{moderator} har upphävt avstängning av profilen {profile}", + "{moderator} marked {report} as resolved": "{moderator} markerade {report} som löst", + "{moderator} reopened {report}": "{moderator} åter-öppnade {report}", + "{moderator} suspended group {profile}": "{moderator} stängde av gruppen {profile}", + "{moderator} suspended profile {profile}": "{moderator} stängde av profilen {profile}", + "{nb} km": "{nb} km", + "{numberOfCategories} selected": "{numberOfCategories} valda", + "{numberOfLanguages} selected": "{numberOfLanguages} valda", + "{number} kilometers": "{number} kilometer", + "{number} members": "{antal} medlemmar", + "{number} memberships": "{number} medlemskap", + "{number} organized events": "Inga organiserade evenemang|Ett organiserat evenemang|{number} organiserade evenemang", + "{number} participations": "Inga deltaganden|Ett deltagande|{number} deltaganden", + "{number} posts": "Inga inlägg|Ett inlägg|{antal} inlägg", + "{number} seats left": "{number} platser kvar", + "{old_group_name} was renamed to {group}.": "{old_group_name} döptes om till {group}.", + "{profileName} (suspended)": "{profileName} (avstängd)", + "{profile} (by default)": "{profile} (som standard)", + "{profile} added the member {member}.": "{profile} la till medlemmen {member}.", + "{profile} approved {member}'s membership.": "{profile} godkände {member}s medlemskap.", + "{profile} archived the discussion {discussion}.": "{profile} arkiverade diskussionen {discussion}.", + "{profile} created the discussion {discussion}.": "{profile} skapade diskussionen {discussion}.", + "{profile} created the folder {resource}.": "{profile} skapade mappen {resource}.", + "{profile} created the group {group}.": "{profile} skapade gruppen {group}.", + "{profile} created the resource {resource}.": "{profile} skapade resursen {resource}.", + "{profile} deleted the discussion {discussion}.": "{profile} tog bort diskussionen {discussion}.", + "{profile} deleted the folder {resource}.": "{profile} raderade mappen {resource}.", + "{profile} deleted the resource {resource}.": "{profile} tog bort resursen {resource}.", + "{profile} demoted {member} to an unknown role.": "{profile} degraderade {member} till en okänd roll.", + "{profile} demoted {member} to moderator.": "{profile} degraderade {member} till moderator.", + "{profile} demoted {member} to simple member.": "{profile} degraderade {member} till enkel medlem.", + "{profile} excluded member {member}.": "{profile} exkluderade medlemmen {member}.", + "{profile} joined the the event {event}.": "{profile} gick med i evenemanget {event}.", + "{profile} moved the folder {resource} into {new_path}.": "{profile} flyttade mappen {resource} till {new_path}.", + "{profile} moved the folder {resource} to the root folder.": "{profile} flyttade mappen {resource} till rotmappen.", + "{profile} moved the resource {resource} into {new_path}.": "{profile} flyttade resursen {resource} till {new_path}.", + "{profile} moved the resource {resource} to the root folder.": "{profile} flyttade resursen {resource} till rotmappen.", + "{profile} posted a comment on the event {event}.": "{profile} publicerade en kommentar om evenemanget {event}.", + "{profile} promoted {member} to administrator.": "{profile} befordrade {member} till administratör.", + "{profile} promoted {member} to an unknown role.": "{profile} befordrade {member} till en okänd roll.", + "{profile} promoted {member} to moderator.": "{profile} befordrade {member} till moderator.", + "{profile} quit the group.": "{profile} lämnade gruppen.", + "{profile} rejected {member}'s membership request.": "{profile} avslog {member}s begäran om medlemskap.", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} döpte om diskussionen från {old_discussion} till {discussion}.", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} döpte om mappen från %{old_resource_title} till {resource}.", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} döpte om resursen från {old_resource_title} till {resource}.", + "{profile} replied to a comment on the event {event}.": "{profile} svarade på en kommentar om evenemanget {event}.", + "{profile} replied to the discussion {discussion}.": "{profile} svarade på diskussionen {discussion}.", + "{profile} updated the group {group}.": "{profile} uppdaterade gruppen {group}.", + "{profile} updated the member {member}.": "{profile} uppdaterade medlemmen {member}.", + "{resultsCount} results found": "Inga resultat hittades|Ett resultat hittades|{resultsCount} resultat hittades", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} att-göra)", + "{username} was invited to {group}": "{användarnamn} blev inbjuden till {grupp}", + "{user}'s follow request was accepted": "{user}s följarförfrågan accepterades", + "{user}'s follow request was rejected": "{user}s följarförfrågan avvisades", + "© The OpenStreetMap Contributors": "© Alla bidragsgivare till OpenStreetMap" +}); diff --git a/res/locale/th.js b/res/locale/th.js new file mode 100644 index 0000000..e6bcd73 --- /dev/null +++ b/res/locale/th.js @@ -0,0 +1 @@ +CTX.setMessages({}); diff --git a/res/locale/tr.js b/res/locale/tr.js new file mode 100644 index 0000000..261e817 --- /dev/null +++ b/res/locale/tr.js @@ -0,0 +1,208 @@ +CTX.setMessages({ + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Toplanma, organize olma ve harekete geçme için kullanıcı dostu, özgürleştirici ve etik bir araç.", + "A validation email was sent to {email}": "{email} adresine bir doğrulama e-postası gönderildi", + "Abandon editing": "Düzenlemeyi bırakın", + "About": "Hakkında", + "About Mobilizon": "Mobilizon Hakkında", + "About this event": "Bu etkinlik hakkında", + "About this instance": "Bu oluşum hakkında", + "Accepted": "Kabul Edildi", + "Account": "Hesap", + "Add": "Ekle", + "Add a note": "Bir not ekleyin", + "Add an address": "Bir adres ekleyin", + "Add an instance": "Bir oluşum ekleyin", + "Add some tags": "Bazı etiketler ekleyin", + "Add to my calendar": "Takvimime ekle", + "Additional comments": "Ek yorumlar", + "Admin": "Admin", + "Admin settings successfully saved.": "Admin ayarları başarıyla kaydedildi.", + "Administration": "Administration", + "All the places have already been taken": "Tüm alanlar çoktan alındı", + "Allow registrations": "Kayıtlara izin ver", + "Anonymous participant": "Anonim katılımcı", + "Anonymous participants will be asked to confirm their participation through e-mail.": "Anonim katılımcılardan e-mail aracılığıyla katılımlarını doğrulamaları istenecektir.", + "Anonymous participations": "Anonim katılımcılar", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Tüm hesabınızı silmek istediğinizden gerçekten emin misiniz? Her şeyinizi kaybedeceksiniz. Kimlikler, ayarlar, oluşturulan etkinlikler, mesajlar ve katılımlar tamamen yok olacak.", + "Are you sure you want to delete this comment? This action cannot be undone.": "Bu yorumu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Bu etkinliğisilmek istediğinizden emin misiniz? Bu eylem geri alınamaz. Bunun yerine etkinliği oluşturan kişiyle konuşmak veya etkinliğini düzenlemek isteyebilirsiniz.", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "Etkinlik oluşturma işlemini iptal etmek istediğinizden emin misiniz? Tüm değişiklikler kaybolacak.", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "Etkinlik düzenlemesini iptal etmek istediğinizden emin misiniz? Tüm değişiklikleri kaybedeceksiniz.", + "Are you sure you want to cancel your participation at event \"{title}\"?": "\"{title}\" etkinliğine katılımınızı iptal etmek istediğinizden emin misiniz?", + "Are you sure you want to delete this event? This action cannot be reverted.": "Bu etkinliği silmek istediğinizden emin misiniz? Bu eylem geri döndürülemez.", + "Avatar": "Avatar", + "Back to previous page": "Önceki sayfaya dön", + "Before you can login, you need to click on the link inside it to validate your account.": "Giriş yapmadan önce, hesabınızı doğrulamak için gönderilen bağlantıya tıklamanız gerekir.", + "By {username}": "{username} tarafından", + "Cancel": "İptal et", + "Cancel anonymous participation": "Anonim katılımı iptal et", + "Cancel creation": "Oluşturmayı iptal et", + "Cancel edition": "Düzenlemeyi iptal et.", + "Cancel my participation request…": "Katılım talebimi iptal edin…", + "Cancel my participation…": "Katılımımı iptal edin…", + "Cancelled: Won't happen": "İptal edildi: Olmayacak", + "Change": "Değiştir", + "Change my email": "E-posta adresimi değiştir", + "Change my identity…": "Kimliğimi değiştir…", + "Change my password": "Parolamı değiştir", + "Clear": "Temizle", + "Click to upload": "Yüklemek için tıklayın", + "Close": "Kapat", + "Close comments for all (except for admins)": "Yorumları herkes için kapatın (yöneticiler hariç)", + "Closed": "Kapalı", + "Comment deleted": "Yorum silindi", + "Comment from {'@'}{username} reported": "{'@'}{username} tarafından yapılan yorum rapor edildi", + "Comments": "Yorumlar", + "Confirm my participation": "Katılımımı onayla", + "Confirm my particpation": "Katılımımı onayla", + "Confirmed: Will happen": "Onaylandı: Gerçekleşecek", + "Continue editing": "Düzenlemeye devam et", + "Country": "Ülke", + "Create": "Oluştur", + "Create a new event": "Yeni bir etkinlik oluşturun", + "Create a new group": "Yeni bir grup oluşturun", + "Create a new identity": "Yeni bir kimlik oluşturun", + "Create group": "Grup oluştur", + "Create my event": "Etkinliğimi oluştur", + "Create my group": "Grubumu oluştur", + "Create my profile": "Profilimi oluştur", + "Create token": "Token oluştur", + "Current identity has been changed to {identityName} in order to manage this event.": "Bu etkinliği yönetmek için mevcut kimlik {identityName} olarak değiştirildi.", + "Current page": "Geçerli sayfa", + "Custom": "Özel", + "Custom URL": "Özel URL", + "Custom text": "Özel metin", + "Dashboard": "Kontrol Paneli", + "Date": "Tarih", + "Date and time settings": "Tarih ve saat ayarları", + "Date parameters": "Tarih parametreleri", + "Default": "Varsayılan", + "Delete": "Sil", + "Delete account": "Hesabı sil", + "Delete event": "Etkinliği sil", + "Delete everything": "Her şeyi sil", + "Delete my account": "Hesabımı sil", + "Delete this identity": "Bu kimliği silin", + "Delete your identity": "Kimliğinizi silin", + "Delete {eventTitle}": "{eventTitle} Sil", + "Delete {preferredUsername}": "{preferredUsername} Sil", + "Deleting comment": "Yorumları sil", + "Deleting event": "Etkinliği iptal et", + "Deleting my account will delete all of my identities.": "Hesabımı silmek tüm kimliklerimi silecektir.", + "Deleting your Mobilizon account": "Mobilizon hesabınızı silme", + "Description": "Açıklama", + "Display name": "Görünen ad", + "Display participation price": "Katılım ücretini göster", + "Domain": "Alan adı", + "Draft": "Taslak", + "Drafts": "Taslaklar", + "Edit": "Düzenle", + "Eg: Stockholm, Dance, Chess…": "Örneğin: İstanbul, Dans, Satranç…", + "Either on the {instance} instance or on another instance.": "Ya {instance} oluşumunda ya da başka bir oluşumda.", + "Either the account is already validated, either the validation token is incorrect.": "Hesap zaten doğrulanmış ya da doğrulama tokeni yanlış.", + "Either the email has already been changed, either the validation token is incorrect.": "E-posta zaten değiştirilmiş ya da doğrulama tokeni yanlış.", + "Either the participation request has already been validated, either the validation token is incorrect.": "Katılım talebi zaten doğrulanmış ya da doğrulama tokeni yanlış.", + "Email": "E-mail", + "Ends on…": "Bitecek…", + "Enter the link URL": "Bağlantı URL'sini girin", + "Error while changing email": "E-posta değiştirilirken hata oluştu", + "Error while validating account": "Hesap doğrulanırken hata oluştu", + "Error while validating participation request": "Katılım isteği doğrulanırken hata oluştu", + "Event": "Etkinlik", + "Event already passed": "Etkinliğin süresi çoktan bitti", + "Event cancelled": "Etkinlik iptal edildi", + "Event creation": "Etkinlik oluşturma", + "Event edition": "Etkinlik düzenleme", + "Event list": "Etkinlik listesi", + "Event page settings": "Etkinlik sayfası ayarları", + "Event to be confirmed": "Etkinlik doğrulanacak", + "Event {eventTitle} deleted": "{eventTitle} etkinliği silindi", + "Event {eventTitle} reported": "{eventTitle} etkinliği rapor edildi", + "Events": "Etkinlikler", + "Ex: mobilizon.fr": "Örn: mobilizon.fr", + "Explore": "Keşfedin", + "Failed to save admin settings": "Yönetici ayarlarını kaydetme başarısız", + "Featured events": "Öne çıkan etkinlikler", + "Federation": "Bir-ağ", + "Find an address": "Bir adres bulun", + "Find an instance": "Bir oluşum bulun", + "Followers": "Takipçiler", + "Followings": "Takip edilenler", + "For instance: London, Taekwondo, Architecture…": "Örneğin: İstanbul, Taekwondo, Mimarlık…", + "Forgot your password ?": "Parolanızı mı unuttunuz?", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "{startDate} tarihi ve {startTime} ve saati ile {endDate} saat {endTime} arasında", + "From the {startDate} to the {endDate}": "", + "Gather ⋅ Organize ⋅ Mobilize": "Toplan ⋅ Organize ol ⋅ Harekete geç", + "General": "Genel", + "General information": "Genel bilgi", + "Getting location": "Konum alınıyor", + "Go": "Git", + "Group name": "Grup adı", + "Group {displayName} created": "{displayName} grubu oluşturuldu", + "Groups": "Gruplar", + "Headline picture": "Manşet resmi", + "Hide replies": "Yanıtları gizle", + "I create an identity": "Bir kimlik oluşturuyorum", + "I don't have a Mobilizon account": "Mobilizon hesabım yok", + "I have a Mobilizon account": "Mobilizon hesabım var", + "I have an account on another Mobilizon instance.": "Başka bir Mobilizon oluşumunda hesabım var.", + "I participate": "Ben de katılıyorum.", + "I want to allow people to participate without an account.": "İnsanların bir hesap olmadan katılmalarına izin vermek istiyorum.", + "I want to approve every participation request": "Her katılım talebini onaylamak istiyorum", + "Identity {displayName} created": "{displayName} kimliği oluşturuldu", + "Identity {displayName} deleted": "{displayName} kimliği silindi", + "Identity {displayName} updated": "{displayName} kimliği güncellendi", + "If an account with this email exists, we just sent another confirmation email to {email}": "Bu e-postaya sahip bir hesap varsa, {email} adresine yeni bir onay e-postası gönderdik", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Bu kimlik bazı grupların tek yöneticisi ise, bu kimliği silebilmeniz için önce o grupları silmeniz gerekir.", + "If you want, you may send a message to the event organizer here.": "İsterseniz etkinlik organizatörüne buradan mesaj gönderebilirsiniz.", + "Instance Name": "Oluşum adı", + "Instance Terms": "Oluşum Şartları", + "Instance Terms Source": "Oluşum Şartları Kaynağı", + "Instance Terms URL": "Oluşum Şartları URL'si", + "Instance settings": "Oluşum Ayarları", + "Instances": "Oluşumlar", + "Join {instance}, a Mobilizon instance": "Bir Mobilizon oluşumuna {instance} katılın", + "Last published event": "Son yayınlanan etkinlik", + "Last week": "Geçen hafta", + "Learn more": "Daha fazlasını öğrenin", + "Learn more about Mobilizon": "Mobilizon hakkında daha fazla bilgi edinin", + "Leave event": "Etkinlikten ayrılın", + "Leaving event \"{title}\"": "\"{title}\" etkinliğinden çıkılıyor", + "License": "Lisans", + "Limited number of places": "Sınırlı sayıda yer", + "Load more": "Daha fazla yükle", + "Locality": "Yerellik", + "Log in": "Giriş yap", + "Log out": "Çıkış yap", + "Login": "Giriş Yap", + "Login on Mobilizon!": "Mobilizon'a giriş yapın!", + "Login on {instance}": "{instance}'da oturum aç", + "Manage participations": "Katılımları yönetin", + "Mark as resolved": "Çözüldü olarak işaretle", + "Members": "Üyeler", + "Message": "Mesaj", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon özerkleşmiş bir ağdır. Bu etkinlik için farklı bir sunucudan etkileşim kurabilirsiniz.", + "Moderated comments (shown after approval)": "Denetlenen yorumlar (onaylandıktan sonra gösterilir)", + "Moderation": "Moderasyon", + "Moderation log": "Moderasyon günlüğü", + "My account": "Hesabım", + "My events": "Benim etkinliklerim", + "My identities": "Benim kimliklerim", + "Name": "İsim", + "New email": "Yeni e-posta", + "New note": "Yeni not", + "New password": "Yeni parola", + "New profile": "Yeni profil", + "Next page": "Sonraki sayfa", + "No address defined": "Hiçbir adres tanımlanmadı", + "No closed reports yet": "", + "No comment": "Yorum yok", + "No comments yet": "Henüz yorum yok", + "No end date": "Bitiş tarihi yok", + "No events found": "Hiçbir etkinlik bulunamadı", + "No group found": "Grup bulunamadı", + "No groups found": "Gruplar bulunamadı", + "No instance follows your instance yet.": "Henüz hiçbir oluşum sizin oluşumunuzu takip etmiyor.", + "No instance to approve|Approve instance|Approve {number} instances": "Onaylanacak oluşum yok| Oluşum onayla| {number} oluşumu onayla", + "Please do not use it in any real way.": "Lütfen bunu gerçek anlamda kullanmayın." +}); diff --git a/res/locale/tt.js b/res/locale/tt.js new file mode 100644 index 0000000..2efe14a --- /dev/null +++ b/res/locale/tt.js @@ -0,0 +1,3 @@ +CTX.setMessages({ + "Add": "Өстәргә" +}); diff --git a/res/locale/zh_Hans.js b/res/locale/zh_Hans.js new file mode 100644 index 0000000..c534120 --- /dev/null +++ b/res/locale/zh_Hans.js @@ -0,0 +1,1452 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "(蒙面)", + "(this folder)": "(这个文件夹)", + "(this link)": "(此链接)", + "+ Add a resource": "+ 添加一个资源", + "+ Create a post": "+ 创建一个帖子", + "+ Create an event": "+ 创建一个活动", + "+ Start a discussion": "+ 开始讨论", + "0 Bytes": "0 字节", + "{contact} will be displayed as contact.": "{contact} 将显示为联系人。|{contact} 将显示为联系人。", + "@{group}": "@{group}", + "@{username} ({role})": "@{username} ({role})", + "@{username}'s follow request was accepted": "@{username}的关注请求被接受了", + "@{username}'s follow request was rejected": "@{username}的关注请求被拒绝了", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Cookie是一个小文件,当你访问一个网站时被发送到你的计算机上。当你再次访问该网站时,cookie允许该网站识别你的浏览器。Cookie可以存储用户的偏好和其他信息。你可以将你的浏览器配置为拒绝所有cookies。然而,这可能会导致一些网站功能或服务的不能完全工作。本地存储的工作方式与此相同,但允许你存储更多数据。", + "A discussion has been created or updated": "已创建或更新了一项讨论", + "A federated software": "一个分布式的软件", + "A fediverse account URL to follow for event updates": "一个可以关注活动更新的fediverse账户的URL", + "A few lines about your group": "关于你们群组的几句话", + "A link to a page presenting the event schedule": "链接到活动时间表的页面", + "A link to a page presenting the price options": "一个介绍价格选择的页面链接", + "A member has been updated": "一名成员已被更新", + "A member requested to join one of my groups": "一位会员要求加入我的一个群组", + "A new version is available.": "有了新的版本。", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "一个放你的行为准则、规则或指导方针的地方。你可以使用HTML标签。", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "一个解释你是谁以及使你的实例与众不同的地方。你可以使用HTML标签。", + "A place to publish something to the whole world, your community or just your group members.": "一个向整个世界、你的社区或只是你的群组成员发布东西的地方。", + "A place to store links to documents or resources of any type.": "一个储存任何类型的链接的地方。", + "A post has been published": "已经发了一篇帖子", + "A post has been updated": "已经更新了一个帖子", + "A practical tool": "一个实用的工具", + "A resource has been created or updated": "一个资源已被创建或更新", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "你的实例主页的简短标语。默认为 \"聚集 ⋅ 组织 ⋅ 动员\"", + "A twitter account handle to follow for event updates": "一个可以关注活动更新的推特账号", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "一个对用户友好的,解放性的,有操守的工具,适用于聚集,组织,动员各种活动。", + "A validation email was sent to {email}": "一封验证邮件已发送至{email}", + "API": "API", + "Abandon editing": "放弃编辑", + "About": "关于", + "About Mobilizon": "关于Mobilizon", + "About anonymous participation": "关于匿名参与", + "About instance": "关于实例", + "About this event": "关于这个活动", + "About this instance": "关于这个实例", + "About {instance}": "关于{instance}", + "Accept": "接受", + "Accept follow": "接受关注", + "Accepted": "已接受", + "Accessibility": "无障碍设施", + "Accessible only by link": "只能通过链接进入", + "Accessible only to members": "只对会员开放", + "Accessible through link": "可通过链接进入", + "Account": "账户", + "Account settings": "帐户设置", + "Actions": "操作", + "Activate browser push notifications": "激活浏览器推送通知", + "Activate notifications": "激活通知", + "Activated": "已激活", + "Active": "活跃", + "Activity": "活动", + "Actor": "执行者", + "Adapt to system theme": "应用系统主题", + "Add": "添加", + "Add / Remove…": "添加/删除…", + "Add a contact": "添加一个联系人", + "Add a new post": "添加一个新的帖子", + "Add a note": "添加一个注释", + "Add a todo": "添加一个待办项", + "Add an address": "添加一个地址", + "Add an instance": "添加一个实例", + "Add link": "添加链接", + "Add new…": "添加新的…", + "Add picture": "添加图片", + "Add some tags": "添加一些标签", + "Add to my calendar": "加到我的行事历", + "Additional comments": "更多评论", + "Admin": "管理", + "Admin dashboard": "管理员面板", + "Admin settings": "管理员设置", + "Admin settings successfully saved.": "管理设置已成功保存。", + "Administration": "管理", + "Administrator": "管理员", + "All": "全部", + "All activities": "所有活动", + "All good, let's continue!": "没问题,让我们继续!", + "All the places have already been taken": "所有的位置已被占用", + "Allow all comments from users with accounts": "允许来自登录用户的所有评论", + "Allow registrations": "允许注册", + "An URL to an external ticketing platform": "一个指向外部票务平台的URL", + "An error has occured while refreshing the page.": "刷新页面时发生了一个错误。", + "An error has occured. Sorry about that. You may try to reload the page.": "发生了一个错误。对此表示抱歉。您可以尝试重新加载该页面。", + "An ethical alternative": "一个有节操的选择", + "An event I'm going to has been updated": "我要去的一个活动已被更新", + "An event I'm going to has posted an announcement": "我准备参加的一个活动发布了一个公告", + "An event I'm organizing has a new comment": "我正在组织的一个活动有了新的评论", + "An event I'm organizing has a new participation": "我正在组织的一个活动有一个新的参与者", + "An event I'm organizing has a new pending participation": "我正在组织的一个活动有一个新的待批准参与者", + "An event from one of my groups has been published": "我的一个群组的一个活动已经发布了", + "An event from one of my groups has been updated or deleted": "我的一个群组的一个活动已被更新或删除", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "一个实例是一个在服务器上运行的Mobilizon软件的安装版本。任何人都可以使用{mobilizon_software}或其他联合应用程序(又称 \"fediverse\")来运行一个实例。这个实例的名字是{instance_name}。Mobilizon是一个由多个实例组成的分布式网络(就像电子邮件服务器),在不同实例上注册的用户可以进行交流,即使他们没有在同一个实例上注册。", + "And {number} comments": "和{number}个评论", + "Announcements and mentions notifications are always sent straight away.": "公告和提及的通知总是直接发送。", + "Anonymous participant": "匿名参与者", + "Anonymous participants will be asked to confirm their participation through e-mail.": "匿名参与者会被要求通过电子邮件确认参与。", + "Anonymous participations": "匿名参与", + "Any category": "任何类别", + "Any day": "任何一天", + "Any distance": "任何距离", + "Any type": "任何类型", + "Anyone can join freely": "任何人都可以自由加入", + "Anyone can request being a member, but an administrator needs to approve the membership.": "任何人都可以申请成为会员,但需要管理员批准加入。", + "Anyone wanting to be a member from your group will be able to from your group page.": "任何想成为你的群组成员的人都能从你的群组页面上加入。", + "Application": "应用", + "Apply filters": "应用筛选", + "Approve member": "批准成员", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "你确定要删除整个账户吗?所有信息将被删除,包括你的身份,设置,创建的活动,信息,参与记录,并无法找回。", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "你确定你要彻底删除 这个群组吗?所有成员--包括远程成员--将被通知并从群组中删除,,所有的群组数据(事件、帖子、讨论、日程安排......)将被不可逆转地销毁 。", + "Are you sure you want to delete this comment? This action cannot be undone.": "你确定要真的 删除 这条评论吗?这个行动是不可逆的。", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "你确定真的要 删除这个活动吗?这个行动是不可逆的。你可能应该先和活动创建者讨论一下,或只是编辑这次活动。", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "你确定你要暂停 这个群组吗?所有成员--包括远程成员--将被通知并从群组中删除,,所有的群组数据(事件、帖子、讨论、日程安排......)将被不可逆转地销毁 。", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "你确定你要暂停 这个群组吗?由于这个组来源于实例{instance},这将只删除本地成员,并删除本地数据,以及拒绝所有未来的数据。", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "你确定真的要取消创建活动吗?你所有的修改都将丢失。", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "你确定真的要取消编辑这个活动吗?你所有的修改都将丢失。", + "Are you sure you want to cancel your participation at event \"{title}\"?": "你确定真的要撤回你对活动\"{title}\"的参与吗?", + "Are you sure you want to delete this entire discussion?": "你确定要删除这整个讨论吗?", + "Are you sure you want to delete this event? This action cannot be reverted.": "你确定真的要删除这个活动吗?这个行动是不可逆的。", + "Are you sure you want to delete this post? This action cannot be reverted.": "你确定真的要删除这个帖子吗?这个举动是不可逆的。", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "你确定要离开{groupName}这个群组吗?你将失去对这个群组的私有内容的访问权。这个动作不能被撤销。", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "由于活动组织者选择了手动验证参与请求,只有当你收到被接受的电子邮件时,你的参与才会被真正确认。", + "Ask your instance admin to {enable_feature}.": "要求你的实例管理员{enable_feature}。", + "Assigned to": "被分配到", + "Atom feed for events and posts": "活动和帖子的Atom 推送", + "Attending": "出席", + "Avatar": "头像", + "Back to group list": "回到群组列表", + "Back to homepage": "回到主页", + "Back to previous page": "回到前一页", + "Back to profile list": "返回身份列表", + "Back to top": "回到顶部", + "Back to user list": "返回到用户列表", + "Banner": "横幅", + "Become part of the community and start organizing events": "成为社区的一部分并开始组织活动", + "Before you can login, you need to click on the link inside it to validate your account.": "在你可登录之前,你需要点击内含的链接以证实你的账户。", + "Begins on": "开始于", + "Best match": "最佳匹配", + "Big Blue Button": "Big Blue Button", + "Bold": "粗体", + "Booking": "预订", + "Breadcrumbs": "面包屑", + "Browser notifications": "浏览器通知", + "Bullet list": "要点列表", + "By bike": "骑自行车", + "By car": "乘坐汽车", + "By others": "来自其他人", + "By transit": "乘坐公交", + "By {group}": "作者:{group}", + "By {username}": "由{username}", + "Can be an email or a link, or just plain text.": "可以是电子邮件或链接,或只是纯文本。", + "Cancel": "撤回", + "Cancel anonymous participation": "撤回匿名参与", + "Cancel creation": "撤回创建", + "Cancel discussion title edition": "取消讨论标题编辑", + "Cancel edition": "撤回编辑", + "Cancel follow request": "取消关注请求", + "Cancel membership request": "取消会员申请", + "Cancel my participation request…": "撤回我的参与申请…", + "Cancel my participation…": "撤回我的参与…", + "Cancelled": "已取消", + "Cancelled: Won't happen": "已取消: 不会举行", + "Categories": "分类", + "Category": "类别", + "Category illustrations credits": "分类演示分", + "Category list": "类别列表", + "Change": "修改", + "Change email": "修改电子邮件地址", + "Change my email": "修改我的电子邮件", + "Change my identity…": "修改我的身份…", + "Change my password": "修改我的密码", + "Change role": "改变角色", + "Change the filters.": "更换过滤选项。", + "Change timezone": "改变时区", + "Change user email": "更改用户的电子邮件", + "Change user role": "改变用户角色", + "Check your inbox (and your junk mail folder).": "检查你的收件箱(和你的垃圾邮件文件夹)。", + "Choose the source of the instance's Privacy Policy": "选择实例的隐私政策的来源", + "Choose the source of the instance's Terms": "选择实例的条款来源", + "City or region": "城市或地区", + "Clear": "清除", + "Clear address field": "清除地址栏", + "Clear date filter field": "清除日期过滤字段", + "Clear participation data for all events": "清除所有活动的参与数据", + "Clear participation data for this event": "清除本次活动的参与数据", + "Clear timezone field": "清除时区字段", + "Click for more information": "点击了解更多信息", + "Click to upload": "点击上传", + "Close": "关闭", + "Close comments for all (except for admins)": "关闭所有人的评论(除了管理员)", + "Close map": "关闭地图", + "Closed": "已关闭", + "Comment body": "评论正文", + "Comment deleted": "评论已删除", + "Comment from {'@'}{username} reported": "报告来自{'@'}{username}的留言", + "Comment text can't be empty": "评论文本不能是空的", + "Comments": "评论", + "Comments are closed for everybody else.": "其他人的评论已关闭。", + "Confirm": "确认", + "Confirm my participation": "确认我的参与", + "Confirm my particpation": "确认我的参与", + "Confirm participation": "确认参与", + "Confirm user": "确认用户", + "Confirmed": "已确认", + "Confirmed at": "已确认在", + "Confirmed: Will happen": "已确认。将会发生", + "Congratulations, your account is now created!": "祝贺你,你的账户现在已经创建!", + "Contact": "联系", + "Continue editing": "继续编辑", + "Cookies and Local storage": "Cookies和本地存储", + "Copy URL to clipboard": "复制URL到剪贴板", + "Copy details to clipboard": "复制细节到剪贴板", + "Country": "国家", + "Create": "创建", + "Create a calc": "创建一个表格", + "Create a discussion": "创建一个讨论", + "Create a folder": "创建一个文件夹", + "Create a new event": "创建一个新的活动", + "Create a new group": "创建一个新的组", + "Create a new identity": "创造一个新的身份", + "Create a new list": "创建一个新的列表", + "Create a new profile": "创建一个新的身份", + "Create a pad": "创建一个便笺", + "Create a videoconference": "创建一个视频会议", + "Create an account": "创建一个帐户", + "Create discussion": "创建讨论", + "Create event": "创建活动", + "Create group": "创建群组", + "Create identity": "创建身份", + "Create my event": "创建我的活动", + "Create my group": "创建我的群组", + "Create my profile": "创建我的个人资料", + "Create new links": "创建新的链接", + "Create resource": "创建资源", + "Create the discussion": "创建讨论", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "为所有你需要做的任务创建待办事项清单,分配任务并设定到期日期。", + "Create token": "创建令牌", + "Created by {name}": "由{username}创建", + "Created by {username}": "由{username}创建", + "Current identity has been changed to {identityName} in order to manage this event.": "目前的身份已经改为{身份名称},以便管理这个事件。", + "Current page": "当前页面", + "Custom": "定制", + "Custom URL": "自定义URL", + "Custom text": "自定义文本", + "Daily email summary": "每日电子邮件摘要", + "Dark": "暗底", + "Dashboard": "仪表板", + "Date": "日期", + "Date and time": "日期和时间", + "Date and time settings": "日期和时间设置", + "Date parameters": "日期参数", + "Deactivate notifications": "停用通知", + "Decline": "拒绝", + "Decrease": "减少", + "Default": "默认", + "Default Mobilizon privacy policy": "默认的Mobilizon隐私政策", + "Default Mobilizon terms": "缺省的Mobilizon条款", + "Delete": "删除", + "Delete account": "删除账户", + "Delete conversation": "删除对话", + "Delete discussion": "删除讨论", + "Delete event": "删除活动", + "Delete everything": "删除一切", + "Delete group": "删除群组", + "Delete my account": "删除我的账户", + "Delete post": "删除帖子", + "Delete this discussion": "删除此讨论", + "Delete this identity": "删除此身份", + "Delete your identity": "删除你的身份", + "Delete {eventTitle}": "删除 {eventTitle}", + "Delete {preferredUsername}": "删除{preferredUsername}", + "Deleting comment": "删除评论", + "Deleting event": "删除活动", + "Deleting my account will delete all of my identities.": "删除我的账户将删除我所有的身份。", + "Deleting your Mobilizon account": "删除您的Mobilizon账户", + "Demote": "降级", + "Describe your event": "描述你的活动", + "Description": "描述", + "Details": "详情", + "Didn't receive the instructions?": "没有收到指示?", + "Disabled": "已禁用", + "Discussions": "讨论", + "Discussions list": "讨论列表", + "Display name": "显示名", + "Display participation price": "显示参与价格", + "Displayed nickname": "显示的绰号", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "显示在主页和meta标签上。用一段话描述Mobilizon是什么以及这个实例的特别之处。", + "Distance": "距离", + "Do not receive any mail": "不接收任何邮件", + "Do you really want to suspend this account? All of the user's profiles will be deleted.": "你真的想暂停这个账户吗?该用户的所有身份将被删除。", + "Do you wish to {create_event} or {explore_events}?": "你希望{create_event}还是{explore_events}?", + "Do you wish to {create_group} or {explore_groups}?": "你希望{create_group}还是{explore_groups}?", + "Does the event needs to be confirmed later or is it cancelled?": "该活动是否需要稍后确认,或被取消?", + "Domain": "领域", + "Draft": "草稿", + "Drafts": "草稿", + "Due on": "截止日期", + "Duplicate": "重复", + "Edit": "编辑", + "Edit post": "编辑帖子", + "Edit profile {profile}": "编辑身份 {profile}", + "Edit user email": "编辑用户电子邮件地址", + "Edited {ago}": "编辑于 {ago}", + "Edited {relative_time} ago": "{relative_time}前已编辑", + "Eg: Stockholm, Dance, Chess…": "例如:斯德哥尔摩,舞蹈,国际象棋…", + "Either on the {instance} instance or on another instance.": "要么在{instance}实例上,要么在另一个实例上。", + "Either the account is already validated, either the validation token is incorrect.": "要么账户已经被验证,要么验证令牌不正确。", + "Either the email has already been changed, either the validation token is incorrect.": "要么是电子邮件已经被修改,要么是验证令牌不正确。", + "Either the participation request has already been validated, either the validation token is incorrect.": "要么参与请求已经被验证,要么验证令牌不正确。", + "Element title": "元素名称", + "Element value": "元素值", + "Email": "电子邮件", + "Email address": "电子邮件地址", + "Email validate": "电子邮件验证", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "电子邮件地址通常不包含大写字母,请确保你没有打错字。", + "Enabled": "已启用", + "Ends on…": "结束于…", + "Enter the link URL": "输入链接网址", + "Enter your email address below, and we'll email you instructions on how to change your password.": "请在下面输入你的电子邮件地址,我们将通过电子邮件向你发送关于如何更改密码的说明。", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "输入你自己的隐私政策。允许使用HTML标签。{mobilizon_privacy_policy}是作为模板提供的。", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "输入你自己的条款。允许使用HTML标签。{mobilizon_terms}是作为模板提供的。", + "Error": "错误", + "Error details copied!": "错误细节已被复制!", + "Error message": "错误信息", + "Error stacktrace": "错误的堆栈打印", + "Error while changing email": "更改电子邮件时出错", + "Error while loading the preview": "加载预览时出错", + "Error while login with {provider}. Retry or login another way.": "使用{provider}登录时出错。重试或以其他方式登录。", + "Error while login with {provider}. This login provider doesn't exist.": "使用{provider}登录时出错。这个登录供应商不存在。", + "Error while reporting group {groupTitle}": "举报群组{groupTitle}时出错", + "Error while subscribing to push notifications": "订阅推送通知时出错", + "Error while suspending group": "暂停群组时出错", + "Error while updating participation status inside this browser": "在该浏览器内更新参与状态时出错", + "Error while validating account": "验证账户时出错", + "Error while validating participation request": "验证参与请求时出错", + "Etherpad notes": "Etherpad 笔记", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "作为Facebook里活动、群组和页面功能的有节操的替代品,Mobilizon是一个在为您提供服务的工具 ,仅此而已。", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a {tool_designed_to_serve_you}. Period.": "作为Facebook活动、群组和页面的有节操的替代品,Mobilizon是一个{tool_designed_to_serve_you}。没了。", + "Event": "活动", + "Event URL": "活动网址", + "Event already passed": "活动已经过期", + "Event cancelled": "活动被取消", + "Event creation": "创建活动", + "Event date": "活动日期", + "Event description body": "活动描述正文", + "Event edition": "编辑活动", + "Event list": "活动列表", + "Event metadata": "事件元数据", + "Event page settings": "活动页面设置", + "Event status": "活动状况", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "活动的时区将默认为活动地址的时区(如果有的话),或者是您自己的时区设置。", + "Event to be confirmed": "活动待定", + "Event {eventTitle} deleted": "活动{eventTitle}已删除", + "Event {eventTitle} reported": "活动{eventTitle}已被报告", + "Events": "活动", + "Events close to you": "离你很近的活动", + "Events nearby": "附近的活动", + "Events nearby {position}": "{position}附近的活动", + "Events tagged with {tag}": "被标记为{tag}的活动", + "Everything": "一切", + "Ex: mobilizon.fr": "例:mobilizon.fr", + "Ex: someone@mobilizon.org": "例:someone@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "例如:某人{'@'}mobilizon.org", + "Explore": "探索", + "Explore events": "探索活动", + "Explore!": "探索!", + "Export": "导出", + "Failed to get location.": "获取位置失败。", + "Failed to save admin settings": "保存管理设置失败", + "Featured events": "特色活动", + "Federated Group Name": "分布式群组名称", + "Federation": "联盟式运作(Federation)", + "Fediverse account": "Fediverse账户", + "Fetch more": "获取更多", + "Filter": "过滤", + "Filter by name": "按名称过滤", + "Filter by profile or group name": "按身份或群组名称过滤", + "Find an address": "寻找一个地址", + "Find an instance": "寻找一个实例", + "Find another instance": "寻找另一个实例", + "Find or add an element": "查找或添加一个元素", + "First steps": "第一个步骤", + "Follow": "关注", + "Follow a new instance": "关注一个新的实例", + "Follow instance": "关注实例", + "Follow request pending approval": "关注请求有待批准", + "Follow requests will be approved by a group moderator": "关注请求将由群组审查员批准", + "Follow status": "关注状态", + "Followed": "已关注", + "Followed, pending response": "已关注,等待回复", + "Follower": "关注者", + "Followers": "关注者", + "Followers will receive new public events and posts.": "关注者会收到新的公共活动和帖子。", + "Following": "正在关注", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "关注该群组将使您获悉{group_upcoming_public_events},而加入该群组意味着您将可以{access_to_group_private_content_as_well},包括群组讨论、群组资源和会员专属的帖子。", + "Followings": "正在关注", + "Follows us": "关注我们", + "Follows us, pending approval": "关注我们,等待批准", + "For instance: London": "比如说:伦敦", + "For instance: London, Taekwondo, Architecture…": "比如说:伦敦、跆拳道、建筑…", + "Forgot your password ?": "忘记密码了吗?", + "Forgot your password?": "忘记密码了吗?", + "Framadate poll": "Framadate 问卷调查", + "From my groups": "来自我的群组", + "From the {startDate} at {startTime} to the {endDate}": "从{startDate}的{startTime}到{endDate}", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "从{startDate}的{startTime}到{endDate}的{endTime}", + "From the {startDate} to the {endDate}": "从{startDate}到{endDate}", + "From yourself": "来自自己", + "Fully accessible with a wheelchair": "使用轮椅完全无障碍", + "Gather ⋅ Organize ⋅ Mobilize": "聚集 ⋅ 组织 ⋅ 动员", + "General": "一般", + "General information": "一般信息", + "General settings": "一般设置", + "Geolocate me": "定位我", + "Geolocation was not determined in time.": "地理定位没有及时确定。", + "Get informed of the upcoming public events": "了解即将到来的公共活动", + "Getting location": "获取位置", + "Getting there": "如何到目的地", + "Glossary": "词汇表", + "Go": "进展", + "Go to the event page": "转到活动页面", + "Go!": "走!", + "Google Meet": "谷歌会议", + "Group": "群组", + "Group Followers": "群组关注者", + "Group Members": "群组成员", + "Group URL": "群组网址", + "Group activity": "群组活动", + "Group address": "群组地址", + "Group description body": "群组描述正文", + "Group display name": "群组显示名称", + "Group members": "群组成员", + "Group name": "群名称", + "Group profiles": "群组介绍", + "Group settings": "群组设置", + "Group settings saved": "群组设置已保存", + "Group short description": "群组简述", + "Group visibility": "群组可见度", + "Group {displayName} created": "创建了{displayName}群组", + "Group {groupTitle} reported": "已举报群组{groupTitle}", + "Groups": "群组", + "Groups are not enabled on this instance.": "这个实例上没有启用群组。", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "群组是协调和准备的地方,以更好地组织活动和管理你的社区。", + "Heading Level 1": "标题 1级", + "Heading Level 2": "标题2级", + "Heading Level 3": "标题3级", + "Headline picture": "标题图片", + "Hide filters": "隐藏过滤选项", + "Hide replies": "隐藏回复", + "Home": "首页", + "Home to {number} users": "有{number}个用户的家", + "Homepage": "主页", + "Hourly email summary": "每小时的电子邮件摘要", + "I agree to the {instanceRules} and {termsOfService}": "我同意{instanceRules}和{termsOfService}", + "I create an identity": "创造一个身份", + "I don't have a Mobilizon account": "我没有Mobilizon账户", + "I have a Mobilizon account": "我有一个Mobilizon账户", + "I have an account on another Mobilizon instance.": "我在另一个Mobilizon实例上有一个账户。", + "I have an account on {instance}.": "我在{instance}上有一个账户。", + "I participate": "我参加", + "I want to allow people to participate without an account.": "我想让人们在没有账户的情况下也能参与。", + "I want to approve every participation request": "我想批准每一个参与请求", + "I've been mentionned in a comment under an event": "我在一个活动下的评论中被提到了", + "I've been mentionned in a group discussion": "我在一个群组讨论中被提到了", + "I've clicked on X, then on Y": "我点击了X,然后点击了Y", + "ICS feed for events": "活动的ICS推送", + "ICS/WebCal Feed": "ICS/WebCal推送", + "IP Address": "IP地址", + "Identities": "身份", + "Identity {displayName} created": "身份{displayName}已创建", + "Identity {displayName} deleted": "身份{displayName}已删除", + "Identity {displayName} updated": "身份{displayName}已更新", + "If allowed by organizer": "如果组织者允许的话", + "If an account with this email exists, we just sent another confirmation email to {email}": "如果有这个邮箱的账户存在,我们就再发一封确认邮件给{email}", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "如果这个身份是某些组的唯一管理员,你需要在能够删除这个身份之前删除它们。", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "如果你被要求提供你的联盟身份,它是由你的用户名和你的实例组成。例如,你的第一个身份的联盟身份是:", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "如果您选择了手动验证参与者,Mobilizon将向您发送电子邮件,通知您有新的参与者需要处理。您可以在下面选择收到这些通知的频率。", + "If you want, you may send a message to the event organizer here.": "如果你愿意,你可以在这里给活动组织者发一个信息。", + "Ignore": "忽略", + "Illustration picture for “{category}” by {author} on {source} ({license})": "\"{category}\"的演示图片由{author}在{source}上提供({license})", + "In person": "亲临现场", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "在下文中,应用程序是一种软件,由Mobilizon团队或第三方提供,用于与您的实例互动。", + "In the past": "在过去", + "In this instance's network": "在此实例的网络中", + "Increase": "增加", + "Instance": "实例", + "Instance Long Description": "实例的长描述", + "Instance Name": "实例名称", + "Instance Privacy Policy": "实例隐私政策", + "Instance Privacy Policy Source": "实例隐私政策来源", + "Instance Privacy Policy URL": "实例隐私政策URL", + "Instance Rules": "实例规则", + "Instance Short Description": "实例的简短描述", + "Instance Slogan": "实例口号", + "Instance Terms": "实例条款", + "Instance Terms Source": "实例条款来源", + "Instance Terms URL": "实例条款URL", + "Instance administrator": "实例管理员", + "Instance configuration": "实例配置", + "Instance feeds": "实例推送", + "Instance languages": "实例语言", + "Instance rules": "实例规则", + "Instance settings": "实例设置", + "Instances": "实例", + "Instances following you": "关注你的实例", + "Instances you follow": "你所关注的实例", + "Integrate this event with 3rd-party tools and show metadata for the event.": "将此活动与第三方工具整合,并显示活动的元数据。", + "Interact": "互动", + "Interact with a remote content": "与远程内容互动", + "Invite a new member": "邀请一个新成员", + "Invite member": "邀请会员", + "Invited": "已邀请", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "在这个实例上有可能无法访问该内容,因为这个实例已经屏蔽了该内容背后的身份或群组。", + "Italic": "斜体", + "Jitsi Meet": "Jitsi 会议", + "Join": "加盟", + "Join {instance}, a Mobilizon instance": "加入{instance} ,一个Mobilizon实例", + "Join group": "加入群组", + "Join group {group}": "加入群组{group}", + "Join {instance}, a Mobilizon instance": "加入{instance},一个Mobilizon实例", + "Keep the entire conversation about a specific topic together on a single page.": "将有关某一特定主题的全部对话集中在一个页面上。", + "Key words": "关键字", + "Keyword, event title, group name, etc.": "关键字、事件标题、群组名称等。", + "Language": "语言", + "Languages": "语言", + "Last IP adress": "最后的IP地址", + "Last group created": "最后创建的群组", + "Last published event": "最后公布的活动", + "Last published events": "最后发布的活动", + "Last seen on": "最后一次出现在", + "Last sign-in": "最后一次登录", + "Last week": "上周", + "Latest posts": "最新文章", + "Learn more": "了解更多", + "Learn more about Mobilizon": "了解更多关于Mobilizon的信息", + "Learn more about {instance}": "了解更多关于{instance}的信息", + "Least recently published": "最早发表的", + "Leave": "离开", + "Leave event": "离开活动", + "Leave group": "离开群组", + "Leaving event \"{title}\"": "离开活动\"{title}\"", + "Legal": "法律", + "Let's define a few settings": "让我们来定义一些设置", + "License": "许可", + "Light": "亮底", + "Limited number of places": "名额有限", + "List": "列表", + "List title": "列表标题", + "Live": "直播", + "Load more": "载入更多", + "Load more activities": "载入更多活动", + "Loading comments…": "正在加载评论…", + "Loading map": "正在加载地图", + "Local": "当地", + "Local time ({timezone})": "当地时间({timezone})", + "Local times ({timezone})": "当地时间({timezone})", + "Locality": "地点", + "Location": "地点", + "Log in": "登录", + "Log out": "登出", + "Login": "登录", + "Login on Mobilizon!": "在Mobilizon上登录!", + "Login on {instance}": "在{instance}上登录", + "Login status": "登录状态", + "Main languages you/your moderators speak": "您/您的版主所讲的主要语言", + "Make sure that all words are spelled correctly.": "确保所有单词的拼写正确。", + "Manage participations": "管理参与者", + "Manually approve new followers": "手动批准新的关注者", + "Manually invite new members": "手动邀请新成员", + "Map": "地图", + "Mark as resolved": "标记为已解决", + "Member": "成员", + "Members": "成员", + "Members-only post": "会员内部帖子", + "Membership requests will be approved by a group moderator": "会员申请将由群组审查员批准", + "Memberships": "会员资格", + "Mentions": "提及", + "Message": "消息", + "Message body": "消息正文", + "Microsoft Teams": "微软 Teams", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon是一个分布式的网络。你可以从不同的服务器与这个活动进行互动。", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon是一个分布式软件,这意味着你可以与其他实例的内容进行互动--这取决于你的实例的管理员的联盟设置--例如加入其他地方创建的群组或活动。", + "Mobilizon is a tool that helps you find, create and organise events.": "Mobilizon是一个工具,可以帮助你寻找、创建和组织活动 。", + "Mobilizon is a tool that helps you {find_create_organize_events}.": "Mobilizon是一个帮助你{find_create_organize_events}的工具。", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon不是单个巨大的平台,而是由相互联系的多个Mobilizon网站组成 。", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon不是一个巨大的平台,而是一个{multitude_of_interconnected_mobilizon_websites}。", + "Mobilizon software": "Mobilizon 软件", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon使用不同身份来隔离您的活动。您可以根据自己的需要创建任意多的身份。", + "Mobilizon version": "Mobilizon 版本", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "当您参加的活动有重要变化如日期和时间、地址、确认或取消,等等,Mobilizon将向您发送电子邮件。", + "Moderate new members": "审查新成员", + "Moderated comments (shown after approval)": "经过修改的评论(在批准后显示)", + "Moderation": "审核", + "Moderation log": "内容审核日志", + "Moderation logs": "内容审核日志", + "Moderator": "监察员", + "More options": "更多选项", + "Most recently published": "最近发表的", + "Move": "移动", + "Move \"{resourceName}\"": "移动\"{resourceName}\"", + "Move resource to the root folder": "将资源移至根文件夹", + "Move resource to {folder}": "将资源移至{folder}", + "My account": "我的账户", + "My events": "我的活动", + "My federated identity ends in {domain}": "我的联盟身份以{domain}结尾", + "My groups": "我的群组", + "My identities": "我的身份", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "注意!默认条款没有经过律师的检查,因此不太可能为使用这些条款的实例管理员在所有情况提供全面的法律保护。它们也不是针对所有国家和司法管辖区的。如果你不确定,请向律师查询。", + "Name": "名称", + "Navigated to {pageTitle}": "导航到 {pageTitle}", + "New discussion": "新的讨论", + "New email": "新的电子邮件地址", + "New folder": "新文件夹", + "New link": "新链接", + "New members": "新成员", + "New note": "新的说明", + "New password": "新密码", + "New post": "新帖子", + "New profile": "新个人资料", + "Next": "下一项", + "Next month": "下月", + "Next page": "下一页", + "Next week": "下周", + "No address defined": "未定义地址", + "No categories with public upcoming events on this instance were found.": "没有发现该实例上有公开的即将举行的活动的类别。", + "No closed reports yet": "尚无结案报告", + "No comment": "没有评论", + "No comments yet": "尚无评论", + "No discussions yet": "还没有讨论", + "No end date": "没有结束日期", + "No event found at this address": "在这个地址没有发现任何活动", + "No events found": "没有发现任何活动", + "No events found for {search}": "没有{search}的活动", + "No follower matches the filters": "没有符合过滤项的关注者", + "No group found": "未发现群组", + "No group matches the filters": "没有符合过滤项的群组", + "No group member found": "没有找到群组成员", + "No groups found": "未发现群组", + "No groups found for {search}": "没有{search}的群组", + "No information": "没有信息", + "No instance follows your instance yet.": "还没有其他实例跟随你的实例。", + "No instance found.": "没有找到实例。", + "No instance to approve|Approve instance|Approve {number} instances": "没有要批准的实例|批准实例|批准{number}实例", + "No instance to reject|Reject instance|Reject {number} instances": "没有要拒绝的实例|拒绝实例|拒绝{number}实例", + "No instance to remove|Remove instance|Remove {number} instances": "没有要删除的实例|删除实例|删除{number}实例", + "No instances match this filter. Try resetting filter fields?": "没有符合这个过滤条件的实例。试着重新设置过滤字段?", + "No languages found": "没有发现任何语言", + "No member matches the filters": "没有符合过滤项的成员", + "No members found": "没有找到会员", + "No memberships found": "没有会员资格", + "No message": "没有消息", + "No moderation logs yet": "暂时没有审核日志", + "No more activity to display.": "没有更多的活动可以显示。", + "No one is participating|One person participating|{going} people participating": "没有人参加|一个人参加|{going}个人参加", + "No open reports yet": "没有尚未结案的报告", + "No organized events found": "没有发现在组织的活动", + "No organized events listed": "没有列出在组织的活动", + "No participant matches the filters": "没有符合筛选条件的参与者", + "No participant to approve|Approve participant|Approve {number} participants": "没有要批准的参与者|批准参与者|批准{number}参与者", + "No participant to reject|Reject participant|Reject {number} participants": "没有要拒绝的参与者|拒绝参与者|拒绝{number}参与者", + "No participations listed": "没有列出参与情况", + "No posts found": "没有找到帖子", + "No posts yet": "还没有帖子", + "No profile matches the filters": "没有符合过滤项的身份", + "No public upcoming events": "没有公开的近期活动", + "No resolved reports yet": "尚无已解决的报告", + "No resources in this folder": "此文件夹中没有资源", + "No resources selected": "未选择资源|选择了一个资源|选择了{count}个资源", + "No resources yet": "还没有资源", + "No results for \"{queryText}\"": "没有\"{queryText}\"的查询结果", + "No results for {search}": "没有{search}的结果", + "No results found": "未找到结果", + "No results found for {search}": "没有{search}的结果", + "No rules defined yet.": "还没有定义规则。", + "No user matches the filter": "没有符合过滤项的用户", + "No user matches the filters": "没有符合过滤项的用户", + "None": "无", + "Not accessible with a wheelchair": "轮椅无法进入", + "Not approved": "未获批准", + "Not confirmed": "未确认", + "Notes": "备注", + "Notification before the event": "活动前的通知", + "Notification on the day of the event": "活动当天的通知", + "Notification settings": "通知设置", + "Notifications": "通知", + "Notifications for manually approved participations to an event": "参与申请被手动批准的通知", + "Notify participants": "通知参与者", + "Notify the user of the change": "通知用户有关变化", + "Now, create your first profile:": "现在,创建你的第一个身份:", + "Number of members": "成员人数", + "Number of places": "位置数", + "OK": "确定", + "Old password": "旧密码", + "On foot": "徒步", + "On the Fediverse": "关于联盟", + "On {date}": "在{date}", + "On {date} ending at {endTime}": "在{date}结束于{endTime}", + "On {date} from {startTime} to {endTime}": "在{date}从{startTime}到{endTime}的过程中", + "On {date} starting at {startTime}": "在{date}开始于{startTime}的时候", + "On {instance} and other federated instances": "在{instance}和其他关联的实例上", + "Online": "在线", + "Online events": "在线活动", + "Online ticketing": "网上购票", + "Online upcoming events": "网上即将举行的活动", + "Only Mobilizon instances can be followed": "仅能关注Mobilizon实例", + "Only accessible through link": "只能通过链接访问", + "Only accessible through link (private)": "只能通过链接访问(私人)", + "Only accessible to members of the group": "仅供本组成员访问", + "Only alphanumeric lowercased characters and underscores are supported.": "只支持小写字母,数字和下划线。", + "Only group members can access discussions": "只有群组成员可以进入讨论", + "Only group moderators can create, edit and delete events.": "只有群组审查员可以创建、编辑和删除活动。", + "Only group moderators can create, edit and delete posts.": "只有群组版主可以创建、编辑和删除帖子。", + "Only registered users may fetch remote events from their URL.": "只有注册用户可以从URL中获取远程活动。", + "Open": "开放式", + "Open a topic on our forum": "在我们的论坛上开设一个主题", + "Open an issue on our bug tracker (advanced users)": "在我们的bug tracker上报告一个问题(高级用户)", + "Open main menu": "打开主菜单", + "Open user menu": "打开用户菜单", + "Opened reports": "未结案的报告", + "Or": "或", + "Ordered list": "数字列表", + "Organized": "有组织的", + "Organized by": "主办方", + "Organized by {name}": "由{name}组织的", + "Organized events": "组织了的活动", + "Organizer": "组织者", + "Organizer notifications": "组织者的通知", + "Organizers": "组织者", + "Other": "其他", + "Other actions": "其他行动", + "Other notification options:": "其他通知选项:", + "Other software may also support this.": "其他软件也可能支持这一点。", + "Other users with the same IP address": "具有相同IP地址的其他用户", + "Other users with the same email domain": "具有相同电子邮件域名的其他用户", + "Otherwise this identity will just be removed from the group administrators.": "否则这个身份就会被从组管理员中删除。", + "Owncast": "直播", + "Page": "页面", + "Page limited to my group (asks for auth)": "只限于我的小组的页面(要求授权)", + "Page not found": "未找到页面", + "Parent folder": "上级文件夹", + "Partially accessible with a wheelchair": "使用轮椅可部分参与", + "Participant": "参与者", + "Participants": "参与者", + "Participate": "参加活动", + "Participate using your email address": "使用您的电子邮件地址的参与者", + "Participation approval": "参与批准", + "Participation confirmation": "参与确认", + "Participation notifications": "参会通知", + "Participation requested!": "要求参与!", + "Participation with account": "用账户参与", + "Participation without account": "不用账户参与", + "Participations": "参加活动", + "Password": "密码", + "Password (confirmation)": "密码(确认)", + "Password reset": "密码重置", + "Past events": "通过的活动", + "PeerTube live": "PeerTube 直播", + "PeerTube replay": "PeerTube 回放", + "Pending": "待定", + "Personal feeds": "个人推送", + "Photo by {author} on {source}": "照片由{author}拍摄于{source}", + "Pick": "挑选", + "Pick a profile or a group": "选择一个身份或一个群组", + "Pick an identity": "选择一个身份", + "Pick an instance": "挑选一个实例", + "Please add as many details as possible to help identify the problem.": "请尽可能多地添加细节以帮助确定问题。", + "Please check your spam folder if you didn't receive the email.": "如果你没有收到邮件,请检查你的垃圾邮件文件夹。", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "如果你认为这是个错误,请联系本实例的Mobilizon管理员。", + "Please do not use it in any real way.": "请不要用在真实生活里。", + "Please enter your password to confirm this action.": "请输入你的密码以确认这一行动。", + "Please make sure the address is correct and that the page hasn't been moved.": "请确保地址是正确的,并且页面没有被移动。", + "Please read the {fullRules} published by {instance}'s administrators.": "请阅读{instance}的管理员发布的{fullRules}。", + "Popular groups close to you": "离你很近的热门群组", + "Popular groups nearby {position}": "附近受欢迎的群组{position}", + "Post": "发布", + "Post URL": "帖子网址", + "Post a comment": "发表评论", + "Post a reply": "发表回复", + "Post body": "帖子正文", + "Post {eventTitle} reported": "帖子{eventTitle}已被报告", + "Postal Code": "邮政编码", + "Posts": "帖子", + "Powered by Mobilizon": "由Mobilizon提供", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "由{mobilizon}提供。© 2018 - {date}The Mobilizon Contributors - 在{contributors}的财政支持下编写。", + "Preferences": "首选项", + "Previous": "上一项", + "Previous email": "以前的电子邮件", + "Previous month": "上个月", + "Previous page": "上一页", + "Price sheet": "价格表", + "Privacy": "隐私", + "Privacy Policy": "隐私政策", + "Privacy policy": "隐私政策", + "Private event": "私人活动", + "Private feeds": "私有的推送", + "Profile": "身份", + "Profile feeds": "身份推送", + "Profiles": "个人资料", + "Profiles and federation": "身份和联盟", + "Promote": "升级", + "Public": "公开", + "Public RSS/Atom Feed": "公共RSS/Atom 推送", + "Public comment moderation": "公众评论的审核", + "Public event": "公共活动", + "Public feeds": "公开推送", + "Public iCal Feed": "公开iCal推送", + "Public preview": "公开预览", + "Publication date": "发表日期", + "Publish": "发布", + "Published by {name}": "发表人:{name}", + "Published events with {comments} comments and {participations} confirmed participations": "已发布的事件有:{comments} 个评论和{participations} 个确认参与的用户", + "Published events with {comments} comments and {participations} confirmed participations": "已发布的活动有:{comments} 个评论和{participations} 个确认参与的用户", + "Push": "推送", + "Quote": "引用", + "RSS/Atom Feed": "RSS/Atom 推送", + "Radius": "半径", + "Recap every week": "每周回顾", + "Receive one email for each activity": "每次活动都会收到一封邮件", + "Receive one email per request": "每个请求收到一封邮件", + "Redirecting in progress…": "重定向正在进行中…", + "Redirecting to Mobilizon": "重定向到Mobilizon", + "Redirecting to content…": "重定向到内容…", + "Redo": "重做", + "Refresh profile": "刷新个人资料", + "Regenerate new links": "重新生成新的链接", + "Region": "地区", + "Register": "注册", + "Register an account on {instanceName}!": "在{instanceName}上注册一个账户!", + "Register on this instance": "在这个实例上注册", + "Registration is allowed, anyone can register.": "开放注册,任何人都可以。", + "Registration is closed.": "注册已关闭。", + "Registration is currently closed.": "注册目前已经结束。", + "Registrations": "注册", + "Registrations are restricted by allowlisting.": "注册受到允许列表的限制。", + "Reject": "拒绝", + "Reject follow": "拒绝关注", + "Reject member": "拒绝成员", + "Rejected": "已拒绝", + "Remember my participation in this browser": "在这个浏览器里记住我的参与", + "Remove": "移除", + "Remove link": "删除链接", + "Rename": "重命名", + "Rename resource": "重命名资源", + "Reopen": "重新开放", + "Replay": "回放", + "Reply": "回复", + "Report": "举报", + "Report #{reportNumber}": "举报#{report_number}", + "Report as ham": "举报为非垃圾", + "Report as spam": "举报为垃圾", + "Report as undetected spam": "举报为未检测到的垃圾", + "Report reason": "举报原因", + "Report status": "举报情况", + "Report this comment": "举报此评论", + "Report this event": "举报此活动", + "Report this group": "举报该群组", + "Report this post": "举报该帖", + "Reported": "已举告", + "Reported by": "举报者", + "Reported by someone anonymously": "由某人匿名举报", + "Reported by someone on {domain}": "有人在{domain}上举报", + "Reported by {reporter}": "举报人:{reporter}", + "Reported content": "举报的内容", + "Reported group": "被举报的群组", + "Reported identity": "举告的身份", + "Reports": "举报", + "Reports list": "举报列表", + "Request for participation confirmation sent": "确认参与的请求已发送", + "Resend confirmation email": "重新发送确认邮件", + "Resent confirmation email": "重新发送确认邮件", + "Reset": "重置", + "Reset filters": "重置过滤器", + "Reset my password": "重置我的密码", + "Reset password": "重置密码", + "Resolved": "已解决", + "Resource provided is not an URL": "提供的资源不是一个URL", + "Resources": "资源", + "Restricted": "受限的", + "Return to the group page": "返回到群组页面", + "Right now": "现在", + "Role": "角色", + "Rules": "规则", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL和它的继任者TLS是在使用服务时保证数据通信安全的加密技术。当你在浏览器的地址栏里发现URL以{https}开头,并且显示锁图标时,你知道这是一个加密的连接。", + "SSL/TLS": "SSL/TLS", + "Save": "保存", + "Save draft": "保存草稿", + "Schedule": "时间表", + "Search": "搜索", + "Search events, groups, etc.": "搜索活动、团体等。", + "Search target": "搜索目标", + "Searching…": "搜索…", + "Select a category": "选择一个类别", + "Select a language": "选择一种语言", + "Select a radius": "选择一个半径", + "Select a timezone": "选择一个时区", + "Select all resources": "选择所有资源", + "Select languages": "选择语言", + "Select the activities for which you wish to receive an email or a push notification.": "选择你希望收到电子邮件或推送通知的活动。", + "Select this resource": "选择该资源", + "Send": "发送", + "Send email": "发送电子邮件", + "Send feedback": "发送反馈", + "Send notification e-mails": "发送通知邮件", + "Send password reset": "发送密码重置", + "Send the confirmation email again": "再次发送确认邮件", + "Send the report": "发送报告", + "Set an URL to a page with your own privacy policy.": "设置一个URL到一个有你自己的隐私政策的页面。", + "Set an URL to a page with your own terms.": "设置一个到一个有你自己条款的页面的URL。", + "Settings": "设置", + "Share": "分享", + "Share this event": "分享此活动", + "Share this group": "分享这个群组", + "Share this post": "分享此帖", + "Short bio": "个人简介", + "Show filters": "显示过滤选项", + "Show map": "显示地图", + "Show me where I am": "告诉我我在哪里", + "Show remaining number of places": "显示剩余名额", + "Show the time when the event begins": "显示活动开始时的时间", + "Show the time when the event ends": "显示活动结束的时间", + "Showing events before": "显示活动早于", + "Showing events starting on": "显示的活动开始于", + "Sign Language": "手语", + "Sign in with": "用以下方式登录", + "Sign up": "注册", + "Since you are a new member, private content can take a few minutes to appear.": "由于你是新会员,私人内容可能需要几分钟时间才能出现。", + "Skip to main content": "跳到主要内容", + "Smoke free": "无烟", + "Smoking allowed": "允许吸烟", + "Social": "社交", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "以下文本中使用的一些术语,不管是技术性的还是其他方面的,都可能涵盖难以掌握的概念。我们在此提供了一个词汇表,以帮助你更好地理解它们:", + "Sorry, we wen't able to save your feedback. Don't worry, we'll try to fix this issue anyway.": "对不起,我们无法保存您的反馈。别担心,我们会努力解决这个问题。", + "Sort by": "排序方式", + "Starts on…": "开始于…", + "Status": "状态", + "Statuses": "状况", + "Stop following instance": "停止关注实例", + "Street": "街道", + "Submit": "提交", + "Submit to Akismet": "提交给Akismet", + "Subtitles": "字幕", + "Suggestions:": "建议:", + "Suspend": "暂停", + "Suspend group": "暂停群组", + "Suspend the account": "暂停该账户", + "Suspend the account?": "暂停该账户?", + "Suspended": "已暂停", + "Tag search": "标签搜索", + "Task lists": "任务清单", + "Technical details": "技术细节", + "Tentative": "暂定", + "Tentative: Will be confirmed later": "暂定。将在以后确认", + "Terms": "条款", + "Terms of service": "服务条款", + "Text": "文本", + "Thanks a lot, your feedback was submitted!": "非常感谢,你的反馈意见已经提交!", + "That you follow or of which you are a member": "你所关注的或你是其成员的", + "The Big Blue Button video teleconference URL": "Big Blue Button 视频电话会议网址", + "The Google Meet video teleconference URL": "谷歌会议的视频电话会议网址", + "The Jitsi Meet video teleconference URL": "Jitsi Meet视频电话会议的网址", + "The Microsoft Teams video teleconference URL": "微软 Teams 视频电话会议的网址", + "The URL of a pad where notes are being taken collaboratively": "一个协作做笔记的pad的URL", + "The URL of a poll where the choice for the event date is happening": "活动举行日期选择投票的URL", + "The URL where the event can be watched live": "可以收看该活动直播的URL", + "The URL where the event live can be watched again after it has ended": "事件结束后可以再次观看的URL", + "The Zoom video teleconference URL": "Zoom 视频电话会议的URL", + "The account's email address was changed. Check your emails to verify it.": "该账户的电子邮件地址已被更改。请检查您的邮箱以核实。", + "The actual number of participants may differ, as this event is hosted on another instance.": "由于该活动是在另一个实例上举办的,因此实际参与人数可能有所不同。", + "The calc will be created on {service}": "表格将被创建在{service}上", + "The content came from another server. Transfer an anonymous copy of the report?": "内容来自于另一个服务器。提交报告的匿名副本?", + "The draft event has been updated": "该活动草案已被更新", + "The event has a sign language interpreter": "该活动有手语翻译", + "The event has been created as a draft": "该活动已被创建为一个草案", + "The event has been published": "该活动已被发布", + "The event has been updated": "该活动已被更新", + "The event has been updated and published": "该活动已被更新和公布", + "The event hasn't got a sign language interpreter": "该活动没有手语翻译", + "The event is fully online": "该活动是全部线上的", + "The event live video contains subtitles": "活动直播视频包含字幕", + "The event live video does not contain subtitles": "活动直播视频不含字幕", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "活动主办方已选择手动批准参与者。您是否想添加一个小说明,解释您为什么要参加这个活动?", + "The event organizer didn't add any description.": "活动组织者没有添加任何说明。", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "活动组织者要手动批准参与者。既然你选择在没有账户的情况下参加,请解释你为什么要参加这个活动。", + "The event title will be ellipsed.": "活动标题将被省略。", + "The event will show as attributed to this group.": "该活动将显示为归属于该群组。", + "The event will show as attributed to this profile.": "该活动将显示为归属于该身份。", + "The event will show as attributed to your personal profile.": "该活动将显示为来自你的个人身份。", + "The event {event} was created by {profile}.": "活动{event}是由{profile}创建的。", + "The event {event} was deleted by {profile}.": "活动{event}被{profile}删除。", + "The event {event} was updated by {profile}.": "活动{event}是由{profile}更新的。", + "The events you created are not shown here.": "你创建的活动在这里没有显示。", + "The geolocation prompt was denied.": "地理定位提示被拒绝。", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "现在任何人都可以加入该群组,但新成员需要得到管理员的批准。", + "The group can now be joined by anyone.": "现在任何人都可以加入该群组。", + "The group can now only be joined with an invite.": "该群组现在只能通过邀请加入。", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "该小组将在搜索结果中公开列出,并可能被推荐到探索部分。只有公开的信息才会显示在它的页面上。", + "The group's avatar was changed.": "该群组的头像被改变了。", + "The group's banner was changed.": "该群组的旗帜被改变了。", + "The group's physical address was changed.": "该群组的实际地址已经改变。", + "The group's short description was changed.": "该群组的简介已修改。", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "实例管理员是运行这个Mobilizon实例的人或实体。", + "The member was approved": "该成员被批准", + "The member was removed from the group {group}": "该成员已从群组{group}中删除", + "The membership request from {profile} was rejected": "来自{profile}的会员申请被拒绝了", + "The only way for your group to get new members is if an admininistrator invites them.": "你的群组获得新成员的唯一途径是管理员邀请他们。", + "The organiser has chosen to close comments.": "组织者已选择关闭评论。", + "The pad will be created on {service}": "便笺将被创建在{service}上", + "The page you're looking for doesn't exist.": "你要找的页面不存在。", + "The password was successfully changed": "密码已成功更改", + "The post {post} was created by {profile}.": "帖子{post}是由{profile}发的。", + "The post {post} was deleted by {profile}.": "帖子{post}已被{profile}删除。", + "The post {post} was updated by {profile}.": "帖子{post}是由{profile}更新的。", + "The report contents (eventual comments and event) and the reported profile details will be transmitted to Akismet.": "举报内容(最终的评论和活动)和举报的身份细节将被传送到Akismet。", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "该报告将被发送至您所在实例的审核者。你可以在下面解释你为什么举报这个内容。", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "所选图片太大。你需要选择一个小于{size}的文件。", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "技术细节可以帮助开发人员解决问题。请把它们添加到你的反馈中。", + "The user has been disabled": "该用户已被禁用", + "The videoconference will be created on {service}": "该视频会议将被创建在{service}上", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "将使用{default_privacy_policy}。它们将被翻译成用户的语言。", + "The {default_terms} will be used. They will be translated in the user's language.": "将使用{default_terms}。它们将被翻译成用户的语言。", + "Theme": "主题", + "There are {participants} participants.": "有{participants}个参与者。", + "There is no activity yet. Start doing some things to see activity appear here.": "目前还没有任何活动记录。做一些事情就能看到这里的活动记录。", + "There will be no way to recover your data.": "将没有办法恢复你的数据。", + "There's no discussions yet": "还没有讨论", + "These events may interest you": "你可能对这些活动感兴趣", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "这些推送包含您的任何身份作为参与者或创建者的活动的数据。你应该保持这些数据的私密性。你可以在每个身份页面上找到此身份的推送。", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "这些推送包含该身份作为参与者或创建者的活动数据。你应该保持这些数据的私密性。你可以在你的通知设置中找到你的所有身份数据推送。", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "这个Mobilizon实例和这个活动的组织者允许匿名参与,但需要通过电子邮件确认进行验证。", + "This URL doesn't seem to be valid": "这个网址是无效的", + "This URL is not supported": "不支持此URL", + "This event has been cancelled.": "该活动已被取消。", + "This event is accessible only through it's link. Be careful where you post this link.": "这个事件只能通过它的链接访问。请注意你发布这个链接的地方。", + "This group doesn't have a description yet.": "这个群组还没有描述。", + "This group is a remote group, it's possible the original instance has more informations.": "这个群组是一个远程群组,可能原始实例有更多信息。", + "This group is accessible only through it's link. Be careful where you post this link.": "这个活动只能通过它的链接访问。请小心发布这个链接。", + "This group is invite-only": "只有受邀者才能加入这个群组", + "This group was not found": "没有发现这个群组", + "This identifier is unique to your profile. It allows others to find you.": "这个标识符对你的身份来说是独一无二的。它允许其他人找到你。", + "This information is saved only on your computer. Click for details": "这些信息只保存在你的电脑上。点击了解详情", + "This instance doesn't follow yours.": "这个实例并没有关注你的实例。", + "This instance hasn't got push notifications enabled.": "这个实例还没有启用推送通知。", + "This instance isn't opened to registrations, but you can register on other instances.": "这个实例不开放注册,但你可以在其他实例上注册。", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "这个实例,{instanceName} ({domain}) ,保存着你的身份,所以要记住它的名字。", + "This instance, {instanceName}, hosts your profile, so remember its name.": "这个实例,{instanceName},承载着你的身份,所以要记住它的名字。", + "This is a demonstration site to test Mobilizon.": "这是一个测试Mobilizon的示范站点。", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "这就像你的分布式用户名 ({username}),用于群组。它将允许该组在联盟中被找到,并且保证是唯一的。", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "这就像你的群组的联盟用户名({username})。它将允许该群组在联盟中被找到,并且保证是唯一的。", + "This month": "本月", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "这个帖子只对会员开放。因为你是一个实例管理员,所以你可以进入这个帖子进行修改。", + "This post is accessible only through it's link. Be careful where you post this link.": "这个帖子只能通过它的链接访问。请小心发布这个链接。", + "This profile is from another instance, the informations shown here may be incomplete.": "该身份来自另一个实例,这里显示的信息可能是不完整的。", + "This profile is located on this instance, so you need to {access_the_corresponding_account} to suspend it.": "这个身份位于这个实例上,所以你需要{access_the_corresponding_account}来暂停它。", + "This profile was not found": "没有找到该身份", + "This setting will be used to display the website and send you emails in the correct language.": "该选项将用于以您首选的语言显示网站内容和向您发送电子邮件。", + "This user doesn't have any profiles": "该用户没有任何身份", + "This user was not found": "没有找到这个用户", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "这个网站不受监管,你输入的数据将在每天的00:01(巴黎时区)自动销毁。", + "This week": "本周", + "This weekend": "本周末", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "这将删除/匿名化从这个身份创建的所有内容(活动、评论、消息、参与......)。", + "Time in your timezone ({timezone})": "您所在时区的时间({timezone})", + "Times in your timezone ({timezone})": "您所在时区的时间({timezone})", + "Timezone": "时区", + "Timezone detected as {timezone}.": "检测到时区为{timezone}。", + "Title": "标题", + "To activate more notifications, head over to the notification settings.": "要激活更多的通知,请前往通知设置。", + "To confirm, type your event title \"{eventTitle}\"": "要确认,请输入你的活动标题\"{eventTitle}\"", + "To confirm, type your identity username \"{preferredUsername}\"": "为了确认,输入你的身份用户名\"{preferredUsername}\"", + "To create and manage multiples identities from a same account": "创建和管理同一账户的多个身份", + "To create and manage your events": "创建和管理您的活动", + "To create or join an group and start organizing with other people": "创建或加入一个群组,并开始与其他人一起组织活动", + "To follow groups and be informed of their latest events": "关注群组,了解他们的最新活动", + "To register for an event by choosing one of your identities": "选择你的一个身份来报名参加一个活动", + "Today": "今天", + "Tomorrow": "明天", + "Tools": "工具", + "Total number of participations": "参与的总人数", + "Transfer to {outsideDomain}": "转移到{outsideDomain}", + "Triggered profile refreshment": "身份刷新已触发", + "Try different keywords.": "尝试不同的关键词。", + "Try fewer keywords.": "尝试更少的关键词。", + "Try more general keywords.": "尝试更常见的关键词。", + "Twitch live": "Twitch直播", + "Twitch replay": "Twitch回放", + "Twitter account": "推特账户", + "Type": "类型", + "Type or select a date…": "输入或选择一个日期…", + "URL": "URL", + "URL copied to clipboard": "URL已复制到剪贴板", + "Unable to copy to clipboard": "无法复制到剪贴板", + "Unable to create the group. One of the pictures may be too heavy.": "无法创建该群组。其中一张图片可能太大了。", + "Unable to create the profile. The avatar picture may be too heavy.": "无法创建身份资料。头像图片可能太大。", + "Unable to detect timezone.": "无法检测时区。", + "Unable to load event for participation. The error details are provided below:": "无法加载参与的活动。错误细节提供如下:", + "Unable to save your participation in this browser.": "无法在此浏览器中保存您的参与。", + "Unable to update the profile. The avatar picture may be too heavy.": "无法更新身份资料。头像图片可能太大。", + "Underline": "下划线", + "Undo": "撤销", + "Unfollow": "取消关注", + "Unfortunately, your participation request was rejected by the organizers.": "不幸的是,你的参与请求被组织者拒绝。", + "Unknown": "未知", + "Unknown actor": "无名执行者", + "Unknown error.": "未知错误。", + "Unknown value for the openness setting.": "开放度的设置未知。", + "Unlogged participation": "未记录的参与", + "Unsaved changes": "未保存的修改", + "Unsubscribe to browser push notifications": "取消对浏览器推送通知的订阅", + "Unsuspend": "解除暂停", + "Upcoming": "即将推出的", + "Upcoming events": "近期的活动", + "Upcoming events from your groups": "你的群组即将举办的活动", + "Update": "更新", + "Update app": "更新应用程序", + "Update discussion title": "更新讨论标题", + "Update event {name}": "更新活动{name}", + "Update group": "更新群组", + "Update my event": "更新我的活动", + "Update post": "更新帖子", + "Updated": "更新", + "Uploaded media size": "上传的媒体总量", + "Uploaded media total size": "上传的媒体总量", + "Use my location": "使用我的位置", + "User": "用户", + "User settings": "用户设置", + "Username": "用户名", + "Users": "用户", + "Validating account": "验证账户", + "Validating email": "验证电子邮件", + "Video Conference": "视频会议", + "View a reply": "查看没有回复|查看一个回复|查看{totalReplies}个回复", + "View account on {hostname} (in a new window)": "到{hostname}上查看账户(在一个新窗口中)", + "View all": "查看全部", + "View all categories": "查看所有类别", + "View all events": "查看所有活动", + "View all posts": "查看所有帖子", + "View event page": "查看活动页面", + "View everything": "查看所有内容", + "View full profile": "查看完整资料", + "View less": "查看更少", + "View more": "查看更多", + "View more events": "查看更多活动", + "View more events around {position}": "查看更多围绕{position}的活动", + "View more groups around {position}": "查看更多围绕{position}的群组", + "View more online events": "查看更多在线活动", + "View page on {hostname} (in a new window)": "到{hostname}上查看页面(在一个新窗口中)", + "View past events": "查看过去的活动", + "View the group profile on the original instance": "查看原始实例上的群组资料", + "Visibility was set to an unknown value.": "可见度被设置为一个未知的值。", + "Visibility was set to private.": "可见度被设置为隐私。", + "Visibility was set to public.": "可见度被设置为公开。", + "Visible everywhere on the web": "对全部网络开放可见", + "Visible everywhere on the web (public)": "对全部网络开放可见", + "Waiting for organization team approval.": "正在等待组织团队的批准。", + "Warning": "警告", + "We collect your feedback and the error information in order to improve this service.": "我们收集您的反馈意见和错误信息,以改进这项服务。", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "我们无法在这个浏览器中保存您的参与。不用担心,你已经成功地确认了你的参与,只是由于技术问题,我们无法在这个浏览器中保存它的状态。", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "你的反馈能让我们改进了软件。要让我们知道这个问题,有两种可能(不幸的是都需要创建用户账户):", + "We just sent an email to {email}": "我们刚刚给{email}发了一封电子邮件", + "We use your timezone to make sure you get notifications for an event at the correct time.": "我们使用你的时区来确保你在正确的时间收到事件的通知。", + "We will redirect you to your instance in order to interact with this event": "我们将把您重定向到您来自的实例,以便与该活动进行互动", + "We will redirect you to your instance in order to interact with this group": "我们将把您重定向到您来自的实例,以便与该群组进行互动", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "我们会在活动开始前一小时给你发一封邮件,以确保你不会忘记它。", + "We'll use your timezone settings to send a recap of the morning of the event.": "我们将利用你的时区设置,在活动当天上午发送回顾。", + "Website": "网站", + "Website / URL": "网站/URL", + "Weekly email summary": "每周电子邮件摘要", + "Welcome back {username}!": "欢迎回来 {username}!", + "Welcome back!": "欢迎回来!", + "Welcome to Mobilizon, {username}!": "欢迎来到Mobilizon, {username}!", + "What can I do to help?": "我可以做什么来帮助你?", + "What happened?": "发生了什么事?", + "Wheelchair accessibility": "轮椅无障碍设施", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "当群组的版主创建一个活动并将其归入群组时,它将显示在这里。", + "When the event is private, you'll need to share the link around.": "当活动是私有的,你需要分享链接。", + "When the post is private, you'll need to share the link around.": "当帖子是私有的,你需要分享链接。", + "Whether smoking is prohibited during the event": "活动期间是否禁止吸烟", + "Whether the event is accessible with a wheelchair": "该活动是否可以使用轮椅", + "Whether the event is interpreted in sign language": "该活动是否有手语翻译", + "Whether the event live video is subtitled": "活动直播视频是否有字幕", + "Who can post a comment?": "谁可以发表评论?", + "Who can view this event and participate": "谁可以查看此活动并参与", + "Who can view this post": "谁可以查看这个帖子", + "Who published {number} events": "谁发表了{number}个活动", + "Why create an account?": "为什么要创建一个账户?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "将允许在使用此设备时在活动页面上显示和管理您的参与状态。如果你使用的是公共设备,请不要勾选。", + "With the most participants": "参与者最多的", + "Within {number} kilometers of {place}": "|距离{place}一公里以内|距离{place} {number}公里以内", + "Write a new comment": "写一个新的评论", + "Write a new message": "写一个新的信息", + "Write a new reply": "写一个新的回复", + "Write something": "写点什么", + "Write your post": "写下你的帖子", + "Yesterday": "昨天", + "You accepted the invitation to join the group.": "你接受了加入该群组的邀请。", + "You added the member {member}.": "你添加了会员{member}。", + "You approved {member}'s membership.": "您批准了{member}的会员资格。", + "You archived the discussion {discussion}.": "你把讨论{discussion}归档了。", + "You are not an administrator for this group.": "你不是这个群组的管理员。", + "You are not part of any group.": "你不是任何群组的一部分。", + "You are offline": "你不在线上", + "You are participating in this event anonymously": "您是以匿名方式参加本次活动的", + "You are participating in this event anonymously but didn't confirm participation": "您是以匿名方式参加此活动,但没有确认参与", + "You can add resources by using the button above.": "你可以通过使用上面的按钮添加资源。", + "You can add tags by hitting the Enter key or by adding a comma": "你可以通过敲击回车键或添加逗号来添加标签", + "You can pick your timezone into your preferences.": "你可以在你的个人设置里选择你的时区。", + "You can try another search term or drag and drop the marker on the map": "你可以尝试另一个搜索词或在地图上拖放标记", + "You can't change your password because you are registered through {provider}.": "你不能改变你的密码,因为你是通过{provider}注册的。", + "You can't use push notifications in this browser.": "你不能在这个浏览器中使用推送通知。", + "You changed your email or password": "你改变了你的电子邮件或密码", + "You created the discussion {discussion}.": "你创造了讨论{discussion}。", + "You created the event {event}.": "你创建了活动{event}。", + "You created the folder {resource}.": "你创建了{resource}文件夹。", + "You created the group {group}.": "你创建了群组{group}。", + "You created the post {post}.": "你发了{post}这个帖子。", + "You created the resource {resource}.": "你创建了资源{resource}。", + "You deleted the discussion {discussion}.": "你删除了讨论{discussion}。", + "You deleted the event {event}.": "你删除了活动{event}。", + "You deleted the folder {resource}.": "你删除了文件夹{resource}。", + "You deleted the post {post}.": "你删除了帖子 {post}。", + "You deleted the resource {resource}.": "你删除了资源{resource}。", + "You demoted the member {member} to an unknown role.": "你将成员{member}降级为一个未知的角色。", + "You demoted {member} to moderator.": "你将{member}降为审查员。", + "You demoted {member} to simple member.": "你将{member}降级为普通会员。", + "You didn't create or join any event yet.": "你还没有创建或加入任何活动。", + "You don't follow any instances yet.": "你还没有关注任何实例。", + "You don't have any upcoming events. Maybe try another filter?": "你没有任何即将发生的活动。也许可以尝试另一个过滤条件?", + "You excluded member {member}.": "你排除了会员{member}。", + "You have attended {count} events in the past.": "你在过去没有参加过任何活动。|你在过去参加过一次活动。|你在过去参加过{count}次活动。", + "You have been invited by {invitedBy} to the following group:": "您已被{invitedBy}邀请加入以下群组:", + "You have been removed from this group's members.": "你已被从这个群组的成员中删除。", + "You have cancelled your participation": "你已经取消了你的参与", + "You have one event in {days} days.": "你在{days}天内没有任何事件 | 你在{days}天内有一个事件。| 您在{days}天内有{count}个事件", + "You have one event today.": "您今天没有任何活动 | 您今天有一个活动。| 您今天有{count}个活动", + "You have one event tomorrow.": "你明天没有任何活动 | 你明天有一个活动。| 您明天有{count}个活动", + "You haven't interacted with other instances yet.": "你还没有与其他实例进行互动。", + "You invited {member}.": "你邀请了{member}。", + "You may also:": "你也可以:", + "You may clear all participation information for this device with the buttons below.": "你可以通过下面的按钮清除该设备的所有参与信息。", + "You may now close this page or {return_to_the_homepage}.": "你现在可以关闭这个页面或{return_to_the_homepage}。", + "You may now close this window, or {return_to_event}.": "你现在可以关闭这个窗口,或者{return_to_event}。", + "You may show some members as contacts.": "你可以将一些成员显示为联系人。", + "You moved the folder {resource} into {new_path}.": "你把{resource}文件夹移到了{new_path}。", + "You moved the folder {resource} to the root folder.": "你把文件夹{resource}移到了根文件夹。", + "You moved the resource {resource} into {new_path}.": "你把资源{resource}移到了{new_path}。", + "You moved the resource {resource} to the root folder.": "你把资源{resource}移到了根文件夹。", + "You need to login.": "你需要登录。", + "You posted a comment on the event {event}.": "你对活动{event}发表了评论。", + "You promoted the member {member} to an unknown role.": "你将成员{member}晋升为一个未知的角色。", + "You promoted {member} to administrator.": "你将{member}晋升为管理员。", + "You promoted {member} to moderator.": "你将{member}晋升为审查员。", + "You rejected {member}'s membership request.": "你拒绝了{member}的入会申请。", + "You renamed the discussion from {old_discussion} to {discussion}.": "你将讨论从{old_discussion}改名为{discussion}。", + "You renamed the folder from {old_resource_title} to {resource}.": "你把文件夹从{old_resource_title}重命名为{resource}。", + "You renamed the resource from {old_resource_title} to {resource}.": "你把资源从{old_resource_title}重新命名为{resource}。", + "You replied to a comment on the event {event}.": "你回复了对活动{event}的评论。", + "You replied to the discussion {discussion}.": "你回复了讨论{discussion}。", + "You requested to join the group.": "你要求加入该群组。", + "You updated the event {event}.": "你更新了活动{event}。", + "You updated the group {group}.": "你更新了群组{group}。", + "You updated the member {member}.": "你更新了成员{member}。", + "You updated the post {post}.": "你更新了{post}这个帖子。", + "You were demoted to an unknown role by {profile}.": "你被{profile}降级为一个未知的角色。", + "You were demoted to moderator by {profile}.": "你被{profile}降级为审查员。", + "You were demoted to simple member by {profile}.": "你被{profile}降级为普通会员。", + "You were promoted to administrator by {profile}.": "你被{profile}晋升为管理员。", + "You were promoted to an unknown role by {profile}.": "你被{profile}晋升为一个未知的角色。", + "You were promoted to moderator by {profile}.": "你被{profile}晋升为审查员。", + "You will be able to add an avatar and set other options in your account settings.": "你将能够在你的账户设置中添加一个头像并设置其他选项。", + "You will be redirected to the original instance": "你将被重定向回最初的实例", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "你可以在这里找到你创建的或参与的所有活动,以及你关注的或加入的群组组织的活动。", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "您将根据%{notification_settings}收到有关该群组公共活动的通知。", + "You wish to participate to the following event": "您希望参加以下活动", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "如果有的话,你会在每周一收到一份关于即将发生的事件的简介。", + "You'll need to change the URLs where there were previously entered.": "你需要改变以前输入的URL。", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "你需要提供群组的URL才能让别人访问群组的资料。该群组不会在Mobilizon的搜索或普通搜索引擎中找到。", + "You'll receive a confirmation email.": "你会收到一封确认邮件。", + "YouTube live": "YouTube直播", + "YouTube replay": "YouTube回放", + "Your account has been successfully deleted": "您的账户已被成功删除", + "Your account has been validated": "您的账户已被验证", + "Your account is being validated": "您的账户正在验证中", + "Your account is nearly ready, {username}": "您的账户已接近准备就绪,{username}", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "你的城市或地区和半径将只用于向你推荐附近的活动。活动半径将从该地区的行政中心算起。", + "Your current email is {email}. You use it to log in.": "你目前的电子邮件地址是{email}。你需要用它来登录。", + "Your email": "你的电子邮件", + "Your email address was automatically set based on your {provider} account.": "你的电子邮件地址是根据你的{provider}账户自动设置的。", + "Your email has been changed": "您的电子邮件地址已被更改", + "Your email is being changed": "您的电子邮件地址正在被更改", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "你的电子邮件地址将只用于确认你是一个真实的人,并向你发送本次活动的最终更新。它不会被传送到其他场合或活动组织者。", + "Your federated identity": "你的联合身份", + "Your membership is pending approval": "您的会员资格正在等待批准", + "Your membership was approved by {profile}.": "您的会员资格已由{profile}批准。", + "Your participation has been confirmed": "您的参与已被确认", + "Your participation has been rejected": "您的参与已被拒绝", + "Your participation has been requested": "您的参与请求已经被转达", + "Your participation request has been validated": "您的参与已经得到验证", + "Your participation request is being validated": "您的参与正在得到验证", + "Your participation status has been changed": "您的参与状态已被改变", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "您的参与状态只保存在这个设备上,并在活动结束后一个月内删除。", + "Your participation still has to be approved by the organisers.": "你的参与仍需得到组织者的批准。", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "一旦你点击电子邮件中的确认链接,并在组织者手动验证你的参与后,你的参与将得到确认。", + "Your participation will be validated once you click the confirmation link into the email.": "一旦你点击邮件中的确认链接,你的参与将被确认。", + "Your position was not available.": "你的位置不可用。", + "Your profile will be shown as contact.": "你的身份将被显示为联系人。", + "Your timezone is currently set to {timezone}.": "你的时区目前被设置为{timezone}。", + "Your timezone was detected as {timezone}.": "您的时区被检测为{timezone}。", + "Your timezone {timezone} isn't supported.": "暂不支持你的时区{timezone}。", + "Your upcoming events": "您即将举行的活动", + "Zoom": "Zoom", + "Zoom in": "放大", + "Zoom out": "缩小", + "[This comment has been deleted by it's author]": "[此评论已被其作者删除]", + "[This comment has been deleted]": "[此评论已被删除]", + "[deleted]": "[删除]", + "a non-existent report": "一个不存在的报告", + "access the corresponding account": "打开相应的账户", + "access to the group's private content as well": "也可以访问该群组的私有内容", + "and {number} groups": "和{number}个群组", + "any distance": "任何距离", + "as {identity}": "作为{identity}", + "contact uninformed": "未通知联系人", + "create a group": "创建一个群组", + "create an event": "+ 创建一个活动", + "default Mobilizon privacy policy": "默认的Mobilizon隐私政策", + "default Mobilizon terms": "缺省的Mobilizon条款", + "detail": "细节", + "e.g. 10 Rue Jangot": "例如:10 Rue Jangot", + "e.g. Accessibility, Twitch, PeerTube": "例如,无障碍设施、Twitch、PeerTube", + "e.g. Nantes, Berlin, Cork, …": "例如,南特、柏林、科克...…", + "enable the feature": "启用该功能", + "explore the events": "探索活动", + "explore the groups": "探索群组", + "find, create and organise events": "寻找、创建和组织活动", + "full rules": "完整的规则", + "group's upcoming public events": "群组即将举行的公开活动", + "https://mensuel.framapad.org/p/some-secret-token": "https://mensuel.framapad.org/p/some-secret-token", + "iCal Feed": "iCal推送", + "instance rules": "实例规则", + "mobilizon-instance.tld": "mobilizon-instance.tld", + "more than 1360 contributors": "超过1360名贡献者", + "multitude of interconnected Mobilizon websites": "众多相互联网的Mobilizon网站", + "new{'@'}email.com": "新名字{'@'}电子邮件域名", + "profile@instance": "身份@实例", + "profile{'@'}instance": "身份@实例", + "report #{report_number}": "举报#{report_number}", + "return to the event's page": "返回到活动的页面", + "return to the homepage": "返回主页", + "terms of service": "服务条款", + "tool designed to serve you": "旨在为您提供服务的工具", + "translation": "翻译", + "with another identity…": "以另一个身份…", + "your notification settings": "你的通知设置", + "{'@'}{username}": "{'@'}{username}", + "{'@'}{username} ({role})": "{'@'}{username} ({role})", + "{approved} / {total} seats": "{approved}/ {total}个席位", + "{available}/{capacity} available places": "没有剩余名额|{available}/{capacity}个可用名额", + "{count} events": "{count}个活动", + "{count} km": "{count}公里", + "{count} members": "没有成员|一个成员|{count}个成员", + "{count} members or followers": "没有成员或追随者|一个成员或追随者|{count}个成员或追随者", + "{count} participants": "暂时没有参与者|一个参与者|{count}个参与者", + "{count} requests waiting": "{count}个请求在等待中", + "{eventsCount} events found": "没有发现活动|发现一个活动|发现{eventsCount}个活动", + "{folder} - Resources": "{folder} - 资源", + "{groupsCount} groups found": "没有发现群组|发现一个群组|发现{groupsCount}个群组", + "{group} activity timeline": "{群组}活动时间轴", + "{group} events": "{group} 活动", + "{group} posts": "{group}帖子", + "{group}'s events": "{group}的活动", + "{group}'s todolists": "{group}的待办事项", + "{instanceName} ({domain})": "{instanceName} ({domain})", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName}是{mobilizon}软件的一个实例。", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName}是{mobilizon_link}的一个实例,是一个与社区一起成长的自由软件。", + "{member} accepted the invitation to join the group.": "{member}接受了加入该群组的邀请。", + "{member} joined the group.": "{member}加入了该群组。", + "{member} rejected the invitation to join the group.": "{member}拒绝了加入该群组的邀请。", + "{member} requested to join the group.": "{member}要求加入该群组。", + "{member} was invited by {profile}.": "{member}是由{profile}邀请的。", + "{moderator} added a note on {report}": "{moderator}在{report}上添加了一个注释", + "{moderator} closed {report}": "{moderator}关闭了{report}", + "{moderator} deleted an event named \"{title}\"": "{moderator}删除了一个名为\"{title}\"的活动", + "{moderator} has deleted a comment from {author}": "{moderator}已删除了{author}的一条评论", + "{moderator} has deleted a comment from {author} under the event {event}": "{moderator}已经删除了{author}在活动{event}下的一条评论", + "{moderator} has deleted user {user}": "{moderator}已经删除了用户{user}", + "{moderator} has done an unknown action": "{moderator}做了一个未知的动作", + "{moderator} has unsuspended group {profile}": "{moderator}已经重启了群组{profile}", + "{moderator} has unsuspended profile {profile}": "{moderator}已经取消了对身份{profile}的暂停", + "{moderator} marked {report} as resolved": "{moderator}将{report}标记为已解决", + "{moderator} reopened {report}": "{moderator}重启了{report}", + "{moderator} suspended group {profile}": "{moderator}暂停了群组{profile}", + "{moderator} suspended profile {profile}": "{moderator}暂停了身份 {profile}", + "{nb} km": "{nb}公里", + "{numberOfCategories} selected": "选定了{numberOfCategories}", + "{numberOfLanguages} selected": "选定了{numberOfLanguages}", + "{number} kilometers": "{number}公里", + "{number} members": "{number} 个成员", + "{number} memberships": "{number} 个会员", + "{number} organized events": "没有组织的活动|有一个组织的活动|{number}个组织的活动", + "{number} participations": "无人参与|一人参与|{number}人参与", + "{number} posts": "没有帖子|一个帖子|{number}个帖子", + "{number} seats left": "剩余{number}个座位", + "{old_group_name} was renamed to {group}.": "{old_group_name}被重新命名为{group}。", + "{profile} (by default)": "{profile} (默认)", + "{profile} added the member {member}.": "{profile}添加了会员{member}。", + "{profile} approved {member}'s membership.": "{profile}批准了{member}的会员资格。", + "{profile} archived the discussion {discussion}.": "{profile}把讨论{discussion}归档了。", + "{profile} created the discussion {discussion}.": "{profile}创建了讨论{discussion}。", + "{profile} created the folder {resource}.": "{profile}创建了{resource}文件夹。", + "{profile} created the group {group}.": "{profile}创建了群组{group}。", + "{profile} created the resource {resource}.": "{profile}创建了资源{resource}。", + "{profile} deleted the discussion {discussion}.": "{profile}删除了讨论{discussion}。", + "{profile} deleted the folder {resource}.": "{profile}删除了文件夹{resource}。", + "{profile} deleted the resource {resource}.": "{profile}删除了资源{resource}。", + "{profile} demoted {member} to an unknown role.": "{profile}将{member}降级为一个未知的角色。", + "{profile} demoted {member} to moderator.": "{profile}将{member}降为审查员。", + "{profile} demoted {member} to simple member.": "{profile}将{member}降级为普通会员。", + "{profile} excluded member {member}.": "{profile}排除了会员{member}。", + "{profile} moved the folder {resource} into {new_path}.": "{profile}将文件夹{resource}移至{new_path}。", + "{profile} moved the folder {resource} to the root folder.": "{profile}把文件夹{resource}移到了根文件夹。", + "{profile} moved the resource {resource} into {new_path}.": "{profile}将资源{resource}移至{new_path}。", + "{profile} moved the resource {resource} to the root folder.": "{profile}把资源{resource}移到了根文件夹。", + "{profile} posted a comment on the event {event}.": "{profile}对活动{event}发表了评论。", + "{profile} promoted {member} to administrator.": "{profile}晋升{member}为管理员。", + "{profile} promoted {member} to an unknown role.": "{profile}将{member}晋升为一个未知的角色。", + "{profile} promoted {member} to moderator.": "{profile}晋升{member}为审查员。", + "{profile} quit the group.": "{profile}已退出该群组。", + "{profile} rejected {member}'s membership request.": "{profile}拒绝了{member}的入会申请。", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile}将讨论从{old_discussion}更名为{discussion}。", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile}将文件夹从{old_resource_title}重命名为{resource}。", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile}将资源从{old_resource_title}重命名为{resource}。", + "{profile} replied to a comment on the event {event}.": "{profile}回复了对活动{event}的评论。", + "{profile} replied to the discussion {discussion}.": "{profile}回复了讨论{discussion}。", + "{profile} updated the group {group}.": "{profile}更新了群组{group}。", + "{profile} updated the member {member}.": "{profile}更新了成员{member}。", + "{resultsCount} results found": "没有找到结果|找到了一个结果|找到了{resultsCount}个结果", + "{timezoneLongName} ({timezoneShortName})": "{timezoneLongName} ({timezoneShortName})", + "{title} ({count} todos)": "{title} ({count} 个待办项)", + "{username} was invited to {group}": "{username}被邀请参加{group}", + "{user}'s follow request was accepted": "{user}的关注请求已被接受", + "{user}'s follow request was rejected": "{user}的关注请求被拒绝", + "© The OpenStreetMap Contributors": "© The OpenStreetMap 贡献者" +}); diff --git a/res/locale/zh_Hant.js b/res/locale/zh_Hant.js new file mode 100644 index 0000000..d0638b5 --- /dev/null +++ b/res/locale/zh_Hant.js @@ -0,0 +1,1296 @@ +CTX.setMessages({ + "#{tag}": "#{tag}", + "(Masked)": "", + "(this folder)": "", + "(this link)": "", + "+ Add a resource": "", + "+ Create a post": "", + "+ Create an event": "", + "+ Start a discussion": "", + "{contact} will be displayed as contact.": "", + "@{group}": "@{group}", + "@{username} ({role})": "", + "@{username}'s follow request was accepted": "", + "@{username}'s follow request was rejected": "", + "A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "", + "A discussion has been created or updated": "", + "A federated software": "", + "A fediverse account URL to follow for event updates": "", + "A link to a page presenting the event schedule": "", + "A link to a page presenting the price options": "", + "A member has been updated": "", + "A member requested to join one of my groups": "", + "A new version is available.": "有新版本可用。", + "A place for your code of conduct, rules or guidelines. You can use HTML tags.": "", + "A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "", + "A place to publish something to the whole world, your community or just your group members.": "", + "A place to store links to documents or resources of any type.": "", + "A post has been published": "", + "A post has been updated": "", + "A practical tool": "", + "A resource has been created or updated": "", + "A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "給您實例首頁的簡短標語。預設為「召集 ⋅ 組織 ⋅ 動員」", + "A twitter account handle to follow for event updates": "", + "A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "這是一款易於使用、給予自由且合乎道德的工具,可以用來召集、組織和動員。", + "A validation email was sent to {email}": "已將驗證用的電子郵件發傳送至 {email}", + "API": "API", + "Abandon editing": "", + "About": "關於", + "About Mobilizon": "關於 Mobilizon", + "About anonymous participation": "", + "About instance": "關於實例", + "About this event": "關於這項活動", + "About this instance": "關於這臺實例", + "About {instance}": "關於 {instance}", + "Accept": "", + "Accept follow": "接受關注", + "Accepted": "己接受", + "Accessibility": "", + "Accessible only by link": "", + "Accessible only to members": "", + "Accessible through link": "", + "Account": "帳號", + "Account settings": "", + "Actions": "", + "Activate browser push notifications": "", + "Activated": "", + "Active": "", + "Activity": "", + "Actor": "", + "Adapt to system theme": "依系統主題更換", + "Add": "新增", + "Add / Remove…": "新增/移除⋯⋯", + "Add a contact": "", + "Add a new post": "", + "Add a note": "", + "Add a todo": "", + "Add an address": "", + "Add an instance": "", + "Add link": "", + "Add new…": "", + "Add picture": "", + "Add some tags": "", + "Add to my calendar": "", + "Additional comments": "", + "Admin": "", + "Admin dashboard": "", + "Admin settings": "", + "Admin settings successfully saved.": "", + "Administration": "", + "Administrator": "", + "All activities": "", + "All good, let's continue!": "", + "All the places have already been taken": "", + "Allow all comments from users with accounts": "", + "Allow registrations": "", + "An URL to an external ticketing platform": "", + "An error has occured while refreshing the page.": "", + "An error has occured. Sorry about that. You may try to reload the page.": "", + "An ethical alternative": "", + "An event I'm going to has been updated": "", + "An event I'm going to has posted an announcement": "", + "An event I'm organizing has a new comment": "", + "An event I'm organizing has a new participation": "", + "An event I'm organizing has a new pending participation": "", + "An event from one of my groups has been published": "", + "An event from one of my groups has been updated or deleted": "", + "An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "", + "And {number} comments": "", + "Announcements and mentions notifications are always sent straight away.": "", + "Anonymous participant": "", + "Anonymous participants will be asked to confirm their participation through e-mail.": "", + "Anonymous participations": "匿名參與", + "Any category": "任何類型", + "Any day": "", + "Any type": "", + "Anyone can join freely": "", + "Anyone can request being a member, but an administrator needs to approve the membership.": "", + "Anyone wanting to be a member from your group will be able to from your group page.": "", + "Application": "應用程式", + "Approve member": "", + "Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "您確定要刪除帳號嗎?您的身份、設定、訊息、參與和建立的活動將永遠消失。", + "Are you sure you want to completely delete this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to delete this comment? This action cannot be undone.": "", + "Are you sure you want to delete this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "", + "Are you sure you want to suspend this group? All members - including remote ones - will be notified and removed from the group, and all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed.": "", + "Are you sure you want to suspend this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "", + "Are you sure you want to cancel the event creation? You'll lose all modifications.": "", + "Are you sure you want to cancel the event edition? You'll lose all modifications.": "", + "Are you sure you want to cancel your participation at event \"{title}\"?": "", + "Are you sure you want to delete this entire discussion?": "", + "Are you sure you want to delete this event? This action cannot be reverted.": "", + "Are you sure you want to delete this post? This action cannot be reverted.": "", + "Are you sure you want to leave the group {groupName}? You'll loose access to this group's private content. This action cannot be undone.": "", + "As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "", + "Ask your instance admin to {enable_feature}.": "", + "Assigned to": "", + "Atom feed for events and posts": "", + "Attending": "", + "Avatar": "大頭照", + "Back to group list": "", + "Back to homepage": "回到首頁", + "Back to previous page": "返回上一頁", + "Back to profile list": "", + "Back to top": "返回頂端", + "Back to user list": "", + "Banner": "", + "Before you can login, you need to click on the link inside it to validate your account.": "在登入之前,您需要先按下其中的連結來驗證您的帳號。", + "Begins on": "", + "Big Blue Button": "", + "Bold": "", + "Booking": "", + "Breadcrumbs": "", + "Browser notifications": "瀏覽器通知", + "Bullet list": "", + "By others": "", + "By {group}": "", + "By {username}": "", + "Can be an email or a link, or just plain text.": "", + "Cancel": "取消", + "Cancel anonymous participation": "", + "Cancel creation": "", + "Cancel discussion title edition": "", + "Cancel edition": "", + "Cancel follow request": "", + "Cancel membership request": "", + "Cancel my participation request…": "", + "Cancel my participation…": "", + "Cancelled": "", + "Cancelled: Won't happen": "", + "Categories": "類型", + "Category": "類型", + "Category illustrations credits": "類型插圖的出處", + "Category list": "類型列表", + "Change": "", + "Change my email": "修改我的電子郵件", + "Change my identity…": "", + "Change my password": "修改我的密碼", + "Change timezone": "", + "Check your inbox (and your junk mail folder).": "", + "Choose the source of the instance's Privacy Policy": "請選擇實例隱私政策的來源", + "Choose the source of the instance's Terms": "請選擇實例條款的來源", + "City or region": "", + "Clear": "清除", + "Clear address field": "", + "Clear date filter field": "", + "Clear participation data for all events": "", + "Clear participation data for this event": "", + "Clear timezone field": "", + "Click for more information": "", + "Click to upload": "點擊以上傳", + "Close": "關閉", + "Close comments for all (except for admins)": "", + "Close map": "關閉地圖", + "Closed": "否", + "Comment body": "留言正文", + "Comment deleted": "已刪除留言", + "Comment text can't be empty": "", + "Comments": "留言", + "Comments are closed for everybody else.": "", + "Confirm my participation": "", + "Confirm my particpation": "", + "Confirm participation": "", + "Confirmed": "", + "Confirmed at": "", + "Confirmed: Will happen": "", + "Congratulations, your account is now created!": "", + "Contact": "接觸", + "Continue editing": "", + "Cookies and Local storage": "Cookie 和本機儲存器", + "Copy URL to clipboard": "", + "Copy details to clipboard": "", + "Country": "", + "Create": "", + "Create a calc": "", + "Create a discussion": "", + "Create a folder": "", + "Create a new event": "", + "Create a new group": "", + "Create a new identity": "", + "Create a new list": "建立新的列表", + "Create a new profile": "", + "Create a pad": "", + "Create a videoconference": "", + "Create an account": "建立帳號", + "Create discussion": "", + "Create event": "", + "Create group": "", + "Create identity": "", + "Create my event": "", + "Create my group": "", + "Create my profile": "", + "Create new links": "", + "Create resource": "", + "Create the discussion": "", + "Create to-do lists for all the tasks you need to do, assign them and set due dates.": "", + "Create token": "", + "Created by {name}": "", + "Created by {username}": "", + "Current identity has been changed to {identityName} in order to manage this event.": "", + "Current page": "", + "Custom": "", + "Custom URL": "", + "Custom text": "", + "Daily email summary": "", + "Dark": "暗", + "Dashboard": "", + "Date": "", + "Date and time": "時日", + "Date and time settings": "", + "Date parameters": "", + "Decline": "", + "Decrease": "", + "Default": "", + "Default Mobilizon privacy policy": "預設的 Mobilizon 隱私政策", + "Default Mobilizon terms": "預設的 Mobilizon 條款", + "Delete": "", + "Delete account": "", + "Delete conversation": "", + "Delete discussion": "", + "Delete event": "", + "Delete everything": "", + "Delete group": "刪除群組", + "Delete my account": "刪除我的帳號", + "Delete post": "刪除貼文", + "Delete this discussion": "", + "Delete this identity": "", + "Delete your identity": "", + "Delete {eventTitle}": "", + "Delete {preferredUsername}": "", + "Deleting comment": "正在刪除留言", + "Deleting event": "", + "Deleting my account will delete all of my identities.": "刪除我的帳號將會刪除我所有的身份。", + "Deleting your Mobilizon account": "", + "Demote": "", + "Description": "", + "Details": "", + "Didn't receive the instructions?": "沒有收到說明?", + "Disabled": "已停用", + "Discussions": "", + "Discussions list": "", + "Display name": "", + "Display participation price": "", + "Displayed nickname": "顯示別名", + "Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "", + "Do not receive any mail": "", + "Do you wish to {create_event} or {explore_events}?": "", + "Do you wish to {create_group} or {explore_groups}?": "", + "Does the event needs to be confirmed later or is it cancelled?": "", + "Domain": "", + "Draft": "", + "Drafts": "", + "Due on": "", + "Duplicate": "", + "Edit": "", + "Edit post": "編輯貼文", + "Edit profile {profile}": "", + "Edited {ago}": "", + "Edited {relative_time} ago": "", + "Eg: Stockholm, Dance, Chess…": "", + "Either on the {instance} instance or on another instance.": "", + "Either the account is already validated, either the validation token is incorrect.": "", + "Either the email has already been changed, either the validation token is incorrect.": "", + "Either the participation request has already been validated, either the validation token is incorrect.": "", + "Element title": "", + "Element value": "", + "Email": "電子郵件", + "Email address": "電子郵件地址", + "Email validate": "", + "Emails usually don't contain capitals, make sure you haven't made a typo.": "", + "Enabled": "已啟用", + "Ends on…": "", + "Enter the link URL": "", + "Enter your email address below, and we'll email you instructions on how to change your password.": "", + "Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "", + "Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "", + "Error": "", + "Error details copied!": "已複製錯誤詳情!", + "Error message": "錯誤訊息", + "Error stacktrace": "", + "Error while changing email": "", + "Error while loading the preview": "載入預覽時出錯", + "Error while login with {provider}. Retry or login another way.": "", + "Error while login with {provider}. This login provider doesn't exist.": "", + "Error while reporting group {groupTitle}": "", + "Error while subscribing to push notifications": "", + "Error while suspending group": "", + "Error while updating participation status inside this browser": "", + "Error while validating account": "", + "Error while validating participation request": "", + "Etherpad notes": "", + "Ethical alternative to Facebook events, groups and pages, Mobilizon is a tool designed to serve you. Period.": "", + "Event": "", + "Event URL": "", + "Event already passed": "", + "Event cancelled": "", + "Event creation": "", + "Event description body": "", + "Event edition": "", + "Event list": "活動列表", + "Event metadata": "", + "Event page settings": "", + "Event timezone will default to the timezone of the event's address if there is one, or to your own timezone setting.": "", + "Event to be confirmed": "", + "Event {eventTitle} deleted": "", + "Event {eventTitle} reported": "", + "Events": "", + "Events nearby": "", + "Events tagged with {tag}": "", + "Everything": "", + "Ex: mobilizon.fr": "例:mobilizon.fr", + "Ex: someone@mobilizon.org": "例:某臺@mobilizon.org", + "Ex: someone{'@'}mobilizon.org": "例:某臺{'@'}mobilizon.org", + "Explore": "", + "Explore events": "", + "Explore!": "探索!", + "Export": "", + "Failed to get location.": "無法取得位置。", + "Failed to save admin settings": "", + "Featured events": "", + "Federated Group Name": "", + "Federation": "聯邦功能", + "Fediverse account": "", + "Fetch more": "擷取更多", + "Filter": "", + "Filter by name": "", + "Filter by profile or group name": "", + "Find an address": "", + "Find an instance": "", + "Find another instance": "尋找另一臺實例", + "Find or add an element": "", + "First steps": "", + "Follow": "關注", + "Follow instance": "關注實例", + "Follower": "", + "Followers": "", + "Followers will receive new public events and posts.": "", + "Following the group will allow you to be informed of the {group_upcoming_public_events}, whereas joining the group means you will {access_to_group_private_content_as_well}, including group discussions, group resources and members-only posts.": "", + "Followings": "正在關注", + "For instance: London": "", + "For instance: London, Taekwondo, Architecture…": "", + "Forgot your password ?": "忘記密碼了嗎?", + "Forgot your password?": "忘記密碼了嗎?", + "Framadate poll": "", + "From my groups": "", + "From the {startDate} at {startTime} to the {endDate}": "", + "From the {startDate} at {startTime} to the {endDate} at {endTime}": "", + "From the {startDate} to the {endDate}": "", + "From yourself": "", + "Fully accessible with a wheelchair": "", + "Gather ⋅ Organize ⋅ Mobilize": "召集 ⋅ 組織 ⋅ 動員", + "General": "通用", + "General information": "一般資訊", + "General settings": "一般設定", + "Geolocation was not determined in time.": "", + "Get informed of the upcoming public events": "瞭解即將舉行的公開活動", + "Getting location": "到那裡去", + "Getting there": "", + "Glossary": "術語解說", + "Go": "", + "Go to the event page": "", + "Go!": "去吧!", + "Google Meet": "Google Meet", + "Group": "群組", + "Group Followers": "", + "Group Members": "群組成員", + "Group URL": "群組 URL", + "Group activity": "群組動態", + "Group address": "", + "Group description body": "", + "Group display name": "", + "Group members": "群組成員", + "Group name": "群組名稱", + "Group profiles": "", + "Group settings": "群組設定", + "Group settings saved": "已儲存群組設定", + "Group short description": "", + "Group visibility": "", + "Group {displayName} created": "", + "Group {groupTitle} reported": "", + "Groups": "群組", + "Groups are not enabled on this instance.": "", + "Groups are spaces for coordination and preparation to better organize events and manage your community.": "", + "Heading Level 1": "", + "Heading Level 2": "", + "Heading Level 3": "", + "Headline picture": "", + "Hide replies": "", + "Home": "", + "Home to {number} users": "", + "Homepage": "", + "Hourly email summary": "", + "I agree to the {instanceRules} and {termsOfService}": "我同意{instanceRules}及{termsOfService}", + "I create an identity": "", + "I don't have a Mobilizon account": "我沒有 Mobilizon 帳號", + "I have a Mobilizon account": "我有 Mobilizon 帳號", + "I have an account on another Mobilizon instance.": "我在其他 Mobilizon 實例上有帳號。", + "I participate": "", + "I want to allow people to participate without an account.": "", + "I want to approve every participation request": "", + "I've been mentionned in a comment under an event": "", + "I've been mentionned in a group discussion": "", + "ICS feed for events": "", + "ICS/WebCal Feed": "", + "Identities": "身份", + "Identity {displayName} created": "", + "Identity {displayName} deleted": "", + "Identity {displayName} updated": "", + "If allowed by organizer": "需主辦者允許", + "If an account with this email exists, we just sent another confirmation email to {email}": "", + "If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "", + "If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "", + "If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "", + "If you want, you may send a message to the event organizer here.": "", + "Ignore": "", + "Illustration picture for “{category}” by {author} on {source} ({license})": "「{category}」的插圖由 {author} 提供於 {source} ({license})", + "In person": "", + "In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "", + "In the past": "", + "Increase": "", + "Instance": "", + "Instance Long Description": "", + "Instance Name": "實例名稱", + "Instance Privacy Policy": "實例隱私政策", + "Instance Privacy Policy Source": "實例隱私政策來源", + "Instance Privacy Policy URL": "實例隱私政策 URL", + "Instance Rules": "實例守則", + "Instance Short Description": "", + "Instance Slogan": "", + "Instance Terms": "實例條款", + "Instance Terms Source": "實例條款來源", + "Instance Terms URL": "實例條款 URL", + "Instance administrator": "", + "Instance configuration": "實例組態", + "Instance feeds": "實例源料", + "Instance languages": "", + "Instance rules": "實例守則", + "Instance settings": "實例設定", + "Instances": "實例", + "Instances following you": "", + "Instances you follow": "", + "Integrate this event with 3rd-party tools and show metadata for the event.": "", + "Interact": "", + "Interact with a remote content": "", + "Invite a new member": "邀請新成員", + "Invite member": "邀請成員", + "Invited": "", + "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "", + "Italic": "", + "Jitsi Meet": "", + "Join {instance}, a Mobilizon instance": "加入 {instance} 這臺 Mobilizon 實例", + "Join group": "加入群組", + "Join group {group}": "", + "Join {instance}, a Mobilizon instance": "加入 {instance} 這臺 Mobilizon 實例", + "Keep the entire conversation about a specific topic together on a single page.": "", + "Key words": "", + "Language": "語言", + "Languages": "語言", + "Last IP adress": "", + "Last group created": "", + "Last published event": "", + "Last published events": "", + "Last sign-in": "", + "Last week": "", + "Latest posts": "", + "Learn more": "更加瞭解", + "Learn more about Mobilizon": "更加瞭解 Mobilizon", + "Learn more about {instance}": "更加瞭解 {instance}", + "Leave": "", + "Leave event": "", + "Leave group": "離開群組", + "Leaving event \"{title}\"": "", + "Legal": "須知", + "Let's define a few settings": "", + "License": "授權", + "Light": "亮", + "Limited number of places": "", + "List": "列表", + "List title": "列表標題", + "Live": "", + "Load more": "", + "Load more activities": "", + "Loading comments…": "正在載入留言⋯⋯", + "Loading map": "正在載入地圖", + "Local": "", + "Local time ({timezone})": "", + "Locality": "", + "Location": "地點", + "Log in": "登入", + "Log out": "登出", + "Login": "登入", + "Login on Mobilizon!": "登入 Mobilizon 吧!", + "Login on {instance}": "登入 {instance}", + "Login status": "", + "Main languages you/your moderators speak": "", + "Manage participations": "", + "Manually approve new followers": "", + "Manually invite new members": "", + "Map": "地圖", + "Mark as resolved": "", + "Member": "成員", + "Members": "成員", + "Members-only post": "", + "Mentions": "", + "Message": "訊息", + "Microsoft Teams": "", + "Mobilizon": "Mobilizon", + "Mobilizon is a federated network. You can interact with this event from a different server.": "", + "Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "", + "Mobilizon is a tool that helps you find, create and organise events.": "", + "Mobilizon is not a giant platform, but a multitude of interconnected Mobilizon websites.": "Mobilizon 不是一個巨大的平臺,而是一大群互聯的 Mobilizon 網站。", + "Mobilizon is not a giant platform, but a {multitude_of_interconnected_mobilizon_websites}.": "Mobilizon 不是一個巨大的平臺,而是{multitude_of_interconnected_mobilizon_websites}。", + "Mobilizon software": "Mobilizon 軟體", + "Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "", + "Mobilizon version": "Mobilizon 版本", + "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "", + "Moderate new members": "", + "Moderated comments (shown after approval)": "", + "Moderation": "", + "Moderation log": "", + "Moderation logs": "", + "Moderator": "", + "Move": "", + "Move \"{resourceName}\"": "", + "Move resource to the root folder": "", + "Move resource to {folder}": "", + "My account": "我的帳號", + "My events": "", + "My groups": "我的群組", + "My identities": "我的身份", + "NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "", + "Name": "", + "Navigated to {pageTitle}": "", + "New discussion": "", + "New email": "新電子郵件地址", + "New folder": "", + "New link": "", + "New members": "", + "New note": "", + "New password": "新密碼", + "New post": "", + "New profile": "", + "Next": "", + "Next month": "", + "Next page": "", + "Next week": "", + "No address defined": "", + "No categories with public upcoming events on this instance were found.": "在這臺實例上,找不到有即將舉行的公開活動的類型。", + "No closed reports yet": "", + "No comment": "沒有留言", + "No comments yet": "還沒有留言", + "No discussions yet": "", + "No end date": "", + "No events found": "", + "No follower matches the filters": "", + "No group found": "找不到群組", + "No group matches the filters": "", + "No group member found": "", + "No groups found": "找不到群組", + "No information": "", + "No instance follows your instance yet.": "還沒有關注您實例的實例。", + "No instance to approve|Approve instance|Approve {number} instances": "", + "No instance to reject|Reject instance|Reject {number} instances": "", + "No instance to remove|Remove instance|Remove {number} instances": "", + "No languages found": "", + "No member matches the filters": "", + "No members found": "", + "No memberships found": "", + "No message": "沒有訊息", + "No moderation logs yet": "", + "No more activity to display.": "", + "No one is participating|One person participating|{going} people participating": "", + "No open reports yet": "", + "No organized events found": "", + "No organized events listed": "", + "No participant matches the filters": "", + "No participant to approve|Approve participant|Approve {number} participants": "", + "No participant to reject|Reject participant|Reject {number} participants": "", + "No participations listed": "", + "No posts found": "找不到貼文", + "No posts yet": "還沒有貼文", + "No profile matches the filters": "", + "No public upcoming events": "沒有即將舉行的公開活動", + "No resolved reports yet": "", + "No resources in this folder": "", + "No resources selected": "", + "No resources yet": "", + "No results for \"{queryText}\"": "沒有「{queryText}」的結果", + "No results for {search}": "沒有 {search} 的結果", + "No results found": "找不到結果", + "No results found for {search}": "找不到 {search} 的結果", + "No rules defined yet.": "目前尚未定義守則。", + "None": "", + "Not accessible with a wheelchair": "", + "Not approved": "", + "Not confirmed": "", + "Notes": "", + "Notification before the event": "", + "Notification on the day of the event": "", + "Notification settings": "", + "Notifications": "", + "Notifications for manually approved participations to an event": "", + "Notify participants": "", + "Now, create your first profile:": "", + "Number of places": "", + "OK": "", + "Old password": "舊密碼", + "On {date}": "", + "On {date} ending at {endTime}": "", + "On {date} from {startTime} to {endTime}": "", + "On {date} starting at {startTime}": "", + "On {instance} and other federated instances": "", + "Online": "", + "Online ticketing": "", + "Online upcoming events": "即將舉行的線上活動", + "Only accessible through link": "", + "Only accessible through link (private)": "", + "Only accessible to members of the group": "", + "Only alphanumeric lowercased characters and underscores are supported.": "僅支援小寫的英數字元和底線。", + "Only group members can access discussions": "", + "Only group moderators can create, edit and delete events.": "", + "Only group moderators can create, edit and delete posts.": "", + "Only registered users may fetch remote events from their URL.": "只有已註冊的使用者才能從他們的 URL 中檢索活動。", + "Open": "是", + "Open a topic on our forum": "", + "Open an issue on our bug tracker (advanced users)": "", + "Opened reports": "", + "Or": "", + "Ordered list": "", + "Organized": "", + "Organized by": "", + "Organized by {name}": "", + "Organizer": "", + "Organizer notifications": "", + "Organizers": "", + "Other": "", + "Other actions": "", + "Other notification options:": "", + "Other software may also support this.": "", + "Otherwise this identity will just be removed from the group administrators.": "", + "Page": "", + "Page limited to my group (asks for auth)": "", + "Page not found": "", + "Parent folder": "", + "Partially accessible with a wheelchair": "", + "Participant": "", + "Participants": "", + "Participate": "", + "Participate using your email address": "", + "Participation approval": "", + "Participation confirmation": "", + "Participation notifications": "", + "Participation requested!": "", + "Participation with account": "", + "Participation without account": "", + "Participations": "", + "Password": "密碼", + "Password (confirmation)": "密碼(確認)", + "Password reset": "", + "Past events": "", + "PeerTube live": "", + "PeerTube replay": "", + "Pending": "", + "Personal feeds": "", + "Pick": "", + "Pick a profile or a group": "", + "Pick an identity": "", + "Pick an instance": "", + "Please add as many details as possible to help identify the problem.": "", + "Please check your spam folder if you didn't receive the email.": "", + "Please contact this instance's Mobilizon admin if you think this is a mistake.": "", + "Please do not use it in any real way.": "", + "Please enter your password to confirm this action.": "", + "Please make sure the address is correct and that the page hasn't been moved.": "", + "Please read the {fullRules} published by {instance}'s administrators.": "請參閱 {instance} 的管理員公告的{fullRules}。", + "Post": "貼文", + "Post URL": "", + "Post a comment": "貼出留言", + "Post a reply": "", + "Post body": "", + "Post {eventTitle} reported": "", + "Postal Code": "", + "Posts": "貼文", + "Powered by Mobilizon": "威力本源 Mobilizon", + "Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "威力本源 {mobilizon}。© 2018 - {date} 的 Mobilizon 貢獻者們 - 在{contributors}的財政支援下製作而成。", + "Preferences": "偏好", + "Previous": "", + "Previous month": "", + "Previous page": "", + "Price sheet": "", + "Privacy": "", + "Privacy Policy": "隱私政策", + "Privacy policy": "隱私政策", + "Private event": "", + "Private feeds": "", + "Profile": "", + "Profile feeds": "", + "Profiles": "個人檔案", + "Profiles and federation": "", + "Promote": "", + "Public": "", + "Public RSS/Atom Feed": "", + "Public comment moderation": "", + "Public event": "", + "Public feeds": "", + "Public iCal Feed": "", + "Public preview": "", + "Publication date": "", + "Publish": "", + "Published by {name}": "", + "Published events with {comments} comments and {participations} confirmed participations": "", + "Push": "", + "Quote": "", + "RSS/Atom Feed": "RSS/Atom 源料", + "Radius": "", + "Recap every week": "", + "Receive one email for each activity": "", + "Receive one email per request": "", + "Redirecting in progress…": "", + "Redirecting to Mobilizon": "正在重新導向至 Mobilizon", + "Redirecting to content…": "正在重新導向內容⋯⋯", + "Redo": "", + "Refresh profile": "", + "Regenerate new links": "", + "Region": "", + "Register": "註冊", + "Register an account on {instanceName}!": "在 {instanceName} 上註冊帳號!", + "Register on this instance": "在這臺實例上註冊", + "Registration is allowed, anyone can register.": "允許註冊,任何人都可以註冊。", + "Registration is closed.": "", + "Registration is currently closed.": "", + "Registrations": "開放註冊", + "Registrations are restricted by allowlisting.": "", + "Reject": "", + "Reject follow": "拒絕關注", + "Reject member": "", + "Rejected": "", + "Remember my participation in this browser": "", + "Remove": "", + "Remove link": "", + "Rename": "", + "Rename resource": "", + "Reopen": "", + "Replay": "", + "Reply": "", + "Report": "", + "Report #{reportNumber}": "", + "Report this comment": "", + "Report this event": "", + "Report this group": "", + "Report this post": "", + "Reported": "", + "Reported by": "", + "Reported by someone on {domain}": "", + "Reported by {reporter}": "", + "Reported group": "", + "Reported identity": "", + "Reports": "", + "Reports list": "", + "Request for participation confirmation sent": "", + "Resend confirmation email": "重新傳送確認用的電子郵件", + "Resent confirmation email": "已重新傳送確認用的電子郵件", + "Reset": "", + "Reset my password": "重設我的密碼", + "Reset password": "", + "Resolved": "", + "Resource provided is not an URL": "", + "Resources": "", + "Restricted": "", + "Return to the group page": "", + "Right now": "", + "Role": "", + "Rules": "守則", + "SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "", + "SSL/TLS": "SSL/TLS", + "Save": "儲存", + "Save draft": "", + "Schedule": "", + "Search": "", + "Search events, groups, etc.": "", + "Searching…": "正在搜尋⋯⋯", + "Select a category": "選取類型", + "Select a language": "", + "Select a radius": "", + "Select a timezone": "", + "Select languages": "", + "Select the activities for which you wish to receive an email or a push notification.": "", + "Send": "", + "Send email": "傳送電子郵件", + "Send notification e-mails": "", + "Send password reset": "", + "Send the confirmation email again": "再次傳送確認用的電子郵件", + "Send the report": "", + "Set an URL to a page with your own privacy policy.": "", + "Set an URL to a page with your own terms.": "", + "Settings": "設定", + "Share": "分享", + "Share this event": "分享這項活動", + "Share this group": "分享這個群組", + "Share this post": "分享這篇貼文", + "Short bio": "簡歷", + "Show map": "顯示地圖", + "Show me where I am": "", + "Show remaining number of places": "", + "Show the time when the event begins": "", + "Show the time when the event ends": "", + "Showing events before": "", + "Showing events starting on": "", + "Sign Language": "", + "Sign in with": "", + "Sign up": "", + "Since you are a new member, private content can take a few minutes to appear.": "", + "Skip to main content": "", + "Social": "", + "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "", + "Starts on…": "", + "Status": "", + "Street": "", + "Submit": "", + "Subtitles": "", + "Suggestions:": "建議:", + "Suspend": "", + "Suspend group": "", + "Suspended": "", + "Tag search": "", + "Task lists": "", + "Technical details": "", + "Tentative": "", + "Tentative: Will be confirmed later": "", + "Terms": "條款", + "Terms of service": "服務條款", + "Text": "", + "That you follow or of which you are a member": "", + "The Big Blue Button video teleconference URL": "", + "The Google Meet video teleconference URL": "", + "The Jitsi Meet video teleconference URL": "", + "The Microsoft Teams video teleconference URL": "", + "The URL of a pad where notes are being taken collaboratively": "", + "The URL of a poll where the choice for the event date is happening": "", + "The URL where the event can be watched live": "", + "The URL where the event live can be watched again after it has ended": "", + "The Zoom video teleconference URL": "", + "The account's email address was changed. Check your emails to verify it.": "", + "The actual number of participants may differ, as this event is hosted on another instance.": "", + "The content came from another server. Transfer an anonymous copy of the report?": "", + "The draft event has been updated": "", + "The event has a sign language interpreter": "", + "The event has been created as a draft": "", + "The event has been published": "", + "The event has been updated": "", + "The event has been updated and published": "", + "The event hasn't got a sign language interpreter": "", + "The event is fully online": "", + "The event live video contains subtitles": "", + "The event live video does not contain subtitles": "", + "The event organiser has chosen to validate manually participations. Do you want to add a little note to explain why you want to participate to this event?": "", + "The event organizer didn't add any description.": "", + "The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "", + "The event title will be ellipsed.": "", + "The event will show as attributed to this group.": "", + "The event will show as attributed to this profile.": "", + "The event will show as attributed to your personal profile.": "", + "The event {event} was created by {profile}.": "", + "The event {event} was deleted by {profile}.": "", + "The event {event} was updated by {profile}.": "", + "The events you created are not shown here.": "", + "The geolocation prompt was denied.": "", + "The group can now be joined by anyone, but new members need to be approved by an administrator.": "", + "The group can now be joined by anyone.": "", + "The group can now only be joined with an invite.": "", + "The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "", + "The group's avatar was changed.": "已更換群組大頭照。", + "The group's banner was changed.": "", + "The group's physical address was changed.": "", + "The group's short description was changed.": "", + "The instance administrator is the person or entity that runs this Mobilizon instance.": "", + "The member was approved": "", + "The member was removed from the group {group}": "", + "The membership request from {profile} was rejected": "", + "The only way for your group to get new members is if an admininistrator invites them.": "", + "The organiser has chosen to close comments.": "", + "The page you're looking for doesn't exist.": "", + "The password was successfully changed": "", + "The post {post} was created by {profile}.": "", + "The post {post} was deleted by {profile}.": "", + "The post {post} was updated by {profile}.": "", + "The report will be sent to the moderators of your instance. You can explain why you report this content below.": "", + "The selected picture is too heavy. You need to select a file smaller than {size}.": "", + "The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "", + "The {default_privacy_policy} will be used. They will be translated in the user's language.": "", + "The {default_terms} will be used. They will be translated in the user's language.": "", + "Theme": "主題", + "There are {participants} participants.": "", + "There is no activity yet. Start doing some things to see activity appear here.": "", + "There will be no way to recover your data.": "", + "There's no discussions yet": "", + "These events may interest you": "您可能會對這些活動感興趣", + "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "", + "These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "", + "This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "", + "This URL doesn't seem to be valid": "", + "This URL is not supported": "", + "This event has been cancelled.": "", + "This event is accessible only through it's link. Be careful where you post this link.": "", + "This group doesn't have a description yet.": "", + "This group is accessible only through it's link. Be careful where you post this link.": "", + "This group is invite-only": "", + "This group was not found": "", + "This identifier is unique to your profile. It allows others to find you.": "這個識別碼是您獨一無二的個人資料。它能讓其他人找到您。", + "This information is saved only on your computer. Click for details": "", + "This instance hasn't got push notifications enabled.": "", + "This instance isn't opened to registrations, but you can register on other instances.": "這臺實例未開放註冊,但您可以在其他實例上註冊。", + "This instance, {instanceName} ({domain}), hosts your profile, so remember its name.": "", + "This is a demonstration site to test Mobilizon.": "", + "This is like your federated username ({username}) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "", + "This month": "", + "This post is accessible only for members. You have access to it for moderation purposes only because you are an instance moderator.": "", + "This post is accessible only through it's link. Be careful where you post this link.": "", + "This profile is from another instance, the informations shown here may be incomplete.": "", + "This profile was not found": "", + "This setting will be used to display the website and send you emails in the correct language.": "", + "This user was not found": "", + "This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "", + "This week": "", + "This weekend": "", + "This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "", + "Time in your timezone ({timezone})": "", + "Times in your timezone ({timezone})": "", + "Timezone": "時區", + "Timezone detected as {timezone}.": "", + "Title": "", + "To activate more notifications, head over to the notification settings.": "", + "To confirm, type your event title \"{eventTitle}\"": "", + "To confirm, type your identity username \"{preferredUsername}\"": "", + "To create and manage multiples identities from a same account": "為了從同一個帳號建立和管理多個身份", + "To create and manage your events": "為了建立和管理您的活動", + "To create or join an group and start organizing with other people": "為了建立或加入群組來與其他人一起組織活動", + "To follow groups and be informed of their latest events": "為了關注群組並了解他們最新的活動", + "To register for an event by choosing one of your identities": "為了用您的其中一個身份來註冊活動", + "Today": "", + "Tomorrow": "", + "Tools": "", + "Transfer to {outsideDomain}": "", + "Triggered profile refreshment": "", + "Twitch live": "Twitch 直播", + "Twitch replay": "", + "Twitter account": "", + "Type": "", + "Type or select a date…": "", + "URL": "", + "URL copied to clipboard": "", + "Unable to copy to clipboard": "", + "Unable to create the group. One of the pictures may be too heavy.": "", + "Unable to create the profile. The avatar picture may be too heavy.": "", + "Unable to detect timezone.": "", + "Unable to load event for participation. The error details are provided below:": "", + "Unable to save your participation in this browser.": "", + "Unable to update the profile. The avatar picture may be too heavy.": "", + "Underline": "", + "Undo": "", + "Unfollow": "", + "Unfortunately, your participation request was rejected by the organizers.": "", + "Unknown": "", + "Unknown actor": "", + "Unknown error.": "", + "Unknown value for the openness setting.": "", + "Unlogged participation": "", + "Unsaved changes": "", + "Unsubscribe to browser push notifications": "", + "Unsuspend": "", + "Upcoming": "即將舉行", + "Upcoming events": "即將舉行的活動", + "Upcoming events from your groups": "您的群組即將舉行的活動", + "Update": "", + "Update app": "", + "Update discussion title": "", + "Update event {name}": "", + "Update group": "更新群組", + "Update my event": "", + "Update post": "更新貼文", + "Updated": "", + "Uploaded media size": "", + "Use my location": "使用我的位置", + "User": "使用者", + "User settings": "", + "Username": "使用者名稱", + "Users": "", + "Validating account": "", + "Validating email": "", + "Video Conference": "", + "View a reply": "", + "View account on {hostname} (in a new window)": "", + "View all": "檢視全部", + "View all categories": "檢視所有類型", + "View all events": "檢視所有活動", + "View all posts": "檢視所有貼文", + "View event page": "檢視活動頁面", + "View everything": "", + "View full profile": "", + "View less": "", + "View more": "", + "View more events": "檢視更多活動", + "View more online events": "檢視更多線上活動", + "View page on {hostname} (in a new window)": "", + "Visibility was set to an unknown value.": "", + "Visibility was set to private.": "", + "Visibility was set to public.": "", + "Visible everywhere on the web": "", + "Visible everywhere on the web (public)": "", + "Waiting for organization team approval.": "", + "Warning": "", + "We couldn't save your participation inside this browser. Not to worry, you have successfully confirmed your participation, we just couldn't save it's status in this browser because of a technical issue.": "", + "We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "", + "We just sent an email to {email}": "", + "We use your timezone to make sure you get notifications for an event at the correct time.": "", + "We will redirect you to your instance in order to interact with this event": "", + "We will redirect you to your instance in order to interact with this group": "", + "We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "", + "We'll use your timezone settings to send a recap of the morning of the event.": "", + "Website": "", + "Website / URL": "網站/URL", + "Weekly email summary": "", + "Welcome back {username}!": "歡迎回來 {username}!", + "Welcome back!": "歡迎回來!", + "Welcome to Mobilizon, {username}!": "歡迎來到 Mobilizon,{username}!", + "What can I do to help?": "", + "Wheelchair accessibility": "", + "When a moderator from the group creates an event and attributes it to the group, it will show up here.": "", + "When the event is private, you'll need to share the link around.": "", + "When the post is private, you'll need to share the link around.": "", + "Whether the event is accessible with a wheelchair": "", + "Whether the event is interpreted in sign language": "", + "Whether the event live video is subtitled": "", + "Who can post a comment?": "", + "Who can view this event and participate": "", + "Who can view this post": "", + "Who published {number} events": "", + "Why create an account?": "為何要建立帳號?", + "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "", + "Within {number} kilometers of {place}": "", + "Write a new comment": "撰寫新留言", + "Yesterday": "", + "You accepted the invitation to join the group.": "", + "You added the member {member}.": "", + "You approved {member}'s membership.": "", + "You archived the discussion {discussion}.": "", + "You are not an administrator for this group.": "", + "You are not part of any group.": "", + "You are offline": "", + "You are participating in this event anonymously": "", + "You are participating in this event anonymously but didn't confirm participation": "", + "You can add tags by hitting the Enter key or by adding a comma": "", + "You can pick your timezone into your preferences.": "", + "You can try another search term or drag and drop the marker on the map": "", + "You can't change your password because you are registered through {provider}.": "您無法修改密碼,因為您是透過 {provider} 註冊的。", + "You can't use push notifications in this browser.": "", + "You changed your email or password": "", + "You created the discussion {discussion}.": "", + "You created the event {event}.": "", + "You created the folder {resource}.": "", + "You created the group {group}.": "", + "You created the post {post}.": "", + "You created the resource {resource}.": "", + "You deleted the discussion {discussion}.": "", + "You deleted the event {event}.": "", + "You deleted the folder {resource}.": "", + "You deleted the post {post}.": "", + "You deleted the resource {resource}.": "", + "You demoted the member {member} to an unknown role.": "", + "You demoted {member} to moderator.": "", + "You demoted {member} to simple member.": "", + "You didn't create or join any event yet.": "", + "You don't follow any instances yet.": "您還沒有關注任何實例。", + "You don't have any upcoming events. Maybe try another filter?": "", + "You excluded member {member}.": "", + "You have attended {count} events in the past.": "", + "You have been invited by {invitedBy} to the following group:": "", + "You have been removed from this group's members.": "", + "You have cancelled your participation": "", + "You have one event in {days} days.": "", + "You have one event today.": "", + "You have one event tomorrow.": "", + "You invited {member}.": "", + "You may clear all participation information for this device with the buttons below.": "", + "You may now close this window, or {return_to_event}.": "", + "You may show some members as contacts.": "", + "You moved the folder {resource} into {new_path}.": "", + "You moved the folder {resource} to the root folder.": "", + "You moved the resource {resource} into {new_path}.": "", + "You moved the resource {resource} to the root folder.": "", + "You need to login.": "您需要登入。", + "You posted a comment on the event {event}.": "", + "You promoted the member {member} to an unknown role.": "", + "You promoted {member} to administrator.": "", + "You promoted {member} to moderator.": "", + "You rejected {member}'s membership request.": "", + "You renamed the discussion from {old_discussion} to {discussion}.": "", + "You renamed the folder from {old_resource_title} to {resource}.": "", + "You renamed the resource from {old_resource_title} to {resource}.": "", + "You replied to a comment on the event {event}.": "", + "You replied to the discussion {discussion}.": "", + "You requested to join the group.": "", + "You updated the event {event}.": "", + "You updated the group {group}.": "", + "You updated the member {member}.": "", + "You updated the post {post}.": "", + "You were demoted to an unknown role by {profile}.": "", + "You were demoted to moderator by {profile}.": "", + "You were demoted to simple member by {profile}.": "", + "You were promoted to administrator by {profile}.": "", + "You were promoted to an unknown role by {profile}.": "", + "You were promoted to moderator by {profile}.": "", + "You will be able to add an avatar and set other options in your account settings.": "您可以在帳號設定中新增大頭照及設定其他選項。", + "You will be redirected to the original instance": "", + "You will find here all the events you have created or of which you are a participant, as well as events organized by groups you follow or are a member of.": "", + "You will receive notifications about this group's public activity depending on %{notification_settings}.": "", + "You wish to participate to the following event": "", + "You'll get a weekly recap every Monday for upcoming events, if you have any.": "", + "You'll need to change the URLs where there were previously entered.": "", + "You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "", + "You'll receive a confirmation email.": "您將收到一封確認用的電子郵件。", + "YouTube live": "YouTube 直播", + "YouTube replay": "", + "Your account has been successfully deleted": "", + "Your account has been validated": "", + "Your account is being validated": "", + "Your account is nearly ready, {username}": "{username},您的帳號就快準備好了", + "Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "", + "Your current email is {email}. You use it to log in.": "您目前用來登入的電子郵件地址是 {email}。", + "Your email": "您的電子郵件地址", + "Your email address was automatically set based on your {provider} account.": "", + "Your email has been changed": "", + "Your email is being changed": "", + "Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "", + "Your federated identity": "", + "Your membership was approved by {profile}.": "", + "Your participation has been confirmed": "", + "Your participation has been rejected": "", + "Your participation has been requested": "", + "Your participation request has been validated": "", + "Your participation request is being validated": "", + "Your participation status has been changed": "", + "Your participation status is saved only on this device and will be deleted one month after the event's passed.": "", + "Your participation still has to be approved by the organisers.": "", + "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "", + "Your participation will be validated once you click the confirmation link into the email.": "", + "Your position was not available.": "", + "Your profile will be shown as contact.": "", + "Your timezone is currently set to {timezone}.": "", + "Your timezone was detected as {timezone}.": "", + "Your timezone {timezone} isn't supported.": "", + "Your upcoming events": "您即將舉行的活動", + "Zoom": "", + "Zoom in": "", + "Zoom out": "", + "[This comment has been deleted by it's author]": "", + "[This comment has been deleted]": "", + "[deleted]": "", + "a non-existent report": "", + "access to the group's private content as well": "", + "and {number} groups": "", + "any distance": "", + "as {identity}": "", + "contact uninformed": "", + "create a group": "", + "create an event": "", + "default Mobilizon privacy policy": "預設的 Mobilizon 隱私政策", + "default Mobilizon terms": "預設的 Mobilizon 條款", + "e.g. 10 Rue Jangot": "", + "e.g. Accessibility, Twitch, PeerTube": "", + "enable the feature": "", + "explore the events": "", + "explore the groups": "", + "full rules": "完整守則", + "group's upcoming public events": "群組即將舉行的公開活動", + "https://mensuel.framapad.org/p/some-secret-token": "", + "iCal Feed": "", + "instance rules": "實例守則", + "more than 1360 contributors": "超過 1360 名貢獻者", + "multitude of interconnected Mobilizon websites": "一大群互聯的 Mobilizon 網站", + "profile@instance": "", + "report #{report_number}": "", + "return to the event's page": "", + "terms of service": "服務條款", + "with another identity…": "", + "your notification settings": "", + "{'@'}{username}": "", + "{approved} / {total} seats": "", + "{available}/{capacity} available places": "", + "{count} km": "", + "{count} members": "", + "{count} members or followers": "", + "{count} participants": "", + "{count} requests waiting": "", + "{folder} - Resources": "", + "{group} activity timeline": "", + "{group} events": "", + "{group} posts": "", + "{group}'s events": "{group} 的活動", + "{group}'s todolists": "", + "{instanceName} is an instance of the {mobilizon} software.": "{instanceName} 是 {mobilizon} 軟體的一臺實例。", + "{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "", + "{member} accepted the invitation to join the group.": "", + "{member} joined the group.": "", + "{member} rejected the invitation to join the group.": "", + "{member} requested to join the group.": "", + "{member} was invited by {profile}.": "", + "{moderator} added a note on {report}": "", + "{moderator} closed {report}": "", + "{moderator} deleted an event named \"{title}\"": "", + "{moderator} has deleted a comment from {author}": "", + "{moderator} has deleted a comment from {author} under the event {event}": "", + "{moderator} has deleted user {user}": "", + "{moderator} has done an unknown action": "", + "{moderator} has unsuspended group {profile}": "", + "{moderator} has unsuspended profile {profile}": "", + "{moderator} marked {report} as resolved": "", + "{moderator} reopened {report}": "", + "{moderator} suspended group {profile}": "", + "{moderator} suspended profile {profile}": "", + "{nb} km": "", + "{numberOfCategories} selected": "已選取 {numberOfCategories}", + "{number} members": "{number} 名成員", + "{number} memberships": "", + "{number} organized events": "", + "{number} participations": "", + "{number} posts": "沒有貼文|一篇貼文|{number} 篇貼文", + "{number} seats left": "", + "{old_group_name} was renamed to {group}.": "", + "{profile} (by default)": "", + "{profile} added the member {member}.": "", + "{profile} approved {member}'s membership.": "", + "{profile} archived the discussion {discussion}.": "", + "{profile} created the discussion {discussion}.": "", + "{profile} created the folder {resource}.": "", + "{profile} created the group {group}.": "", + "{profile} created the resource {resource}.": "", + "{profile} deleted the discussion {discussion}.": "", + "{profile} deleted the folder {resource}.": "", + "{profile} deleted the resource {resource}.": "", + "{profile} demoted {member} to an unknown role.": "", + "{profile} demoted {member} to moderator.": "", + "{profile} demoted {member} to simple member.": "", + "{profile} excluded member {member}.": "", + "{profile} moved the folder {resource} into {new_path}.": "", + "{profile} moved the folder {resource} to the root folder.": "", + "{profile} moved the resource {resource} into {new_path}.": "", + "{profile} moved the resource {resource} to the root folder.": "", + "{profile} posted a comment on the event {event}.": "", + "{profile} promoted {member} to administrator.": "", + "{profile} promoted {member} to an unknown role.": "", + "{profile} promoted {member} to moderator.": "", + "{profile} quit the group.": "", + "{profile} rejected {member}'s membership request.": "", + "{profile} renamed the discussion from {old_discussion} to {discussion}.": "", + "{profile} renamed the folder from {old_resource_title} to {resource}.": "", + "{profile} renamed the resource from {old_resource_title} to {resource}.": "", + "{profile} replied to a comment on the event {event}.": "", + "{profile} replied to the discussion {discussion}.": "", + "{profile} updated the group {group}.": "", + "{profile} updated the member {member}.": "", + "{resultsCount} results found": "找不到結果|找到一項結果|找到 {resultsCount} 項結果", + "{timezoneLongName} ({timezoneShortName})": "", + "{title} ({count} todos)": "", + "{username} was invited to {group}": "", + "© The OpenStreetMap Contributors": "© OpenStreetMap 貢獻者們" +}); diff --git a/src/context.js b/src/context.js new file mode 100644 index 0000000..424772d --- /dev/null +++ b/src/context.js @@ -0,0 +1,190 @@ +const LANGUAGES = { + ar: "اَلْعَرَبِيَّةُ", + be: "Беларуская мова", + bn: "বাংলা", + ca: "Català", + cs: "Čeština", + cy: "Cymraeg", + da: "Dansk", + de: "Deutch", + dsb: "", + en_US: "English (US)", + eo: "Esperanto", + es: "Español", + eu: "", + fa: "فارسی", + fi: "Suomi", + fr_FR: "Français", + gd: "Gàidhlig", + gl: "Galego", + he: "עברית‎", + hr: "Hrvatski", + hu: "Magyar nyelv", + id: "bahasa Indonesia", + it: "Italiano", + ja: "日本語", + kab: "", + kn: "", + ko: "한국어", + nl: "Nederlands", + nn: "Norsk Nynorsk", + oc: "Occitan", + pl: "Polski", + pt_BR: "Português brasileiro", + pt: "Português", + ru: "Русский язык", + sl: "Slovenščina", + sv: "Svenska", + th: "ภาษาไทย", + tr: "Türkçe", + tt: "", + zh_Hans: "简体字", + zh_Hant: "繁體字" +}; +const LANG_FALLBACK = "en_US"; + +class Context { + lang; + langMessages; + langLoaded; + ready; + + init() { + if (this.initialized) { + return; + } + var lang = sessionStorage.getItem("lang"); + if (lang && LANGUAGES[lang]) { + var newLang = sessionStorage.getItem("newLang"); + if (newLang && LANGUAGES[newLang]) { + this.lang = newLang; + sessionStorage.removeItem("newLang"); + this.loadLanguage(); + } else { + this.lang = lang; + this.loadLanguage(); + } + } else { + var languages = navigator.languages; + var found = false; + for (var i = 0; i < languages.length; i++) { + var lang = languages[i].replace("-", "_"); + if (LANGUAGES[lang]) { + this.lang = lang; + this.loadLanguage(); + found = true; + break; + } + } + if (!found) { + this.lang = LANG_FALLBACK; + this.loadLanguage(); + } + } + var user = sessionStorage.getItem("user"); + if (user) { + var rawUser = JSON.parse(user); + this.user = User.fromData(rawUser.host, rawUser.data); + } + var hostConfig = sessionStorage.getItem("host"); + if (hostConfig) { + var rawConfig = JSON.parse(hostConfig); + this.hostConfig = HostConfig.fromData(rawConfig.host, rawConfig.data); + } + this.initialized = true; + } + loadLanguage() { + if (this.langMessages) { + return; + } + var lang = this.lang; + if (!LANGUAGES[lang]) { + lang = LANG_FALLBACK; + } + // Use