123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992 |
- /* No comment provided by engineer. */
- "%@ invitation" = "%@ uitnodiging";
- /* {app name} is not installed */
- "%@ not installed" = "%@ niet geïnstalleerd";
- /* {app name} version not supported */
- "%@ version not supported" = "%@ versie niet ondersteund";
- /* No comment provided by engineer. */
- "%d days ago" = "%d dagen geleden";
- /* No comment provided by engineer. */
- "%d hours ago" = "%d uur geleden";
- /* No comment provided by engineer. */
- "%d minutes ago" = "%d minuten geleden";
- /* Votes in a poll */
- "%d votes" = "%d votes";
- /* No comment provided by engineer. */
- "%ld notifications" = "%ld notifications";
- /* No comment provided by engineer. */
- "%ld participants" = "%ld deelnemers";
- /* No comment provided by engineer. */
- "1 day" = "1 dag";
- /* No comment provided by engineer. */
- "1 hour" = "1 uur";
- /* No comment provided by engineer. */
- "1 week" = "1 week";
- /* No comment provided by engineer. */
- "30 minutes" = "30 minuten";
- /* No comment provided by engineer. */
- "4 hours" = "4 uur";
- /* No comment provided by engineer. */
- "4 weeks" = "4 weeks";
- /* No comment provided by engineer. */
- "8 hours" = "8 uur";
- /* No comment provided by engineer. */
- "@-mentions only" = "Alleen @-vermeldingen";
- /* No comment provided by engineer. */
- "[Unknown username]" = "[Onbekende gebruikersnaam]";
- /* No comment provided by engineer. */
- "About" = "Over";
- /* No comment provided by engineer. */
- "Accept" = "Accept";
- /* No comment provided by engineer. */
- "Account" = "Account";
- /* No comment provided by engineer. */
- "Account already added" = "Account al toegevoegd";
- /* No comment provided by engineer. */
- "Account not configured" = "Account niet geconfigureerd";
- /* No comment provided by engineer. */
- "Accounts" = "Accounts";
- /* No comment provided by engineer. */
- "Accuracy" = "Nauwkeurigheid";
- /* No comment provided by engineer. */
- "Add" = "Toevoegen";
- /* No comment provided by engineer. */
- "Add (%lu)" = "Toevoegen (%lu)";
- /* No comment provided by engineer. */
- "Add account" = "Account toevoegen";
- /* No comment provided by engineer. */
- "Add an internal note about this ban" = "Add an internal note about this ban";
- /* No comment provided by engineer. */
- "Add answer" = "Add answer";
- /* No comment provided by engineer. */
- "Add participants" = "Deelnemers toevoegen";
- /* No comment provided by engineer. */
- "Add reaction" = "Voeg een bericht toe";
- /* No comment provided by engineer. */
- "Add to favorites" = "Toevoegen aan favorieten";
- /* No comment provided by engineer. */
- "Added note to self" = "Added note to self";
- /* No comment provided by engineer. */
- "Adding a mention will only notify users that did not read the message yet" = "Adding a mention will only notify users that did not read the message yet";
- /* No comment provided by engineer. */
- "Address" = "Adres";
- /* No comment provided by engineer. */
- "Advanced" = "Geavanceerd";
- /* No comment provided by engineer. */
- "AirPlay button" = "AirPlay knop";
- /* 'All' meaning 'All conversations' */
- "All" = "All";
- /* No comment provided by engineer. */
- "All messages" = "Alle berichten";
- /* No comment provided by engineer. */
- "All messages were deleted" = "Alle berichten zijn verwijderd";
- /* No comment provided by engineer. */
- "All notifications are muted" = "Alle meldingen zijn gedempt";
- /* No comment provided by engineer. */
- "Allow guests" = "Sta gasten toe";
- /* '@all' should not be translated */
- "Allow participants to mention @all" = "Allow participants to mention @all";
- /* No comment provided by engineer. */
- "Allow to dial-in without a pin" = "Allow to dial-in without a pin";
- /* '{Microphone, Camera, ...} access is allowed' */
- "Allowed" = "Toegelaten";
- /* No comment provided by engineer. */
- "Alphabetical order" = "Alfabetische volgorde";
- /* No comment provided by engineer. */
- "Also open to guest app users" = "Ook open voor gastgebruikers van de app";
- /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
- "An administrator added you and %ld more participants" = "An administrator added you and %ld more participants";
- /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
- "An administrator added you and {user0}" = "An administrator added you and {user0}";
- /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "An administrator added {user0} and %ld more participants" = "An administrator added {user0} and %ld more participants";
- /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "An administrator added {user0} and {user1}" = "An administrator added {user0} and {user1}";
- /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
- "An administrator demoted you and %ld more participants from moderators" = "An administrator demoted you and %ld more participants from moderators";
- /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
- "An administrator demoted you and {user0} from moderators" = "An administrator demoted you and {user0} from moderators";
- /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "An administrator demoted {user0} and %ld more participants from moderators" = "An administrator demoted {user0} and %ld more participants from moderators";
- /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "An administrator demoted {user0} and {user1} from moderators" = "An administrator demoted {user0} and {user1} from moderators";
- /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
- "An administrator promoted you and %ld more participants to moderators" = "An administrator promoted you and %ld more participants to moderators";
- /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
- "An administrator promoted you and {user0} to moderators" = "An administrator promoted you and {user0} to moderators";
- /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "An administrator promoted {user0} and %ld more participants to moderators" = "An administrator promoted {user0} and %ld more participants to moderators";
- /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "An administrator promoted {user0} and {user1} to moderators" = "An administrator promoted {user0} and {user1} to moderators";
- /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
- "An administrator removed you and %ld more participants" = "An administrator removed you and %ld more participants";
- /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
- "An administrator removed you and {user0}" = "An administrator removed you and {user0}";
- /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "An administrator removed {user0} and %ld more participants" = "An administrator removed {user0} and %ld more participants";
- /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "An administrator removed {user0} and {user1}" = "An administrator removed {user0} and {user1}";
- /* No comment provided by engineer. */
- "An error occurred changing privacy setting" = "Fout tijdens wijzigen privacy-instelling";
- /* No comment provided by engineer. */
- "An error occurred changing read status setting" = "Fout tijdens wijzigen lees-status instelling";
- /* No comment provided by engineer. */
- "An error occurred changing typing privacy setting" = "An error occurred changing typing privacy setting";
- /* No comment provided by engineer. */
- "An error occurred downloading the picture" = "An error occurred downloading the picture";
- /* No comment provided by engineer. */
- "An error occurred removing profile image" = "Er trad een fout op bij het verwijderen van de profielafbeelding";
- /* No comment provided by engineer. */
- "An error occurred setting address" = "Er trad een fout op bij het instellen van het adres";
- /* No comment provided by engineer. */
- "An error occurred setting email address" = "Er trad een fout op bij het instellen van het e-mailadres";
- /* No comment provided by engineer. */
- "An error occurred setting phone number" = "Er trad een fout op bij het instellen telefoonnummer";
- /* No comment provided by engineer. */
- "An error occurred setting profile image" = "Er trad een fout op bij het instellen van de profielafbeelding";
- /* No comment provided by engineer. */
- "An error occurred setting Twitter account" = "Er trad een fout op bij het instellen van het Twitter-account";
- /* No comment provided by engineer. */
- "An error occurred setting user name" = "Er trad een fout op bij het instellen gebruikersnaam";
- /* No comment provided by engineer. */
- "An error occurred setting website" = "Er trad een fout op bij het instellen van de website";
- /* No comment provided by engineer. */
- "An error occurred trying to translate message" = "An error occurred trying to translate message";
- /* No comment provided by engineer. */
- "An error occurred while adding %@ to the room" = "Er trad een fout op bij het toevoegen van %@aan de ruimte";
- /* No comment provided by engineer. */
- "An error occurred while adding a reaction to a message" = "An error occurred while adding a reaction to a message";
- /* No comment provided by engineer. */
- "An error occurred while adding note" = "An error occurred while adding note";
- /* No comment provided by engineer. */
- "An error occurred while clearing status message" = "Er trad een fout op bij het verwijderen van het status bericht";
- /* No comment provided by engineer. */
- "An error occurred while creating the poll" = "An error occurred while creating the poll";
- /* No comment provided by engineer. */
- "An error occurred while deleting the message" = "Er trad een fout op bij het verwijderen van het bericht";
- /* No comment provided by engineer. */
- "An error occurred while opening the file %@" = "Er trad een fout op bij het openen van bestand %@";
- /* No comment provided by engineer. */
- "An error occurred while removing a reaction from a message" = "An error occurred while removing a reaction from a message";
- /* No comment provided by engineer. */
- "An error occurred while removing the avatar" = "An error occurred while removing the avatar";
- /* No comment provided by engineer. */
- "An error occurred while sending the message" = "Fout tijdens verzenden van het bericht";
- /* No comment provided by engineer. */
- "An error occurred while setting \(formattedPhoneNumber) as phone number" = "An error occurred while setting \(formattedPhoneNumber) as phone number";
- /* No comment provided by engineer. */
- "An error occurred while setting description" = "An error occurred while setting description";
- /* No comment provided by engineer. */
- "An error occurred while setting phone number" = "An error occurred while setting phone number";
- /* No comment provided by engineer. */
- "An error occurred while setting status message" = "Er trad een fout op bij het instellen van het status bericht";
- /* No comment provided by engineer. */
- "An error occurred while setting the avatar" = "An error occurred while setting the avatar";
- /* No comment provided by engineer. */
- "An error occurred while sharing the file" = "Fout tijdens delen van het bestand";
- /* No comment provided by engineer. */
- "an hour" = "een uur";
- /* Alice and Bob */
- "and" = "and";
- /* Alice, Bob, Charlie and 3 others are typing… */
- "and %ld others are typing…" = "and %ld others are typing…";
- /* Alice, Bob, Charlie and 1 other is typing… */
- "and 1 other is typing…" = "and 1 other is typing…";
- /* No comment provided by engineer. */
- "Answer" = "Answer";
- /* No comment provided by engineer. */
- "Answers" = "Answers";
- /* No comment provided by engineer. */
- "App" = "App";
- /* No comment provided by engineer. */
- "App is outdated" = "App is outdated";
- /* No comment provided by engineer. */
- "Appear offline" = "Toon als afwezig";
- /* Alice and Bob are typing… */
- "are typing…" = "are typing…";
- /* No comment provided by engineer. */
- "Ask a question" = "Ask a question";
- /* No comment provided by engineer. */
- "Attachments allowed?" = "Attachments allowed?";
- /* No comment provided by engineer. */
- "Audio options" = "Audio options";
- /* No comment provided by engineer. */
- "Audios" = "Audios";
- /* No comment provided by engineer. */
- "Away" = "Afwezig";
- /* Ban a user/guest */
- "Ban" = "Ban";
- /* e.g. Ban John Doe */
- "Ban %@" = "Ban %@";
- /* No comment provided by engineer. */
- "Ban participant" = "Ban participant";
- /* Date and time of ban creation */
- "Banned by:" = "Banned by:";
- /* No comment provided by engineer. */
- "Banned users and guests" = "Banned users and guests";
- /* No comment provided by engineer. */
- "bot" = "bot";
- /* No comment provided by engineer. */
- "Cached files" = "Cached files";
- /* No comment provided by engineer. */
- "Cached images" = "Cached images";
- /* No comment provided by engineer. */
- "Call notification sent" = "Call notification sent";
- /* No comment provided by engineer. */
- "Call recording enabled?" = "Call recording enabled?";
- /* No comment provided by engineer. */
- "Call recording failed. Please contact your administrator" = "Call recording failed. Please contact your administrator";
- /* No comment provided by engineer. */
- "Call recording is starting" = "Call recording is starting";
- /* No comment provided by engineer. */
- "Call recording started" = "Call recording started";
- /* No comment provided by engineer. */
- "Call recording stopped" = "Call recording stopped";
- /* No comment provided by engineer. */
- "Call without notification" = "Call without notification";
- /* No comment provided by engineer. */
- "CallKit supported?" = "CallKit supported?";
- /* No comment provided by engineer. */
- "Calls" = "Gesprekken";
- /* No comment provided by engineer. */
- "Calls enabled?" = "Calls enabled?";
- /* No comment provided by engineer. */
- "Calls from an old account were received." = "Calls from an old account were received.";
- /* No comment provided by engineer. */
- "Calls from old accounts" = "Calls from old accounts";
- /* No comment provided by engineer. */
- "Camera" = "Camera";
- /* No comment provided by engineer. */
- "Camera access" = "Camera access";
- /* No comment provided by engineer. */
- "Camera access is not allowed. Check your settings." = "Cameratoegang is niet toegestaan. Controleer je instellingen.";
- /* No comment provided by engineer. */
- "Camera disabled" = "Camera uitgeschakeld";
- /* No comment provided by engineer. */
- "Camera enabled" = "Camera ingeschakeld";
- /* No comment provided by engineer. */
- "Can create conversations?" = "Can create conversations?";
- /* No comment provided by engineer. */
- "Cancel" = "Annuleren";
- /* No comment provided by engineer. */
- "Cancelled call from another account" = "Gesprek vanaf een ander account geannuleerd";
- /* No comment provided by engineer. */
- "Cannot share to conversation" = "Cannot share to conversation";
- /* No comment provided by engineer. */
- "Capabilities" = "Mogelijkheden";
- /* No comment provided by engineer. */
- "Change password" = "Wijzig wachtwoord";
- /* No comment provided by engineer. */
- "Change your vote" = "Change your vote";
- /* No comment provided by engineer. */
- "Chat" = "Chat";
- /* No comment provided by engineer. */
- "Chat messages" = "Chatberichten";
- /* No comment provided by engineer. */
- "Clear cache" = "Cache leegmaken";
- /* No comment provided by engineer. */
- "Clear reminder" = "Clear reminder";
- /* No comment provided by engineer. */
- "Clear status message" = "Statusbericht wissen";
- /* No comment provided by engineer. */
- "Clear status message after" = "Statusbericht wissen na";
- /* No comment provided by engineer. */
- "Close" = "Sluit";
- /* No comment provided by engineer. */
- "Configuration" = "Configuratie";
- /* No comment provided by engineer. */
- "Confirm and hide warning" = "Confirm and hide warning";
- /* No comment provided by engineer. */
- "Connecting to %@ …" = "Verbinden met %@ ...";
- /* No comment provided by engineer. */
- "Connecting to the call …" = "Verbinden met het gesprek ...";
- /* No comment provided by engineer. */
- "Contact access" = "Contact access";
- /* No comment provided by engineer. */
- "Contact access has been denied" = "Contactpersoon toegang geweigerd";
- /* No comment provided by engineer. */
- "Contacts" = "Contacten";
- /* No comment provided by engineer. */
- "Conversation creation failed" = "Conversation creation failed";
- /* No comment provided by engineer. */
- "Conversation details" = "Conversation details";
- /* No comment provided by engineer. */
- "Conversation name" = "Gespreksnaam";
- /* No comment provided by engineer. */
- "Conversation name cannot be empty" = "Gespreksnaam mag niet leeg zijn";
- /* No comment provided by engineer. */
- "Conversation not found" = "Gesprek niet gevonden.";
- /* No comment provided by engineer. */
- "Conversation not found or not joined" = "Gesprek niet gevonden of aan deelgenomen";
- /* No comment provided by engineer. */
- "Conversation settings" = "Gespreksinstellingen";
- /* No comment provided by engineer. */
- "Conversations" = "Gesprekken";
- /* No comment provided by engineer. */
- "Copy" = "Kopieër";
- /* No comment provided by engineer. */
- "Could not access camera" = "Kon camera niet gebruiken";
- /* No comment provided by engineer. */
- "Could not access microphone" = "Kon microfoon niet gebruiken";
- /* No comment provided by engineer. */
- "Could not access speech recognition" = "Could not access speech recognition";
- /* No comment provided by engineer. */
- "Could not access your location" = "Kan je locatie niet bereiken";
- /* No comment provided by engineer. */
- "Could not add participant" = "Kon deelnemer niet toevoegen";
- /* No comment provided by engineer. */
- "Could not ban participant" = "Could not ban participant";
- /* No comment provided by engineer. */
- "Could not change call notifications setting" = "Kon instelling voor oproepmeldingen niet wijzigen";
- /* No comment provided by engineer. */
- "Could not change listable scope of the conversation" = "Could not change listable scope of the conversation";
- /* No comment provided by engineer. */
- "Could not change lobby state of the conversation" = "Kon de lobby-status van het gesprek niet wijzigen";
- /* No comment provided by engineer. */
- "Could not change mention permissions of the conversation" = "Could not change mention permissions of the conversation";
- /* No comment provided by engineer. */
- "Could not change moderation permissions of the participant" = "Kon de moderatormachtiging van de deelnemer niet wijzigen";
- /* No comment provided by engineer. */
- "Could not change notifications setting" = "Kon de meldingen-instelling niet wijzigen";
- /* No comment provided by engineer. */
- "Could not change password protection settings" = "Kon de wachtwoordbeveiligingsinstelling niet wijzigen";
- /* No comment provided by engineer. */
- "Could not change read-only state of the conversation" = "Could not change read-only state of the conversation";
- /* No comment provided by engineer. */
- "Could not change sharing permissions of the conversation" = "Kon de delenmachtiging van het gesprek niet wijzigen";
- /* No comment provided by engineer. */
- "Could not change SIP state of the conversation" = "Kon de sip-status van het gesprek niet wijzigen";
- /* No comment provided by engineer. */
- "Could not clear chat history" = "Kon chatgeschiedenis niet wissen";
- /* No comment provided by engineer. */
- "Could not clear status message" = "Kon status bericht niet verwijderen ";
- /* No comment provided by engineer. */
- "Could not delete conversation" = "Kon gesprek niet verwijderen";
- /* No comment provided by engineer. */
- "Could not get available languages" = "Could not get available languages";
- /* No comment provided by engineer. */
- "Could not join %@ call" = "Kon niet deelnemen aan %@ gesprek";
- /* No comment provided by engineer. */
- "Could not join call with %@" = "Kon niet deelnemen aan gesprek met %@";
- /* No comment provided by engineer. */
- "Could not join conversation" = "Could not join conversation";
- /* No comment provided by engineer. */
- "Could not leave conversation" = "Kon het gesprek niet verlaten";
- /* No comment provided by engineer. */
- "Could not remove participant" = "Kon deelnemer niet verwijderen";
- /* No comment provided by engineer. */
- "Could not rename the conversation" = "Kon het gesprek niet hernoemen";
- /* No comment provided by engineer. */
- "Could not resend email invitations" = "Kon de e-mailuitnodigingen niet opnieuw vesrsturen";
- /* No comment provided by engineer. */
- "Could not send call notification" = "Could not send call notification";
- /* No comment provided by engineer. */
- "Could not send the message" = "Kon het bericht niet versturen";
- /* No comment provided by engineer. */
- "Could not set conversation description" = "Could not set conversation description";
- /* No comment provided by engineer. */
- "Could not set conversation name" = "Kon gespreksnaam niet instellen";
- /* No comment provided by engineer. */
- "Could not set message expiration time" = "Could not set message expiration time";
- /* No comment provided by engineer. */
- "Could not set phone number" = "Kon telefoonnummer niet instellen";
- /* No comment provided by engineer. */
- "Could not set status message" = "Kon status bericht niet instellen";
- /* No comment provided by engineer. */
- "Could not share file" = "Kon bestand niet delen";
- /* No comment provided by engineer. */
- "Create" = "Creëren";
- /* No comment provided by engineer. */
- "Create a new conversation" = "Creëer een nieuw gesprek";
- /* No comment provided by engineer. */
- "Create or join a conversation" = "Create or join a conversation";
- /* No comment provided by engineer. */
- "Create poll" = "Peiling aanmaken";
- /* No comment provided by engineer. */
- "Creating poll failed" = "Creating poll failed";
- /* No comment provided by engineer. */
- "Credentials for this account were no longer valid" = "Inloggegevens van dit account zijn niet meer geldig";
- /* name of a moderator who banned a participant */
- "Date:" = "Date:";
- /* No comment provided by engineer. */
- "days" = "dagen";
- /* No comment provided by engineer. */
- "Deck cards" = "Deck cards";
- /* No comment provided by engineer. */
- "Default" = "Standaard";
- /* No comment provided by engineer. */
- "Delete" = "Verwijderen";
- /* Short version for confirmation button. Complete text is 'Delete all messages'. */
- "Delete all" = "Alles verwijderen";
- /* No comment provided by engineer. */
- "Delete all messages" = "Alle berichten verwijderen";
- /* No comment provided by engineer. */
- "Delete conversation" = "Verwijder gesprek";
- /* No comment provided by engineer. */
- "Deleted user" = "Deleted user";
- /* No comment provided by engineer. */
- "Deleting message" = "Bericht aan het verwijderen";
- /* No comment provided by engineer. */
- "Demote from moderator" = "Degradeer van moderator";
- /* '{Microphone, Camera, ...} access is denied' */
- "Denied" = "Geweigerd";
- /* No comment provided by engineer. */
- "Description" = "Beschrijving";
- /* No comment provided by engineer. */
- "Description cannot be longer than 500 characters" = "Description cannot be longer than 500 characters";
- /* No comment provided by engineer. */
- "detected" = "detected";
- /* No comment provided by engineer. */
- "Detecting language" = "Detecting language";
- /* No comment provided by engineer. */
- "Diagnostics" = "Diagnostiek";
- /* No comment provided by engineer. */
- "Disable blur" = "Disable blur";
- /* No comment provided by engineer. */
- "Disable speaker" = "Disable speaker";
- /* No comment provided by engineer. */
- "Disconnected" = "Niet verbonden";
- /* No comment provided by engineer. */
- "Dismiss" = "Negeren";
- /* No comment provided by engineer. */
- "Dismiss notification" = "Handel melding af";
- /* No comment provided by engineer. */
- "Do not disturb" = "Niet storen";
- /* No comment provided by engineer. */
- "Do you really want to clear the file cache?" = "Do you really want to clear the file cache?";
- /* No comment provided by engineer. */
- "Do you really want to clear the image cache?" = "Do you really want to clear the image cache?";
- /* No comment provided by engineer. */
- "Do you really want to delete all messages in this conversation?" = "Wil je dat alle berichten in dit gesprek echt worden verwijderd?";
- /* No comment provided by engineer. */
- "Do you really want to delete this conversation?" = "Wil je dit gesprek echt verwijderen?";
- /* No comment provided by engineer. */
- "Do you really want to end this poll?" = "Do you really want to end this poll?";
- /* No comment provided by engineer. */
- "Do you really want to log out from this account?" = "Wil je echt uit dit account uitloggen?";
- /* No comment provided by engineer. */
- "Do you really want to remove this account?" = "Wil je dit account echt opheffen?";
- /* No comment provided by engineer. */
- "Do you want to connect to the server anyway?" = "Wil je toch verbinding maken met de server?";
- /* No comment provided by engineer. */
- "Do you want to enable your camera?" = "Wil je je camera inschakelen?";
- /* No comment provided by engineer. */
- "Do you want to join this call?" = "Wil je deelnemen aan dit gesprek?";
- /* No comment provided by engineer. */
- "Do you want to share '%@' in the conversation?" = "Wil je '%@' delen binnen het gesprek?";
- /* No comment provided by engineer. */
- "Do you want to stop the recording?" = "Do you want to stop the recording?";
- /* No comment provided by engineer. */
- "Don't clear" = "Niet wissen";
- /* No comment provided by engineer. */
- "Double tap to change accounts or add a new one" = "Dubbeltikken om van account te wisselen of om een nieuw toe te voegen";
- /* No comment provided by engineer. */
- "Double tap to dismiss authentication dialog" = "Double tap to dismiss authentication dialog";
- /* No comment provided by engineer. */
- "Double tap to dismiss sharing options" = "Dubbeltikken om deelopties te stoppen";
- /* No comment provided by engineer. */
- "Double tap to edit profile" = "Dubbeltikken om profiel te bewerken";
- /* No comment provided by engineer. */
- "Double tap to enable or disable the camera" = "Dubbeltikken om de camera in of uit te schakelen";
- /* No comment provided by engineer. */
- "Double tap to enable or disable the microphone" = "Dubbeltikken om de microfoon in of uit te schakelen";
- /* No comment provided by engineer. */
- "Double tap to enable or disable the speaker" = "Dubbeltikken om de speaker in of uit te schakelen";
- /* No comment provided by engineer. */
- "Double tap to end editing profile" = "Dubbeltikken om profielbewerking af te sluiten";
- /* No comment provided by engineer. */
- "Double tap to go to conversation information" = "Dubbeltikken om gespreksinformatie te zien";
- /* No comment provided by engineer. */
- "Double tap to go to user profile and application settings" = "Dubbeltikken om naar gebruikersprofiel en app instellingen te gaan";
- /* No comment provided by engineer. */
- "Double tap to hang up the call" = "Dubbeltikken om gesprek te beëindigen";
- /* No comment provided by engineer. */
- "Double tap to lower hand" = "Double tap to lower hand";
- /* No comment provided by engineer. */
- "Double tap to open file browser" = "Dubbeltikken om bestandsbrowser te openen";
- /* No comment provided by engineer. */
- "Double tap to select different audio routes" = "Double tap to select different audio routes";
- /* No comment provided by engineer. */
- "Double tap to send message" = "Dubbeltikken om bericht te versturen";
- /* No comment provided by engineer. */
- "Double tap to share with selected conversations" = "Dubbeltikken om de delen met geselecteerde gesprekken";
- /* No comment provided by engineer. */
- "Double tap to show more actions" = "Double tap to show more actions";
- /* No comment provided by engineer. */
- "Double tap to show or hide chat view" = "Dubbeltikken om de chat te tonen of verbergen";
- /* No comment provided by engineer. */
- "Double tap to start a video call" = "Dubbeltikken om video-gesprek te starten";
- /* No comment provided by engineer. */
- "Double tap to start a voice call" = "Dubbeltikken om voice-gesprek te starten";
- /* No comment provided by engineer. */
- "Double tap to stop recording" = "Double tap to stop recording";
- /* No comment provided by engineer. */
- "Double tap to upgrade this voice call to a video call" = "Dubbeltikken om dit voice-gesprek te upgraden naar een video-gesprek";
- /* No comment provided by engineer. */
- "Duplicate session" = "Dubbele sessie";
- /* Edit a message or room participants */
- "Edit" = "Bewerken";
- /* A message was edited */
- "edited" = "edited";
- /* A message was edited by ... */
- "Edited by" = "Edited by";
- /* A message was edited by ... */
- "edited by" = "edited by";
- /* No comment provided by engineer. */
- "Editing Message" = "Bewerken bericht";
- /* No comment provided by engineer. */
- "Either you don't have chat permission or the conversation is read-only." = "Either you don't have chat permission or the conversation is read-only.";
- /* No comment provided by engineer. */
- "Email" = "E-mailadres";
- /* No comment provided by engineer. */
- "Enable" = "Inschakelen";
- /* No comment provided by engineer. */
- "Enable blur" = "Enable blur";
- /* No comment provided by engineer. */
- "Enable screensharing" = "Enable screensharing";
- /* No comment provided by engineer. */
- "Enable speaker" = "Enable speaker";
- /* No comment provided by engineer. */
- "End call" = "End call";
- /* No comment provided by engineer. */
- "End call for everyone" = "End call for everyone";
- /* No comment provided by engineer. */
- "End poll" = "End poll";
- /* No comment provided by engineer. */
- "Error occurred when creating a reminder" = "Error occurred when creating a reminder";
- /* No comment provided by engineer. */
- "Error occurred while editing a message" = "Error occurred while editing a message";
- /* External signaling used */
- "External" = "Extern";
- /* No comment provided by engineer. */
- "Failed to accept invitation" = "Failed to accept invitation";
- /* No comment provided by engineer. */
- "Failed to clear reminder" = "Failed to clear reminder";
- /* No comment provided by engineer. */
- "Failed to connect to %@" = "Kon niet verbinden met %@";
- /* No comment provided by engineer. */
- "Failed to forward message" = "Kon bericht niet doorsturen";
- /* No comment provided by engineer. */
- "Failed to reject invitation" = "Failed to reject invitation";
- /* No comment provided by engineer. */
- "Failed to send message" = "Kon bericht niet versturen";
- /* No comment provided by engineer. */
- "Failed to share recording" = "Failed to share recording";
- /* No comment provided by engineer. */
- "Failed to unban selected entry" = "Failed to unban selected entry";
- /* No comment provided by engineer. */
- "Federated" = "Gefedereerd";
- /* No comment provided by engineer. */
- "Fetching status …" = "Ophalen status ...";
- /* Filename of a file */
- "File" = "File";
- /* No comment provided by engineer. */
- "Files" = "Bestanden";
- /* No comment provided by engineer. */
- "For password reset and notifications" = "Voor wachtwoordherstel en meldingen";
- /* No comment provided by engineer. */
- "Format" = "Formaat";
- /* No comment provided by engineer. */
- "Forward" = "Doorsturen";
- /* No comment provided by engineer. */
- "Forward to" = "Doorsturen aan";
- /* 'From' which language user wants to translate text */
- "From" = "From";
- /* from Alice at nextcloud.local */
- "from %@ at %@" = "from %1$@ at %2$@";
- /* No comment provided by engineer. */
- "Full name" = "Volledige naam";
- /* No comment provided by engineer. */
- "Get source code" = "Download sourcecode";
- /* No comment provided by engineer. */
- "GitHub API error" = "GitHub API error";
- /* Give consent to the recording of the call and join that call */
- "Give consent and join call" = "Give consent and join call";
- /* No comment provided by engineer. */
- "guest" = "gast";
- /* No comment provided by engineer. */
- "Guest" = "Gast";
- /* No comment provided by engineer. */
- "Guests access" = "Gasttoegang";
- /* No comment provided by engineer. */
- "Guests app enabled?" = "Guests app enabled?";
- /* No comment provided by engineer. */
- "Hang up" = "Ophangen";
- /* No comment provided by engineer. */
- "hours" = "uren";
- /* No comment provided by engineer. */
- "If you delete the conversation, it will also be deleted for %@" = "Als je het gesprek verwijdert, wordt het ook verwijderd voor %@";
- /* No comment provided by engineer. */
- "If you delete the conversation, it will also be deleted for all other participants." = "Als je het gesprek verwijdert, wordt het ook verwijderd voor alle andere deelnemers.";
- /* No comment provided by engineer. */
- "If you enable your camera, this call will be interrupted for a few seconds." = "Als je de camera activeert, wordt het gesprek enkele seconden onderbroken.";
- /* No comment provided by engineer. */
- "If you're using multiple servers, you need to check all of them." = "If you're using multiple servers, you need to check all of them.";
- /* No comment provided by engineer. */
- "Images, files, voice messages…" = "Images, files, voice messages…";
- /* No comment provided by engineer. */
- "Import account" = "Importeer account";
- /* No comment provided by engineer. */
- "in" = "in";
- /* No comment provided by engineer. */
- "Include calls in call history" = "Include calls in call history";
- /* Internal signaling used */
- "Internal" = "Intern";
- /* Internal note about why a user/guest was banned */
- "Internal note" = "Internal note";
- /* No comment provided by engineer. */
- "Invalid server address" = "Ongeldig serveradres";
- /* No comment provided by engineer. */
- "Invisible" = "Verborgen";
- /* No comment provided by engineer. */
- "Invitation resent" = "Uitnodiging opnieuw verzonden.";
- /* No comment provided by engineer. */
- "Invitations resent" = "Uitnodigingen opnieuw verzonden";
- /* Alice is typing… */
- "is typing…" = "is typing…";
- /* It seems that {app name} is not installed in your server. */
- "It seems that %@ is not installed in your server." = "Het lijkt erop dat%@ niet is geïnstalleerd op jouw server.";
- /* No comment provided by engineer. */
- "It seems that there is no internet connection." = "Het lijkt erop dat er geen internetverbinding is.";
- /* No comment provided by engineer. */
- "Join a conversation or start a new one" = "Doe mee met een gesprek, of start een nieuw";
- /* No comment provided by engineer. */
- "Join call (audio only)" = "Deelnemen aan gesprek (alleen audio)";
- /* No comment provided by engineer. */
- "Join call with video" = "Deelnemen aan gesprek met video";
- /* No comment provided by engineer. */
- "Join open conversations" = "Join open conversations";
- /* Last subscription to the push notification server */
- "Last subscription" = "Last subscription";
- /* No comment provided by engineer. */
- "Last sync" = "Laatste sync";
- /* Remind me later today about that message */
- "Later today" = "Later today";
- /* No comment provided by engineer. */
- "Leave" = "Verlaat";
- /* No comment provided by engineer. */
- "Leave conversation" = "Verlaat een gesprek";
- /* No comment provided by engineer. */
- "less than a minute ago" = "minder dan een minuut geleden";
- /* No comment provided by engineer. */
- "Link https://…" = "Link https://…";
- /* No comment provided by engineer. */
- "Linked file" = "Gelinkt bestand";
- /* No comment provided by engineer. */
- "Load more results" = "Laad meer resultaten";
- /* No comment provided by engineer. */
- "Lobby" = "Lobby";
- /* No comment provided by engineer. */
- "Lobby is still active and you're not a moderator" = "Lobby is nog steeds actief en je bent geen moderator";
- /* No comment provided by engineer. */
- "Local" = "Lokaal";
- /* No comment provided by engineer. */
- "Location" = "Locatie";
- /* No comment provided by engineer. */
- "Location access" = "Location access";
- /* No comment provided by engineer. */
- "Location service has been denied. Check your settings." = "Locatie-services geweigerd. Controleer de instellingen.";
- /* No comment provided by engineer. */
- "Location service is not enabled" = "Location service is not enabled";
- /* No comment provided by engineer. */
- "Locations" = "Locaties";
- /* No comment provided by engineer. */
- "Lock conversation" = "Gesprek vergrendelen";
- /* No comment provided by engineer. */
- "Log in" = "Inloggen";
- /* No comment provided by engineer. */
- "Log out" = "Afmelden";
- /* No comment provided by engineer. */
- "Logged out" = "Uitgelogd";
- /* No comment provided by engineer. */
- "Lower hand" = "Hand omlaag";
- /* TRANSLATORS this is used when no meeting start time is set and the meeting will be started manually */
- "Manual" = "Handmatig";
- /* No comment provided by engineer. */
- "Mark as read" = "Markeren als gelezen";
- /* No comment provided by engineer. */
- "Mark as unread" = "Markeren als ongelezen";
- /* No comment provided by engineer. */
- "Match system contacts" = "Verifieer systeemcontacten";
- /* No comment provided by engineer. */
- "Media" = "Media";
- /* No comment provided by engineer. */
- "Meeting ID" = "Meeting-ID";
- /* No comment provided by engineer. */
- "Meeting settings" = "Vergaderingsinstellingen";
- /* 'Mentioned' meaning 'Mentioned conversations' */
- "Mentioned" = "Mentioned";
- /* No comment provided by engineer. */
- "Message copied" = "Bericht gekopieerd";
- /* No comment provided by engineer. */
- "Message could not be deleted because it is too old" = "Het bericht kon niet worden verwijderd omdat het te oud is";
- /* No comment provided by engineer. */
- "Message deleted successfully" = "Bericht succesvol verwijderd";
- /* No comment provided by engineer. */
- "Message deleted successfully, but Matterbridge is configured and the message might already be distributed to other services" = "Het bericht is succesvol verwijderd, maar Matterbridge is ingesteld en het bericht is mogelijk al gedistribueerd naar andere services";
- /* No comment provided by engineer. */
- "Message expiration" = "Message expiration";
- /* No comment provided by engineer. */
- "Message expiration time" = "Message expiration time";
- /* No comment provided by engineer. */
- "Messages" = "Berichten";
- /* No comment provided by engineer. */
- "Microphone" = "Microfoon";
- /* No comment provided by engineer. */
- "Microphone access" = "Microphone access";
- /* No comment provided by engineer. */
- "Microphone access is not allowed. Check your settings." = "Microfoontoegang is niet toegestaan. Controleer je instellingen.";
- /* No comment provided by engineer. */
- "Microphone disabled" = "Microfoon uitgeschakeld";
- /* No comment provided by engineer. */
- "Microphone enabled" = "Microfoon ingeschakeld";
- /* No comment provided by engineer. */
- "minutes" = "minuten";
- /* No comment provided by engineer. */
- "Missed call from" = "Gesprek gemist van";
- /* No comment provided by engineer. */
- "Missing phone number information" = "Ontbrekende telefoonnummer informatie";
- /* The signaling mode used */
- "Mode" = "Modus";
- /* No comment provided by engineer. */
- "moderator" = "moderator";
- /* No comment provided by engineer. */
- "Modification date" = "Wijzigingsdatum";
- /* No comment provided by engineer. */
- "More actions" = "Meer acties";
- /* No comment provided by engineer. */
- "Multiple answers" = "Multiple answers";
- /* No comment provided by engineer. */
- "Mute all notifications" = "Geluid van alle meldingen uitschakelen";
- /* No comment provided by engineer. */
- "My location" = "Mijn locatie";
- /* No comment provided by engineer. */
- "Name" = "Naam";
- /* No comment provided by engineer. */
- "Nearby places" = "Plaatsen dichtbij";
- /* No comment provided by engineer. */
- "Network available" = "Netwerk beschikbaar";
- /* No comment provided by engineer. */
- "Network not available" = "Netwerk niet beschikbaar";
- /* Never subscribed to the push notification server */
- "Never subscribed" = "Never subscribed";
- /* No comment provided by engineer. */
- "New conversation" = "Nieuw gesprek";
- /* No comment provided by engineer. */
- "New poll" = "New poll";
- /* Remind me next week about that message */
- "Next week" = "Next week";
- /* No comment provided by engineer. */
- "Nextcloud server not found" = "Nextcloud server niet gevonden";
- /* No comment provided by engineer. */
- "No" = "Nee";
- /* No comment provided by engineer. */
- "No actions available" = "No actions available";
- /* No comment provided by engineer. */
- "No banned users or guests" = "No banned users or guests";
- /* No comment provided by engineer. */
- "No description provided" = "Geen beschrijving opgegeven";
- /* No comment provided by engineer. */
- "No files in here" = "Hier zijn geen bestanden";
- /* No comment provided by engineer. */
- "No messages yet, start the conversation!" = "Nog geen berichten, start de discussie!";
- /* No comment provided by engineer. */
- "No participants found" = "Geen deelnemers gevonden";
- /* No comment provided by engineer. */
- "No permission to join this conversation" = "No permission to join this conversation";
- /* No comment provided by engineer. */
- "No response from server" = "Geen reactie van server";
- /* No comment provided by engineer. */
- "No results found" = "Geen resultaten gevonden";
- /* No comment provided by engineer. */
- "No shared items" = "No shared items";
- /* '{Microphone, Camera, ...} access was not requested' */
- "Not requested" = "Not requested";
- /* No comment provided by engineer. */
- "Not supported" = "Not supported";
- /* No comment provided by engineer. */
- "Note to self" = "Note to self";
- /* Internal note for moderators, usually a reason for this ban */
- "Note:" = "Note:";
- /* No comment provided by engineer. */
- "Notifications" = "Meldingen";
- /* No comment provided by engineer. */
- "Notifications app enabled?" = "Notifications app enabled?";
- /* No comment provided by engineer. */
- "Notifications: %@" = "Meldingen: %@";
- /* No comment provided by engineer. */
- "Off" = "Uit";
- /* No comment provided by engineer. */
- "Offline" = "Off-line";
- /* No comment provided by engineer. */
- "Offline, only showing downloaded messages" = "Offline, toont alleen al opgehaalde berichten";
- /* No comment provided by engineer. */
- "OK" = "OK";
- /* Will be used as the caller name when a VoIP notification can't be decrypted */
- "Old account" = "Old account";
- /* No comment provided by engineer. */
- "Once a conversation is left, to rejoin a closed conversation, an invite is needed. An open conversation can be rejoined at any time." = "Als een gesprek verlaten wordt is om naar een gesprek terug te keren een uitnodiging nodig. Naar een open gesprek kan te alle tijden teruggekeerd worden.";
- /* No comment provided by engineer. */
- "Online" = "Online";
- /* No comment provided by engineer. */
- "Online status" = "Online status";
- /* No comment provided by engineer. */
- "Only normal chat messages can be deleted" = "Alleen normale chatberichten kunnen worden verwijderd";
- /* No comment provided by engineer. */
- "Only synchronize to trusted servers" = "Alleen synchroniseren met vertrouwde servers";
- /* No comment provided by engineer. */
- "Only visible to people matched via phone number integration" = "Alleen zichtbaar voor mensen gematcht zijn via telefoonnummerintegratie ";
- /* No comment provided by engineer. */
- "Only visible to people on this instance and guests" = "Alleen zichtbaar voor gebruikers op deze server en gasten";
- /* No comment provided by engineer. */
- "Open" = "Open";
- /* No comment provided by engineer. */
- "Open app settings" = "Open app settings";
- /* No comment provided by engineer. */
- "Open conversation to registered users" = "Open gesprek voor geregistreerde gebruikers";
- /* TRANSLATORS 'Open conversations' as a type of conversation. 'Open conversations' are conversations that can be found by other users */
- "Open conversations" = "Open gesprekken";
- /* No comment provided by engineer. */
- "Open in %@" = "Openen in %@";
- /* No comment provided by engineer. */
- "Other Accounts" = "Other Accounts";
- /* No comment provided by engineer. */
- "Others" = "Anderen";
- /* Owner of a repository */
- "Owner" = "Eigenaar";
- /* No comment provided by engineer. */
- "Participants" = "Participants";
- /* No comment provided by engineer. */
- "Password" = "Wachtwoord";
- /* No comment provided by engineer. */
- "Pending invitations" = "Pending invitations";
- /* No comment provided by engineer. */
- "Phone number" = "Telefoonnummer";
- /* No comment provided by engineer. */
- "Phone number integration" = "Telefoonnummer-integratie";
- /* No comment provided by engineer. */
- "Phone number set successfully" = "Telefoonnummer succesvol ingesteld";
- /* No comment provided by engineer. */
- "Photo Library" = "Fotobibliotheek";
- /* No comment provided by engineer. */
- "Photo library access" = "Photo library access";
- /* No comment provided by engineer. */
- "Pick date & time" = "Pick date & time";
- /* No comment provided by engineer. */
- "Please check that you entered a valid server address." = "Controleer of je het geldige serveradres hebt ingevuld";
- /* No comment provided by engineer. */
- "Please check that you entered the correct Nextcloud server address." = "Controleer of je het juiste Nextcloud serveradres hebt opgegeven.";
- /* No comment provided by engineer. */
- "Please contact your system administrator." = "Please contact your system administrator.";
- /* Please update your server with the latest {app name} version available. */
- "Please update your server with the latest %@ version available." = "Werk je server bij met de laatst beschikbare %@ versie";
- /* No comment provided by engineer. */
- "Please update." = "Please update.";
- /* No comment provided by engineer. */
- "Poll" = "Poll";
- /* No comment provided by engineer. */
- "Poll results" = "Poll results";
- /* No comment provided by engineer. */
- "Polls" = "Peilingen";
- /* No comment provided by engineer. */
- "Preview" = "Voorbeeld";
- /* No comment provided by engineer. */
- "Privacy" = "Privacy";
- /* No comment provided by engineer. */
- "Private" = "Privé";
- /* No comment provided by engineer. */
- "Private poll" = "Private poll";
- /* No comment provided by engineer. */
- "Profile" = "Profiel";
- /* No comment provided by engineer. */
- "Profile picture" = "Profielafbeelding";
- /* No comment provided by engineer. */
- "Promote to moderator" = "Promoveer tot moderator";
- /* No comment provided by engineer. */
- "Published" = "Gepubliceerd";
- /* No comment provided by engineer. */
- "Push notifications" = "Push meldingen";
- /* No comment provided by engineer. */
- "Question" = "Question";
- /* No comment provided by engineer. */
- "Raise hand" = "Hand opsteken";
- /* No comment provided by engineer. */
- "Reachable?" = "Reachable?";
- /* No comment provided by engineer. */
- "Reactions" = "Reacties";
- /* No comment provided by engineer. */
- "Read status" = "Lees status";
- /* No comment provided by engineer. */
- "Received call from an old account" = "Received call from an old account";
- /* No comment provided by engineer. */
- "Record voice message" = "Opnemen gesproken bericht";
- /* No comment provided by engineer. */
- "Recording" = "Opnemen";
- /* No comment provided by engineer. */
- "Recording consent is required" = "Recording consent is required";
- /* No comment provided by engineer. */
- "Recording consent required for joining the call" = "Recording consent required for joining the call";
- /* No comment provided by engineer. */
- "Recordings" = "Opnames";
- /* No comment provided by engineer. */
- "Redo" = "Opnieuw doen";
- /* No comment provided by engineer. */
- "Reference API supported?" = "Reference API supported?";
- /* No comment provided by engineer. */
- "Reject" = "Reject";
- /* No comment provided by engineer. */
- "Reminder was successfully cleared" = "Reminder was successfully cleared";
- /* No comment provided by engineer. */
- "Reminder was successfully set" = "Reminder was successfully set";
- /* No comment provided by engineer. */
- "Remote server is unreachable" = "Remote server is unreachable";
- /* No comment provided by engineer. */
- "Remove" = "Verwijder";
- /* No comment provided by engineer. */
- "Remove account" = "Verwijder account";
- /* No comment provided by engineer. */
- "Remove from favorites" = "Verwijderen uit favorieten";
- /* No comment provided by engineer. */
- "Remove group and members" = "Verwijderen groep en leden";
- /* No comment provided by engineer. */
- "Remove old duplicate entries and leave only the most recent entries." = "Remove old duplicate entries and leave only the most recent entries.";
- /* No comment provided by engineer. */
- "Remove participant" = "Verwijder deelnemer";
- /* No comment provided by engineer. */
- "Remove password" = "Verwijder wachtwoord";
- /* No comment provided by engineer. */
- "Remove team and members" = "Remove team and members";
- /* No comment provided by engineer. */
- "Reply" = "Antwoord";
- /* No comment provided by engineer. */
- "Reply privately" = "Antwoord privé";
- /* Name of a repository */
- "Repo" = "Repo";
- /* No comment provided by engineer. */
- "Resend" = "Herzenden";
- /* No comment provided by engineer. */
- "Resend invitation" = "Opnieuw verzenden uitnodiging";
- /* No comment provided by engineer. */
- "Resend invitations" = "Opnieuw verzenden uitnodigingen";
- /* Results of a poll */
- "Results" = "Resultaten";
- /* No comment provided by engineer. */
- "Retry" = "Opnieuw proberen";
- /* Save conversation description */
- "Save" = "Opslaan";
- /* No comment provided by engineer. */
- "Say hi to your friends and colleagues!" = "Zeg hallo tegen je vrienden en collega's!";
- /* No comment provided by engineer. */
- "Scanning QR Codes is not supported on this device." = "Het scannen van QR-codes wordt niet ondersteund op dit apparaat.";
- /* No comment provided by engineer. */
- "Screensharing stopped" = "Screensharing stopped";
- /* No comment provided by engineer. */
- "Search" = "Zoeken";
- /* No comment provided by engineer. */
- "Search for places" = "Zoeken naar plaatsen";
- /* No comment provided by engineer. */
- "Select language" = "Select language";
- /* No comment provided by engineer. */
- "Send" = "Versturen";
- /* No comment provided by engineer. */
- "Send a reaction" = "Send a reaction";
- /* No comment provided by engineer. */
- "Send call notification" = "Verstuur gespreksmelding";
- /* No comment provided by engineer. */
- "Send message" = "Verstuur bericht";
- /* No comment provided by engineer. */
- "Send without notification" = "Send without notification";
- /* No comment provided by engineer. */
- "Send/Accept" = "Versturen/Accepteren";
- /* A message has been sent without notifications */
- "Sent without notification" = "Sent without notification";
- /* No comment provided by engineer. */
- "Server" = "Server";
- /* No comment provided by engineer. */
- "Server address https://…" = "Serveradres https://…";
- /* No comment provided by engineer. */
- "Server is currently in maintenance mode" = "Server bevindt zich momenteel in onderhoudsmodus";
- /* No comment provided by engineer. */
- "Set" = "Instellen";
- /* No comment provided by engineer. */
- "Set new password" = "Set new password";
- /* No comment provided by engineer. */
- "Set new password:" = "Instellen nieuw wachtwoord:";
- /* No comment provided by engineer. */
- "Set password" = "Sla wachtwoord op";
- /* No comment provided by engineer. */
- "Set password:" = "Instellen wachtwoord:";
- /* Remind me later about that message */
- "Set reminder" = "Set reminder";
- /* No comment provided by engineer. */
- "Set status message" = "Statusbericht instellen";
- /* No comment provided by engineer. */
- "Settings" = "Instellingen";
- /* No comment provided by engineer. */
- "Share" = "Delen";
- /* No comment provided by engineer. */
- "Share a file from your Nextcloud" = "Deel een bestand vanuit jouw Nextcloud";
- /* No comment provided by engineer. */
- "Share current location" = "Deel huidige locatie";
- /* No comment provided by engineer. */
- "Share link" = "Deel link";
- /* No comment provided by engineer. */
- "Share location" = "Deel locatie";
- /* Share the location of a pin that has been dropped in a map view */
- "Share pin location" = "Deel deze pinlocatie";
- /* No comment provided by engineer. */
- "Share to chat" = "Share to chat";
- /* No comment provided by engineer. */
- "Share with" = "Delen met";
- /* No comment provided by engineer. */
- "Shared items" = "Shared items";
- /* No comment provided by engineer. */
- "Shared location" = "Gedeelde locatie";
- /* No comment provided by engineer. */
- "Sharing to a federated conversation is not supported." = "Sharing to a federated conversation is not supported.";
- /* No comment provided by engineer. */
- "Show more…" = "Show more…";
- /* No comment provided by engineer. */
- "Signaling" = "Signaling";
- /* No comment provided by engineer. */
- "SIP dial-in" = "SIP inbelfunctie";
- /* No comment provided by engineer. */
- "Skip" = "Overslaan";
- /* No comment provided by engineer. */
- "Slide to cancel" = "Schuiven om te annuleren";
- /* No comment provided by engineer. */
- "Some messages not shown, will be downloaded when online" = "Sommige berichten worden niet getoond, worden opgehaald wanner online";
- /* No comment provided by engineer. */
- "Source code" = "Source code";
- /* No comment provided by engineer. */
- "Speaker" = "Speaker";
- /* No comment provided by engineer. */
- "Speaker disabled" = "Speaker uitgeschakeld";
- /* No comment provided by engineer. */
- "Speaker enabled" = "Speaker ingeschakeld";
- /* No comment provided by engineer. */
- "Speech recognition access is not allowed. Check your settings." = "Speech recognition access is not allowed. Check your settings.";
- /* No comment provided by engineer. */
- "Speech recognition failed" = "Speech recognition failed";
- /* No comment provided by engineer. */
- "Start recording" = "Start recording";
- /* No comment provided by engineer. */
- "Start time" = "Begintijd";
- /* No comment provided by engineer. */
- "Status" = "Status";
- /* No comment provided by engineer. */
- "Status message" = "Statusbericht";
- /* Action to 'Stop' a recording */
- "Stop" = "Stop";
- /* No comment provided by engineer. */
- "Stop recording" = "Stop recording";
- /* No comment provided by engineer. */
- "Stop screensharing" = "Stop screensharing";
- /* No comment provided by engineer. */
- "STUN servers" = "STUN servers";
- /* No comment provided by engineer. */
- "Submit vote" = "Submit vote";
- /* No comment provided by engineer. */
- "Switch account" = "Switch account";
- /* No comment provided by engineer. */
- "Switching to another conversation …" = "Switching to another conversation …";
- /* No comment provided by engineer. */
- "Synchronize to trusted servers and the global and public address book" = "Synchroniseren met vertrouwde servers en het wereldwijde en openbare adresboek";
- /* No comment provided by engineer. */
- "Talk" = "Talk";
- /* No comment provided by engineer. */
- "Tap and hold to record a voice message" = "Tikken en ingedrukt houden om een gesproken bericht op te nemen";
- /* No comment provided by engineer. */
- "Tap and hold to record a voice message, release the button to send it." = "Tikken en ingedrukt houden om een gesproken bericht op te nemen, laat knop los om te versturen.";
- /* No comment provided by engineer. */
- "The app is too old and no longer supported by this server." = "The app is too old and no longer supported by this server.";
- /* No comment provided by engineer. */
- "The call has been running for one hour" = "The call has been running for one hour";
- /* No comment provided by engineer. */
- "The call might be recorded" = "The call might be recorded";
- /* No comment provided by engineer. */
- "The password is wrong" = "Het wachtwoord is verkeerd.";
- /* No comment provided by engineer. */
- "The recording might include your voice, video from camera, and screen share. Your consent is required before joining the call." = "The recording might include your voice, video from camera, and screen share. Your consent is required before joining the call.";
- /* No comment provided by engineer. */
- "There is no account for user %@ in server %@ configured in this app." = "Er is geen account voor gebruiker %1$@ in server %2$@ geconfigureerd in deze app.";
- /* No comment provided by engineer. */
- "This call is being recorded" = "This call is being recorded";
- /* No comment provided by engineer. */
- "This conversation is read-only" = "Dit gesprek is alleen-lezen";
- /* The meeting start time will be displayed after this text e.g (This meeting is scheduled for tomorrow at 10:00) */
- "This meeting is scheduled for" = "Deze meeting staat gepland voor:";
- /* No comment provided by engineer. */
- "This usually indicates that this device was previously used for an account, which was not properly removed from the server." = "This usually indicates that this device was previously used for an account, which was not properly removed from the server.";
- /* No comment provided by engineer. */
- "This week" = "Deze week";
- /* Remind me this weekend about that message */
- "This weekend" = "This weekend";
- /* No comment provided by engineer. */
- "This will impact the functionality of this app. Please review your settings." = "This will impact the functionality of this app. Please review your settings.";
- /* 'To' which language user wants to translate text */
- "To" = "To";
- /* No comment provided by engineer. */
- "To resolve this issue, use the web interface and go to \"Settings -> Security\"." = "To resolve this issue, use the web interface and go to \"Settings -> Security\".";
- /* TRANSLATORS this is for sending something 'to' a user. E.g. 'To: John Doe' */
- "To:" = "Aan:";
- /* No comment provided by engineer. */
- "Today" = "Vandaag";
- /* Remind me tomorrow about that message */
- "Tomorrow" = "Tomorrow";
- /* TRANSLATORS this is for transcribing a voice message to text */
- "Transcribe" = "Transcribe";
- /* TRANSLATORS transcript of a voice-message */
- "Transcript" = "Transcript";
- /* No comment provided by engineer. */
- "Translate" = "Vertalen";
- /* No comment provided by engineer. */
- "Translation" = "Translation";
- /* No comment provided by engineer. */
- "Translation failed" = "Translation failed";
- /* No comment provided by engineer. */
- "TURN servers" = "TURN servers";
- /* No comment provided by engineer. */
- "Twitter" = "Twitter";
- /* No comment provided by engineer. */
- "Twitter handle @…" = "Twitter inlognaam @…";
- /* No comment provided by engineer. */
- "Typing indicator" = "Typing indicator";
- /* No comment provided by engineer. */
- "Typing indicators are only available when using a high performance backend (HPB)" = "Typing indicators are only available when using a high performance backend (HPB)";
- /* No comment provided by engineer. */
- "Unable to get context of the message" = "Unable to get context of the message";
- /* No comment provided by engineer. */
- "Unable to get conversation of the message" = "Unable to get conversation of the message";
- /* No comment provided by engineer. */
- "Unable to load file" = "Kon het bestand niet laden";
- /* No comment provided by engineer. */
- "Unable to open file" = "Kon het bestand niet openen";
- /* No comment provided by engineer. */
- "Unavailable" = "Niet beschikbaar";
- /* No comment provided by engineer. */
- "Unban" = "Unban";
- /* No comment provided by engineer. */
- "Under \"Devices & sessions\" check if there are duplicate entries for the same device." = "Under \"Devices & sessions\" check if there are duplicate entries for the same device.";
- /* No comment provided by engineer. */
- "Undo" = "Ongedaan maken";
- /* No comment provided by engineer. */
- "Undo Typing" = "Invoer ongedaan maken";
- /* No comment provided by engineer. */
- "Unknown" = "Onbekend";
- /* No comment provided by engineer. */
- "Unknown error" = "Onbekende fout";
- /* No comment provided by engineer. */
- "Unknown error occurred" = "Onbekende fout opgetreden!";
- /* 'Unread' meaning 'Unread conversations' */
- "Unread" = "Unread";
- /* No comment provided by engineer. */
- "Unread mentions" = "Geen ongelezen vermeldingen";
- /* No comment provided by engineer. */
- "Unread messages" = "Ongelezen berichten";
- /* No comment provided by engineer. */
- "Update" = "Update";
- /* No comment provided by engineer. */
- "Upload failed" = "Uploaden mislukt";
- /* No comment provided by engineer. */
- "Uploading %ld elements" = "Uploaden %ld elementen";
- /* No comment provided by engineer. */
- "Uploading 1 element" = "Uploaden 1 element";
- /* No comment provided by engineer. */
- "User" = "Gebruiker";
- /* No comment provided by engineer. */
- "User profile and settings" = "Gebruikersprofiel en instellingen";
- /* No comment provided by engineer. */
- "User status supported?" = "User status supported?";
- /* No comment provided by engineer. */
- "Users" = "Gebruikers";
- /* No comment provided by engineer. */
- "Version" = "Versie";
- /* No comment provided by engineer. */
- "Video call" = "Videogesprek";
- /* No comment provided by engineer. */
- "Video quality" = "Videokwaliteit";
- /* Conversation visibility settings */
- "Visibility" = "Visibility";
- /* No comment provided by engineer. */
- "Voice call" = "Gesprek";
- /* No comment provided by engineer. */
- "Voice messages" = "Voice messages";
- /* No comment provided by engineer. */
- "Waiting for %@ to join call …" = "Wachten op deelname van %@ …";
- /* No comment provided by engineer. */
- "Waiting for others to join call …" = "Wachten op deelname van anderen ...";
- /* No comment provided by engineer. */
- "Website" = "Website";
- /* No comment provided by engineer. */
- "What is your status?" = "Wat is jouw status?";
- /* No comment provided by engineer. */
- "Write message, @ to mention someone …" = "Schrijf een bericht, @ om iemand te vermelden ...";
- /* No comment provided by engineer. */
- "Yes" = "Ja";
- /* No comment provided by engineer. */
- "Yesterday" = "Gisteren";
- /* No comment provided by engineer. */
- "You" = "Jij";
- /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate it */
- "You added {user0} and %ld more participants" = "You added {user0} and %ld more participants";
- /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "You added {user0} and {user1}" = "You added {user0} and {user1}";
- /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
- "You and %ld more participants joined the call" = "You and %ld more participants joined the call";
- /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
- "You and %ld more participants left the call" = "You and %ld more participants left the call";
- /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
- "You and {actor0} joined the call" = "You and {actor0} joined the call";
- /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
- "You and {actor0} left the call" = "You and {actor0} left the call";
- /* No comment provided by engineer. */
- "You are currently waiting in the lobby" = "Je wacht nu in de lobby";
- /* No comment provided by engineer. */
- "You are not part of any conversation" = "Je neemt geen deel aan een gesprek";
- /* No comment provided by engineer. */
- "You are not part of any conversation. Press + to start a new one." = "Je neemt geen deel aan een gesprek. Druk op + om een nieuw te starten.";
- /* No comment provided by engineer. */
- "You can set your phone number so other users will be able to find you" = "Je kunt je telefoonnummer instellen zodat andere gebruikers je kunnen vinden";
- /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "You demoted {user0} and %ld more participants from moderators" = "You demoted {user0} and %ld more participants from moderators";
- /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "You demoted {user0} and {user1} from moderators" = "You demoted {user0} and {user1} from moderators";
- /* No comment provided by engineer. */
- "You have %ld pending invitations" = "You have %ld pending invitations";
- /* No comment provided by engineer. */
- "You have been muted by a moderator" = "Je bent gedempt door een moderator";
- /* No comment provided by engineer. */
- "You need to promote a new moderator before you can leave %@." = "Je moet eerst een nieuwe moderator kiezen voordat je het gesprek kan verlaten %@.";
- /* No comment provided by engineer. */
- "You need to promote a new moderator before you can leave this conversation" = "Je moet een nieuwe moderator promoveren voordat je het gesprek kunt verlaten.";
- /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "You promoted {user0} and %ld more participants to moderators" = "You promoted {user0} and %ld more participants to moderators";
- /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "You promoted {user0} and {user1} to moderators" = "You promoted {user0} and {user1} to moderators";
- /* No comment provided by engineer. */
- "You received a new notification" = "Je hebt een nieuwe melding";
- /* No comment provided by engineer. */
- "You reconnected to the call" = "You reconnected to the call";
- /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate it */
- "You removed {user0} and %ld more participants" = "You removed {user0} and %ld more participants";
- /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "You removed {user0} and {user1}" = "You removed {user0} and {user1}";
- /* No comment provided by engineer. */
- "Your email address" = "Je e-mailadres";
- /* No comment provided by engineer. */
- "Your phone number" = "Je telefoonnummer";
- /* No comment provided by engineer. */
- "Your PIN" = "Je PIN";
- /* No comment provided by engineer. */
- "Your postal address" = "Je postadres";
- /* 'Zammad' is a product name */
- "Zammad API error" = "Zammad API error";
- /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "{actor0} added you and %ld more participants" = "{actor0} added you and %ld more participants";
- /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
- "{actor0} added you and {user0}" = "{actor0} added you and {user0}";
- /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "{actor0} added {user0} and %ld more participants" = "{actor0} added {user0} and %ld more participants";
- /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "{actor0} added {user0} and {user1}" = "{actor0} added {user0} and {user1}";
- /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "{actor0} and %ld more participants joined the call" = "{actor0} and %ld more participants joined the call";
- /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "{actor0} and %ld more participants left the call" = "{actor0} and %ld more participants left the call";
- /* Please put {actor0} and {actor1} placeholders in the correct position on the translated text but do not translate them */
- "{actor0} and {actor1} joined the call" = "{actor0} and {actor1} joined the call";
- /* Please put {actor0} and {actor1} placeholders in the correct position on the translated text but do not translate them */
- "{actor0} and {actor1} left the call" = "{actor0} and {actor1} left the call";
- /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "{actor0} demoted you and %ld more participants from moderators" = "{actor0} demoted you and %ld more participants from moderators";
- /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
- "{actor0} demoted you and {user0} from moderators" = "{actor0} demoted you and {user0} from moderators";
- /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "{actor0} demoted {user0} and %ld more participants from moderators" = "{actor0} demoted {user0} and %ld more participants from moderators";
- /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "{actor0} demoted {user0} and {user1} from moderators" = "{actor0} demoted {user0} and {user1} from moderators";
- /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "{actor0} promoted you and %ld more participants to moderators" = "{actor0} promoted you and %ld more participants to moderators";
- /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
- "{actor0} promoted you and {user0} to moderators" = "{actor0} promoted you and {user0} to moderators";
- /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "{actor0} promoted {user0} and %ld more participants to moderators" = "{actor0} promoted {user0} and %ld more participants to moderators";
- /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "{actor0} promoted {user0} and {user1} to moderators" = "{actor0} promoted {user0} and {user1} to moderators";
- /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
- "{actor0} reconnected to the call" = "{actor0} reconnected to the call";
- /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "{actor0} removed you and %ld more participants" = "{actor0} removed you and %ld more participants";
- /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
- "{actor0} removed you and {user0}" = "{actor0} removed you and {user0}";
- /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
- "{actor0} removed {user0} and %ld more participants" = "{actor0} removed {user0} and %ld more participants";
- /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
- "{actor0} removed {user0} and {user1}" = "{actor0} removed {user0} and {user1}";
- /* No comment provided by engineer. */
- "↓ New messages" = "↓ Nieuwe berichten";
|