lv.po 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799
  1. #
  2. # Translators:
  3. # FIRST AUTHOR <EMAIL@ADDRESS>, 2014
  4. # Jans Petersons <martinstomsons2@gmail.com>, 2017
  5. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  6. #. extracted from ../app/widgets/About/locales.ini
  7. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  8. #. extracted from ../app/widgets/Account/locales.ini
  9. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  10. #. extracted from ../app/widgets/AccountNext/locales.ini
  11. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  12. #. extracted from ../app/widgets/AdHoc/locales.ini
  13. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  14. #. extracted from ../app/widgets/AdminDB/locales.ini
  15. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  16. #. extracted from ../app/widgets/AdminMain/locales.ini
  17. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  18. #. extracted from ../app/widgets/AdminTest/locales.ini
  19. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  20. #. extracted from ../app/widgets/Api/locales.ini
  21. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  22. #. extracted from ../app/widgets/Avatar/locales.ini
  23. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  24. #. extracted from ../app/widgets/Blog/locales.ini
  25. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  26. #. extracted from ../app/widgets/Bookmark/locales.ini
  27. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  28. #. extracted from ../app/widgets/Chat/locales.ini
  29. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  30. #. extracted from ../app/widgets/Chats/locales.ini
  31. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  32. #. extracted from ../app/widgets/Communities/locales.ini
  33. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  34. #. extracted from ../app/widgets/CommunitiesServer/locales.ini
  35. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  36. #. extracted from ../app/widgets/CommunityAffiliations/locales.ini
  37. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  38. #. extracted from ../app/widgets/CommunityConfig/locales.ini
  39. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  40. #. extracted from ../app/widgets/CommunityData/locales.ini
  41. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  42. #. extracted from ../app/widgets/CommunityHeader/locales.ini
  43. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  44. #. extracted from ../app/widgets/CommunityPosts/locales.ini
  45. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  46. #. extracted from ../app/widgets/CommunitySubscriptions/locales.ini
  47. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  48. #. extracted from ../app/widgets/Config/locales.ini
  49. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  50. #. extracted from ../app/widgets/Contact/locales.ini
  51. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  52. #. extracted from ../app/widgets/ContactData/locales.ini
  53. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  54. #. extracted from ../app/widgets/Group/locales.ini
  55. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  56. #. extracted from ../app/widgets/Groups/locales.ini
  57. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  58. #. extracted from ../app/widgets/Help/locales.ini
  59. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  60. #. extracted from ../app/widgets/Init/locales.ini
  61. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  62. #. extracted from ../app/widgets/Invitations/locales.ini
  63. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  64. #. extracted from ../app/widgets/Login/locales.ini
  65. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  66. #. extracted from ../app/widgets/LoginAnonymous/locales.ini
  67. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  68. #. extracted from ../app/widgets/Menu/locales.ini
  69. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  70. #. extracted from ../app/widgets/Notifs/locales.ini
  71. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  72. #. extracted from ../app/widgets/Onboarding/locales.ini
  73. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  74. #. extracted from ../app/widgets/Post/locales.ini
  75. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  76. #. extracted from ../app/widgets/Presence/locales.ini
  77. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  78. #. extracted from ../app/widgets/Publish/locales.ini
  79. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  80. #. extracted from ../app/widgets/PublishBrief/locales.ini
  81. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  82. #. extracted from ../app/widgets/Rooms/locales.ini
  83. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  84. #. extracted from ../app/widgets/Roster/locales.ini
  85. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  86. #. extracted from ../app/widgets/Search/locales.ini
  87. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  88. #. extracted from ../app/widgets/Share/locales.ini
  89. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  90. #. extracted from ../app/widgets/Statistics/locales.ini
  91. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  92. #. extracted from ../app/widgets/Stickers/locales.ini
  93. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  94. #. extracted from ../app/widgets/Subscribe/locales.ini
  95. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  96. #. extracted from ../app/widgets/Syndication/locales.ini
  97. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  98. #. extracted from ../app/widgets/Upload/locales.ini
  99. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  100. #. extracted from ../app/widgets/Vcard4/locales.ini
  101. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  102. #. extracted from ../app/widgets/Visio/locales.ini
  103. #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
  104. #. extracted from ../locales/locales.ini
  105. msgid ""
  106. msgstr ""
  107. "Project-Id-Version: movim\n"
  108. "Report-Msgid-Bugs-To: \n"
  109. "POT-Creation-Date: 2018-01-25 23:47+0200\n"
  110. "PO-Revision-Date: 2017-12-24 14:26+0000\n"
  111. "Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
  112. "Language-Team: Latvian (http://www.transifex.com/movim/movim/language/lv/)\n"
  113. "Language: lv\n"
  114. "MIME-Version: 1.0\n"
  115. "Content-Type: text/plain; charset=UTF-8\n"
  116. "Content-Transfer-Encoding: 8bit\n"
  117. "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
  118. "X-Generator: Translate Toolkit 2.2.5\n"
  119. #: [about]thanks
  120. msgid "Thanks"
  121. msgstr "Paldies"
  122. #: [about]developers
  123. msgid "Developers"
  124. msgstr "Izstrādātāji"
  125. #: [about]translators
  126. msgid "Translators"
  127. msgstr "Tulkotāji"
  128. #: [about]translators_text
  129. msgid "Thanks to all the translators"
  130. msgstr "Paldies visiem tulkotājiem "
  131. #: [about]software
  132. msgid "Software"
  133. msgstr "Programmatūra"
  134. #: [about]resources
  135. msgid "Resources"
  136. msgstr "Resursi"
  137. #: [about]api [schema]api [api]title
  138. msgid "API"
  139. msgstr "API"
  140. #: [about]info
  141. msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under"
  142. msgstr ""
  143. #: [account]title [page]account
  144. msgid "Account"
  145. msgstr "Konts"
  146. #: [account]password_change_title
  147. msgid "Change my password"
  148. msgstr "Mainīt paroli "
  149. #: [account]password [db]password [credentials]password [form]password
  150. #: [input]password
  151. msgid "Password"
  152. msgstr "Parole"
  153. #: [account]password_confirmation
  154. msgid "Password confirmation"
  155. msgstr "Paroles apstiprinājums "
  156. #: [account]password_changed
  157. msgid "The password has been updated"
  158. msgstr "Parole tika atjaunināta "
  159. #: [account]password_not_valid
  160. msgid "Please provide a valid password (6 characters minimum)"
  161. msgstr "Lūdzu ievadiet derīgu paroli (minimums 6 zīmes)"
  162. #: [account]password_not_same
  163. msgid "The provided passwords are not the same"
  164. msgstr "Ievadītās paroles nav vienādas"
  165. #: [account]delete
  166. msgid "Delete your account"
  167. msgstr "Izdzēst kontu "
  168. #: [account]delete_text
  169. msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)."
  170. msgstr ""
  171. #: [account]delete_text_confirm
  172. msgid "Are you sure that you want to delete it ?"
  173. msgstr "Vai tiešām vēlaties dzēst šo?"
  174. #: [account]gateway_title
  175. msgid "Gateway"
  176. msgstr "Vārteja "
  177. #: [account]clear
  178. msgid "Leave this instance"
  179. msgstr "Pamest šo instanci "
  180. #: [account]clear_text
  181. msgid "You will delete all the relative information linked to your account on this Movim instance (profile, contacts and publications)."
  182. msgstr ""
  183. #: [account]clear_text_confirm
  184. msgid "This action will not delete your account but will disconnect you from this instance."
  185. msgstr "Šī darbība neizdzēsīs jūsu kontu, bet pārtrauks savienojumu ar šo instanci."
  186. #: [create]title [subscribe]title
  187. msgid "Create a new account"
  188. msgstr "Izveidot jaunu kontu"
  189. #: [create]notfound
  190. msgid "No account creation form found on the server"
  191. msgstr "Konta izveides forma netika atrasta šajā serverī"
  192. #: [create]server_on
  193. msgid "on"
  194. msgstr ""
  195. #: [create]successfull
  196. msgid "Your acccount has been successfully registered"
  197. msgstr "Jūsu konts tika veiksmīgi reģistrēts"
  198. #: [create]loading
  199. msgid "Loading"
  200. msgstr "Ielādē"
  201. #: [create]placeholder
  202. msgid "…and start playing"
  203. msgstr "...un uzsākt atskaņošanu "
  204. #: [error]not_acceptable
  205. msgid "Not Acceptable"
  206. msgstr "Nav Pieņemams "
  207. #: [error]service_unavailable
  208. msgid "The registration system of this server is currently unavailable"
  209. msgstr "Šī servera reģistrācijas sistēma pašlaik nav pieejama "
  210. #: [error]forbidden
  211. msgid "Registration forbidden"
  212. msgstr "Reģistrācija liegta "
  213. #: [adhoc]title
  214. msgid "Actions"
  215. msgstr "Darbības"
  216. #: [db]legend [schema]database
  217. msgid "Database"
  218. msgstr "Datubāze "
  219. #: [db]connect_error
  220. msgid "Modl wasn't able to connect to the database"
  221. msgstr "Modl nevarēja pieslēgties datubāzei"
  222. #: [db]connect_success
  223. msgid "Movim is connected to the database"
  224. msgstr "Movim ir pieslēgts datubāzei"
  225. #: [db]update [compatibility]db
  226. msgid "The database need to be updated"
  227. msgstr "Datņu bāze ir jāatjaunina"
  228. #: [db]up_to_date
  229. msgid "Movim database is up to date"
  230. msgstr ""
  231. #: [db]type
  232. msgid "Database Type"
  233. msgstr "Datubāzes tips"
  234. #: [db]username [credentials]username [input]username
  235. msgid "Username"
  236. msgstr "Lietotājvārds"
  237. #: [db]host
  238. msgid "Host"
  239. msgstr "Resursdators"
  240. #: [db]port
  241. msgid "Port"
  242. msgstr "Ports"
  243. #: [db]name
  244. msgid "Database Name"
  245. msgstr "Datubāzes Nosaukums"
  246. #: [admin]general
  247. msgid "General Settings"
  248. msgstr "Vispārīgie iestatījumi"
  249. #: [general]theme
  250. msgid "Theme"
  251. msgstr "Motīvs"
  252. #: [general]language
  253. msgid "Default language"
  254. msgstr "Noklusējuma valoda"
  255. #: [general]log_verbosity
  256. msgid "Log verbosity"
  257. msgstr ""
  258. #: [general]timezone
  259. msgid "Server Timezone"
  260. msgstr "Servera laika josla"
  261. #: [restrictsuggestions]title
  262. msgid "Restrict suggestions"
  263. msgstr ""
  264. #: [restrictsuggestions]text
  265. msgid "Only suggest chatrooms, Communities and other contents that are available on the user XMPP server and related services"
  266. msgstr ""
  267. #: [credentials]title
  268. msgid "Administration Credential"
  269. msgstr ""
  270. #: [credentials]re_password
  271. msgid "Retype password"
  272. msgstr "Pārievadiet paroli"
  273. #: [whitelist]title
  274. msgid "Whitelisted XMPP Servers"
  275. msgstr ""
  276. #: [whitelist]info1
  277. msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)"
  278. msgstr ""
  279. #: [whitelist]info2
  280. msgid "Leave this field blank if you allow the access to all the XMPP accounts."
  281. msgstr ""
  282. #: [whitelist]label
  283. msgid "List of whitelisted XMPP servers"
  284. msgstr ""
  285. #: [information]title
  286. msgctxt "[information]title"
  287. msgid "Information Message"
  288. msgstr ""
  289. #: [information]description [communityconfig]description
  290. msgid "Description"
  291. msgstr "Apraksts"
  292. #: [information]info1
  293. msgid "This message will be displayed on the login page"
  294. msgstr ""
  295. #: [information]info2
  296. msgid "Leave this field blank if you dont want to show any message."
  297. msgstr ""
  298. #: [information]label
  299. msgctxt "[information]label"
  300. msgid "Information Message"
  301. msgstr ""
  302. #: [xmpp]title
  303. msgid "Default XMPP server"
  304. msgstr ""
  305. #: [xmpp]domain
  306. msgid "Main XMPP server domain"
  307. msgstr ""
  308. #: [xmpp]description
  309. msgid "Main XMPP server description"
  310. msgstr ""
  311. #: [xmpp]country
  312. msgid "Main XMPP server country"
  313. msgstr ""
  314. #: [xmpp]country_pick
  315. msgid "Pick a country in the list"
  316. msgstr ""
  317. #: [log]empty
  318. msgid "Empty"
  319. msgstr ""
  320. #: [log]syslog
  321. msgid "Syslog"
  322. msgstr ""
  323. #: [log]syslog_files
  324. msgid "Syslog and files"
  325. msgstr ""
  326. #: [admin]compatibility
  327. msgid "General Overview"
  328. msgstr ""
  329. #: [compatibility]info
  330. msgid "Movim has found some issues or things that need to be fixed or improved"
  331. msgstr ""
  332. #: [compatibility]php1
  333. msgid "Update your PHP-Version: %s"
  334. msgstr ""
  335. #: [compatibility]php2
  336. msgid "Required: 5.3.0"
  337. msgstr ""
  338. #: [compatibility]rights
  339. msgid "Read and write rights for the webserver in Movim's %s directory"
  340. msgstr ""
  341. #: [compatibility]websocket
  342. msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable"
  343. msgstr ""
  344. #: [compatibility]xmpp_websocket
  345. msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration"
  346. msgstr ""
  347. #: [schema]browser
  348. msgid "Browser"
  349. msgstr ""
  350. #: [schema]movim
  351. msgid "Movim Core"
  352. msgstr ""
  353. #: [schema]daemon
  354. msgid "Movim Daemon"
  355. msgstr ""
  356. #: [schema]xmpp
  357. msgid "XMPP"
  358. msgstr ""
  359. #: [api]info
  360. msgid "Here you can register your pod on the official %sMovim API%s"
  361. msgstr ""
  362. #: [api]register
  363. msgid "Your pod is not registered on the API"
  364. msgstr ""
  365. #: [api]registered
  366. msgid "Your pod is registered on the API"
  367. msgstr ""
  368. #: [api]wait
  369. msgid "Your pod is not yet validated"
  370. msgstr ""
  371. #: [api]validated
  372. msgid "Your pod is validated"
  373. msgstr ""
  374. #: [api]unregister
  375. msgid "You asked to be removed from the API, this request will be processed in a couple of hours"
  376. msgstr ""
  377. #: [api]conf_updated [config]updated
  378. msgid "Configuration updated"
  379. msgstr "Atjaunināta konfigurācija"
  380. #: [avatar]file
  381. msgid "File"
  382. msgstr ""
  383. #: [avatar]use_it
  384. msgid "Use it"
  385. msgstr ""
  386. #: [avatar]webcam
  387. msgid "Webcam"
  388. msgstr ""
  389. #: [avatar]cheese
  390. msgid "Cheese !"
  391. msgstr ""
  392. #: [avatar]snapshot
  393. msgid "Take a webcam snapshot"
  394. msgstr ""
  395. #: [avatar]updated
  396. msgid "Avatar Updated"
  397. msgstr ""
  398. #: [avatar]not_updated
  399. msgid "Avatar Not Updated"
  400. msgstr ""
  401. #: [avatar]missing
  402. msgid "No avatar defined yet"
  403. msgstr ""
  404. #: [blog]title [feed]title
  405. msgid "%s's feed"
  406. msgstr ""
  407. #: [blog]empty
  408. msgid "This user has not posted anything right now"
  409. msgstr ""
  410. #: [blog]private
  411. msgid "This content is private, please login to see it"
  412. msgstr ""
  413. #: [title]conferences
  414. msgid "Conferences"
  415. msgstr ""
  416. #: [title]groups [group]empty_title
  417. msgid "Groups"
  418. msgstr "Grupas"
  419. #: [chatroom]add
  420. msgid "Add a new Chat Room"
  421. msgstr ""
  422. #: [chatroom]id [chatrooms]id
  423. msgid "Chat Room ID"
  424. msgstr ""
  425. #: [chatroom]name
  426. #, fuzzy
  427. msgctxt "[chatroom]name"
  428. msgid "Name"
  429. msgstr "Nosaukums"
  430. #: [chatroom]nickname [general]nickname [chatrooms]nickname
  431. msgid "Nickname"
  432. msgstr "Segvārds"
  433. #: [chatroom]autojoin_label
  434. msgid "Do you want do join automaticaly this Chat Room ?"
  435. msgstr ""
  436. #: [chatroom]bad_id [chatrooms]bad_id
  437. msgid "Bad Chatroom ID"
  438. msgstr ""
  439. #: [chatroom]empty_name [chatrooms]empty_name
  440. msgid "Empty name"
  441. msgstr "Tukšs vārds"
  442. #: [bookmarks]updated
  443. msgid "Bookmarks updated"
  444. msgstr ""
  445. #: [bookmarks]error
  446. msgid "An error occured :"
  447. msgstr ""
  448. #: [bookmarks]configure
  449. #, fuzzy
  450. msgid "Configure"
  451. msgstr "Atjaunināta konfigurācija"
  452. #: [url]add
  453. msgid "Add a new URL"
  454. msgstr ""
  455. #: [url]url
  456. msgid "URL"
  457. msgstr ""
  458. #: [url]name
  459. #, fuzzy
  460. msgctxt "[url]name"
  461. msgid "Name"
  462. msgstr "Nosaukums"
  463. #: [message]published
  464. msgid "Message Published"
  465. msgstr ""
  466. #: [message]error
  467. msgid "Your message could not be sent, please try again later"
  468. msgstr ""
  469. #: [message]encrypted
  470. msgid "Encrypted message"
  471. msgstr "Šifrēta vēstule"
  472. #: [message]composing [chats]composing
  473. msgid "Composing..."
  474. msgstr ""
  475. #: [message]paused [chats]paused
  476. msgid "Paused..."
  477. msgstr ""
  478. #: [message]gone
  479. msgid "Contact gone"
  480. msgstr ""
  481. #: [message]history
  482. msgid "%s messages retrieved"
  483. msgstr ""
  484. #: [message]edit_help
  485. msgid "You can use the up arrow ↑ to edit your previous message"
  486. msgstr ""
  487. #: [chat]attention
  488. msgid "%s needs your attention"
  489. msgstr "%s pieprasa jūsu uzmanību"
  490. #: [chat]placeholder
  491. msgid "Your message here..."
  492. msgstr ""
  493. #: [chat]smileys
  494. msgid "Smileys"
  495. msgstr ""
  496. #: [chat]frequent [chats]frequent
  497. msgid "Frequent contacts"
  498. msgstr ""
  499. #: [chat]new_title
  500. msgid "Nothing here yet…"
  501. msgstr ""
  502. #: [chat]new_text
  503. msgid "Don't be shy, send a first message to start the discussion"
  504. msgstr ""
  505. #: [chat]invitation
  506. msgid "You received an invitation to join a chatroom"
  507. msgstr ""
  508. #: [chat]invitation_join
  509. msgid "Join %s"
  510. msgstr ""
  511. #: [chat]profile
  512. msgid "See the profile"
  513. msgstr ""
  514. #: [chat]clear
  515. msgid "Clear the history"
  516. msgstr ""
  517. #: [chat]edit_previous
  518. msgid "Edit last message"
  519. msgstr ""
  520. #: [chat]report_abuse
  521. msgid "Report abuse"
  522. msgstr ""
  523. #: [chatroom]members
  524. msgid "Members"
  525. msgstr ""
  526. #: [chatroom]connected [chatrooms]connected
  527. msgid "Connected to the chatroom"
  528. msgstr ""
  529. #: [chatroom]disconnected [chatrooms]disconnected
  530. msgid "Disconnected from the chatroom"
  531. msgstr ""
  532. #: [chatroom]config [communityaffiliation]configuration [group]configuration
  533. #: [page]configuration
  534. msgid "Configuration"
  535. msgstr ""
  536. #: [chatroom]config_saved [communityaffiliation]config_saved
  537. msgid "Configuration saved"
  538. msgstr ""
  539. #: [chatroom]subject
  540. msgid "Subject"
  541. msgstr ""
  542. #: [chatroom]subject_changed
  543. msgid "Subject changed"
  544. msgstr ""
  545. #: [chatroom]administration [page]administration
  546. msgid "Administration"
  547. msgstr "Administrācija"
  548. #: [chats]empty_title
  549. msgid "No chats yet..."
  550. msgstr ""
  551. #: [chats]empty
  552. msgid "Open a new conversation by clicking on the %s button below or visit the %sContacts%s page."
  553. msgstr ""
  554. #: [chats]add
  555. msgid "Chat with a contact"
  556. msgstr ""
  557. #: [chats]more
  558. msgid "Load more contacts"
  559. msgstr ""
  560. #: [button]chat
  561. msgid "Chat"
  562. msgstr "Tērzēšana"
  563. #: [button]new
  564. msgid "New conversation"
  565. msgstr ""
  566. #: [communities]empty_text [group]empty_text
  567. msgid "Discover, follow and share"
  568. msgstr ""
  569. #: [communities]counter
  570. msgid "%s communities"
  571. msgstr ""
  572. #: [communities]search_server [group]search_server
  573. msgid "Search for a new server"
  574. msgstr ""
  575. #: [communities]servers
  576. msgid "Communities servers"
  577. msgstr ""
  578. #: [communities]disco_error [groups]disco_error
  579. msgid "This server doesn't exists"
  580. msgstr ""
  581. #: [communitiesserver]created
  582. msgid "Community created successfully"
  583. msgstr ""
  584. #: [communitiesserver]empty_server
  585. msgid "There is no Communities yet on this server."
  586. msgstr ""
  587. #: [communitiesserver]add
  588. msgid "Create a new community on %s"
  589. msgstr ""
  590. #: [communitiesserver]name
  591. msgid "Community name"
  592. msgstr ""
  593. #: [communitiesserver]name_example [groups]name_example
  594. msgid "My Little Pony - Fan Club"
  595. msgstr ""
  596. #: [communitiesserver]name_error
  597. msgid "Please provide a valid community name (4 characters minimum)"
  598. msgstr ""
  599. #: [communitiesserver]no_creation
  600. msgid "You cannot create a new community on this server"
  601. msgstr ""
  602. #: [communityaffiliation]subscriptions [group]subscriptions
  603. #: [statistics]subscriptions
  604. msgid "Subscriptions"
  605. msgstr ""
  606. #: [communityaffiliation]deleted
  607. msgid "Community deleted successfully"
  608. msgstr ""
  609. #: [communityaffiliation]delete_title
  610. msgid "Delete the community"
  611. msgstr ""
  612. #: [communityaffiliation]delete_text
  613. msgid "You are going to delete the following community. Please confirm your action."
  614. msgstr ""
  615. #: [communityaffiliation]delete_clean_text
  616. msgid "It seems that this community doesn't exists anymore. Do you want to remove it from your subscriptions?"
  617. msgstr ""
  618. #: [communityaffiliation]owner
  619. msgid "Owner"
  620. msgstr ""
  621. #: [communityaffiliation]owners
  622. msgid "Owners"
  623. msgstr ""
  624. #: [communityaffiliation]publisher
  625. msgid "Publisher"
  626. msgstr ""
  627. #: [communityaffiliation]publishers
  628. #: [communityconfig]publish_model_publishers_title
  629. msgid "Publishers"
  630. msgstr ""
  631. #: [communityaffiliation]roles
  632. msgid "Roles"
  633. msgstr ""
  634. #: [communityaffiliation]role_set
  635. msgid "Role correctly set"
  636. msgstr ""
  637. #: [communityconfig]publication
  638. msgid "Publication"
  639. msgstr ""
  640. #: [communityconfig]publish_model_open_title
  641. msgid "Open"
  642. msgstr ""
  643. #: [communityconfig]publish_model_open_text
  644. msgid "Everyone can publish"
  645. msgstr ""
  646. #: [communityconfig]publish_model_publishers_text
  647. msgid "The publishers can publish"
  648. msgstr ""
  649. #: [communityconfig]publish_model_subscribers_title
  650. msgid "Subscribers"
  651. msgstr ""
  652. #: [communityconfig]publish_model_subscribers_text
  653. msgid "The subscribers can publish"
  654. msgstr ""
  655. #: [communitydata]sub [groups]sub
  656. msgid "%s subscribers"
  657. msgstr ""
  658. #: [communitydata]num [groups]num
  659. msgid "%s posts"
  660. msgstr ""
  661. #: [communitydata]public
  662. msgid "Public page"
  663. msgstr ""
  664. #: [communityheader]subscribe [group]subscribe
  665. msgid "Subscribe"
  666. msgstr "Pierakstīties"
  667. #: [communityheader]unsubscribe [group]unsubscribe
  668. msgid "Unsubscribe"
  669. msgstr "Atrakstīties"
  670. #: [communityheader]subscribed [group]subscribed
  671. msgid "Subscribed"
  672. msgstr "Pierakstīts"
  673. #: [communityheader]unsubscribed [group]unsubscribed
  674. msgid "Unsubscribed"
  675. msgstr ""
  676. #: [communityheader]subscription_unsupported
  677. msgid "The subscriptions are disabled for this community"
  678. msgstr ""
  679. #: [communityheader]label_label
  680. msgid "Give a label for this community"
  681. msgstr ""
  682. #: [communityheader]label_placeholder
  683. msgid "My Community Name"
  684. msgstr ""
  685. #: [communityheader]share_subscription
  686. msgid "Share this subscription publicly"
  687. msgstr ""
  688. #: [communityheader]share_subscription_text
  689. msgid "It will appear on your profile"
  690. msgstr ""
  691. #: [communityheader]unsubscribe_text
  692. msgid "You are going to unsubscribe from this community"
  693. msgstr ""
  694. #: [communityheader]sure [group]sure
  695. msgid "Are you sure ?"
  696. msgstr "Vai esat pārliecināts(a)?"
  697. #: [communityposts]nsfw_title
  698. msgid "Adult content blocked"
  699. msgstr ""
  700. #: [communityposts]nsfw_message
  701. msgid "Some adult content has been blocked on this page. You can enable the display of adult content in the configuration page."
  702. msgstr ""
  703. #: [communitysubscriptions]subscriptions [groups]subscriptions
  704. msgid "My Subscriptions"
  705. msgstr ""
  706. #: [communitysubscriptions]empty_title [groups]empty_title
  707. msgid "Hello"
  708. msgstr ""
  709. #: [communitysubscriptions]empty_text1 [groups]empty_text1
  710. msgid "Here you will be able to manage all your subscriptions."
  711. msgstr ""
  712. #: [communitysubscriptions]empty_text2 [groups]empty_text2
  713. msgid "You don't have any group subscriptions yet."
  714. msgstr ""
  715. #: [config]general
  716. msgid "General"
  717. msgstr "Vispārīgi"
  718. #: [config]language
  719. msgid "Language"
  720. msgstr "Valoda"
  721. #: [config]roster
  722. msgid "Roster display"
  723. msgstr ""
  724. #: [config]roster_show
  725. msgid "Show the offline contacts"
  726. msgstr ""
  727. #: [config]roster_hide
  728. msgid "Hide the offline contacts"
  729. msgstr ""
  730. #: [config]appearence
  731. msgid "Appearence"
  732. msgstr "Izskats"
  733. #: [config]not_valid
  734. msgid "Configuration invalid"
  735. msgstr ""
  736. #: [config]advanced
  737. msgid "Advanced Configuration"
  738. msgstr ""
  739. #: [config]nsfw
  740. msgid "Display adult content"
  741. msgstr ""
  742. #: [config]nsfw_text
  743. msgid "Will allow you to read the posts tagged with the #nsfw tag"
  744. msgstr ""
  745. #: [config]night_mode
  746. msgid "Night Mode"
  747. msgstr ""
  748. #: [config]night_mode_text
  749. msgid "Use dark colors to rest your eyes"
  750. msgstr ""
  751. #: [cssurl]label
  752. msgid "Custom CSS URL for your blog"
  753. msgstr ""
  754. #: [general]legend
  755. msgid "General Informations"
  756. msgstr "Vispārīgā Informācija"
  757. #: [general]name [chatrooms]name
  758. msgid "Name"
  759. msgstr "Nosaukums"
  760. #: [general]date_of_birth
  761. msgid "Date of Birth"
  762. msgstr "Dzimšanas datums"
  763. #: [general]gender
  764. msgid "Gender"
  765. msgstr "Dzimums"
  766. #: [general]marital
  767. msgid "Marital Status"
  768. msgstr "Ģimenes stāvoklis"
  769. #: [general]email
  770. msgid "Email"
  771. msgstr "E-pasts"
  772. #: [general]website
  773. msgid "Website"
  774. msgstr "Tīmekļa vietne"
  775. #: [general]about
  776. msgid "About Me"
  777. msgstr "Par mani"
  778. #: [general]accounts
  779. msgid "Other Accounts"
  780. msgstr ""
  781. #: [general]tune
  782. msgid "Is Listening"
  783. msgstr ""
  784. #: [position]legend
  785. msgid "Geographic Position"
  786. msgstr "Ģeogrāfiskais novietojums"
  787. #: [position]locality
  788. msgid "Locality"
  789. msgstr "Apvidus"
  790. #: [position]country
  791. msgid "Country"
  792. msgstr "Valsts"
  793. #: [mood]title
  794. msgid "Mood"
  795. msgstr "Noskaņojums"
  796. #: [mood]im
  797. msgid "I'm "
  798. msgstr "Esmu "
  799. #: [listen]title
  800. msgid "Listening"
  801. msgstr "Klausās"
  802. #: [last]title
  803. msgid "Last seen"
  804. msgstr ""
  805. #: [client]title
  806. msgid "Client Informations"
  807. msgstr ""
  808. #: [explore]last_registered
  809. msgid "Last registered"
  810. msgstr ""
  811. #: [explore]explore
  812. msgid "Find some new friends"
  813. msgstr ""
  814. #: [edit]title [button]edit
  815. msgid "Edit"
  816. msgstr ""
  817. #: [edit]alias
  818. msgid "Alias"
  819. msgstr "Pseidonīms"
  820. #: [edit]group
  821. msgid "Group"
  822. msgstr "Grupa"
  823. #: [delete]title
  824. msgid "Are you sure?"
  825. msgstr ""
  826. #: [delete]text
  827. msgid "You are going to delete one of your contacts, please confirm your action"
  828. msgstr ""
  829. #: [age]years
  830. msgid "%s years"
  831. msgstr ""
  832. #: [blog]last
  833. msgid "Last public post"
  834. msgstr ""
  835. #: [blog]visit
  836. msgid "Visit the blog to see all the public posts"
  837. msgstr ""
  838. #: [subscription]to
  839. msgid "You can see this contact status"
  840. msgstr ""
  841. #: [subscription]to_button
  842. msgid "Share my status"
  843. msgstr ""
  844. #: [subscription]to_text
  845. msgid "But this contact cannot see yours"
  846. msgstr ""
  847. #: [subscription]from
  848. msgid "You are not subscribed to this contact"
  849. msgstr ""
  850. #: [subscription]from_button
  851. msgid "Ask to subscribe"
  852. msgstr ""
  853. #: [subscription]from_text
  854. msgid "But this contact can still see if you are online"
  855. msgstr ""
  856. #: [subscription]nil
  857. msgid "No subscriptions"
  858. msgstr ""
  859. #: [subscription]nil_button [button]invite
  860. msgid "Invite"
  861. msgstr ""
  862. #: [subscription]nil_text
  863. msgid "This contact is in your contact list but there is no subscriptions between the two accounts"
  864. msgstr ""
  865. #: [general]legend
  866. msgid "General Information"
  867. msgstr ""
  868. #: [client]title
  869. msgid "Client Information"
  870. msgstr ""
  871. #: [subscription]nil_text
  872. msgid "This contact is in your contact list but there is no subscription between the two accounts"
  873. msgstr ""
  874. #: [group]unsubscribe_text
  875. msgid "You are going to unsubscribe from this Group"
  876. msgstr ""
  877. #: [group]share_label
  878. msgid "Make your membership to this group public to your friends"
  879. msgstr ""
  880. #: [group]label_label
  881. msgid "Give a label for this group"
  882. msgstr ""
  883. #: [group]empty
  884. msgid "Something bad happened to this group"
  885. msgstr ""
  886. #: [group]config_saved
  887. msgid "Group configuration saved"
  888. msgstr ""
  889. #: [group]delete_title
  890. msgid "Delete the group"
  891. msgstr ""
  892. #: [group]delete_text
  893. msgid "You are going to delete the following group. Please confirm your action."
  894. msgstr ""
  895. #: [group]delete_clean_text
  896. msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?"
  897. msgstr ""
  898. #: [group]counter
  899. msgid "%s groups on this server"
  900. msgstr ""
  901. #: [group]servers
  902. msgid "Groups servers"
  903. msgstr ""
  904. #: [group]help_info1
  905. msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users."
  906. msgstr ""
  907. #: [group]help_info2
  908. msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button."
  909. msgstr ""
  910. #: [group]help_info3
  911. msgid "Done? You can now publish a new post in the Group by using the %s button."
  912. msgstr ""
  913. #: [group]help_info4
  914. msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page."
  915. msgstr ""
  916. #: [groups]contact_post [menu]contact_post [hello]contact_post
  917. msgid "Contact post"
  918. msgstr ""
  919. #: [groups]add
  920. msgid "Create a new Group on %s"
  921. msgstr ""
  922. #: [groups]name
  923. msgid "Group name"
  924. msgstr ""
  925. #: [groups]created
  926. msgid "Group created successfully"
  927. msgstr ""
  928. #: [groups]deleted
  929. msgid "Group deleted successfully"
  930. msgstr ""
  931. #: [groups]name_error
  932. msgid "Please provide a valid group name (4 characters minimum)"
  933. msgstr ""
  934. #: [groups]no_creation
  935. msgid "You cannot create a new Group on this server"
  936. msgstr ""
  937. #: [help]faq
  938. msgid "Frequently Asked Questions"
  939. msgstr ""
  940. #: [apps]question
  941. msgid "Have you already tried Movim on other platforms?"
  942. msgstr ""
  943. #: [apps]phone
  944. msgid "Apps for your phone"
  945. msgstr ""
  946. #: [apps]android
  947. msgid "Try out our official Android app"
  948. msgstr ""
  949. #: [apps]recommend
  950. msgid "We also recommend"
  951. msgstr ""
  952. #: [apps]computer
  953. msgid "Apps for your computer"
  954. msgstr ""
  955. #: [apps]computer_text
  956. msgid "Our official apps are available on our website"
  957. msgstr ""
  958. #: [contact]title
  959. #, fuzzy
  960. msgid "Administrators & Contact"
  961. msgstr "Administrācija"
  962. #: [chatroom]question
  963. msgid "Chat with the Movim team?"
  964. msgstr ""
  965. #: [chatroom]button
  966. msgid "Add the chatroom"
  967. msgstr ""
  968. #: [init]location
  969. msgid "Location node created"
  970. msgstr ""
  971. #: [init]bookmark
  972. msgid "Bookmark node created"
  973. msgstr ""
  974. #: [init]vcard4
  975. msgid "Profile node created"
  976. msgstr ""
  977. #: [init]avatar
  978. msgid "Avatar node created"
  979. msgstr ""
  980. #: [init]subscriptions
  981. msgid "Subscriptions node created"
  982. msgstr ""
  983. #: [init]microblog
  984. msgid "Microblog node created"
  985. msgstr ""
  986. #: [invitations]title
  987. msgid "Pending Invitations"
  988. msgstr ""
  989. #: [invitations]wants_to_talk
  990. msgid "%s wants to talk with you"
  991. msgstr "%s grib ar jums sazināties"
  992. #: [error]username
  993. msgid "Wrong username"
  994. msgstr "Nepareizs lietotājvārds"
  995. #: [error]jid
  996. msgid "Invalid JID"
  997. msgstr "Nederīgs JID"
  998. #: [error]empty_challenge
  999. msgid "Empty Challenge from the server"
  1000. msgstr ""
  1001. #: [error]dns
  1002. msgid "XMPP Domain error, your account is not a correct Jabber ID"
  1003. msgstr ""
  1004. #: [error]data_missings
  1005. msgid "Some data are missing !"
  1006. msgstr "Dažas datnes trūkst !"
  1007. #: [error]wrong_password
  1008. msgid "Wrong password"
  1009. msgstr "Nepareiza parole"
  1010. #: [error]internal
  1011. msgid "Internal server error"
  1012. msgstr "Servera iekšēja kļūda"
  1013. #: [error]session
  1014. msgid "Session error"
  1015. msgstr ""
  1016. #: [error]account_created
  1017. msgid "Account successfully created"
  1018. msgstr "Konts veiksmīgi izveidots"
  1019. #: [error]mec_error
  1020. msgid "The server takes too much time to respond"
  1021. msgstr ""
  1022. #: [error]impossible
  1023. msgid "Impossible login"
  1024. msgstr ""
  1025. #: [error]default
  1026. msgid "Unknown error"
  1027. msgstr "Nezināma kļūda"
  1028. #: [error]login_format
  1029. msgid "Invalid username format"
  1030. msgstr ""
  1031. #: [error]password_format
  1032. msgid "Invalid password format"
  1033. msgstr ""
  1034. #: [error]unauthorized
  1035. msgid "Your XMPP server is unauthorized"
  1036. msgstr ""
  1037. #: [error]wrong_account
  1038. msgid "Movim failed to authenticate. You entered wrong data"
  1039. msgstr ""
  1040. #: [error]mechanism
  1041. msgid "Authentication mechanism not supported by Movim"
  1042. msgstr ""
  1043. #: [error]fail_auth
  1044. msgid "The XMPP authentification failed"
  1045. msgstr "XMPP autentifikācija neizdevās"
  1046. #: [form]username
  1047. msgid "My address"
  1048. msgstr ""
  1049. #: [form]whitelist_info
  1050. msgid "You can login with accounts from these servers"
  1051. msgstr ""
  1052. #: [form]connected
  1053. msgid "Connected"
  1054. msgstr "Savienots"
  1055. #: [form]population
  1056. msgid "Population"
  1057. msgstr ""
  1058. #: [form]invite_chatroom
  1059. msgid "%s invited you to join a chatroom"
  1060. msgstr ""
  1061. #: [login_anonymous]bad_username
  1062. msgid "Bad nickname (between 4 and 40 characters)"
  1063. msgstr ""
  1064. #: [menu]empty_title
  1065. msgid "No news yet…"
  1066. msgstr ""
  1067. #: [menu]empty
  1068. msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the communities you have subscribed."
  1069. msgstr ""
  1070. #: [menu]discover [button]discover
  1071. msgid "Discover"
  1072. msgstr ""
  1073. #: [menu]refresh
  1074. msgid "Refresh all the streams"
  1075. msgstr ""
  1076. #: [menu]public [post]public_yes
  1077. msgid "This post is public"
  1078. msgstr ""
  1079. #: [menu]all
  1080. msgid "All"
  1081. msgstr ""
  1082. #: [menu]mine
  1083. msgid "My publications"
  1084. msgstr ""
  1085. #: [menu]contacts [page]contacts
  1086. msgid "Contacts"
  1087. msgstr "Kontakti"
  1088. #: [menu]add_post
  1089. msgid "Write a new post…"
  1090. msgstr ""
  1091. #: [notifs]title [onboarding]notifications_title
  1092. msgid "Notifications"
  1093. msgstr ""
  1094. #: [notifs]empty
  1095. msgid "No new notifications"
  1096. msgstr ""
  1097. #: [onboarding]notifications_text
  1098. msgid "Movim can notify you when a new post is published or if you receive messages"
  1099. msgstr ""
  1100. #: [onboarding]notifications_text_second
  1101. msgid "You can always disable them afterwards"
  1102. msgstr ""
  1103. #: [onboarding]public_title
  1104. msgid "Public profile"
  1105. msgstr ""
  1106. #: [onboarding]public_text
  1107. msgid "Make your profile public and allow other users to find you and make new contacts more easily"
  1108. msgstr ""
  1109. #: [onboarding]public_text_second
  1110. msgid "You can always disable this in the configuration afterwards"
  1111. msgstr ""
  1112. #: [onboarding]popups_title
  1113. msgid "Popups"
  1114. msgstr ""
  1115. #: [onboarding]popups_text
  1116. msgid "Movim is using popups for the video-conference feature, they are sometime blocked by the browsers"
  1117. msgstr ""
  1118. #: [onboarding]popups_text_second
  1119. msgid "Please be sure that they are enabled to use this feature properly"
  1120. msgstr ""
  1121. #: [post]news_feed
  1122. msgid "News Feed"
  1123. msgstr ""
  1124. #: [post]placeholder
  1125. msgid "Discover and register to the groups you are interested in"
  1126. msgstr ""
  1127. #: [post]content [publish]content_label
  1128. msgid "Content"
  1129. msgstr ""
  1130. #: [post]published
  1131. msgid "Post published"
  1132. msgstr ""
  1133. #: [post]deleted
  1134. msgid "Post deleted"
  1135. msgstr ""
  1136. #: [post]hot
  1137. msgid "What's Hot"
  1138. msgstr ""
  1139. #: [post]hot_text
  1140. msgid "Posts recently published in communities that you are not subscribed (yet)"
  1141. msgstr ""
  1142. #: [post]new [publish]new
  1143. msgid "New post"
  1144. msgstr ""
  1145. #: [post]repost
  1146. msgid "This is a re-post from %s"
  1147. msgstr ""
  1148. #: [post]repost_profile
  1149. msgid "See %s profile"
  1150. msgstr ""
  1151. #: [post]blog_last
  1152. msgid "Public posts from users"
  1153. msgstr ""
  1154. #: [post]public
  1155. msgid "Publish this post publicly?"
  1156. msgstr ""
  1157. #: [post]public_no
  1158. msgid "This post is private"
  1159. msgstr ""
  1160. #: [post]public_url
  1161. msgid "Public URL of this post"
  1162. msgstr ""
  1163. #: [post]delete_title [post]delete
  1164. msgid "Delete this post"
  1165. msgstr ""
  1166. #: [post]delete_text
  1167. msgid "You are going to delete this post, please confirm your action"
  1168. msgstr ""
  1169. #: [post]delete_comment
  1170. msgid "Are you sure that you want to delete this comment?"
  1171. msgstr ""
  1172. #: [post]discover
  1173. msgid "Discover more articles on the communities page"
  1174. msgstr ""
  1175. #: [post]more
  1176. msgid "Read more"
  1177. msgstr ""
  1178. #: [post]comments_disabled
  1179. msgid "Comments disabled"
  1180. msgstr ""
  1181. #: [post]comment_published
  1182. msgid "Comment published"
  1183. msgstr ""
  1184. #: [post]comment_deleted
  1185. msgid "Comment deleted"
  1186. msgstr ""
  1187. #: [hello]blog_title
  1188. msgid "Visit your public blog"
  1189. msgstr ""
  1190. #: [hello]blog_text
  1191. msgid "See your public posts and share them with all your contacts"
  1192. msgstr ""
  1193. #: [hello]share_title
  1194. msgid "Universal share button"
  1195. msgstr ""
  1196. #: [hello]share_text
  1197. msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim"
  1198. msgstr ""
  1199. #: [hello]share_button
  1200. msgid "Share on Movim"
  1201. msgstr ""
  1202. #: [hello]enter_title
  1203. msgid "Oh! Hello!"
  1204. msgstr ""
  1205. #: [hello]enter_paragraph
  1206. msgid "It seems that you're new there! Welcome on Movim!"
  1207. msgstr ""
  1208. #: [hello]menu_title
  1209. msgid "Check the Menu"
  1210. msgstr ""
  1211. #: [hello]menu_paragraph
  1212. msgid "All the main Movim features are accessible there. Don't hesitate to navigate through the pages to discover more!"
  1213. msgstr ""
  1214. #: [hello]profile_title
  1215. msgid "Looks like you didn't complete your profile yet"
  1216. msgstr ""
  1217. #: [hello]profile_paragraph
  1218. msgid "You can go in the Configuration page to describe yourself and put a nice picture"
  1219. msgstr ""
  1220. #: [status]disconnect
  1221. msgid "Disconnect"
  1222. msgstr "Atvienoties"
  1223. #: [status]updated
  1224. msgid "Status updated"
  1225. msgstr ""
  1226. #: [status]presence
  1227. msgid "Presence"
  1228. msgstr ""
  1229. #: [publish]preview
  1230. msgid "Preview"
  1231. msgstr ""
  1232. #: [publish]help [page]help
  1233. msgid "Help"
  1234. msgstr ""
  1235. #: [publish]help_more
  1236. msgid "More help"
  1237. msgstr ""
  1238. #: [publish]help_manual
  1239. msgid "Markdown syntax manual"
  1240. msgstr ""
  1241. #: [publish]content_text
  1242. msgid "You can format your content using Markdown"
  1243. msgstr ""
  1244. #: [publish]link
  1245. msgid "Link"
  1246. msgstr "Saite"
  1247. #: [publish]tags
  1248. msgid "Tags"
  1249. msgstr ""
  1250. #: [publish]valid_url
  1251. #, fuzzy
  1252. msgid "Please enter a valid URL"
  1253. msgstr "Spiest enter lai apstiprināt."
  1254. #: [publish]no_content_preview
  1255. msgid "No content to preview"
  1256. msgstr ""
  1257. #: [publish]no_title
  1258. msgid "Please provide a title"
  1259. msgstr ""
  1260. #: [publish]edit
  1261. msgid "Edit post"
  1262. msgstr ""
  1263. #: [publish]title [page]publish
  1264. msgid "Publish"
  1265. msgstr ""
  1266. #: [publish]attach
  1267. msgid "Add a file or a picture to your post"
  1268. msgstr ""
  1269. #: [publish]no_publication
  1270. msgid "You cannot publish a post on this Group"
  1271. msgstr ""
  1272. #: [publish]form_filled
  1273. msgid "Some fields have been filled in. Do you still want to go back and loose their content?"
  1274. msgstr ""
  1275. #: [publish]add_text
  1276. msgid "Click here to add some text to your publication"
  1277. msgstr ""
  1278. #: [publish]add_text_label
  1279. msgid "Add some text"
  1280. msgstr ""
  1281. #: [publishbrief]placeholder
  1282. msgid "What's new?"
  1283. msgstr ""
  1284. #: [publishbrief]post
  1285. msgid "Write a post"
  1286. msgstr ""
  1287. #: [publishbrief]add_link
  1288. msgid "Add a link"
  1289. msgstr ""
  1290. #: [rooms]add
  1291. msgid "Add a chatroom"
  1292. msgstr ""
  1293. #: [rooms]edit
  1294. msgid "Edit a chatroom"
  1295. msgstr ""
  1296. #: [rooms]empty_text1
  1297. msgid "You don't have any chatroom yet."
  1298. msgstr ""
  1299. #: [rooms]empty_text2
  1300. msgid "Add one by clicking on the add button."
  1301. msgstr ""
  1302. #: [chatrooms]title
  1303. msgid "Chatrooms"
  1304. msgstr ""
  1305. #: [chatrooms]name_placeholder
  1306. msgid "My Favorite Room"
  1307. msgstr ""
  1308. #: [chatrooms]users
  1309. msgid "Users in the room"
  1310. msgstr ""
  1311. #: [chatrooms]bad_nickname
  1312. msgid "Please enter a correct nickname (2 to 40 characters)"
  1313. msgstr ""
  1314. #: [chatrooms]conflict
  1315. msgid "Username already taken"
  1316. msgstr ""
  1317. #: [chatrooms]autojoin
  1318. msgid "Join this chatroom on connect"
  1319. msgstr ""
  1320. #: [chatrooms]registrationrequired
  1321. msgid "Chatroom cannot be joined, registration required"
  1322. msgstr ""
  1323. #: [room]anonymous_title
  1324. msgid "Public chatroom"
  1325. msgstr ""
  1326. #: [room]no_room
  1327. msgid "Please provide a room address"
  1328. msgstr ""
  1329. #: [room]anonymous_text1
  1330. msgid "You are currently logued as an anonymous user."
  1331. msgstr ""
  1332. #: [room]anonymous_text2
  1333. msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner."
  1334. msgstr ""
  1335. #: [room]anonymous_login
  1336. msgid "Login on %s"
  1337. msgstr ""
  1338. #: [room]nick
  1339. msgid "Your nickname"
  1340. msgstr ""
  1341. #: [room]invite
  1342. msgid "Invite a contact"
  1343. msgstr ""
  1344. #: [room]invited
  1345. msgid "Invitation sent"
  1346. msgstr ""
  1347. #: [room]invite_code
  1348. msgid "Send this link to your contacts"
  1349. msgstr ""
  1350. #: [roster]ungrouped
  1351. msgid "Ungrouped"
  1352. msgstr "Negrupēts"
  1353. #: [roster]show_disconnected
  1354. msgid "Show disconnected contacts"
  1355. msgstr ""
  1356. #: [roster]hide_disconnected
  1357. msgid "Hide disconnected contacts"
  1358. msgstr ""
  1359. #: [roster]show_group
  1360. msgid "Show group %s"
  1361. msgstr "Radīt %s grupu"
  1362. #: [roster]hide_group
  1363. msgid "Hide group %s"
  1364. msgstr "Slēpt %s grupu"
  1365. #: [roster]jid_error
  1366. msgid "Please enter a valid Jabber ID"
  1367. msgstr ""
  1368. #: [roster]no_contacts_title
  1369. msgid "No contacts ?"
  1370. msgstr ""
  1371. #: [roster]no_contacts_text
  1372. msgid "You can add one using the + button below"
  1373. msgstr ""
  1374. #: [roster]show_hide
  1375. msgid "Show/Hide"
  1376. msgstr "Rādīt/slēpt"
  1377. #: [roster]add_title
  1378. msgid "Add a contact"
  1379. msgstr ""
  1380. #: [roster]add_contact_info1
  1381. msgid "Enter the Jabber ID of your contact."
  1382. msgstr ""
  1383. #: [roster]add_contact_info2
  1384. msgid "Press enter to validate."
  1385. msgstr "Spiest enter lai apstiprināt."
  1386. #: [roster]jid
  1387. msgid "JID"
  1388. msgstr "JID"
  1389. #: [roster]results
  1390. msgid "Results"
  1391. msgstr ""
  1392. #: [roster]added
  1393. msgid "Contact added"
  1394. msgstr ""
  1395. #: [roster]updated
  1396. msgid "Contact updated"
  1397. msgstr "Kontakts atjaunināts"
  1398. #: [roster]deleted
  1399. msgid "Contact deleted"
  1400. msgstr ""
  1401. #: [roster]search
  1402. msgid "Search in your contacts"
  1403. msgstr ""
  1404. #: [roster]search_pod
  1405. msgid "Search a contact"
  1406. msgstr ""
  1407. #: [search]keyword
  1408. msgid "What are you looking for?"
  1409. msgstr ""
  1410. #: [search]subtitle
  1411. msgid "Open me using Ctrl + M"
  1412. msgstr ""
  1413. #: [share]error
  1414. msgid "This is not a valid url"
  1415. msgstr ""
  1416. #: [share]success
  1417. msgid "Sharing the URL"
  1418. msgstr ""
  1419. #: [statistics]title
  1420. msgid "Statistics"
  1421. msgstr "Statistika"
  1422. #: [statistics]since
  1423. msgid "Since"
  1424. msgstr "Kopš"
  1425. #: [statistics]sessions
  1426. msgid "Sessions"
  1427. msgstr "Sesijas"
  1428. #: [statistics]monthly_sub
  1429. msgid "Monthly Subscriptions"
  1430. msgstr ""
  1431. #: [statistics]monthly_sub_cum
  1432. msgid "Monthly Subscriptions Cumulated"
  1433. msgstr ""
  1434. #: [sticker]sent
  1435. msgid "A sticker has been sent using Movim"
  1436. msgstr ""
  1437. #: [subscribe]info
  1438. msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register."
  1439. msgstr ""
  1440. #: [subscribe]server_question
  1441. msgid "Your server here ?"
  1442. msgstr "Jūsu serveris šeit ?"
  1443. #: [subscribe]server_contact
  1444. msgid "Contact us to add yours to the officially supported servers list"
  1445. msgstr "Sazināties ar mums lai pievienot jūsu oficiāli atbalstīto serveru sarakstam"
  1446. #: [feed]nope
  1447. msgid "No public feed for this contact"
  1448. msgstr ""
  1449. #: [feed]nope_contact
  1450. msgid "No contact specified"
  1451. msgstr ""
  1452. #: [upload]title
  1453. msgid "Upload a file"
  1454. msgstr ""
  1455. #: [upload]choose
  1456. msgid "Choose a file to upload"
  1457. msgstr ""
  1458. #: [upload]info
  1459. msgid "Large pictures will be resized and compressed"
  1460. msgstr ""
  1461. #: [upload]error_filesize
  1462. msgid "File too large"
  1463. msgstr ""
  1464. #: [upload]error_failed
  1465. msgid "Upload failed"
  1466. msgstr ""
  1467. #: [vcard]title [page]profile
  1468. msgid "Profile"
  1469. msgstr ""
  1470. #: [vcard]updated
  1471. msgid "Profile Updated"
  1472. msgstr "Profils atjaunināts"
  1473. #: [vcard]not_updated
  1474. msgid "Profile Not Updated"
  1475. msgstr ""
  1476. #: [vcard]public
  1477. msgid "Your profile is now public"
  1478. msgstr ""
  1479. #: [vcard]restricted
  1480. msgid "Your profile is now restricted"
  1481. msgstr ""
  1482. #: [privacy]my_profile
  1483. msgid "Go to my profile page"
  1484. msgstr ""
  1485. #: [privacy]privacy_title
  1486. msgid "Privacy Level"
  1487. msgstr "Privātuma līmenis"
  1488. #: [privacy]privacy_question
  1489. msgid "Is this profile public ?"
  1490. msgstr ""
  1491. #: [privacy]privacy_info
  1492. msgid "Please pay attention ! By making your profile public, all the information listed below will be available for all the Movim users and on the whole Internet."
  1493. msgstr ""
  1494. #: [save]submit [button]submit
  1495. msgid "Submit"
  1496. msgstr ""
  1497. #: [save]reset [button]reset
  1498. msgid "Reset"
  1499. msgstr ""
  1500. #: [degraded]title
  1501. msgid "Movim is currently working in degraded mode"
  1502. msgstr ""
  1503. #: [degraded]text_1
  1504. msgid "Your server doesn't support XMPP Pubsub persistance."
  1505. msgstr ""
  1506. #: [degraded]text_2
  1507. msgid "The communities, news feed and profile have been disabled for the moment."
  1508. msgstr ""
  1509. #: [degraded]text_3
  1510. msgid "Please contact your server administrator to see if this feature can be enabled."
  1511. msgstr ""
  1512. #: [visio]calling
  1513. msgid "…is calling you"
  1514. msgstr ""
  1515. #: [visio]ringing
  1516. msgid "…ringing"
  1517. msgstr ""
  1518. #: [visio]in_call
  1519. msgid "in call"
  1520. msgstr ""
  1521. #: [visio]failed
  1522. msgid "failed"
  1523. msgstr ""
  1524. #: [visio]connecting
  1525. #, fuzzy
  1526. msgid "…connecting"
  1527. msgstr "Atvienoties"
  1528. #: [global]no_js
  1529. msgid "You don't have javascript enabled. Good luck with that."
  1530. msgstr ""
  1531. #: [global]description
  1532. msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features."
  1533. msgstr ""
  1534. #: [global]loading
  1535. msgid "Loading…"
  1536. msgstr ""
  1537. #: [global]or
  1538. msgid "Or"
  1539. msgstr ""
  1540. #: [page]communities
  1541. msgid "Communities"
  1542. msgstr ""
  1543. #: [page]home
  1544. msgid "Home"
  1545. msgstr "Sākumvieta"
  1546. #: [page]explore
  1547. msgid "Explore"
  1548. msgstr "Izpētīt"
  1549. #: [page]account_creation
  1550. msgid "Account Creation"
  1551. msgstr ""
  1552. #: [page]news
  1553. msgid "News"
  1554. msgstr ""
  1555. #: [page]avatar
  1556. msgid "Avatar"
  1557. msgstr ""
  1558. #: [page]chats
  1559. msgid "Chats"
  1560. msgstr ""
  1561. #: [page]post
  1562. msgid "Post"
  1563. msgstr ""
  1564. #: [page]blog
  1565. msgid "Blog"
  1566. msgstr "Emuārs"
  1567. #: [page]about
  1568. msgid "About"
  1569. msgstr ""
  1570. #: [page]login
  1571. msgid "Login"
  1572. msgstr ""
  1573. #: [page]feed
  1574. msgid "Feed"
  1575. msgstr "Plūsma"
  1576. #: [page]posts
  1577. msgid "Posts"
  1578. msgstr "Ieraksti"
  1579. #: [page]gallery
  1580. msgid "Gallery"
  1581. msgstr ""
  1582. #: [page]visio
  1583. msgid "Visio-conference"
  1584. msgstr ""
  1585. #: [page]share
  1586. msgctxt "[page]share"
  1587. msgid "Share"
  1588. msgstr ""
  1589. #: [page]room
  1590. msgid "Room"
  1591. msgstr ""
  1592. #: [page]tag
  1593. msgid "Tag"
  1594. msgstr ""
  1595. #: [error]error
  1596. msgid "Error: %s"
  1597. msgstr ""
  1598. #: [error]cannot_load_file
  1599. msgid "Cannot load file '%s'"
  1600. msgstr ""
  1601. #: [error]widget_load_error
  1602. msgid "Requested widget '%s' doesn't exist."
  1603. msgstr ""
  1604. #: [error]widget_call_error
  1605. msgid "Requested event '%s' not registered."
  1606. msgstr ""
  1607. #: [error]whoops
  1608. msgid "Whoops!"
  1609. msgstr ""
  1610. #: [error]websocket
  1611. msgid "Movim cannot talk with the server, please try again later"
  1612. msgstr ""
  1613. #: [error]oops
  1614. msgid "Oops!"
  1615. msgstr ""
  1616. #: [button]call
  1617. msgid "Call"
  1618. msgstr ""
  1619. #: [button]validate
  1620. msgid "Validate"
  1621. msgstr ""
  1622. #: [button]refresh
  1623. msgid "Refresh"
  1624. msgstr ""
  1625. #: [button]add
  1626. msgid "Add"
  1627. msgstr "Pievienot"
  1628. #: [button]delete
  1629. msgid "Delete"
  1630. msgstr ""
  1631. #: [button]cancel
  1632. msgid "Cancel"
  1633. msgstr ""
  1634. #: [button]close
  1635. msgid "Close"
  1636. msgstr "Aizvērt"
  1637. #: [button]update
  1638. msgid "Update"
  1639. msgstr ""
  1640. #: [button]updating
  1641. msgid "Updating"
  1642. msgstr ""
  1643. #: [button]submitting
  1644. msgid "Submitting"
  1645. msgstr ""
  1646. #: [button]register
  1647. msgid "Register"
  1648. msgstr ""
  1649. #: [button]reply
  1650. msgid "Reply"
  1651. msgstr ""
  1652. #: [button]unregister
  1653. msgid "Unregister"
  1654. msgstr ""
  1655. #: [button]save
  1656. msgid "Save"
  1657. msgstr "Saglabāt"
  1658. #: [button]clear
  1659. msgid "Clear"
  1660. msgstr ""
  1661. #: [button]upload
  1662. msgid "Upload"
  1663. msgstr ""
  1664. #: [button]connecting
  1665. msgid "Connecting"
  1666. msgstr ""
  1667. #: [button]bool_yes
  1668. msgid "Yes"
  1669. msgstr ""
  1670. #: [button]bool_no
  1671. msgid "No"
  1672. msgstr ""
  1673. #: [button]return
  1674. msgid "Return"
  1675. msgstr ""
  1676. #: [button]accept
  1677. msgid "Accept"
  1678. msgstr ""
  1679. #: [button]refuse
  1680. msgid "Refuse"
  1681. msgstr ""
  1682. #: [button]next
  1683. msgid "Next"
  1684. msgstr ""
  1685. #: [button]previous
  1686. msgid "Previous"
  1687. msgstr ""
  1688. #: [button]search
  1689. msgid "Search"
  1690. msgstr ""
  1691. #: [button]share
  1692. msgctxt "[button]share"
  1693. msgid "Share"
  1694. msgstr ""
  1695. #: [button]like
  1696. msgid "Like"
  1697. msgstr ""
  1698. #: [button]not_now
  1699. msgid "Not Now"
  1700. msgstr ""
  1701. #: [button]enable
  1702. msgid "Enable"
  1703. msgstr ""
  1704. #: [button]sign_up
  1705. msgid "Sign Up"
  1706. msgstr ""
  1707. #: [day]title
  1708. msgid "Day"
  1709. msgstr ""
  1710. #: [day]monday
  1711. msgid "Monday"
  1712. msgstr ""
  1713. #: [day]tuesday
  1714. msgid "Tuesday"
  1715. msgstr ""
  1716. #: [day]wednesday
  1717. msgid "Wednesday"
  1718. msgstr ""
  1719. #: [day]thursday
  1720. msgid "Thursday"
  1721. msgstr ""
  1722. #: [day]friday
  1723. msgid "Friday"
  1724. msgstr ""
  1725. #: [day]saturday
  1726. msgid "Saturday"
  1727. msgstr ""
  1728. #: [day]sunday
  1729. msgid "Sunday"
  1730. msgstr ""
  1731. #: [client]bot
  1732. msgid "Bot"
  1733. msgstr ""
  1734. #: [client]desktop
  1735. msgid "Desktop"
  1736. msgstr ""
  1737. #: [client]phone
  1738. msgid "Phone"
  1739. msgstr ""
  1740. #: [client]web
  1741. msgid "Web"
  1742. msgstr ""
  1743. #: [client]registered
  1744. msgid "Registered"
  1745. msgstr ""
  1746. #: [presence]online
  1747. msgid "Online"
  1748. msgstr ""
  1749. #: [presence]away
  1750. msgid "Away"
  1751. msgstr ""
  1752. #: [presence]dnd
  1753. msgid "Do Not Disturb"
  1754. msgstr ""
  1755. #: [presence]xa
  1756. msgid "Extended Away"
  1757. msgstr ""
  1758. #: [presence]offline
  1759. msgid "Offline"
  1760. msgstr ""
  1761. #: [presence]error
  1762. msgid "Error"
  1763. msgstr "Kļūda"
  1764. #: [mood]afraid
  1765. msgid "afraid"
  1766. msgstr ""
  1767. #: [mood]amazed
  1768. msgid "amazed"
  1769. msgstr ""
  1770. #: [mood]amorous
  1771. msgid "amorous"
  1772. msgstr ""
  1773. #: [mood]angry
  1774. msgid "angry"
  1775. msgstr ""
  1776. #: [mood]annoyed
  1777. msgid "annoyed"
  1778. msgstr ""
  1779. #: [mood]anxious
  1780. msgid "anxious"
  1781. msgstr ""
  1782. #: [mood]aroused
  1783. msgid "aroused"
  1784. msgstr ""
  1785. #: [mood]ashamed
  1786. msgid "ashamed"
  1787. msgstr ""
  1788. #: [mood]bored
  1789. msgid "bored"
  1790. msgstr ""
  1791. #: [mood]brave
  1792. msgid "brave"
  1793. msgstr ""
  1794. #: [mood]calm
  1795. msgid "calm"
  1796. msgstr ""
  1797. #: [mood]cautious
  1798. msgid "cautious"
  1799. msgstr ""
  1800. #: [mood]cold
  1801. msgid "cold"
  1802. msgstr ""
  1803. #: [mood]confident
  1804. msgid "confident"
  1805. msgstr ""
  1806. #: [mood]confused
  1807. msgid "confused"
  1808. msgstr ""
  1809. #: [mood]contemplative
  1810. msgid "contemplative"
  1811. msgstr ""
  1812. #: [mood]contented
  1813. msgid "contented"
  1814. msgstr ""
  1815. #: [mood]cranky
  1816. msgid "cranky"
  1817. msgstr ""
  1818. #: [mood]crazy
  1819. msgid "crazy"
  1820. msgstr ""
  1821. #: [mood]creative
  1822. msgid "creative"
  1823. msgstr ""
  1824. #: [mood]curious
  1825. msgid "curious"
  1826. msgstr ""
  1827. #: [mood]dejected
  1828. msgid "dejected"
  1829. msgstr ""
  1830. #: [mood]depressed
  1831. msgid "depressed"
  1832. msgstr ""
  1833. #: [mood]disappointed
  1834. msgid "disappointed"
  1835. msgstr ""
  1836. #: [mood]disgusted
  1837. msgid "disgusted"
  1838. msgstr ""
  1839. #: [mood]dismayed
  1840. msgid "dismayed"
  1841. msgstr ""
  1842. #: [mood]distracted
  1843. msgid "distracted"
  1844. msgstr ""
  1845. #: [mood]embarrassed
  1846. msgid "embarrassed"
  1847. msgstr ""
  1848. #: [mood]envious
  1849. msgid "envious"
  1850. msgstr ""
  1851. #: [mood]excited
  1852. msgid "excited"
  1853. msgstr ""
  1854. #: [mood]flirtatious
  1855. msgid "flirtatious"
  1856. msgstr ""
  1857. #: [mood]frustrated
  1858. msgid "frustrated"
  1859. msgstr ""
  1860. #: [mood]grateful
  1861. msgid "grateful"
  1862. msgstr ""
  1863. #: [mood]grieving
  1864. msgid "grieving"
  1865. msgstr ""
  1866. #: [mood]grumpy
  1867. msgid "grumpy"
  1868. msgstr ""
  1869. #: [mood]guilty
  1870. msgid "guilty"
  1871. msgstr ""
  1872. #: [mood]happy
  1873. msgid "happy"
  1874. msgstr ""
  1875. #: [mood]hopeful
  1876. msgid "hopeful"
  1877. msgstr ""
  1878. #: [mood]hot
  1879. msgid "hot"
  1880. msgstr ""
  1881. #: [mood]humbled
  1882. msgid "humbled"
  1883. msgstr ""
  1884. #: [mood]humiliated
  1885. msgid "humiliated"
  1886. msgstr ""
  1887. #: [mood]hungry
  1888. msgid "hungry"
  1889. msgstr ""
  1890. #: [mood]hurt
  1891. msgid "hurt"
  1892. msgstr ""
  1893. #: [mood]impressed
  1894. msgid "impressed"
  1895. msgstr ""
  1896. #: [mood]in_awe
  1897. msgid "in awe"
  1898. msgstr ""
  1899. #: [mood]in_love
  1900. msgid "in love"
  1901. msgstr ""
  1902. #: [mood]indignant
  1903. msgid "indignant"
  1904. msgstr ""
  1905. #: [mood]interested
  1906. msgid "interested"
  1907. msgstr ""
  1908. #: [mood]intoxicated
  1909. msgid "intoxicated"
  1910. msgstr ""
  1911. #: [mood]invincible
  1912. msgid "invincible"
  1913. msgstr ""
  1914. #: [mood]jealous
  1915. msgid "jealous"
  1916. msgstr ""
  1917. #: [mood]lonely
  1918. msgid "lonely"
  1919. msgstr ""
  1920. #: [mood]lost
  1921. msgid "lost"
  1922. msgstr ""
  1923. #: [mood]lucky
  1924. msgid "lucky"
  1925. msgstr ""
  1926. #: [mood]mean
  1927. msgid "mean"
  1928. msgstr ""
  1929. #: [mood]moody
  1930. msgid "moody"
  1931. msgstr ""
  1932. #: [mood]nervous
  1933. msgid "nervous"
  1934. msgstr ""
  1935. #: [mood]neutral
  1936. msgid "neutral"
  1937. msgstr ""
  1938. #: [mood]offended
  1939. msgid "offended"
  1940. msgstr ""
  1941. #: [mood]outraged
  1942. msgid "outraged"
  1943. msgstr ""
  1944. #: [mood]playful
  1945. msgid "playful"
  1946. msgstr ""
  1947. #: [mood]proud
  1948. msgid "proud"
  1949. msgstr ""
  1950. #: [mood]relaxed
  1951. msgid "relaxed"
  1952. msgstr ""
  1953. #: [mood]relieved
  1954. msgid "relieved"
  1955. msgstr ""
  1956. #: [mood]restless
  1957. msgid "restless"
  1958. msgstr ""
  1959. #: [mood]sad
  1960. msgid "sad"
  1961. msgstr ""
  1962. #: [mood]sarcastic
  1963. msgid "sarcastic"
  1964. msgstr ""
  1965. #: [mood]satisfied
  1966. msgid "satisfied"
  1967. msgstr ""
  1968. #: [mood]serious
  1969. msgid "serious"
  1970. msgstr ""
  1971. #: [mood]shocked
  1972. msgid "shocked"
  1973. msgstr ""
  1974. #: [mood]shy
  1975. msgid "shy"
  1976. msgstr ""
  1977. #: [mood]sick
  1978. msgid "sick"
  1979. msgstr ""
  1980. #: [mood]sleepy
  1981. msgid "sleepy"
  1982. msgstr ""
  1983. #: [mood]spontaneous
  1984. msgid "spontaneous"
  1985. msgstr ""
  1986. #: [mood]stressed
  1987. msgid "stressed"
  1988. msgstr ""
  1989. #: [mood]strong
  1990. msgid "strong"
  1991. msgstr ""
  1992. #: [mood]surprised
  1993. msgid "surprised"
  1994. msgstr ""
  1995. #: [mood]thankful
  1996. msgid "thankful"
  1997. msgstr ""
  1998. #: [mood]thirsty
  1999. msgid "thirsty"
  2000. msgstr ""
  2001. #: [mood]tired
  2002. msgid "tired"
  2003. msgstr ""
  2004. #: [mood]undefined
  2005. msgid "undefined"
  2006. msgstr ""
  2007. #: [mood]weak
  2008. msgid "weak"
  2009. msgstr ""
  2010. #: [mood]worried
  2011. msgid "worried"
  2012. msgstr ""
  2013. #: [month]title
  2014. msgid "Month"
  2015. msgstr ""
  2016. #: [month]january
  2017. msgid "January"
  2018. msgstr ""
  2019. #: [month]february
  2020. msgid "February"
  2021. msgstr ""
  2022. #: [month]march
  2023. msgid "March"
  2024. msgstr ""
  2025. #: [month]april
  2026. msgid "April"
  2027. msgstr ""
  2028. #: [month]may
  2029. msgid "May"
  2030. msgstr ""
  2031. #: [month]june
  2032. msgid "June"
  2033. msgstr ""
  2034. #: [month]july
  2035. msgid "July"
  2036. msgstr ""
  2037. #: [month]august
  2038. msgid "August"
  2039. msgstr ""
  2040. #: [month]september
  2041. msgid "September"
  2042. msgstr ""
  2043. #: [month]october
  2044. msgid "October"
  2045. msgstr ""
  2046. #: [month]november
  2047. msgid "November"
  2048. msgstr ""
  2049. #: [month]december
  2050. msgid "December"
  2051. msgstr ""
  2052. #: [year]title
  2053. msgid "Year"
  2054. msgstr ""
  2055. #: [date]today
  2056. msgid "Today"
  2057. msgstr ""
  2058. #: [date]tomorrow
  2059. msgid "Tomorrow"
  2060. msgstr ""
  2061. #: [date]yesterday
  2062. msgid "Yesterday"
  2063. msgstr ""
  2064. #: [date]ago
  2065. msgid "%d days ago"
  2066. msgstr ""
  2067. #: [date]day
  2068. msgid "day"
  2069. msgstr ""
  2070. #: [post]title
  2071. msgid "Title"
  2072. msgstr ""
  2073. #: [post]place
  2074. msgid "Place"
  2075. msgstr ""
  2076. #: [post]by
  2077. msgid "by"
  2078. msgstr ""
  2079. #: [post]geolocalisation
  2080. msgid "Geolocalisation"
  2081. msgstr ""
  2082. #: [post]email
  2083. msgid "email"
  2084. msgstr ""
  2085. #: [post]empty
  2086. msgid "No content"
  2087. msgstr ""
  2088. #: [post]no_comments
  2089. msgid "No comments yet"
  2090. msgstr ""
  2091. #: [post]older
  2092. msgid "Get older posts"
  2093. msgstr ""
  2094. #: [post]new_items
  2095. msgid "%s new items"
  2096. msgstr ""
  2097. #: [post]comment_error
  2098. msgid "Comment publication error"
  2099. msgstr ""
  2100. #: [post]comments_get
  2101. msgid "Get the comments"
  2102. msgstr ""
  2103. #: [post]comment_add
  2104. msgid "Add a comment"
  2105. msgstr "Pievienot komentāru"
  2106. #: [post]share
  2107. msgid "Share with"
  2108. msgstr "Dalīt ar"
  2109. #: [post]share_everyone
  2110. msgid "Everyone"
  2111. msgstr "Ikviens"
  2112. #: [post]updated
  2113. msgid "Updated"
  2114. msgstr ""
  2115. #: [post]content_not_found
  2116. msgid "Content not found"
  2117. msgstr ""
  2118. #: [post]default_title
  2119. msgid "Contact publication"
  2120. msgstr ""
  2121. #: [post]comments
  2122. msgid "Comments"
  2123. msgstr ""
  2124. #: [post]original_deleted
  2125. msgid "Original post deleted"
  2126. msgstr ""
  2127. #: [api]error
  2128. msgid "The API is not reachable, try again later"
  2129. msgstr ""
  2130. #: [field]type_here
  2131. msgid "Type here"
  2132. msgstr ""