uk.po 50 KB

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