Localizable.strings 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992
  1. /* No comment provided by engineer. */
  2. "%@ invitation" = "%@ invitation";
  3. /* {app name} is not installed */
  4. "%@ not installed" = "%@ ei asennettu";
  5. /* {app name} version not supported */
  6. "%@ version not supported" = "%@ version not supported";
  7. /* No comment provided by engineer. */
  8. "%d days ago" = "%d päivää sitten";
  9. /* No comment provided by engineer. */
  10. "%d hours ago" = "%d tuntia sitten";
  11. /* No comment provided by engineer. */
  12. "%d minutes ago" = "%d minuuttia sitten";
  13. /* Votes in a poll */
  14. "%d votes" = "%d votes";
  15. /* No comment provided by engineer. */
  16. "%ld notifications" = "%ld notifications";
  17. /* No comment provided by engineer. */
  18. "%ld participants" = "%ld osallistujaa";
  19. /* No comment provided by engineer. */
  20. "1 day" = "1 päivä";
  21. /* No comment provided by engineer. */
  22. "1 hour" = "1 tunti";
  23. /* No comment provided by engineer. */
  24. "1 week" = "1 viikko";
  25. /* No comment provided by engineer. */
  26. "30 minutes" = "30 minuuttia";
  27. /* No comment provided by engineer. */
  28. "4 hours" = "4 tuntia";
  29. /* No comment provided by engineer. */
  30. "4 weeks" = "4 viikkoa";
  31. /* No comment provided by engineer. */
  32. "8 hours" = "8 tuntia";
  33. /* No comment provided by engineer. */
  34. "@-mentions only" = "Vain @-maininnat";
  35. /* No comment provided by engineer. */
  36. "[Unknown username]" = "[Tuntematon käyttäjänimi]";
  37. /* No comment provided by engineer. */
  38. "About" = "Tietoja";
  39. /* No comment provided by engineer. */
  40. "Accept" = "Accept";
  41. /* No comment provided by engineer. */
  42. "Account" = "Tili";
  43. /* No comment provided by engineer. */
  44. "Account already added" = "Tili on jo lisätty";
  45. /* No comment provided by engineer. */
  46. "Account not configured" = "Account not configured";
  47. /* No comment provided by engineer. */
  48. "Accounts" = "Tilit";
  49. /* No comment provided by engineer. */
  50. "Accuracy" = "Tarkkuus";
  51. /* No comment provided by engineer. */
  52. "Add" = "Lisää";
  53. /* No comment provided by engineer. */
  54. "Add (%lu)" = "Lisää (%lu)";
  55. /* No comment provided by engineer. */
  56. "Add account" = "Lisää tili";
  57. /* No comment provided by engineer. */
  58. "Add an internal note about this ban" = "Add an internal note about this ban";
  59. /* No comment provided by engineer. */
  60. "Add answer" = "Lisää vastaus";
  61. /* No comment provided by engineer. */
  62. "Add participants" = "Lisää osallistujat";
  63. /* No comment provided by engineer. */
  64. "Add reaction" = "Lisää reaktio";
  65. /* No comment provided by engineer. */
  66. "Add to favorites" = "Lisää suosikkeihin";
  67. /* No comment provided by engineer. */
  68. "Added note to self" = "Added note to self";
  69. /* No comment provided by engineer. */
  70. "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";
  71. /* No comment provided by engineer. */
  72. "Address" = "Osoite";
  73. /* No comment provided by engineer. */
  74. "Advanced" = "Lisäasetukset";
  75. /* No comment provided by engineer. */
  76. "AirPlay button" = "AirPlay-painike";
  77. /* 'All' meaning 'All conversations' */
  78. "All" = "All";
  79. /* No comment provided by engineer. */
  80. "All messages" = "Kaikki viestit";
  81. /* No comment provided by engineer. */
  82. "All messages were deleted" = "Kaikki viestit poistettiin";
  83. /* No comment provided by engineer. */
  84. "All notifications are muted" = "Kaikki ilmoitukset on mykistetty";
  85. /* No comment provided by engineer. */
  86. "Allow guests" = "Salli vieraat";
  87. /* '@all' should not be translated */
  88. "Allow participants to mention @all" = "Allow participants to mention @all";
  89. /* No comment provided by engineer. */
  90. "Allow to dial-in without a pin" = "Allow to dial-in without a pin";
  91. /* '{Microphone, Camera, ...} access is allowed' */
  92. "Allowed" = "Sallittu";
  93. /* No comment provided by engineer. */
  94. "Alphabetical order" = "Aakkosjärjestys";
  95. /* No comment provided by engineer. */
  96. "Also open to guest app users" = "Also open to guest app users";
  97. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  98. "An administrator added you and %ld more participants" = "An administrator added you and %ld more participants";
  99. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  100. "An administrator added you and {user0}" = "An administrator added you and {user0}";
  101. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  102. "An administrator added {user0} and %ld more participants" = "An administrator added {user0} and %ld more participants";
  103. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  104. "An administrator added {user0} and {user1}" = "An administrator added {user0} and {user1}";
  105. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  106. "An administrator demoted you and %ld more participants from moderators" = "An administrator demoted you and %ld more participants from moderators";
  107. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  108. "An administrator demoted you and {user0} from moderators" = "An administrator demoted you and {user0} from moderators";
  109. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  110. "An administrator demoted {user0} and %ld more participants from moderators" = "An administrator demoted {user0} and %ld more participants from moderators";
  111. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  112. "An administrator demoted {user0} and {user1} from moderators" = "An administrator demoted {user0} and {user1} from moderators";
  113. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  114. "An administrator promoted you and %ld more participants to moderators" = "An administrator promoted you and %ld more participants to moderators";
  115. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  116. "An administrator promoted you and {user0} to moderators" = "An administrator promoted you and {user0} to moderators";
  117. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  118. "An administrator promoted {user0} and %ld more participants to moderators" = "An administrator promoted {user0} and %ld more participants to moderators";
  119. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  120. "An administrator promoted {user0} and {user1} to moderators" = "An administrator promoted {user0} and {user1} to moderators";
  121. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  122. "An administrator removed you and %ld more participants" = "An administrator removed you and %ld more participants";
  123. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  124. "An administrator removed you and {user0}" = "An administrator removed you and {user0}";
  125. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  126. "An administrator removed {user0} and %ld more participants" = "An administrator removed {user0} and %ld more participants";
  127. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  128. "An administrator removed {user0} and {user1}" = "An administrator removed {user0} and {user1}";
  129. /* No comment provided by engineer. */
  130. "An error occurred changing privacy setting" = "An error occurred changing privacy setting";
  131. /* No comment provided by engineer. */
  132. "An error occurred changing read status setting" = "An error occurred changing read status setting";
  133. /* No comment provided by engineer. */
  134. "An error occurred changing typing privacy setting" = "An error occurred changing typing privacy setting";
  135. /* No comment provided by engineer. */
  136. "An error occurred downloading the picture" = "An error occurred downloading the picture";
  137. /* No comment provided by engineer. */
  138. "An error occurred removing profile image" = "An error occurred removing profile image";
  139. /* No comment provided by engineer. */
  140. "An error occurred setting address" = "An error occurred setting address";
  141. /* No comment provided by engineer. */
  142. "An error occurred setting email address" = "An error occurred setting email address";
  143. /* No comment provided by engineer. */
  144. "An error occurred setting phone number" = "An error occurred setting phone number";
  145. /* No comment provided by engineer. */
  146. "An error occurred setting profile image" = "An error occurred setting profile image";
  147. /* No comment provided by engineer. */
  148. "An error occurred setting Twitter account" = "An error occurred setting Twitter account";
  149. /* No comment provided by engineer. */
  150. "An error occurred setting user name" = "An error occurred setting user name";
  151. /* No comment provided by engineer. */
  152. "An error occurred setting website" = "An error occurred setting website";
  153. /* No comment provided by engineer. */
  154. "An error occurred trying to translate message" = "An error occurred trying to translate message";
  155. /* No comment provided by engineer. */
  156. "An error occurred while adding %@ to the room" = "An error occurred while adding %@ to the room";
  157. /* No comment provided by engineer. */
  158. "An error occurred while adding a reaction to a message" = "An error occurred while adding a reaction to a message";
  159. /* No comment provided by engineer. */
  160. "An error occurred while adding note" = "An error occurred while adding note";
  161. /* No comment provided by engineer. */
  162. "An error occurred while clearing status message" = "An error occurred while clearing status message";
  163. /* No comment provided by engineer. */
  164. "An error occurred while creating the poll" = "An error occurred while creating the poll";
  165. /* No comment provided by engineer. */
  166. "An error occurred while deleting the message" = "Virhe viestiä poistaessa";
  167. /* No comment provided by engineer. */
  168. "An error occurred while opening the file %@" = "An error occurred while opening the file %@";
  169. /* No comment provided by engineer. */
  170. "An error occurred while removing a reaction from a message" = "An error occurred while removing a reaction from a message";
  171. /* No comment provided by engineer. */
  172. "An error occurred while removing the avatar" = "An error occurred while removing the avatar";
  173. /* No comment provided by engineer. */
  174. "An error occurred while sending the message" = "An error occurred while sending the message";
  175. /* No comment provided by engineer. */
  176. "An error occurred while setting \(formattedPhoneNumber) as phone number" = "An error occurred while setting \(formattedPhoneNumber) as phone number";
  177. /* No comment provided by engineer. */
  178. "An error occurred while setting description" = "An error occurred while setting description";
  179. /* No comment provided by engineer. */
  180. "An error occurred while setting phone number" = "An error occurred while setting phone number";
  181. /* No comment provided by engineer. */
  182. "An error occurred while setting status message" = "An error occurred while setting status message";
  183. /* No comment provided by engineer. */
  184. "An error occurred while setting the avatar" = "An error occurred while setting the avatar";
  185. /* No comment provided by engineer. */
  186. "An error occurred while sharing the file" = "An error occurred while sharing the file";
  187. /* No comment provided by engineer. */
  188. "an hour" = "tunti";
  189. /* Alice and Bob */
  190. "and" = "and";
  191. /* Alice, Bob, Charlie and 3 others are typing… */
  192. "and %ld others are typing…" = "and %ld others are typing…";
  193. /* Alice, Bob, Charlie and 1 other is typing… */
  194. "and 1 other is typing…" = "and 1 other is typing…";
  195. /* No comment provided by engineer. */
  196. "Answer" = "Answer";
  197. /* No comment provided by engineer. */
  198. "Answers" = "Vastaukset";
  199. /* No comment provided by engineer. */
  200. "App" = "Sovellus";
  201. /* No comment provided by engineer. */
  202. "App is outdated" = "App is outdated";
  203. /* No comment provided by engineer. */
  204. "Appear offline" = "Näytä olevan poissa";
  205. /* Alice and Bob are typing… */
  206. "are typing…" = "are typing…";
  207. /* No comment provided by engineer. */
  208. "Ask a question" = "Esitä kysymys";
  209. /* No comment provided by engineer. */
  210. "Attachments allowed?" = "Sallitaanko liitteet?";
  211. /* No comment provided by engineer. */
  212. "Audio options" = "Audio options";
  213. /* No comment provided by engineer. */
  214. "Audios" = "Audios";
  215. /* No comment provided by engineer. */
  216. "Away" = "Poissa";
  217. /* Ban a user/guest */
  218. "Ban" = "Ban";
  219. /* e.g. Ban John Doe */
  220. "Ban %@" = "Ban %@";
  221. /* No comment provided by engineer. */
  222. "Ban participant" = "Ban participant";
  223. /* Date and time of ban creation */
  224. "Banned by:" = "Banned by:";
  225. /* No comment provided by engineer. */
  226. "Banned users and guests" = "Banned users and guests";
  227. /* No comment provided by engineer. */
  228. "bot" = "bot";
  229. /* No comment provided by engineer. */
  230. "Cached files" = "Cached files";
  231. /* No comment provided by engineer. */
  232. "Cached images" = "Cached images";
  233. /* No comment provided by engineer. */
  234. "Call notification sent" = "Call notification sent";
  235. /* No comment provided by engineer. */
  236. "Call recording enabled?" = "Call recording enabled?";
  237. /* No comment provided by engineer. */
  238. "Call recording failed. Please contact your administrator" = "Call recording failed. Please contact your administrator";
  239. /* No comment provided by engineer. */
  240. "Call recording is starting" = "Call recording is starting";
  241. /* No comment provided by engineer. */
  242. "Call recording started" = "Call recording started";
  243. /* No comment provided by engineer. */
  244. "Call recording stopped" = "Call recording stopped";
  245. /* No comment provided by engineer. */
  246. "Call without notification" = "Puhelu ilman ilmoitusta";
  247. /* No comment provided by engineer. */
  248. "CallKit supported?" = "CallKit supported?";
  249. /* No comment provided by engineer. */
  250. "Calls" = "Puhelut";
  251. /* No comment provided by engineer. */
  252. "Calls enabled?" = "Calls enabled?";
  253. /* No comment provided by engineer. */
  254. "Calls from an old account were received." = "Calls from an old account were received.";
  255. /* No comment provided by engineer. */
  256. "Calls from old accounts" = "Calls from old accounts";
  257. /* No comment provided by engineer. */
  258. "Camera" = "Kamera";
  259. /* No comment provided by engineer. */
  260. "Camera access" = "Camera access";
  261. /* No comment provided by engineer. */
  262. "Camera access is not allowed. Check your settings." = "Camera access is not allowed. Check your settings.";
  263. /* No comment provided by engineer. */
  264. "Camera disabled" = "Kamera poistettu käytöstä";
  265. /* No comment provided by engineer. */
  266. "Camera enabled" = "Kamera otettu käyttöön";
  267. /* No comment provided by engineer. */
  268. "Can create conversations?" = "Can create conversations?";
  269. /* No comment provided by engineer. */
  270. "Cancel" = "Peruuta";
  271. /* No comment provided by engineer. */
  272. "Cancelled call from another account" = "Cancelled call from another account";
  273. /* No comment provided by engineer. */
  274. "Cannot share to conversation" = "Cannot share to conversation";
  275. /* No comment provided by engineer. */
  276. "Capabilities" = "Capabilities";
  277. /* No comment provided by engineer. */
  278. "Change password" = "Vaihda salasana";
  279. /* No comment provided by engineer. */
  280. "Change your vote" = "Muuta antamaasi ääntä";
  281. /* No comment provided by engineer. */
  282. "Chat" = "Keskustelu";
  283. /* No comment provided by engineer. */
  284. "Chat messages" = "Keskustelun viestit";
  285. /* No comment provided by engineer. */
  286. "Clear cache" = "Tyhjennä välimuisti";
  287. /* No comment provided by engineer. */
  288. "Clear reminder" = "Clear reminder";
  289. /* No comment provided by engineer. */
  290. "Clear status message" = "Tyhjennä tilaviesti";
  291. /* No comment provided by engineer. */
  292. "Clear status message after" = "Tyhjennä tilaviesti, kun on kulunut";
  293. /* No comment provided by engineer. */
  294. "Close" = "Sulje";
  295. /* No comment provided by engineer. */
  296. "Configuration" = "Asetukset";
  297. /* No comment provided by engineer. */
  298. "Confirm and hide warning" = "Confirm and hide warning";
  299. /* No comment provided by engineer. */
  300. "Connecting to %@ …" = "Yhdistetään kohteeseen %@…";
  301. /* No comment provided by engineer. */
  302. "Connecting to the call …" = "Yhdistetään puheluun…";
  303. /* No comment provided by engineer. */
  304. "Contact access" = "Contact access";
  305. /* No comment provided by engineer. */
  306. "Contact access has been denied" = "Contact access has been denied";
  307. /* No comment provided by engineer. */
  308. "Contacts" = "Yhteystiedot";
  309. /* No comment provided by engineer. */
  310. "Conversation creation failed" = "Conversation creation failed";
  311. /* No comment provided by engineer. */
  312. "Conversation details" = "Conversation details";
  313. /* No comment provided by engineer. */
  314. "Conversation name" = "Keskustelun nimi";
  315. /* No comment provided by engineer. */
  316. "Conversation name cannot be empty" = "Conversation name cannot be empty";
  317. /* No comment provided by engineer. */
  318. "Conversation not found" = "Keskustelua ei löydy";
  319. /* No comment provided by engineer. */
  320. "Conversation not found or not joined" = "Conversation not found or not joined";
  321. /* No comment provided by engineer. */
  322. "Conversation settings" = "Keskustelun asetukset";
  323. /* No comment provided by engineer. */
  324. "Conversations" = "Keskustelut";
  325. /* No comment provided by engineer. */
  326. "Copy" = "Kopioi";
  327. /* No comment provided by engineer. */
  328. "Could not access camera" = "Could not access camera";
  329. /* No comment provided by engineer. */
  330. "Could not access microphone" = "Could not access microphone";
  331. /* No comment provided by engineer. */
  332. "Could not access speech recognition" = "Could not access speech recognition";
  333. /* No comment provided by engineer. */
  334. "Could not access your location" = "Could not access your location";
  335. /* No comment provided by engineer. */
  336. "Could not add participant" = "Could not add participant";
  337. /* No comment provided by engineer. */
  338. "Could not ban participant" = "Could not ban participant";
  339. /* No comment provided by engineer. */
  340. "Could not change call notifications setting" = "Could not change call notifications setting";
  341. /* No comment provided by engineer. */
  342. "Could not change listable scope of the conversation" = "Could not change listable scope of the conversation";
  343. /* No comment provided by engineer. */
  344. "Could not change lobby state of the conversation" = "Could not change lobby state of the conversation";
  345. /* No comment provided by engineer. */
  346. "Could not change mention permissions of the conversation" = "Could not change mention permissions of the conversation";
  347. /* No comment provided by engineer. */
  348. "Could not change moderation permissions of the participant" = "Could not change moderation permissions of the participant";
  349. /* No comment provided by engineer. */
  350. "Could not change notifications setting" = "Could not change notifications setting";
  351. /* No comment provided by engineer. */
  352. "Could not change password protection settings" = "Could not change password protection settings";
  353. /* No comment provided by engineer. */
  354. "Could not change read-only state of the conversation" = "Could not change read-only state of the conversation";
  355. /* No comment provided by engineer. */
  356. "Could not change sharing permissions of the conversation" = "Could not change sharing permissions of the conversation";
  357. /* No comment provided by engineer. */
  358. "Could not change SIP state of the conversation" = "Could not change SIP state of the conversation";
  359. /* No comment provided by engineer. */
  360. "Could not clear chat history" = "Could not clear chat history";
  361. /* No comment provided by engineer. */
  362. "Could not clear status message" = "Could not clear status message";
  363. /* No comment provided by engineer. */
  364. "Could not delete conversation" = "Keskustelua ei voitu poistaa";
  365. /* No comment provided by engineer. */
  366. "Could not get available languages" = "Could not get available languages";
  367. /* No comment provided by engineer. */
  368. "Could not join %@ call" = "Could not join %@ call";
  369. /* No comment provided by engineer. */
  370. "Could not join call with %@" = "Could not join call with %@";
  371. /* No comment provided by engineer. */
  372. "Could not join conversation" = "Could not join conversation";
  373. /* No comment provided by engineer. */
  374. "Could not leave conversation" = "Ei voitu poistua keskustelusta";
  375. /* No comment provided by engineer. */
  376. "Could not remove participant" = "Could not remove participant";
  377. /* No comment provided by engineer. */
  378. "Could not rename the conversation" = "Could not rename the conversation";
  379. /* No comment provided by engineer. */
  380. "Could not resend email invitations" = "Could not resend email invitations";
  381. /* No comment provided by engineer. */
  382. "Could not send call notification" = "Could not send call notification";
  383. /* No comment provided by engineer. */
  384. "Could not send the message" = "Viestiä ei voitu lähettää";
  385. /* No comment provided by engineer. */
  386. "Could not set conversation description" = "Could not set conversation description";
  387. /* No comment provided by engineer. */
  388. "Could not set conversation name" = "Could not set conversation name";
  389. /* No comment provided by engineer. */
  390. "Could not set message expiration time" = "Could not set message expiration time";
  391. /* No comment provided by engineer. */
  392. "Could not set phone number" = "Could not set phone number";
  393. /* No comment provided by engineer. */
  394. "Could not set status message" = "Tilaviestiä ei voitu asettaa";
  395. /* No comment provided by engineer. */
  396. "Could not share file" = "Tiedostoa ei voitu jakaa";
  397. /* No comment provided by engineer. */
  398. "Create" = "Luo";
  399. /* No comment provided by engineer. */
  400. "Create a new conversation" = "Luo uusi keskustelu";
  401. /* No comment provided by engineer. */
  402. "Create or join a conversation" = "Create or join a conversation";
  403. /* No comment provided by engineer. */
  404. "Create poll" = "Luo kysely";
  405. /* No comment provided by engineer. */
  406. "Creating poll failed" = "Creating poll failed";
  407. /* No comment provided by engineer. */
  408. "Credentials for this account were no longer valid" = "Tämän tilin kirjautumistiedot eivät olleet enää kelvolliset";
  409. /* name of a moderator who banned a participant */
  410. "Date:" = "Date:";
  411. /* No comment provided by engineer. */
  412. "days" = "päivää";
  413. /* No comment provided by engineer. */
  414. "Deck cards" = "Deck cards";
  415. /* No comment provided by engineer. */
  416. "Default" = "Oletus";
  417. /* No comment provided by engineer. */
  418. "Delete" = "Poista";
  419. /* Short version for confirmation button. Complete text is 'Delete all messages'. */
  420. "Delete all" = "Poista kaikki";
  421. /* No comment provided by engineer. */
  422. "Delete all messages" = "Poista kaikki viestit";
  423. /* No comment provided by engineer. */
  424. "Delete conversation" = "Poista keskustelu";
  425. /* No comment provided by engineer. */
  426. "Deleted user" = "Deleted user";
  427. /* No comment provided by engineer. */
  428. "Deleting message" = "Poistetaan viestiä";
  429. /* No comment provided by engineer. */
  430. "Demote from moderator" = "Alenna moderaattorista";
  431. /* '{Microphone, Camera, ...} access is denied' */
  432. "Denied" = "Estetty";
  433. /* No comment provided by engineer. */
  434. "Description" = "Kuvaus";
  435. /* No comment provided by engineer. */
  436. "Description cannot be longer than 500 characters" = "Description cannot be longer than 500 characters";
  437. /* No comment provided by engineer. */
  438. "detected" = "detected";
  439. /* No comment provided by engineer. */
  440. "Detecting language" = "Detecting language";
  441. /* No comment provided by engineer. */
  442. "Diagnostics" = "Diagnostiikka";
  443. /* No comment provided by engineer. */
  444. "Disable blur" = "Disable blur";
  445. /* No comment provided by engineer. */
  446. "Disable speaker" = "Disable speaker";
  447. /* No comment provided by engineer. */
  448. "Disconnected" = "Yhteys katkaistu";
  449. /* No comment provided by engineer. */
  450. "Dismiss" = "Hylkää";
  451. /* No comment provided by engineer. */
  452. "Dismiss notification" = "Hylkää ilmoitus";
  453. /* No comment provided by engineer. */
  454. "Do not disturb" = "Älä häiritse";
  455. /* No comment provided by engineer. */
  456. "Do you really want to clear the file cache?" = "Do you really want to clear the file cache?";
  457. /* No comment provided by engineer. */
  458. "Do you really want to clear the image cache?" = "Do you really want to clear the image cache?";
  459. /* No comment provided by engineer. */
  460. "Do you really want to delete all messages in this conversation?" = "Haluatko varmasti poistaa kaikki viestit tästä keskustelusta?";
  461. /* No comment provided by engineer. */
  462. "Do you really want to delete this conversation?" = "Haluatko varmasti poistaa tämän keskustelun?";
  463. /* No comment provided by engineer. */
  464. "Do you really want to end this poll?" = "Do you really want to end this poll?";
  465. /* No comment provided by engineer. */
  466. "Do you really want to log out from this account?" = "Haluatko varmasti kirjautua ulos tältä tililtä?";
  467. /* No comment provided by engineer. */
  468. "Do you really want to remove this account?" = "Haluatko varmasti poistaa tämän tilin?";
  469. /* No comment provided by engineer. */
  470. "Do you want to connect to the server anyway?" = "Haluatko silti yhdistää palvelimeen?";
  471. /* No comment provided by engineer. */
  472. "Do you want to enable your camera?" = "Haluatko ottaa kameran käyttöön?";
  473. /* No comment provided by engineer. */
  474. "Do you want to join this call?" = "Haluatko liittyä tähän puheluun?";
  475. /* No comment provided by engineer. */
  476. "Do you want to share '%@' in the conversation?" = "Do you want to share '%@' in the conversation?";
  477. /* No comment provided by engineer. */
  478. "Do you want to stop the recording?" = "Do you want to stop the recording?";
  479. /* No comment provided by engineer. */
  480. "Don't clear" = "Älä tyhjennä";
  481. /* No comment provided by engineer. */
  482. "Double tap to change accounts or add a new one" = "Double tap to change accounts or add a new one";
  483. /* No comment provided by engineer. */
  484. "Double tap to dismiss authentication dialog" = "Double tap to dismiss authentication dialog";
  485. /* No comment provided by engineer. */
  486. "Double tap to dismiss sharing options" = "Double tap to dismiss sharing options";
  487. /* No comment provided by engineer. */
  488. "Double tap to edit profile" = "Double tap to edit profile";
  489. /* No comment provided by engineer. */
  490. "Double tap to enable or disable the camera" = "Double tap to enable or disable the camera";
  491. /* No comment provided by engineer. */
  492. "Double tap to enable or disable the microphone" = "Double tap to enable or disable the microphone";
  493. /* No comment provided by engineer. */
  494. "Double tap to enable or disable the speaker" = "Double tap to enable or disable the speaker";
  495. /* No comment provided by engineer. */
  496. "Double tap to end editing profile" = "Double tap to end editing profile";
  497. /* No comment provided by engineer. */
  498. "Double tap to go to conversation information" = "Double tap to go to conversation information";
  499. /* No comment provided by engineer. */
  500. "Double tap to go to user profile and application settings" = "Double tap to go to user profile and application settings";
  501. /* No comment provided by engineer. */
  502. "Double tap to hang up the call" = "Double tap to hang up the call";
  503. /* No comment provided by engineer. */
  504. "Double tap to lower hand" = "Double tap to lower hand";
  505. /* No comment provided by engineer. */
  506. "Double tap to open file browser" = "Double tap to open file browser";
  507. /* No comment provided by engineer. */
  508. "Double tap to select different audio routes" = "Double tap to select different audio routes";
  509. /* No comment provided by engineer. */
  510. "Double tap to send message" = "Double tap to send message";
  511. /* No comment provided by engineer. */
  512. "Double tap to share with selected conversations" = "Double tap to share with selected conversations";
  513. /* No comment provided by engineer. */
  514. "Double tap to show more actions" = "Double tap to show more actions";
  515. /* No comment provided by engineer. */
  516. "Double tap to show or hide chat view" = "Double tap to show or hide chat view";
  517. /* No comment provided by engineer. */
  518. "Double tap to start a video call" = "Double tap to start a video call";
  519. /* No comment provided by engineer. */
  520. "Double tap to start a voice call" = "Double tap to start a voice call";
  521. /* No comment provided by engineer. */
  522. "Double tap to stop recording" = "Double tap to stop recording";
  523. /* No comment provided by engineer. */
  524. "Double tap to upgrade this voice call to a video call" = "Double tap to upgrade this voice call to a video call";
  525. /* No comment provided by engineer. */
  526. "Duplicate session" = "Duplicate session";
  527. /* Edit a message or room participants */
  528. "Edit" = "Muokkaa";
  529. /* A message was edited */
  530. "edited" = "edited";
  531. /* A message was edited by ... */
  532. "Edited by" = "Edited by";
  533. /* A message was edited by ... */
  534. "edited by" = "edited by";
  535. /* No comment provided by engineer. */
  536. "Editing Message" = "Editing Message";
  537. /* No comment provided by engineer. */
  538. "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.";
  539. /* No comment provided by engineer. */
  540. "Email" = "Sähköposti";
  541. /* No comment provided by engineer. */
  542. "Enable" = "Ota käyttöön";
  543. /* No comment provided by engineer. */
  544. "Enable blur" = "Enable blur";
  545. /* No comment provided by engineer. */
  546. "Enable screensharing" = "Enable screensharing";
  547. /* No comment provided by engineer. */
  548. "Enable speaker" = "Enable speaker";
  549. /* No comment provided by engineer. */
  550. "End call" = "End call";
  551. /* No comment provided by engineer. */
  552. "End call for everyone" = "End call for everyone";
  553. /* No comment provided by engineer. */
  554. "End poll" = "End poll";
  555. /* No comment provided by engineer. */
  556. "Error occurred when creating a reminder" = "Error occurred when creating a reminder";
  557. /* No comment provided by engineer. */
  558. "Error occurred while editing a message" = "Error occurred while editing a message";
  559. /* External signaling used */
  560. "External" = "Ulkoinen";
  561. /* No comment provided by engineer. */
  562. "Failed to accept invitation" = "Failed to accept invitation";
  563. /* No comment provided by engineer. */
  564. "Failed to clear reminder" = "Failed to clear reminder";
  565. /* No comment provided by engineer. */
  566. "Failed to connect to %@" = "Failed to connect to %@";
  567. /* No comment provided by engineer. */
  568. "Failed to forward message" = "Failed to forward message";
  569. /* No comment provided by engineer. */
  570. "Failed to reject invitation" = "Failed to reject invitation";
  571. /* No comment provided by engineer. */
  572. "Failed to send message" = "Viestin lähetys epäonnistui";
  573. /* No comment provided by engineer. */
  574. "Failed to share recording" = "Failed to share recording";
  575. /* No comment provided by engineer. */
  576. "Failed to unban selected entry" = "Failed to unban selected entry";
  577. /* No comment provided by engineer. */
  578. "Federated" = "Federoitu";
  579. /* No comment provided by engineer. */
  580. "Fetching status …" = "Fetching status …";
  581. /* Filename of a file */
  582. "File" = "File";
  583. /* No comment provided by engineer. */
  584. "Files" = "Tiedostot";
  585. /* No comment provided by engineer. */
  586. "For password reset and notifications" = "Salasanan nollausta ja ilmoituksia varten";
  587. /* No comment provided by engineer. */
  588. "Format" = "Format";
  589. /* No comment provided by engineer. */
  590. "Forward" = "Välitä";
  591. /* No comment provided by engineer. */
  592. "Forward to" = "Forward to";
  593. /* 'From' which language user wants to translate text */
  594. "From" = "From";
  595. /* from Alice at nextcloud.local */
  596. "from %@ at %@" = "from %1$@ at %2$@";
  597. /* No comment provided by engineer. */
  598. "Full name" = "Koko nimi";
  599. /* No comment provided by engineer. */
  600. "Get source code" = "Lataa lähdekoodi";
  601. /* No comment provided by engineer. */
  602. "GitHub API error" = "GitHubin rajapintavirhe";
  603. /* Give consent to the recording of the call and join that call */
  604. "Give consent and join call" = "Give consent and join call";
  605. /* No comment provided by engineer. */
  606. "guest" = "vieras";
  607. /* No comment provided by engineer. */
  608. "Guest" = "Vieras";
  609. /* No comment provided by engineer. */
  610. "Guests access" = "Vieraiden pääsy";
  611. /* No comment provided by engineer. */
  612. "Guests app enabled?" = "Guests app enabled?";
  613. /* No comment provided by engineer. */
  614. "Hang up" = "Lopeta";
  615. /* No comment provided by engineer. */
  616. "hours" = "tuntia";
  617. /* No comment provided by engineer. */
  618. "If you delete the conversation, it will also be deleted for %@" = "If you delete the conversation, it will also be deleted for %@";
  619. /* No comment provided by engineer. */
  620. "If you delete the conversation, it will also be deleted for all other participants." = "Jos poistat keskustelun, keskustelu poistetaan myös muilta osapuolilta.";
  621. /* No comment provided by engineer. */
  622. "If you enable your camera, this call will be interrupted for a few seconds." = "If you enable your camera, this call will be interrupted for a few seconds.";
  623. /* No comment provided by engineer. */
  624. "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.";
  625. /* No comment provided by engineer. */
  626. "Images, files, voice messages…" = "Kuvat, tiedostot, ääniviestit…";
  627. /* No comment provided by engineer. */
  628. "Import account" = "Tuo tili";
  629. /* No comment provided by engineer. */
  630. "in" = "in";
  631. /* No comment provided by engineer. */
  632. "Include calls in call history" = "Include calls in call history";
  633. /* Internal signaling used */
  634. "Internal" = "Sisäinen";
  635. /* Internal note about why a user/guest was banned */
  636. "Internal note" = "Internal note";
  637. /* No comment provided by engineer. */
  638. "Invalid server address" = "Virheellinen palvelimen osoite";
  639. /* No comment provided by engineer. */
  640. "Invisible" = "Näkymätön";
  641. /* No comment provided by engineer. */
  642. "Invitation resent" = "Invitation resent";
  643. /* No comment provided by engineer. */
  644. "Invitations resent" = "Invitations resent";
  645. /* Alice is typing… */
  646. "is typing…" = "is typing…";
  647. /* It seems that {app name} is not installed in your server. */
  648. "It seems that %@ is not installed in your server." = "It seems that %@ is not installed in your server.";
  649. /* No comment provided by engineer. */
  650. "It seems that there is no internet connection." = "It seems that there is no internet connection.";
  651. /* No comment provided by engineer. */
  652. "Join a conversation or start a new one" = "Liity keskusteluun tai aloita uusi";
  653. /* No comment provided by engineer. */
  654. "Join call (audio only)" = "Join call (audio only)";
  655. /* No comment provided by engineer. */
  656. "Join call with video" = "Join call with video";
  657. /* No comment provided by engineer. */
  658. "Join open conversations" = "Join open conversations";
  659. /* Last subscription to the push notification server */
  660. "Last subscription" = "Last subscription";
  661. /* No comment provided by engineer. */
  662. "Last sync" = "Last sync";
  663. /* Remind me later today about that message */
  664. "Later today" = "Later today";
  665. /* No comment provided by engineer. */
  666. "Leave" = "Poistu";
  667. /* No comment provided by engineer. */
  668. "Leave conversation" = "Poistu keskustelusta";
  669. /* No comment provided by engineer. */
  670. "less than a minute ago" = "alle minuutti sitten";
  671. /* No comment provided by engineer. */
  672. "Link https://…" = "Linkki https://…";
  673. /* No comment provided by engineer. */
  674. "Linked file" = "Linked file";
  675. /* No comment provided by engineer. */
  676. "Load more results" = "Lataa lisää tuloksia";
  677. /* No comment provided by engineer. */
  678. "Lobby" = "Aula";
  679. /* No comment provided by engineer. */
  680. "Lobby is still active and you're not a moderator" = "Lobby is still active and you're not a moderator";
  681. /* No comment provided by engineer. */
  682. "Local" = "Paikallinen";
  683. /* No comment provided by engineer. */
  684. "Location" = "Sijainti";
  685. /* No comment provided by engineer. */
  686. "Location access" = "Location access";
  687. /* No comment provided by engineer. */
  688. "Location service has been denied. Check your settings." = "Location service has been denied. Check your settings.";
  689. /* No comment provided by engineer. */
  690. "Location service is not enabled" = "Sijaintipalvelu ei ole käytössä";
  691. /* No comment provided by engineer. */
  692. "Locations" = "Sijainnit";
  693. /* No comment provided by engineer. */
  694. "Lock conversation" = "Lukitse keskustelu";
  695. /* No comment provided by engineer. */
  696. "Log in" = "Kirjaudu";
  697. /* No comment provided by engineer. */
  698. "Log out" = "Kirjaudu ulos";
  699. /* No comment provided by engineer. */
  700. "Logged out" = "Kirjauduttu ulos";
  701. /* No comment provided by engineer. */
  702. "Lower hand" = "Laske käsi";
  703. /* TRANSLATORS this is used when no meeting start time is set and the meeting will be started manually */
  704. "Manual" = "Manuaalinen";
  705. /* No comment provided by engineer. */
  706. "Mark as read" = "Merkitse luetuksi";
  707. /* No comment provided by engineer. */
  708. "Mark as unread" = "Merkitse lukemattomaksi";
  709. /* No comment provided by engineer. */
  710. "Match system contacts" = "Match system contacts";
  711. /* No comment provided by engineer. */
  712. "Media" = "Media";
  713. /* No comment provided by engineer. */
  714. "Meeting ID" = "Tapaamisen tunniste";
  715. /* No comment provided by engineer. */
  716. "Meeting settings" = "Kokouksen asetukset";
  717. /* 'Mentioned' meaning 'Mentioned conversations' */
  718. "Mentioned" = "Mentioned";
  719. /* No comment provided by engineer. */
  720. "Message copied" = "Viesti kopioitu";
  721. /* No comment provided by engineer. */
  722. "Message could not be deleted because it is too old" = "Message could not be deleted because it is too old";
  723. /* No comment provided by engineer. */
  724. "Message deleted successfully" = "Viesti poistettu onnistuneesti";
  725. /* No comment provided by engineer. */
  726. "Message deleted successfully, but Matterbridge is configured and the message might already be distributed to other services" = "Message deleted successfully, but Matterbridge is configured and the message might already be distributed to other services";
  727. /* No comment provided by engineer. */
  728. "Message expiration" = "Viestin vanheneminen";
  729. /* No comment provided by engineer. */
  730. "Message expiration time" = "Viestin vanhenemisaika";
  731. /* No comment provided by engineer. */
  732. "Messages" = "Viestit";
  733. /* No comment provided by engineer. */
  734. "Microphone" = "Mikrofoni";
  735. /* No comment provided by engineer. */
  736. "Microphone access" = "Microphone access";
  737. /* No comment provided by engineer. */
  738. "Microphone access is not allowed. Check your settings." = "Microphone access is not allowed. Check your settings.";
  739. /* No comment provided by engineer. */
  740. "Microphone disabled" = "Mikrofoni pois käytöstä";
  741. /* No comment provided by engineer. */
  742. "Microphone enabled" = "Mikrofoni käytössä";
  743. /* No comment provided by engineer. */
  744. "minutes" = "minuuttia";
  745. /* No comment provided by engineer. */
  746. "Missed call from" = "Missed call from";
  747. /* No comment provided by engineer. */
  748. "Missing phone number information" = "Missing phone number information";
  749. /* The signaling mode used */
  750. "Mode" = "Tila";
  751. /* No comment provided by engineer. */
  752. "moderator" = "moderaattori";
  753. /* No comment provided by engineer. */
  754. "Modification date" = "Muokkauspäivämäärä";
  755. /* No comment provided by engineer. */
  756. "More actions" = "Lisää toimintoja";
  757. /* No comment provided by engineer. */
  758. "Multiple answers" = "Useita vastauksia";
  759. /* No comment provided by engineer. */
  760. "Mute all notifications" = "Mykistä kaikki ilmoitukset";
  761. /* No comment provided by engineer. */
  762. "My location" = "Minun sijaintini";
  763. /* No comment provided by engineer. */
  764. "Name" = "Nimi";
  765. /* No comment provided by engineer. */
  766. "Nearby places" = "Nearby places";
  767. /* No comment provided by engineer. */
  768. "Network available" = "Verkko saatavilla";
  769. /* No comment provided by engineer. */
  770. "Network not available" = "Verkko ei saatavilla";
  771. /* Never subscribed to the push notification server */
  772. "Never subscribed" = "Never subscribed";
  773. /* No comment provided by engineer. */
  774. "New conversation" = "Uusi keskustelu";
  775. /* No comment provided by engineer. */
  776. "New poll" = "Uusi kysely";
  777. /* Remind me next week about that message */
  778. "Next week" = "Next week";
  779. /* No comment provided by engineer. */
  780. "Nextcloud server not found" = "Nextcloud-palvelinta ei löytynyt";
  781. /* No comment provided by engineer. */
  782. "No" = "Ei";
  783. /* No comment provided by engineer. */
  784. "No actions available" = "No actions available";
  785. /* No comment provided by engineer. */
  786. "No banned users or guests" = "No banned users or guests";
  787. /* No comment provided by engineer. */
  788. "No description provided" = "Kuvausta ei määritetty";
  789. /* No comment provided by engineer. */
  790. "No files in here" = "Täällä ei ole tiedostoja";
  791. /* No comment provided by engineer. */
  792. "No messages yet, start the conversation!" = "Ei vielä viestejä, aloita keskustelu!";
  793. /* No comment provided by engineer. */
  794. "No participants found" = "Ei osallistujia löydetty";
  795. /* No comment provided by engineer. */
  796. "No permission to join this conversation" = "No permission to join this conversation";
  797. /* No comment provided by engineer. */
  798. "No response from server" = "Ei vastausta palvelimelta";
  799. /* No comment provided by engineer. */
  800. "No results found" = "Ei tuloksia";
  801. /* No comment provided by engineer. */
  802. "No shared items" = "No shared items";
  803. /* '{Microphone, Camera, ...} access was not requested' */
  804. "Not requested" = "Not requested";
  805. /* No comment provided by engineer. */
  806. "Not supported" = "Ei tuettu";
  807. /* No comment provided by engineer. */
  808. "Note to self" = "Note to self";
  809. /* Internal note for moderators, usually a reason for this ban */
  810. "Note:" = "Note:";
  811. /* No comment provided by engineer. */
  812. "Notifications" = "Ilmoitukset";
  813. /* No comment provided by engineer. */
  814. "Notifications app enabled?" = "Notifications app enabled?";
  815. /* No comment provided by engineer. */
  816. "Notifications: %@" = "Ilmoitukset: %@";
  817. /* No comment provided by engineer. */
  818. "Off" = "Pois";
  819. /* No comment provided by engineer. */
  820. "Offline" = "Poissa";
  821. /* No comment provided by engineer. */
  822. "Offline, only showing downloaded messages" = "Offline, only showing downloaded messages";
  823. /* No comment provided by engineer. */
  824. "OK" = "OK";
  825. /* Will be used as the caller name when a VoIP notification can't be decrypted */
  826. "Old account" = "Vanha tili";
  827. /* No comment provided by engineer. */
  828. "Once a conversation is left, to rejoin a closed conversation, an invite is needed. An open conversation can be rejoined at any time." = "Once a conversation is left, to rejoin a closed conversation, an invite is needed. An open conversation can be rejoined at any time.";
  829. /* No comment provided by engineer. */
  830. "Online" = "Paikalla";
  831. /* No comment provided by engineer. */
  832. "Online status" = "Online-tila";
  833. /* No comment provided by engineer. */
  834. "Only normal chat messages can be deleted" = "Only normal chat messages can be deleted";
  835. /* No comment provided by engineer. */
  836. "Only synchronize to trusted servers" = "Synkronoi vain luotetuille palveluille";
  837. /* No comment provided by engineer. */
  838. "Only visible to people matched via phone number integration" = "Only visible to people matched via phone number integration";
  839. /* No comment provided by engineer. */
  840. "Only visible to people on this instance and guests" = "Vain näkyvissä tämän instanssin ihmisille ja vieraille";
  841. /* No comment provided by engineer. */
  842. "Open" = "Open";
  843. /* No comment provided by engineer. */
  844. "Open app settings" = "Open app settings";
  845. /* No comment provided by engineer. */
  846. "Open conversation to registered users" = "Avaa keskustelu rekisteröityneille käyttäjille";
  847. /* TRANSLATORS 'Open conversations' as a type of conversation. 'Open conversations' are conversations that can be found by other users */
  848. "Open conversations" = "Avaa keskustelut";
  849. /* No comment provided by engineer. */
  850. "Open in %@" = "Avaa sovelluksella %@";
  851. /* No comment provided by engineer. */
  852. "Other Accounts" = "Other Accounts";
  853. /* No comment provided by engineer. */
  854. "Others" = "Muut";
  855. /* Owner of a repository */
  856. "Owner" = "Omistaja";
  857. /* No comment provided by engineer. */
  858. "Participants" = "Participants";
  859. /* No comment provided by engineer. */
  860. "Password" = "Salasana";
  861. /* No comment provided by engineer. */
  862. "Pending invitations" = "Pending invitations";
  863. /* No comment provided by engineer. */
  864. "Phone number" = "Puhelinnumero";
  865. /* No comment provided by engineer. */
  866. "Phone number integration" = "Puhelinnumeron integraatio";
  867. /* No comment provided by engineer. */
  868. "Phone number set successfully" = "Puhelinnumero asetettu onnistuneesti";
  869. /* No comment provided by engineer. */
  870. "Photo Library" = "Kuvakirjasto";
  871. /* No comment provided by engineer. */
  872. "Photo library access" = "Photo library access";
  873. /* No comment provided by engineer. */
  874. "Pick date & time" = "Pick date & time";
  875. /* No comment provided by engineer. */
  876. "Please check that you entered a valid server address." = "Varmista, että määritit palvelimen osoitteen oikein.";
  877. /* No comment provided by engineer. */
  878. "Please check that you entered the correct Nextcloud server address." = "Varmista, että määritit Nextcloud-palvelimen osoitteen oikein.";
  879. /* No comment provided by engineer. */
  880. "Please contact your system administrator." = "Please contact your system administrator.";
  881. /* Please update your server with the latest {app name} version available. */
  882. "Please update your server with the latest %@ version available." = "Please update your server with the latest %@ version available.";
  883. /* No comment provided by engineer. */
  884. "Please update." = "Please update.";
  885. /* No comment provided by engineer. */
  886. "Poll" = "Kysely";
  887. /* No comment provided by engineer. */
  888. "Poll results" = "Kyselyn tulokset";
  889. /* No comment provided by engineer. */
  890. "Polls" = "Kyselyt";
  891. /* No comment provided by engineer. */
  892. "Preview" = "Esikatselu";
  893. /* No comment provided by engineer. */
  894. "Privacy" = "Tietosuoja";
  895. /* No comment provided by engineer. */
  896. "Private" = "Yksityinen";
  897. /* No comment provided by engineer. */
  898. "Private poll" = "Yksityinen kysely";
  899. /* No comment provided by engineer. */
  900. "Profile" = "Profiili";
  901. /* No comment provided by engineer. */
  902. "Profile picture" = "Profiilikuva";
  903. /* No comment provided by engineer. */
  904. "Promote to moderator" = "Ylennä moderaattoriksi";
  905. /* No comment provided by engineer. */
  906. "Published" = "Julkaistu";
  907. /* No comment provided by engineer. */
  908. "Push notifications" = "Push-ilmoitukset";
  909. /* No comment provided by engineer. */
  910. "Question" = "Kysymys";
  911. /* No comment provided by engineer. */
  912. "Raise hand" = "Nosta käsi";
  913. /* No comment provided by engineer. */
  914. "Reachable?" = "Reachable?";
  915. /* No comment provided by engineer. */
  916. "Reactions" = "Reactions";
  917. /* No comment provided by engineer. */
  918. "Read status" = "Lue tila";
  919. /* No comment provided by engineer. */
  920. "Received call from an old account" = "Received call from an old account";
  921. /* No comment provided by engineer. */
  922. "Record voice message" = "Äänitä ääniviesti";
  923. /* No comment provided by engineer. */
  924. "Recording" = "Recording";
  925. /* No comment provided by engineer. */
  926. "Recording consent is required" = "Recording consent is required";
  927. /* No comment provided by engineer. */
  928. "Recording consent required for joining the call" = "Recording consent required for joining the call";
  929. /* No comment provided by engineer. */
  930. "Recordings" = "Tallenteet";
  931. /* No comment provided by engineer. */
  932. "Redo" = "Tee uudelleen";
  933. /* No comment provided by engineer. */
  934. "Reference API supported?" = "Reference API supported?";
  935. /* No comment provided by engineer. */
  936. "Reject" = "Reject";
  937. /* No comment provided by engineer. */
  938. "Reminder was successfully cleared" = "Reminder was successfully cleared";
  939. /* No comment provided by engineer. */
  940. "Reminder was successfully set" = "Reminder was successfully set";
  941. /* No comment provided by engineer. */
  942. "Remote server is unreachable" = "Remote server is unreachable";
  943. /* No comment provided by engineer. */
  944. "Remove" = "Poista";
  945. /* No comment provided by engineer. */
  946. "Remove account" = "Poista tili";
  947. /* No comment provided by engineer. */
  948. "Remove from favorites" = "Poista suosikeista";
  949. /* No comment provided by engineer. */
  950. "Remove group and members" = "Poista ryhmä ja jäsenet";
  951. /* No comment provided by engineer. */
  952. "Remove old duplicate entries and leave only the most recent entries." = "Remove old duplicate entries and leave only the most recent entries.";
  953. /* No comment provided by engineer. */
  954. "Remove participant" = "Poista osallistuja";
  955. /* No comment provided by engineer. */
  956. "Remove password" = "Poista salasana";
  957. /* No comment provided by engineer. */
  958. "Remove team and members" = "Remove team and members";
  959. /* No comment provided by engineer. */
  960. "Reply" = "Vastaa";
  961. /* No comment provided by engineer. */
  962. "Reply privately" = "Vastaa yksityisesti";
  963. /* Name of a repository */
  964. "Repo" = "Repo";
  965. /* No comment provided by engineer. */
  966. "Resend" = "Lähetä uudelleen";
  967. /* No comment provided by engineer. */
  968. "Resend invitation" = "Lähetä kutsu uudelleen";
  969. /* No comment provided by engineer. */
  970. "Resend invitations" = "Lähetä kutsut uudelleen";
  971. /* Results of a poll */
  972. "Results" = "Tulokset";
  973. /* No comment provided by engineer. */
  974. "Retry" = "Yritä uudelleen";
  975. /* Save conversation description */
  976. "Save" = "Tallenna";
  977. /* No comment provided by engineer. */
  978. "Say hi to your friends and colleagues!" = "Sano hei ystävillesi ja työkavereillesi!";
  979. /* No comment provided by engineer. */
  980. "Scanning QR Codes is not supported on this device." = "Scanning QR Codes is not supported on this device.";
  981. /* No comment provided by engineer. */
  982. "Screensharing stopped" = "Screensharing stopped";
  983. /* No comment provided by engineer. */
  984. "Search" = "Etsi";
  985. /* No comment provided by engineer. */
  986. "Search for places" = "Search for places";
  987. /* No comment provided by engineer. */
  988. "Select language" = "Select language";
  989. /* No comment provided by engineer. */
  990. "Send" = "Lähetä";
  991. /* No comment provided by engineer. */
  992. "Send a reaction" = "Send a reaction";
  993. /* No comment provided by engineer. */
  994. "Send call notification" = "Lähetä puheluilmoitus";
  995. /* No comment provided by engineer. */
  996. "Send message" = "Lähetä viesti";
  997. /* No comment provided by engineer. */
  998. "Send without notification" = "Lähetä ilman ilmoitusta";
  999. /* No comment provided by engineer. */
  1000. "Send/Accept" = "Lähetä/Hyväksy";
  1001. /* A message has been sent without notifications */
  1002. "Sent without notification" = "Sent without notification";
  1003. /* No comment provided by engineer. */
  1004. "Server" = "Palvelin";
  1005. /* No comment provided by engineer. */
  1006. "Server address https://…" = "Palvelimen osoite https://…";
  1007. /* No comment provided by engineer. */
  1008. "Server is currently in maintenance mode" = "Palvelin on parhaillaan huoltotilassa";
  1009. /* No comment provided by engineer. */
  1010. "Set" = "Aseta";
  1011. /* No comment provided by engineer. */
  1012. "Set new password" = "Set new password";
  1013. /* No comment provided by engineer. */
  1014. "Set new password:" = "Aseta uusi salasana:";
  1015. /* No comment provided by engineer. */
  1016. "Set password" = "Aseta salasana";
  1017. /* No comment provided by engineer. */
  1018. "Set password:" = "Aseta salasana:";
  1019. /* Remind me later about that message */
  1020. "Set reminder" = "Set reminder";
  1021. /* No comment provided by engineer. */
  1022. "Set status message" = "Aseta tilaviesti";
  1023. /* No comment provided by engineer. */
  1024. "Settings" = "Asetukset";
  1025. /* No comment provided by engineer. */
  1026. "Share" = "Jaa";
  1027. /* No comment provided by engineer. */
  1028. "Share a file from your Nextcloud" = "Jaa tiedosto Nextcloudista";
  1029. /* No comment provided by engineer. */
  1030. "Share current location" = "Jaa nykyinen sijainti";
  1031. /* No comment provided by engineer. */
  1032. "Share link" = "Jaa linkki";
  1033. /* No comment provided by engineer. */
  1034. "Share location" = "Jaa sijainti";
  1035. /* Share the location of a pin that has been dropped in a map view */
  1036. "Share pin location" = "Share pin location";
  1037. /* No comment provided by engineer. */
  1038. "Share to chat" = "Share to chat";
  1039. /* No comment provided by engineer. */
  1040. "Share with" = "Jaa";
  1041. /* No comment provided by engineer. */
  1042. "Shared items" = "Jaetut tietueet";
  1043. /* No comment provided by engineer. */
  1044. "Shared location" = "Jaettu sijainti";
  1045. /* No comment provided by engineer. */
  1046. "Sharing to a federated conversation is not supported." = "Sharing to a federated conversation is not supported.";
  1047. /* No comment provided by engineer. */
  1048. "Show more…" = "Näytä lisää…";
  1049. /* No comment provided by engineer. */
  1050. "Signaling" = "Signaling";
  1051. /* No comment provided by engineer. */
  1052. "SIP dial-in" = "SIP dial-in";
  1053. /* No comment provided by engineer. */
  1054. "Skip" = "Ohita";
  1055. /* No comment provided by engineer. */
  1056. "Slide to cancel" = "Slide to cancel";
  1057. /* No comment provided by engineer. */
  1058. "Some messages not shown, will be downloaded when online" = "Some messages not shown, will be downloaded when online";
  1059. /* No comment provided by engineer. */
  1060. "Source code" = "Source code";
  1061. /* No comment provided by engineer. */
  1062. "Speaker" = "Kaiutin";
  1063. /* No comment provided by engineer. */
  1064. "Speaker disabled" = "Kaiutin poistettu käytöstä";
  1065. /* No comment provided by engineer. */
  1066. "Speaker enabled" = "Kaiutin käytössä";
  1067. /* No comment provided by engineer. */
  1068. "Speech recognition access is not allowed. Check your settings." = "Speech recognition access is not allowed. Check your settings.";
  1069. /* No comment provided by engineer. */
  1070. "Speech recognition failed" = "Speech recognition failed";
  1071. /* No comment provided by engineer. */
  1072. "Start recording" = "Start recording";
  1073. /* No comment provided by engineer. */
  1074. "Start time" = "Aloitusaika";
  1075. /* No comment provided by engineer. */
  1076. "Status" = "Tila";
  1077. /* No comment provided by engineer. */
  1078. "Status message" = "Tilaviesti";
  1079. /* Action to 'Stop' a recording */
  1080. "Stop" = "Stop";
  1081. /* No comment provided by engineer. */
  1082. "Stop recording" = "Stop recording";
  1083. /* No comment provided by engineer. */
  1084. "Stop screensharing" = "Stop screensharing";
  1085. /* No comment provided by engineer. */
  1086. "STUN servers" = "STUN-palvelimet";
  1087. /* No comment provided by engineer. */
  1088. "Submit vote" = "Lähetä ääni";
  1089. /* No comment provided by engineer. */
  1090. "Switch account" = "Switch account";
  1091. /* No comment provided by engineer. */
  1092. "Switching to another conversation …" = "Switching to another conversation …";
  1093. /* No comment provided by engineer. */
  1094. "Synchronize to trusted servers and the global and public address book" = "Synchronize to trusted servers and the global and public address book";
  1095. /* No comment provided by engineer. */
  1096. "Talk" = "Talk";
  1097. /* No comment provided by engineer. */
  1098. "Tap and hold to record a voice message" = "Tap and hold to record a voice message";
  1099. /* No comment provided by engineer. */
  1100. "Tap and hold to record a voice message, release the button to send it." = "Tap and hold to record a voice message, release the button to send it.";
  1101. /* No comment provided by engineer. */
  1102. "The app is too old and no longer supported by this server." = "The app is too old and no longer supported by this server.";
  1103. /* No comment provided by engineer. */
  1104. "The call has been running for one hour" = "The call has been running for one hour";
  1105. /* No comment provided by engineer. */
  1106. "The call might be recorded" = "The call might be recorded";
  1107. /* No comment provided by engineer. */
  1108. "The password is wrong" = "Salasana on väärin";
  1109. /* No comment provided by engineer. */
  1110. "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.";
  1111. /* No comment provided by engineer. */
  1112. "There is no account for user %@ in server %@ configured in this app." = "There is no account for user %1$@ in server %2$@ configured in this app.";
  1113. /* No comment provided by engineer. */
  1114. "This call is being recorded" = "This call is being recorded";
  1115. /* No comment provided by engineer. */
  1116. "This conversation is read-only" = "Keskustelu on \"vain luku\"-tilassa";
  1117. /* The meeting start time will be displayed after this text e.g (This meeting is scheduled for tomorrow at 10:00) */
  1118. "This meeting is scheduled for" = "This meeting is scheduled for";
  1119. /* No comment provided by engineer. */
  1120. "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.";
  1121. /* No comment provided by engineer. */
  1122. "This week" = "Tämä viikko";
  1123. /* Remind me this weekend about that message */
  1124. "This weekend" = "This weekend";
  1125. /* No comment provided by engineer. */
  1126. "This will impact the functionality of this app. Please review your settings." = "This will impact the functionality of this app. Please review your settings.";
  1127. /* 'To' which language user wants to translate text */
  1128. "To" = "To";
  1129. /* No comment provided by engineer. */
  1130. "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\".";
  1131. /* TRANSLATORS this is for sending something 'to' a user. E.g. 'To: John Doe' */
  1132. "To:" = "Päättyen:";
  1133. /* No comment provided by engineer. */
  1134. "Today" = "Tänään";
  1135. /* Remind me tomorrow about that message */
  1136. "Tomorrow" = "Tomorrow";
  1137. /* TRANSLATORS this is for transcribing a voice message to text */
  1138. "Transcribe" = "Transcribe";
  1139. /* TRANSLATORS transcript of a voice-message */
  1140. "Transcript" = "Transcript";
  1141. /* No comment provided by engineer. */
  1142. "Translate" = "Translate";
  1143. /* No comment provided by engineer. */
  1144. "Translation" = "Translation";
  1145. /* No comment provided by engineer. */
  1146. "Translation failed" = "Translation failed";
  1147. /* No comment provided by engineer. */
  1148. "TURN servers" = "TURN-palvelin";
  1149. /* No comment provided by engineer. */
  1150. "Twitter" = "Twitter";
  1151. /* No comment provided by engineer. */
  1152. "Twitter handle @…" = "Twitter-tunnus @…";
  1153. /* No comment provided by engineer. */
  1154. "Typing indicator" = "Typing indicator";
  1155. /* No comment provided by engineer. */
  1156. "Typing indicators are only available when using a high performance backend (HPB)" = "Typing indicators are only available when using a high performance backend (HPB)";
  1157. /* No comment provided by engineer. */
  1158. "Unable to get context of the message" = "Unable to get context of the message";
  1159. /* No comment provided by engineer. */
  1160. "Unable to get conversation of the message" = "Unable to get conversation of the message";
  1161. /* No comment provided by engineer. */
  1162. "Unable to load file" = "Tiedostoa ei voitu ladata";
  1163. /* No comment provided by engineer. */
  1164. "Unable to open file" = "Tiedostoa ei voitu avata";
  1165. /* No comment provided by engineer. */
  1166. "Unavailable" = "Unavailable";
  1167. /* No comment provided by engineer. */
  1168. "Unban" = "Unban";
  1169. /* No comment provided by engineer. */
  1170. "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.";
  1171. /* No comment provided by engineer. */
  1172. "Undo" = "Kumoa";
  1173. /* No comment provided by engineer. */
  1174. "Undo Typing" = "Undo Typing";
  1175. /* No comment provided by engineer. */
  1176. "Unknown" = "Tuntematon";
  1177. /* No comment provided by engineer. */
  1178. "Unknown error" = "Tuntematon virhe";
  1179. /* No comment provided by engineer. */
  1180. "Unknown error occurred" = "Tuntematon virhe tapahtui";
  1181. /* 'Unread' meaning 'Unread conversations' */
  1182. "Unread" = "Unread";
  1183. /* No comment provided by engineer. */
  1184. "Unread mentions" = "Lukemattomat maininnat";
  1185. /* No comment provided by engineer. */
  1186. "Unread messages" = "Lukemattomat viestit";
  1187. /* No comment provided by engineer. */
  1188. "Update" = "Update";
  1189. /* No comment provided by engineer. */
  1190. "Upload failed" = "Lähetys epäonnistui";
  1191. /* No comment provided by engineer. */
  1192. "Uploading %ld elements" = "Uploading %ld elements";
  1193. /* No comment provided by engineer. */
  1194. "Uploading 1 element" = "Uploading 1 element";
  1195. /* No comment provided by engineer. */
  1196. "User" = "Käyttäjä";
  1197. /* No comment provided by engineer. */
  1198. "User profile and settings" = "Käyttäjäprofiili ja asetukset";
  1199. /* No comment provided by engineer. */
  1200. "User status supported?" = "User status supported?";
  1201. /* No comment provided by engineer. */
  1202. "Users" = "Käyttäjät";
  1203. /* No comment provided by engineer. */
  1204. "Version" = "Versio";
  1205. /* No comment provided by engineer. */
  1206. "Video call" = "Videopuhelu";
  1207. /* No comment provided by engineer. */
  1208. "Video quality" = "Videon laatu";
  1209. /* Conversation visibility settings */
  1210. "Visibility" = "Näkyvyys";
  1211. /* No comment provided by engineer. */
  1212. "Voice call" = "Äänipuhelu";
  1213. /* No comment provided by engineer. */
  1214. "Voice messages" = "Ääniviestit";
  1215. /* No comment provided by engineer. */
  1216. "Waiting for %@ to join call …" = "Waiting for %@ to join call …";
  1217. /* No comment provided by engineer. */
  1218. "Waiting for others to join call …" = "Odotetaan muiden liittymistä puheluun...";
  1219. /* No comment provided by engineer. */
  1220. "Website" = "Verkkosivu";
  1221. /* No comment provided by engineer. */
  1222. "What is your status?" = "Mikä on tilatietosi?";
  1223. /* No comment provided by engineer. */
  1224. "Write message, @ to mention someone …" = "Kirjoita viesti, käytä @-merkkiä mainitaksesi käyttäjän…";
  1225. /* No comment provided by engineer. */
  1226. "Yes" = "Kyllä";
  1227. /* No comment provided by engineer. */
  1228. "Yesterday" = "Eilen";
  1229. /* No comment provided by engineer. */
  1230. "You" = "Sinä";
  1231. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate it */
  1232. "You added {user0} and %ld more participants" = "You added {user0} and %ld more participants";
  1233. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1234. "You added {user0} and {user1}" = "You added {user0} and {user1}";
  1235. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  1236. "You and %ld more participants joined the call" = "You and %ld more participants joined the call";
  1237. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  1238. "You and %ld more participants left the call" = "You and %ld more participants left the call";
  1239. /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
  1240. "You and {actor0} joined the call" = "You and {actor0} joined the call";
  1241. /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
  1242. "You and {actor0} left the call" = "You and {actor0} left the call";
  1243. /* No comment provided by engineer. */
  1244. "You are currently waiting in the lobby" = "Odotat parhaillaan aulassa";
  1245. /* No comment provided by engineer. */
  1246. "You are not part of any conversation" = "You are not part of any conversation";
  1247. /* No comment provided by engineer. */
  1248. "You are not part of any conversation. Press + to start a new one." = "You are not part of any conversation. Press + to start a new one.";
  1249. /* No comment provided by engineer. */
  1250. "You can set your phone number so other users will be able to find you" = "You can set your phone number so other users will be able to find you";
  1251. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1252. "You demoted {user0} and %ld more participants from moderators" = "You demoted {user0} and %ld more participants from moderators";
  1253. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1254. "You demoted {user0} and {user1} from moderators" = "You demoted {user0} and {user1} from moderators";
  1255. /* No comment provided by engineer. */
  1256. "You have %ld pending invitations" = "You have %ld pending invitations";
  1257. /* No comment provided by engineer. */
  1258. "You have been muted by a moderator" = "Moderaattori on mykistänyt sinut";
  1259. /* No comment provided by engineer. */
  1260. "You need to promote a new moderator before you can leave %@." = "You need to promote a new moderator before you can leave %@.";
  1261. /* No comment provided by engineer. */
  1262. "You need to promote a new moderator before you can leave this conversation" = "You need to promote a new moderator before you can leave this conversation";
  1263. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1264. "You promoted {user0} and %ld more participants to moderators" = "You promoted {user0} and %ld more participants to moderators";
  1265. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1266. "You promoted {user0} and {user1} to moderators" = "You promoted {user0} and {user1} to moderators";
  1267. /* No comment provided by engineer. */
  1268. "You received a new notification" = "Sait uuden ilmoituksen";
  1269. /* No comment provided by engineer. */
  1270. "You reconnected to the call" = "You reconnected to the call";
  1271. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate it */
  1272. "You removed {user0} and %ld more participants" = "You removed {user0} and %ld more participants";
  1273. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1274. "You removed {user0} and {user1}" = "You removed {user0} and {user1}";
  1275. /* No comment provided by engineer. */
  1276. "Your email address" = "Sähköpostiosoitteesi";
  1277. /* No comment provided by engineer. */
  1278. "Your phone number" = "Puhelinnumerosi";
  1279. /* No comment provided by engineer. */
  1280. "Your PIN" = "PIN-koodisi";
  1281. /* No comment provided by engineer. */
  1282. "Your postal address" = "Postiosoitteesi";
  1283. /* 'Zammad' is a product name */
  1284. "Zammad API error" = "Zammad API error";
  1285. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1286. "{actor0} added you and %ld more participants" = "{actor0} added you and %ld more participants";
  1287. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1288. "{actor0} added you and {user0}" = "{actor0} added you and {user0}";
  1289. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1290. "{actor0} added {user0} and %ld more participants" = "{actor0} added {user0} and %ld more participants";
  1291. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1292. "{actor0} added {user0} and {user1}" = "{actor0} added {user0} and {user1}";
  1293. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1294. "{actor0} and %ld more participants joined the call" = "{actor0} and %ld more participants joined the call";
  1295. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1296. "{actor0} and %ld more participants left the call" = "{actor0} and %ld more participants left the call";
  1297. /* Please put {actor0} and {actor1} placeholders in the correct position on the translated text but do not translate them */
  1298. "{actor0} and {actor1} joined the call" = "{actor0} and {actor1} joined the call";
  1299. /* Please put {actor0} and {actor1} placeholders in the correct position on the translated text but do not translate them */
  1300. "{actor0} and {actor1} left the call" = "{actor0} and {actor1} left the call";
  1301. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1302. "{actor0} demoted you and %ld more participants from moderators" = "{actor0} demoted you and %ld more participants from moderators";
  1303. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1304. "{actor0} demoted you and {user0} from moderators" = "{actor0} demoted you and {user0} from moderators";
  1305. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1306. "{actor0} demoted {user0} and %ld more participants from moderators" = "{actor0} demoted {user0} and %ld more participants from moderators";
  1307. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1308. "{actor0} demoted {user0} and {user1} from moderators" = "{actor0} demoted {user0} and {user1} from moderators";
  1309. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1310. "{actor0} promoted you and %ld more participants to moderators" = "{actor0} promoted you and %ld more participants to moderators";
  1311. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1312. "{actor0} promoted you and {user0} to moderators" = "{actor0} promoted you and {user0} to moderators";
  1313. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1314. "{actor0} promoted {user0} and %ld more participants to moderators" = "{actor0} promoted {user0} and %ld more participants to moderators";
  1315. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1316. "{actor0} promoted {user0} and {user1} to moderators" = "{actor0} promoted {user0} and {user1} to moderators";
  1317. /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
  1318. "{actor0} reconnected to the call" = "{actor0} reconnected to the call";
  1319. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1320. "{actor0} removed you and %ld more participants" = "{actor0} removed you and %ld more participants";
  1321. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1322. "{actor0} removed you and {user0}" = "{actor0} removed you and {user0}";
  1323. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1324. "{actor0} removed {user0} and %ld more participants" = "{actor0} removed {user0} and %ld more participants";
  1325. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1326. "{actor0} removed {user0} and {user1}" = "{actor0} removed {user0} and {user1}";
  1327. /* No comment provided by engineer. */
  1328. "↓ New messages" = "↓ Uudet viestit";