br.po 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817
  1. #
  2. # Translators:
  3. # Irriep Nala Novram <allannkorh@yahoo.fr>, 2017
  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: Breton (http://www.transifex.com/movim/movim/language/br/)\n"
  112. "Language: br\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=2; plural=(n > 1);\n"
  117. "X-Generator: Translate Toolkit 2.2.5\n"
  118. #: [about]thanks
  119. msgid "Thanks"
  120. msgstr "Trugarez"
  121. #: [about]developers
  122. msgid "Developers"
  123. msgstr "Diorroerien"
  124. #: [about]translators
  125. msgid "Translators"
  126. msgstr "Troerien"
  127. #: [about]translators_text
  128. msgid "Thanks to all the translators"
  129. msgstr "Trugarez d'an holl droerien"
  130. #: [about]software
  131. msgid "Software"
  132. msgstr "Meziant"
  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 ""
  142. #: [account]title [page]account
  143. msgid "Account"
  144. msgstr "Kont"
  145. #: [account]password_change_title
  146. msgid "Change my password"
  147. msgstr "Kemm ma ger-tremen"
  148. #: [account]password [db]password [credentials]password [form]password
  149. #: [input]password
  150. msgid "Password"
  151. msgstr "Ger-tremen"
  152. #: [account]password_confirmation
  153. msgid "Password confirmation"
  154. msgstr "Kadarnadur ar ger-tremen"
  155. #: [account]password_changed
  156. msgid "The password has been updated"
  157. msgstr "Hizivaet eo bet ar ger-tremen"
  158. #: [account]password_not_valid
  159. msgid "Please provide a valid password (6 characters minimum)"
  160. msgstr "Roit ur ger-tremen reizh mar plij (6 arouezenn da vihanañ)"
  161. #: [account]password_not_same
  162. msgid "The provided passwords are not the same"
  163. msgstr "N'eo ket heñvel ar gerioù-tremen roet"
  164. #: [account]delete
  165. msgid "Delete your account"
  166. msgstr "Dilemel ho kont"
  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 "Emaoc'h o vont da zilemel ho kont XMPP hag an holl ditouroù liammet outañ (profil, darempredoù hag embannadennoù)."
  170. #: [account]delete_text_confirm
  171. msgid "Are you sure that you want to delete it ?"
  172. msgstr "Ha sur oc'h e fell deoc'h da zilemel anezhi?"
  173. #: [account]gateway_title
  174. msgid "Gateway"
  175. msgstr "Treuzell"
  176. #: [account]clear
  177. msgid "Leave this instance"
  178. msgstr "Kuitaat an instañs-mañ"
  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 "Emaoc'h o vont da zilemel an holl ditouroù liammet gant ho kont war an instañs-mañ eus Movin (profil, darempredoù hag embannadennoù)."
  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 "Kouiñ ur gont nevez"
  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 "Oberennoù"
  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 ""
  221. #: [db]connect_success
  222. msgid "Movim is connected to the database"
  223. msgstr ""
  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 ""
  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. #, fuzzy
  426. msgctxt "[chatroom]name"
  427. msgid "Name"
  428. msgstr "Anv"
  429. #: [chatroom]nickname [general]nickname [chatrooms]nickname
  430. msgid "Nickname"
  431. msgstr "Lezanv"
  432. #: [chatroom]autojoin_label
  433. msgid "Do you want do join automaticaly this Chat Room ?"
  434. msgstr ""
  435. #: [chatroom]bad_id [chatrooms]bad_id
  436. msgid "Bad Chatroom ID"
  437. msgstr ""
  438. #: [chatroom]empty_name [chatrooms]empty_name
  439. msgid "Empty name"
  440. msgstr ""
  441. #: [bookmarks]updated
  442. msgid "Bookmarks updated"
  443. msgstr ""
  444. #: [bookmarks]error
  445. msgid "An error occured :"
  446. msgstr ""
  447. #: [bookmarks]configure
  448. #, fuzzy
  449. msgid "Configure"
  450. msgstr "Kefluniadur"
  451. #: [url]add
  452. msgid "Add a new URL"
  453. msgstr ""
  454. #: [url]url
  455. msgid "URL"
  456. msgstr ""
  457. #: [url]name
  458. #, fuzzy
  459. msgctxt "[url]name"
  460. msgid "Name"
  461. msgstr "Anv"
  462. #: [message]published
  463. msgid "Message Published"
  464. msgstr ""
  465. #: [message]error
  466. msgid "Your message could not be sent, please try again later"
  467. msgstr ""
  468. #: [message]encrypted
  469. msgid "Encrypted message"
  470. msgstr ""
  471. #: [message]composing [chats]composing
  472. msgid "Composing..."
  473. msgstr "O kompozañ..."
  474. #: [message]paused [chats]paused
  475. msgid "Paused..."
  476. msgstr ""
  477. #: [message]gone
  478. msgid "Contact gone"
  479. msgstr ""
  480. #: [message]history
  481. msgid "%s messages retrieved"
  482. msgstr ""
  483. #: [message]edit_help
  484. msgid "You can use the up arrow ↑ to edit your previous message"
  485. msgstr ""
  486. #: [chat]attention
  487. msgid "%s needs your attention"
  488. msgstr ""
  489. #: [chat]placeholder
  490. msgid "Your message here..."
  491. msgstr ""
  492. #: [chat]smileys
  493. msgid "Smileys"
  494. msgstr ""
  495. #: [chat]frequent [chats]frequent
  496. msgid "Frequent contacts"
  497. msgstr ""
  498. #: [chat]new_title
  499. msgid "Nothing here yet…"
  500. msgstr ""
  501. #: [chat]new_text
  502. msgid "Don't be shy, send a first message to start the discussion"
  503. msgstr ""
  504. #: [chat]invitation
  505. msgid "You received an invitation to join a chatroom"
  506. msgstr ""
  507. #: [chat]invitation_join
  508. msgid "Join %s"
  509. msgstr ""
  510. #: [chat]profile
  511. msgid "See the profile"
  512. msgstr ""
  513. #: [chat]clear
  514. msgid "Clear the history"
  515. msgstr ""
  516. #: [chat]edit_previous
  517. msgid "Edit last message"
  518. msgstr ""
  519. #: [chat]report_abuse
  520. msgid "Report abuse"
  521. msgstr ""
  522. #: [chatroom]members
  523. msgid "Members"
  524. msgstr ""
  525. #: [chatroom]connected [chatrooms]connected
  526. msgid "Connected to the chatroom"
  527. msgstr ""
  528. #: [chatroom]disconnected [chatrooms]disconnected
  529. msgid "Disconnected from the chatroom"
  530. msgstr ""
  531. #: [chatroom]config [communityaffiliation]configuration [group]configuration
  532. #: [page]configuration
  533. msgid "Configuration"
  534. msgstr "Kefluniadur"
  535. #: [chatroom]config_saved [communityaffiliation]config_saved
  536. msgid "Configuration saved"
  537. msgstr ""
  538. #: [chatroom]subject
  539. msgid "Subject"
  540. msgstr ""
  541. #: [chatroom]subject_changed
  542. msgid "Subject changed"
  543. msgstr ""
  544. #: [chatroom]administration [page]administration
  545. msgid "Administration"
  546. msgstr ""
  547. #: [chats]empty_title
  548. msgid "No chats yet..."
  549. msgstr ""
  550. #: [chats]empty
  551. msgid "Open a new conversation by clicking on the %s button below or visit the %sContacts%s page."
  552. msgstr ""
  553. #: [chats]add
  554. msgid "Chat with a contact"
  555. msgstr ""
  556. #: [chats]more
  557. msgid "Load more contacts"
  558. msgstr ""
  559. #: [button]chat
  560. msgid "Chat"
  561. msgstr "Flapva"
  562. #: [button]new
  563. msgid "New conversation"
  564. msgstr ""
  565. #: [communities]empty_text [group]empty_text
  566. msgid "Discover, follow and share"
  567. msgstr ""
  568. #: [communities]counter
  569. msgid "%s communities"
  570. msgstr ""
  571. #: [communities]search_server [group]search_server
  572. msgid "Search for a new server"
  573. msgstr ""
  574. #: [communities]servers
  575. msgid "Communities servers"
  576. msgstr ""
  577. #: [communities]disco_error [groups]disco_error
  578. msgid "This server doesn't exists"
  579. msgstr ""
  580. #: [communitiesserver]created
  581. msgid "Community created successfully"
  582. msgstr ""
  583. #: [communitiesserver]empty_server
  584. msgid "There is no Communities yet on this server."
  585. msgstr ""
  586. #: [communitiesserver]add
  587. msgid "Create a new community on %s"
  588. msgstr ""
  589. #: [communitiesserver]name
  590. msgid "Community name"
  591. msgstr ""
  592. #: [communitiesserver]name_example [groups]name_example
  593. msgid "My Little Pony - Fan Club"
  594. msgstr ""
  595. #: [communitiesserver]name_error
  596. msgid "Please provide a valid community name (4 characters minimum)"
  597. msgstr ""
  598. #: [communitiesserver]no_creation
  599. msgid "You cannot create a new community on this server"
  600. msgstr ""
  601. #: [communityaffiliation]subscriptions [group]subscriptions
  602. #: [statistics]subscriptions
  603. msgid "Subscriptions"
  604. msgstr ""
  605. #: [communityaffiliation]deleted
  606. msgid "Community deleted successfully"
  607. msgstr ""
  608. #: [communityaffiliation]delete_title
  609. msgid "Delete the community"
  610. msgstr ""
  611. #: [communityaffiliation]delete_text
  612. msgid "You are going to delete the following community. Please confirm your action."
  613. msgstr ""
  614. #: [communityaffiliation]delete_clean_text
  615. msgid "It seems that this community doesn't exists anymore. Do you want to remove it from your subscriptions?"
  616. msgstr ""
  617. #: [communityaffiliation]owner
  618. msgid "Owner"
  619. msgstr ""
  620. #: [communityaffiliation]owners
  621. msgid "Owners"
  622. msgstr ""
  623. #: [communityaffiliation]publisher
  624. msgid "Publisher"
  625. msgstr ""
  626. #: [communityaffiliation]publishers
  627. #: [communityconfig]publish_model_publishers_title
  628. msgid "Publishers"
  629. msgstr ""
  630. #: [communityaffiliation]roles
  631. msgid "Roles"
  632. msgstr ""
  633. #: [communityaffiliation]role_set
  634. msgid "Role correctly set"
  635. msgstr ""
  636. #: [communityconfig]publication
  637. msgid "Publication"
  638. msgstr ""
  639. #: [communityconfig]publish_model_open_title
  640. msgid "Open"
  641. msgstr ""
  642. #: [communityconfig]publish_model_open_text
  643. msgid "Everyone can publish"
  644. msgstr ""
  645. #: [communityconfig]publish_model_publishers_text
  646. msgid "The publishers can publish"
  647. msgstr ""
  648. #: [communityconfig]publish_model_subscribers_title
  649. msgid "Subscribers"
  650. msgstr ""
  651. #: [communityconfig]publish_model_subscribers_text
  652. msgid "The subscribers can publish"
  653. msgstr ""
  654. #: [communitydata]sub [groups]sub
  655. msgid "%s subscribers"
  656. msgstr ""
  657. #: [communitydata]num [groups]num
  658. msgid "%s posts"
  659. msgstr ""
  660. #: [communitydata]public
  661. msgid "Public page"
  662. msgstr ""
  663. #: [communityheader]subscribe [group]subscribe
  664. msgid "Subscribe"
  665. msgstr ""
  666. #: [communityheader]unsubscribe [group]unsubscribe
  667. msgid "Unsubscribe"
  668. msgstr ""
  669. #: [communityheader]subscribed [group]subscribed
  670. msgid "Subscribed"
  671. msgstr ""
  672. #: [communityheader]unsubscribed [group]unsubscribed
  673. msgid "Unsubscribed"
  674. msgstr ""
  675. #: [communityheader]subscription_unsupported
  676. msgid "The subscriptions are disabled for this community"
  677. msgstr ""
  678. #: [communityheader]label_label
  679. msgid "Give a label for this community"
  680. msgstr ""
  681. #: [communityheader]label_placeholder
  682. msgid "My Community Name"
  683. msgstr ""
  684. #: [communityheader]share_subscription
  685. msgid "Share this subscription publicly"
  686. msgstr ""
  687. #: [communityheader]share_subscription_text
  688. msgid "It will appear on your profile"
  689. msgstr ""
  690. #: [communityheader]unsubscribe_text
  691. msgid "You are going to unsubscribe from this community"
  692. msgstr ""
  693. #: [communityheader]sure [group]sure
  694. msgid "Are you sure ?"
  695. msgstr ""
  696. #: [communityposts]nsfw_title
  697. msgid "Adult content blocked"
  698. msgstr ""
  699. #: [communityposts]nsfw_message
  700. msgid "Some adult content has been blocked on this page. You can enable the display of adult content in the configuration page."
  701. msgstr ""
  702. #: [communitysubscriptions]subscriptions [groups]subscriptions
  703. msgid "My Subscriptions"
  704. msgstr ""
  705. #: [communitysubscriptions]empty_title [groups]empty_title
  706. msgid "Hello"
  707. msgstr ""
  708. #: [communitysubscriptions]empty_text1 [groups]empty_text1
  709. msgid "Here you will be able to manage all your subscriptions."
  710. msgstr ""
  711. #: [communitysubscriptions]empty_text2 [groups]empty_text2
  712. msgid "You don't have any group subscriptions yet."
  713. msgstr ""
  714. #: [config]general
  715. msgid "General"
  716. msgstr ""
  717. #: [config]language
  718. msgid "Language"
  719. msgstr "Yezh"
  720. #: [config]roster
  721. msgid "Roster display"
  722. msgstr ""
  723. #: [config]roster_show
  724. msgid "Show the offline contacts"
  725. msgstr ""
  726. #: [config]roster_hide
  727. msgid "Hide the offline contacts"
  728. msgstr ""
  729. #: [config]appearence
  730. msgid "Appearence"
  731. msgstr ""
  732. #: [config]not_valid
  733. msgid "Configuration invalid"
  734. msgstr ""
  735. #: [config]advanced
  736. msgid "Advanced Configuration"
  737. msgstr ""
  738. #: [config]nsfw
  739. msgid "Display adult content"
  740. msgstr ""
  741. #: [config]nsfw_text
  742. msgid "Will allow you to read the posts tagged with the #nsfw tag"
  743. msgstr ""
  744. #: [config]night_mode
  745. msgid "Night Mode"
  746. msgstr ""
  747. #: [config]night_mode_text
  748. msgid "Use dark colors to rest your eyes"
  749. msgstr ""
  750. #: [cssurl]label
  751. msgid "Custom CSS URL for your blog"
  752. msgstr ""
  753. #: [general]legend
  754. msgid "General Informations"
  755. msgstr "Titouroù hollek"
  756. #: [general]name [chatrooms]name
  757. msgid "Name"
  758. msgstr "Anv"
  759. #: [general]date_of_birth
  760. msgid "Date of Birth"
  761. msgstr "Devezh ganedigezh"
  762. #: [general]gender
  763. msgid "Gender"
  764. msgstr "Jener"
  765. #: [general]marital
  766. msgid "Marital Status"
  767. msgstr "Statud Familh"
  768. #: [general]email
  769. msgid "Email"
  770. msgstr ""
  771. #: [general]website
  772. msgid "Website"
  773. msgstr "Lec'hienn web"
  774. #: [general]about
  775. msgid "About Me"
  776. msgstr "Diwar ma fenn"
  777. #: [general]accounts
  778. msgid "Other Accounts"
  779. msgstr ""
  780. #: [general]tune
  781. msgid "Is Listening"
  782. msgstr ""
  783. #: [position]legend
  784. msgid "Geographic Position"
  785. msgstr ""
  786. #: [position]locality
  787. msgid "Locality"
  788. msgstr ""
  789. #: [position]country
  790. msgid "Country"
  791. msgstr ""
  792. #: [mood]title
  793. msgid "Mood"
  794. msgstr ""
  795. #: [mood]im
  796. msgid "I'm "
  797. msgstr ""
  798. #: [listen]title
  799. msgid "Listening"
  800. msgstr ""
  801. #: [last]title
  802. msgid "Last seen"
  803. msgstr ""
  804. #: [client]title
  805. msgid "Client Informations"
  806. msgstr "Titouroù an implijer"
  807. #: [explore]last_registered
  808. msgid "Last registered"
  809. msgstr ""
  810. #: [explore]explore
  811. msgid "Find some new friends"
  812. msgstr ""
  813. #: [edit]title [button]edit
  814. msgid "Edit"
  815. msgstr ""
  816. #: [edit]alias
  817. msgid "Alias"
  818. msgstr "Alias"
  819. #: [edit]group
  820. msgid "Group"
  821. msgstr ""
  822. #: [delete]title
  823. msgid "Are you sure?"
  824. msgstr ""
  825. #: [delete]text
  826. msgid "You are going to delete one of your contacts, please confirm your action"
  827. msgstr ""
  828. #: [age]years
  829. msgid "%s years"
  830. msgstr ""
  831. #: [blog]last
  832. msgid "Last public post"
  833. msgstr ""
  834. #: [blog]visit
  835. msgid "Visit the blog to see all the public posts"
  836. msgstr ""
  837. #: [subscription]to
  838. msgid "You can see this contact status"
  839. msgstr ""
  840. #: [subscription]to_button
  841. msgid "Share my status"
  842. msgstr ""
  843. #: [subscription]to_text
  844. msgid "But this contact cannot see yours"
  845. msgstr ""
  846. #: [subscription]from
  847. msgid "You are not subscribed to this contact"
  848. msgstr ""
  849. #: [subscription]from_button
  850. msgid "Ask to subscribe"
  851. msgstr ""
  852. #: [subscription]from_text
  853. msgid "But this contact can still see if you are online"
  854. msgstr ""
  855. #: [subscription]nil
  856. msgid "No subscriptions"
  857. msgstr ""
  858. #: [subscription]nil_button [button]invite
  859. msgid "Invite"
  860. msgstr ""
  861. #: [subscription]nil_text
  862. msgid "This contact is in your contact list but there is no subscriptions between the two accounts"
  863. msgstr ""
  864. #: [general]legend
  865. msgid "General Information"
  866. msgstr ""
  867. #: [client]title
  868. msgid "Client Information"
  869. msgstr ""
  870. #: [subscription]nil_text
  871. msgid "This contact is in your contact list but there is no subscription between the two accounts"
  872. msgstr ""
  873. #: [group]unsubscribe_text
  874. msgid "You are going to unsubscribe from this Group"
  875. msgstr ""
  876. #: [group]share_label
  877. msgid "Make your membership to this group public to your friends"
  878. msgstr ""
  879. #: [group]label_label
  880. msgid "Give a label for this group"
  881. msgstr ""
  882. #: [group]empty
  883. msgid "Something bad happened to this group"
  884. msgstr ""
  885. #: [group]config_saved
  886. msgid "Group configuration saved"
  887. msgstr ""
  888. #: [group]delete_title
  889. msgid "Delete the group"
  890. msgstr ""
  891. #: [group]delete_text
  892. msgid "You are going to delete the following group. Please confirm your action."
  893. msgstr ""
  894. #: [group]delete_clean_text
  895. msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?"
  896. msgstr ""
  897. #: [group]counter
  898. msgid "%s groups on this server"
  899. msgstr ""
  900. #: [group]servers
  901. msgid "Groups servers"
  902. msgstr ""
  903. #: [group]help_info1
  904. msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users."
  905. msgstr ""
  906. #: [group]help_info2
  907. 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."
  908. msgstr ""
  909. #: [group]help_info3
  910. msgid "Done? You can now publish a new post in the Group by using the %s button."
  911. msgstr ""
  912. #: [group]help_info4
  913. 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."
  914. msgstr ""
  915. #: [groups]contact_post [menu]contact_post [hello]contact_post
  916. msgid "Contact post"
  917. msgstr ""
  918. #: [groups]add
  919. msgid "Create a new Group on %s"
  920. msgstr ""
  921. #: [groups]name
  922. msgid "Group name"
  923. msgstr ""
  924. #: [groups]created
  925. msgid "Group created successfully"
  926. msgstr ""
  927. #: [groups]deleted
  928. msgid "Group deleted successfully"
  929. msgstr ""
  930. #: [groups]name_error
  931. msgid "Please provide a valid group name (4 characters minimum)"
  932. msgstr ""
  933. #: [groups]no_creation
  934. msgid "You cannot create a new Group on this server"
  935. msgstr ""
  936. #: [help]faq
  937. msgid "Frequently Asked Questions"
  938. msgstr ""
  939. #: [apps]question
  940. msgid "Have you already tried Movim on other platforms?"
  941. msgstr ""
  942. #: [apps]phone
  943. msgid "Apps for your phone"
  944. msgstr ""
  945. #: [apps]android
  946. msgid "Try out our official Android app"
  947. msgstr ""
  948. #: [apps]recommend
  949. msgid "We also recommend"
  950. msgstr ""
  951. #: [apps]computer
  952. msgid "Apps for your computer"
  953. msgstr ""
  954. #: [apps]computer_text
  955. msgid "Our official apps are available on our website"
  956. msgstr ""
  957. #: [contact]title
  958. msgid "Administrators & Contact"
  959. msgstr ""
  960. #: [chatroom]question
  961. msgid "Chat with the Movim team?"
  962. msgstr ""
  963. #: [chatroom]button
  964. msgid "Add the chatroom"
  965. msgstr ""
  966. #: [init]location
  967. msgid "Location node created"
  968. msgstr ""
  969. #: [init]bookmark
  970. msgid "Bookmark node created"
  971. msgstr ""
  972. #: [init]vcard4
  973. msgid "Profile node created"
  974. msgstr ""
  975. #: [init]avatar
  976. msgid "Avatar node created"
  977. msgstr ""
  978. #: [init]subscriptions
  979. msgid "Subscriptions node created"
  980. msgstr ""
  981. #: [init]microblog
  982. msgid "Microblog node created"
  983. msgstr ""
  984. #: [invitations]title
  985. msgid "Pending Invitations"
  986. msgstr ""
  987. #: [invitations]wants_to_talk
  988. msgid "%s wants to talk with you"
  989. msgstr ""
  990. #: [error]username
  991. msgid "Wrong username"
  992. msgstr "Anv-implijer direizh"
  993. #: [error]jid
  994. msgid "Invalid JID"
  995. msgstr "JID direizh"
  996. #: [error]empty_challenge
  997. msgid "Empty Challenge from the server"
  998. msgstr ""
  999. #: [error]dns
  1000. msgid "XMPP Domain error, your account is not a correct Jabber ID"
  1001. msgstr "Kudenn Domani XMPP, ho kont n'eo ket un ID Jabber reizh"
  1002. #: [error]data_missings
  1003. msgid "Some data are missing !"
  1004. msgstr "Roadennoù 'zo a vank!"
  1005. #: [error]wrong_password
  1006. msgid "Wrong password"
  1007. msgstr "Ger-tremen direizh"
  1008. #: [error]internal
  1009. msgid "Internal server error"
  1010. msgstr "Fazi diabarzh ar servijer"
  1011. #: [error]session
  1012. msgid "Session error"
  1013. msgstr "Fazi dalc'h"
  1014. #: [error]account_created
  1015. msgid "Account successfully created"
  1016. msgstr "Kont krouet gant berzh"
  1017. #: [error]mec_error
  1018. msgid "The server takes too much time to respond"
  1019. msgstr ""
  1020. #: [error]impossible
  1021. msgid "Impossible login"
  1022. msgstr ""
  1023. #: [error]default
  1024. msgid "Unknown error"
  1025. msgstr "Fazi dianavezet"
  1026. #: [error]login_format
  1027. msgid "Invalid username format"
  1028. msgstr ""
  1029. #: [error]password_format
  1030. msgid "Invalid password format"
  1031. msgstr ""
  1032. #: [error]unauthorized
  1033. msgid "Your XMPP server is unauthorized"
  1034. msgstr ""
  1035. #: [error]wrong_account
  1036. msgid "Movim failed to authenticate. You entered wrong data"
  1037. msgstr "N'eo ket deuet a-benn Movim da vezañ anavezet. Roadennoù fall ho peus ebarzhet."
  1038. #: [error]mechanism
  1039. msgid "Authentication mechanism not supported by Movim"
  1040. msgstr ""
  1041. #: [error]fail_auth
  1042. msgid "The XMPP authentification failed"
  1043. msgstr "An dilesadur XMPP a zo c'hwitet"
  1044. #: [form]username
  1045. msgid "My address"
  1046. msgstr "Ma chomlec'h"
  1047. #: [form]whitelist_info
  1048. msgid "You can login with accounts from these servers"
  1049. msgstr ""
  1050. #: [form]connected
  1051. msgid "Connected"
  1052. msgstr ""
  1053. #: [form]population
  1054. msgid "Population"
  1055. msgstr ""
  1056. #: [form]invite_chatroom
  1057. msgid "%s invited you to join a chatroom"
  1058. msgstr ""
  1059. #: [login_anonymous]bad_username
  1060. msgid "Bad nickname (between 4 and 40 characters)"
  1061. msgstr ""
  1062. #: [menu]empty_title
  1063. msgid "No news yet…"
  1064. msgstr ""
  1065. #: [menu]empty
  1066. msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the communities you have subscribed."
  1067. msgstr ""
  1068. #: [menu]discover [button]discover
  1069. msgid "Discover"
  1070. msgstr ""
  1071. #: [menu]refresh
  1072. msgid "Refresh all the streams"
  1073. msgstr ""
  1074. #: [menu]public [post]public_yes
  1075. msgid "This post is public"
  1076. msgstr ""
  1077. #: [menu]all
  1078. msgid "All"
  1079. msgstr ""
  1080. #: [menu]mine
  1081. msgid "My publications"
  1082. msgstr ""
  1083. #: [menu]contacts [page]contacts
  1084. msgid "Contacts"
  1085. msgstr ""
  1086. #: [menu]add_post
  1087. msgid "Write a new post…"
  1088. msgstr ""
  1089. #: [notifs]title [onboarding]notifications_title
  1090. msgid "Notifications"
  1091. msgstr ""
  1092. #: [notifs]empty
  1093. msgid "No new notifications"
  1094. msgstr ""
  1095. #: [onboarding]notifications_text
  1096. msgid "Movim can notify you when a new post is published or if you receive messages"
  1097. msgstr ""
  1098. #: [onboarding]notifications_text_second
  1099. msgid "You can always disable them afterwards"
  1100. msgstr ""
  1101. #: [onboarding]public_title
  1102. msgid "Public profile"
  1103. msgstr ""
  1104. #: [onboarding]public_text
  1105. msgid "Make your profile public and allow other users to find you and make new contacts more easily"
  1106. msgstr ""
  1107. #: [onboarding]public_text_second
  1108. msgid "You can always disable this in the configuration afterwards"
  1109. msgstr ""
  1110. #: [onboarding]popups_title
  1111. msgid "Popups"
  1112. msgstr ""
  1113. #: [onboarding]popups_text
  1114. msgid "Movim is using popups for the video-conference feature, they are sometime blocked by the browsers"
  1115. msgstr ""
  1116. #: [onboarding]popups_text_second
  1117. msgid "Please be sure that they are enabled to use this feature properly"
  1118. msgstr ""
  1119. #: [post]news_feed
  1120. msgid "News Feed"
  1121. msgstr ""
  1122. #: [post]placeholder
  1123. msgid "Discover and register to the groups you are interested in"
  1124. msgstr ""
  1125. #: [post]content [publish]content_label
  1126. msgid "Content"
  1127. msgstr ""
  1128. #: [post]published
  1129. msgid "Post published"
  1130. msgstr ""
  1131. #: [post]deleted
  1132. msgid "Post deleted"
  1133. msgstr ""
  1134. #: [post]hot
  1135. msgid "What's Hot"
  1136. msgstr ""
  1137. #: [post]hot_text
  1138. msgid "Posts recently published in communities that you are not subscribed (yet)"
  1139. msgstr ""
  1140. #: [post]new [publish]new
  1141. msgid "New post"
  1142. msgstr ""
  1143. #: [post]repost
  1144. msgid "This is a re-post from %s"
  1145. msgstr ""
  1146. #: [post]repost_profile
  1147. msgid "See %s profile"
  1148. msgstr ""
  1149. #: [post]blog_last
  1150. msgid "Public posts from users"
  1151. msgstr ""
  1152. #: [post]public
  1153. msgid "Publish this post publicly?"
  1154. msgstr ""
  1155. #: [post]public_no
  1156. msgid "This post is private"
  1157. msgstr ""
  1158. #: [post]public_url
  1159. msgid "Public URL of this post"
  1160. msgstr ""
  1161. #: [post]delete_title [post]delete
  1162. msgid "Delete this post"
  1163. msgstr ""
  1164. #: [post]delete_text
  1165. msgid "You are going to delete this post, please confirm your action"
  1166. msgstr ""
  1167. #: [post]delete_comment
  1168. msgid "Are you sure that you want to delete this comment?"
  1169. msgstr ""
  1170. #: [post]discover
  1171. msgid "Discover more articles on the communities page"
  1172. msgstr ""
  1173. #: [post]more
  1174. msgid "Read more"
  1175. msgstr ""
  1176. #: [post]comments_disabled
  1177. msgid "Comments disabled"
  1178. msgstr ""
  1179. #: [post]comment_published
  1180. msgid "Comment published"
  1181. msgstr ""
  1182. #: [post]comment_deleted
  1183. msgid "Comment deleted"
  1184. msgstr ""
  1185. #: [hello]blog_title
  1186. msgid "Visit your public blog"
  1187. msgstr ""
  1188. #: [hello]blog_text
  1189. msgid "See your public posts and share them with all your contacts"
  1190. msgstr ""
  1191. #: [hello]share_title
  1192. msgid "Universal share button"
  1193. msgstr ""
  1194. #: [hello]share_text
  1195. 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"
  1196. msgstr ""
  1197. #: [hello]share_button
  1198. msgid "Share on Movim"
  1199. msgstr ""
  1200. #: [hello]enter_title
  1201. msgid "Oh! Hello!"
  1202. msgstr ""
  1203. #: [hello]enter_paragraph
  1204. msgid "It seems that you're new there! Welcome on Movim!"
  1205. msgstr ""
  1206. #: [hello]menu_title
  1207. msgid "Check the Menu"
  1208. msgstr ""
  1209. #: [hello]menu_paragraph
  1210. msgid "All the main Movim features are accessible there. Don't hesitate to navigate through the pages to discover more!"
  1211. msgstr ""
  1212. #: [hello]profile_title
  1213. msgid "Looks like you didn't complete your profile yet"
  1214. msgstr ""
  1215. #: [hello]profile_paragraph
  1216. msgid "You can go in the Configuration page to describe yourself and put a nice picture"
  1217. msgstr ""
  1218. #: [status]disconnect
  1219. msgid "Disconnect"
  1220. msgstr ""
  1221. #: [status]updated
  1222. msgid "Status updated"
  1223. msgstr ""
  1224. #: [status]presence
  1225. msgid "Presence"
  1226. msgstr ""
  1227. #: [publish]preview
  1228. msgid "Preview"
  1229. msgstr ""
  1230. #: [publish]help [page]help
  1231. msgid "Help"
  1232. msgstr "Sikour"
  1233. #: [publish]help_more
  1234. msgid "More help"
  1235. msgstr ""
  1236. #: [publish]help_manual
  1237. msgid "Markdown syntax manual"
  1238. msgstr ""
  1239. #: [publish]content_text
  1240. msgid "You can format your content using Markdown"
  1241. msgstr ""
  1242. #: [publish]link
  1243. msgid "Link"
  1244. msgstr ""
  1245. #: [publish]tags
  1246. msgid "Tags"
  1247. msgstr ""
  1248. #: [publish]valid_url
  1249. msgid "Please enter a valid URL"
  1250. msgstr ""
  1251. #: [publish]no_content_preview
  1252. msgid "No content to preview"
  1253. msgstr ""
  1254. #: [publish]no_title
  1255. msgid "Please provide a title"
  1256. msgstr ""
  1257. #: [publish]edit
  1258. msgid "Edit post"
  1259. msgstr ""
  1260. #: [publish]title [page]publish
  1261. msgid "Publish"
  1262. msgstr ""
  1263. #: [publish]attach
  1264. msgid "Add a file or a picture to your post"
  1265. msgstr ""
  1266. #: [publish]no_publication
  1267. msgid "You cannot publish a post on this Group"
  1268. msgstr ""
  1269. #: [publish]form_filled
  1270. msgid "Some fields have been filled in. Do you still want to go back and loose their content?"
  1271. msgstr ""
  1272. #: [publish]add_text
  1273. msgid "Click here to add some text to your publication"
  1274. msgstr ""
  1275. #: [publish]add_text_label
  1276. msgid "Add some text"
  1277. msgstr ""
  1278. #: [publishbrief]placeholder
  1279. msgid "What's new?"
  1280. msgstr ""
  1281. #: [publishbrief]post
  1282. msgid "Write a post"
  1283. msgstr ""
  1284. #: [publishbrief]add_link
  1285. msgid "Add a link"
  1286. msgstr ""
  1287. #: [rooms]add
  1288. msgid "Add a chatroom"
  1289. msgstr ""
  1290. #: [rooms]edit
  1291. msgid "Edit a chatroom"
  1292. msgstr ""
  1293. #: [rooms]empty_text1
  1294. msgid "You don't have any chatroom yet."
  1295. msgstr ""
  1296. #: [rooms]empty_text2
  1297. msgid "Add one by clicking on the add button."
  1298. msgstr ""
  1299. #: [chatrooms]title
  1300. msgid "Chatrooms"
  1301. msgstr ""
  1302. #: [chatrooms]name_placeholder
  1303. msgid "My Favorite Room"
  1304. msgstr ""
  1305. #: [chatrooms]users
  1306. msgid "Users in the room"
  1307. msgstr ""
  1308. #: [chatrooms]bad_nickname
  1309. msgid "Please enter a correct nickname (2 to 40 characters)"
  1310. msgstr ""
  1311. #: [chatrooms]conflict
  1312. msgid "Username already taken"
  1313. msgstr ""
  1314. #: [chatrooms]autojoin
  1315. msgid "Join this chatroom on connect"
  1316. msgstr ""
  1317. #: [chatrooms]registrationrequired
  1318. msgid "Chatroom cannot be joined, registration required"
  1319. msgstr ""
  1320. #: [room]anonymous_title
  1321. msgid "Public chatroom"
  1322. msgstr ""
  1323. #: [room]no_room
  1324. msgid "Please provide a room address"
  1325. msgstr ""
  1326. #: [room]anonymous_text1
  1327. msgid "You are currently logued as an anonymous user."
  1328. msgstr ""
  1329. #: [room]anonymous_text2
  1330. 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."
  1331. msgstr ""
  1332. #: [room]anonymous_login
  1333. msgid "Login on %s"
  1334. msgstr ""
  1335. #: [room]nick
  1336. msgid "Your nickname"
  1337. msgstr ""
  1338. #: [room]invite
  1339. msgid "Invite a contact"
  1340. msgstr ""
  1341. #: [room]invited
  1342. msgid "Invitation sent"
  1343. msgstr ""
  1344. #: [room]invite_code
  1345. msgid "Send this link to your contacts"
  1346. msgstr ""
  1347. #: [roster]ungrouped
  1348. msgid "Ungrouped"
  1349. msgstr "Distrollet"
  1350. #: [roster]show_disconnected
  1351. msgid "Show disconnected contacts"
  1352. msgstr ""
  1353. #: [roster]hide_disconnected
  1354. msgid "Hide disconnected contacts"
  1355. msgstr ""
  1356. #: [roster]show_group
  1357. msgid "Show group %s"
  1358. msgstr ""
  1359. #: [roster]hide_group
  1360. msgid "Hide group %s"
  1361. msgstr ""
  1362. #: [roster]jid_error
  1363. msgid "Please enter a valid Jabber ID"
  1364. msgstr ""
  1365. #: [roster]no_contacts_title
  1366. msgid "No contacts ?"
  1367. msgstr ""
  1368. #: [roster]no_contacts_text
  1369. msgid "You can add one using the + button below"
  1370. msgstr ""
  1371. #: [roster]show_hide
  1372. msgid "Show/Hide"
  1373. msgstr ""
  1374. #: [roster]add_title
  1375. msgid "Add a contact"
  1376. msgstr ""
  1377. #: [roster]add_contact_info1
  1378. msgid "Enter the Jabber ID of your contact."
  1379. msgstr ""
  1380. #: [roster]add_contact_info2
  1381. msgid "Press enter to validate."
  1382. msgstr ""
  1383. #: [roster]jid
  1384. msgid "JID"
  1385. msgstr ""
  1386. #: [roster]results
  1387. msgid "Results"
  1388. msgstr ""
  1389. #: [roster]added
  1390. msgid "Contact added"
  1391. msgstr ""
  1392. #: [roster]updated
  1393. msgid "Contact updated"
  1394. msgstr ""
  1395. #: [roster]deleted
  1396. msgid "Contact deleted"
  1397. msgstr ""
  1398. #: [roster]search
  1399. msgid "Search in your contacts"
  1400. msgstr ""
  1401. #: [roster]search_pod
  1402. msgid "Search a contact"
  1403. msgstr ""
  1404. #: [search]keyword
  1405. msgid "What are you looking for?"
  1406. msgstr ""
  1407. #: [search]subtitle
  1408. msgid "Open me using Ctrl + M"
  1409. msgstr ""
  1410. #: [share]error
  1411. msgid "This is not a valid url"
  1412. msgstr ""
  1413. #: [share]success
  1414. msgid "Sharing the URL"
  1415. msgstr ""
  1416. #: [statistics]title
  1417. msgid "Statistics"
  1418. msgstr ""
  1419. #: [statistics]since
  1420. msgid "Since"
  1421. msgstr ""
  1422. #: [statistics]sessions
  1423. msgid "Sessions"
  1424. msgstr ""
  1425. #: [statistics]monthly_sub
  1426. msgid "Monthly Subscriptions"
  1427. msgstr ""
  1428. #: [statistics]monthly_sub_cum
  1429. msgid "Monthly Subscriptions Cumulated"
  1430. msgstr ""
  1431. #: [sticker]sent
  1432. msgid "A sticker has been sent using Movim"
  1433. msgstr ""
  1434. #: [subscribe]info
  1435. msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register."
  1436. msgstr ""
  1437. #: [subscribe]server_question
  1438. msgid "Your server here ?"
  1439. msgstr ""
  1440. #: [subscribe]server_contact
  1441. msgid "Contact us to add yours to the officially supported servers list"
  1442. msgstr ""
  1443. #: [feed]nope
  1444. msgid "No public feed for this contact"
  1445. msgstr ""
  1446. #: [feed]nope_contact
  1447. msgid "No contact specified"
  1448. msgstr ""
  1449. #: [upload]title
  1450. msgid "Upload a file"
  1451. msgstr ""
  1452. #: [upload]choose
  1453. msgid "Choose a file to upload"
  1454. msgstr ""
  1455. #: [upload]info
  1456. msgid "Large pictures will be resized and compressed"
  1457. msgstr ""
  1458. #: [upload]error_filesize
  1459. msgid "File too large"
  1460. msgstr ""
  1461. #: [upload]error_failed
  1462. msgid "Upload failed"
  1463. msgstr ""
  1464. #: [vcard]title [page]profile
  1465. msgid "Profile"
  1466. msgstr "Profil"
  1467. #: [vcard]updated
  1468. msgid "Profile Updated"
  1469. msgstr ""
  1470. #: [vcard]not_updated
  1471. msgid "Profile Not Updated"
  1472. msgstr ""
  1473. #: [vcard]public
  1474. msgid "Your profile is now public"
  1475. msgstr ""
  1476. #: [vcard]restricted
  1477. msgid "Your profile is now restricted"
  1478. msgstr ""
  1479. #: [privacy]my_profile
  1480. msgid "Go to my profile page"
  1481. msgstr ""
  1482. #: [privacy]privacy_title
  1483. msgid "Privacy Level"
  1484. msgstr ""
  1485. #: [privacy]privacy_question
  1486. msgid "Is this profile public ?"
  1487. msgstr ""
  1488. #: [privacy]privacy_info
  1489. 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."
  1490. msgstr ""
  1491. #: [save]submit [button]submit
  1492. msgid "Submit"
  1493. msgstr "Kas"
  1494. #: [save]reset [button]reset
  1495. msgid "Reset"
  1496. msgstr " Adderaouekaat "
  1497. #: [degraded]title
  1498. msgid "Movim is currently working in degraded mode"
  1499. msgstr ""
  1500. #: [degraded]text_1
  1501. msgid "Your server doesn't support XMPP Pubsub persistance."
  1502. msgstr ""
  1503. #: [degraded]text_2
  1504. msgid "The communities, news feed and profile have been disabled for the moment."
  1505. msgstr ""
  1506. #: [degraded]text_3
  1507. msgid "Please contact your server administrator to see if this feature can be enabled."
  1508. msgstr ""
  1509. #: [visio]calling
  1510. msgid "…is calling you"
  1511. msgstr ""
  1512. #: [visio]ringing
  1513. msgid "…ringing"
  1514. msgstr ""
  1515. #: [visio]in_call
  1516. msgid "in call"
  1517. msgstr ""
  1518. #: [visio]failed
  1519. msgid "failed"
  1520. msgstr ""
  1521. #: [visio]connecting
  1522. msgid "…connecting"
  1523. msgstr ""
  1524. #: [global]no_js
  1525. msgid "You don't have javascript enabled. Good luck with that."
  1526. msgstr ""
  1527. #: [global]description
  1528. msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features."
  1529. msgstr ""
  1530. #: [global]loading
  1531. msgid "Loading…"
  1532. msgstr ""
  1533. #: [global]or
  1534. msgid "Or"
  1535. msgstr ""
  1536. #: [page]communities
  1537. msgid "Communities"
  1538. msgstr ""
  1539. #: [page]home
  1540. msgid "Home"
  1541. msgstr "Degemer"
  1542. #: [page]explore
  1543. msgid "Explore"
  1544. msgstr ""
  1545. #: [page]account_creation
  1546. msgid "Account Creation"
  1547. msgstr "Krouadur ar gont"
  1548. #: [page]news
  1549. msgid "News"
  1550. msgstr "Nevezenti"
  1551. #: [page]avatar
  1552. msgid "Avatar"
  1553. msgstr "Avatar"
  1554. #: [page]chats
  1555. msgid "Chats"
  1556. msgstr ""
  1557. #: [page]post
  1558. msgid "Post"
  1559. msgstr ""
  1560. #: [page]blog
  1561. msgid "Blog"
  1562. msgstr ""
  1563. #: [page]about
  1564. msgid "About"
  1565. msgstr ""
  1566. #: [page]login
  1567. msgid "Login"
  1568. msgstr ""
  1569. #: [page]feed
  1570. msgid "Feed"
  1571. msgstr "Gwazh"
  1572. #: [page]posts
  1573. msgid "Posts"
  1574. msgstr ""
  1575. #: [page]gallery
  1576. msgid "Gallery"
  1577. msgstr ""
  1578. #: [page]visio
  1579. msgid "Visio-conference"
  1580. msgstr ""
  1581. #: [page]share
  1582. msgctxt "[page]share"
  1583. msgid "Share"
  1584. msgstr ""
  1585. #: [page]room
  1586. msgid "Room"
  1587. msgstr ""
  1588. #: [page]tag
  1589. msgid "Tag"
  1590. msgstr ""
  1591. #: [error]error
  1592. msgid "Error: %s"
  1593. msgstr "Fazi: %s"
  1594. #: [error]cannot_load_file
  1595. msgid "Cannot load file '%s'"
  1596. msgstr "N'haller ket kargañ ar restr '%s'"
  1597. #: [error]widget_load_error
  1598. msgid "Requested widget '%s' doesn't exist."
  1599. msgstr ""
  1600. #: [error]widget_call_error
  1601. msgid "Requested event '%s' not registered."
  1602. msgstr ""
  1603. #: [error]whoops
  1604. msgid "Whoops!"
  1605. msgstr ""
  1606. #: [error]websocket
  1607. msgid "Movim cannot talk with the server, please try again later"
  1608. msgstr ""
  1609. #: [error]oops
  1610. msgid "Oops!"
  1611. msgstr ""
  1612. #: [button]call
  1613. msgid "Call"
  1614. msgstr ""
  1615. #: [button]validate
  1616. msgid "Validate"
  1617. msgstr ""
  1618. #: [button]refresh
  1619. msgid "Refresh"
  1620. msgstr ""
  1621. #: [button]add
  1622. msgid "Add"
  1623. msgstr "Ouzhpennañ"
  1624. #: [button]delete
  1625. msgid "Delete"
  1626. msgstr ""
  1627. #: [button]cancel
  1628. msgid "Cancel"
  1629. msgstr ""
  1630. #: [button]close
  1631. msgid "Close"
  1632. msgstr ""
  1633. #: [button]update
  1634. msgid "Update"
  1635. msgstr ""
  1636. #: [button]updating
  1637. msgid "Updating"
  1638. msgstr ""
  1639. #: [button]submitting
  1640. msgid "Submitting"
  1641. msgstr "O kas"
  1642. #: [button]register
  1643. msgid "Register"
  1644. msgstr ""
  1645. #: [button]reply
  1646. msgid "Reply"
  1647. msgstr ""
  1648. #: [button]unregister
  1649. msgid "Unregister"
  1650. msgstr ""
  1651. #: [button]save
  1652. msgid "Save"
  1653. msgstr ""
  1654. #: [button]clear
  1655. msgid "Clear"
  1656. msgstr ""
  1657. #: [button]upload
  1658. msgid "Upload"
  1659. msgstr ""
  1660. #: [button]connecting
  1661. msgid "Connecting"
  1662. msgstr ""
  1663. #: [button]bool_yes
  1664. msgid "Yes"
  1665. msgstr ""
  1666. #: [button]bool_no
  1667. msgid "No"
  1668. msgstr ""
  1669. #: [button]return
  1670. msgid "Return"
  1671. msgstr ""
  1672. #: [button]accept
  1673. msgid "Accept"
  1674. msgstr "Asantiñ"
  1675. #: [button]refuse
  1676. msgid "Refuse"
  1677. msgstr ""
  1678. #: [button]next
  1679. msgid "Next"
  1680. msgstr ""
  1681. #: [button]previous
  1682. msgid "Previous"
  1683. msgstr ""
  1684. #: [button]search
  1685. msgid "Search"
  1686. msgstr ""
  1687. #: [button]share
  1688. msgctxt "[button]share"
  1689. msgid "Share"
  1690. msgstr ""
  1691. #: [button]like
  1692. msgid "Like"
  1693. msgstr ""
  1694. #: [button]not_now
  1695. msgid "Not Now"
  1696. msgstr ""
  1697. #: [button]enable
  1698. msgid "Enable"
  1699. msgstr ""
  1700. #: [button]sign_up
  1701. msgid "Sign Up"
  1702. msgstr ""
  1703. #: [day]title
  1704. msgid "Day"
  1705. msgstr "Devezh"
  1706. #: [day]monday
  1707. msgid "Monday"
  1708. msgstr "Lun"
  1709. #: [day]tuesday
  1710. msgid "Tuesday"
  1711. msgstr "Meurzh"
  1712. #: [day]wednesday
  1713. msgid "Wednesday"
  1714. msgstr "Merc'her"
  1715. #: [day]thursday
  1716. msgid "Thursday"
  1717. msgstr "Yaou"
  1718. #: [day]friday
  1719. msgid "Friday"
  1720. msgstr "Gwener"
  1721. #: [day]saturday
  1722. msgid "Saturday"
  1723. msgstr "Sadorn"
  1724. #: [day]sunday
  1725. msgid "Sunday"
  1726. msgstr ""
  1727. #: [client]bot
  1728. msgid "Bot"
  1729. msgstr "Robot"
  1730. #: [client]desktop
  1731. msgid "Desktop"
  1732. msgstr "Urzhiataer"
  1733. #: [client]phone
  1734. msgid "Phone"
  1735. msgstr "Pellgomz"
  1736. #: [client]web
  1737. msgid "Web"
  1738. msgstr ""
  1739. #: [client]registered
  1740. msgid "Registered"
  1741. msgstr ""
  1742. #: [presence]online
  1743. msgid "Online"
  1744. msgstr "Enlinenn"
  1745. #: [presence]away
  1746. msgid "Away"
  1747. msgstr "Ezvezant"
  1748. #: [presence]dnd
  1749. msgid "Do Not Disturb"
  1750. msgstr "Arabat direnkañ"
  1751. #: [presence]xa
  1752. msgid "Extended Away"
  1753. msgstr "Ezvezant e-pad pell"
  1754. #: [presence]offline
  1755. msgid "Offline"
  1756. msgstr "Digevreet"
  1757. #: [presence]error
  1758. msgid "Error"
  1759. msgstr ""
  1760. #: [mood]afraid
  1761. msgid "afraid"
  1762. msgstr ""
  1763. #: [mood]amazed
  1764. msgid "amazed"
  1765. msgstr ""
  1766. #: [mood]amorous
  1767. msgid "amorous"
  1768. msgstr ""
  1769. #: [mood]angry
  1770. msgid "angry"
  1771. msgstr ""
  1772. #: [mood]annoyed
  1773. msgid "annoyed"
  1774. msgstr ""
  1775. #: [mood]anxious
  1776. msgid "anxious"
  1777. msgstr ""
  1778. #: [mood]aroused
  1779. msgid "aroused"
  1780. msgstr ""
  1781. #: [mood]ashamed
  1782. msgid "ashamed"
  1783. msgstr ""
  1784. #: [mood]bored
  1785. msgid "bored"
  1786. msgstr ""
  1787. #: [mood]brave
  1788. msgid "brave"
  1789. msgstr ""
  1790. #: [mood]calm
  1791. msgid "calm"
  1792. msgstr ""
  1793. #: [mood]cautious
  1794. msgid "cautious"
  1795. msgstr ""
  1796. #: [mood]cold
  1797. msgid "cold"
  1798. msgstr ""
  1799. #: [mood]confident
  1800. msgid "confident"
  1801. msgstr ""
  1802. #: [mood]confused
  1803. msgid "confused"
  1804. msgstr ""
  1805. #: [mood]contemplative
  1806. msgid "contemplative"
  1807. msgstr ""
  1808. #: [mood]contented
  1809. msgid "contented"
  1810. msgstr ""
  1811. #: [mood]cranky
  1812. msgid "cranky"
  1813. msgstr ""
  1814. #: [mood]crazy
  1815. msgid "crazy"
  1816. msgstr ""
  1817. #: [mood]creative
  1818. msgid "creative"
  1819. msgstr ""
  1820. #: [mood]curious
  1821. msgid "curious"
  1822. msgstr ""
  1823. #: [mood]dejected
  1824. msgid "dejected"
  1825. msgstr ""
  1826. #: [mood]depressed
  1827. msgid "depressed"
  1828. msgstr ""
  1829. #: [mood]disappointed
  1830. msgid "disappointed"
  1831. msgstr ""
  1832. #: [mood]disgusted
  1833. msgid "disgusted"
  1834. msgstr ""
  1835. #: [mood]dismayed
  1836. msgid "dismayed"
  1837. msgstr ""
  1838. #: [mood]distracted
  1839. msgid "distracted"
  1840. msgstr ""
  1841. #: [mood]embarrassed
  1842. msgid "embarrassed"
  1843. msgstr ""
  1844. #: [mood]envious
  1845. msgid "envious"
  1846. msgstr ""
  1847. #: [mood]excited
  1848. msgid "excited"
  1849. msgstr ""
  1850. #: [mood]flirtatious
  1851. msgid "flirtatious"
  1852. msgstr ""
  1853. #: [mood]frustrated
  1854. msgid "frustrated"
  1855. msgstr ""
  1856. #: [mood]grateful
  1857. msgid "grateful"
  1858. msgstr ""
  1859. #: [mood]grieving
  1860. msgid "grieving"
  1861. msgstr ""
  1862. #: [mood]grumpy
  1863. msgid "grumpy"
  1864. msgstr ""
  1865. #: [mood]guilty
  1866. msgid "guilty"
  1867. msgstr ""
  1868. #: [mood]happy
  1869. msgid "happy"
  1870. msgstr ""
  1871. #: [mood]hopeful
  1872. msgid "hopeful"
  1873. msgstr ""
  1874. #: [mood]hot
  1875. msgid "hot"
  1876. msgstr ""
  1877. #: [mood]humbled
  1878. msgid "humbled"
  1879. msgstr ""
  1880. #: [mood]humiliated
  1881. msgid "humiliated"
  1882. msgstr ""
  1883. #: [mood]hungry
  1884. msgid "hungry"
  1885. msgstr ""
  1886. #: [mood]hurt
  1887. msgid "hurt"
  1888. msgstr ""
  1889. #: [mood]impressed
  1890. msgid "impressed"
  1891. msgstr ""
  1892. #: [mood]in_awe
  1893. msgid "in awe"
  1894. msgstr ""
  1895. #: [mood]in_love
  1896. msgid "in love"
  1897. msgstr ""
  1898. #: [mood]indignant
  1899. msgid "indignant"
  1900. msgstr ""
  1901. #: [mood]interested
  1902. msgid "interested"
  1903. msgstr ""
  1904. #: [mood]intoxicated
  1905. msgid "intoxicated"
  1906. msgstr ""
  1907. #: [mood]invincible
  1908. msgid "invincible"
  1909. msgstr ""
  1910. #: [mood]jealous
  1911. msgid "jealous"
  1912. msgstr ""
  1913. #: [mood]lonely
  1914. msgid "lonely"
  1915. msgstr ""
  1916. #: [mood]lost
  1917. msgid "lost"
  1918. msgstr ""
  1919. #: [mood]lucky
  1920. msgid "lucky"
  1921. msgstr ""
  1922. #: [mood]mean
  1923. msgid "mean"
  1924. msgstr ""
  1925. #: [mood]moody
  1926. msgid "moody"
  1927. msgstr ""
  1928. #: [mood]nervous
  1929. msgid "nervous"
  1930. msgstr ""
  1931. #: [mood]neutral
  1932. msgid "neutral"
  1933. msgstr ""
  1934. #: [mood]offended
  1935. msgid "offended"
  1936. msgstr ""
  1937. #: [mood]outraged
  1938. msgid "outraged"
  1939. msgstr ""
  1940. #: [mood]playful
  1941. msgid "playful"
  1942. msgstr ""
  1943. #: [mood]proud
  1944. msgid "proud"
  1945. msgstr ""
  1946. #: [mood]relaxed
  1947. msgid "relaxed"
  1948. msgstr ""
  1949. #: [mood]relieved
  1950. msgid "relieved"
  1951. msgstr ""
  1952. #: [mood]restless
  1953. msgid "restless"
  1954. msgstr ""
  1955. #: [mood]sad
  1956. msgid "sad"
  1957. msgstr ""
  1958. #: [mood]sarcastic
  1959. msgid "sarcastic"
  1960. msgstr ""
  1961. #: [mood]satisfied
  1962. msgid "satisfied"
  1963. msgstr ""
  1964. #: [mood]serious
  1965. msgid "serious"
  1966. msgstr ""
  1967. #: [mood]shocked
  1968. msgid "shocked"
  1969. msgstr ""
  1970. #: [mood]shy
  1971. msgid "shy"
  1972. msgstr ""
  1973. #: [mood]sick
  1974. msgid "sick"
  1975. msgstr ""
  1976. #: [mood]sleepy
  1977. msgid "sleepy"
  1978. msgstr ""
  1979. #: [mood]spontaneous
  1980. msgid "spontaneous"
  1981. msgstr ""
  1982. #: [mood]stressed
  1983. msgid "stressed"
  1984. msgstr ""
  1985. #: [mood]strong
  1986. msgid "strong"
  1987. msgstr ""
  1988. #: [mood]surprised
  1989. msgid "surprised"
  1990. msgstr ""
  1991. #: [mood]thankful
  1992. msgid "thankful"
  1993. msgstr ""
  1994. #: [mood]thirsty
  1995. msgid "thirsty"
  1996. msgstr ""
  1997. #: [mood]tired
  1998. msgid "tired"
  1999. msgstr ""
  2000. #: [mood]undefined
  2001. msgid "undefined"
  2002. msgstr ""
  2003. #: [mood]weak
  2004. msgid "weak"
  2005. msgstr ""
  2006. #: [mood]worried
  2007. msgid "worried"
  2008. msgstr ""
  2009. #: [month]title
  2010. msgid "Month"
  2011. msgstr "Miz"
  2012. #: [month]january
  2013. msgid "January"
  2014. msgstr "Genver"
  2015. #: [month]february
  2016. msgid "February"
  2017. msgstr "C'hwevrer"
  2018. #: [month]march
  2019. msgid "March"
  2020. msgstr "Meurzh"
  2021. #: [month]april
  2022. msgid "April"
  2023. msgstr "Ebrel"
  2024. #: [month]may
  2025. msgid "May"
  2026. msgstr "Mae"
  2027. #: [month]june
  2028. msgid "June"
  2029. msgstr "Mezheven"
  2030. #: [month]july
  2031. msgid "July"
  2032. msgstr "Gouere"
  2033. #: [month]august
  2034. msgid "August"
  2035. msgstr "Eost"
  2036. #: [month]september
  2037. msgid "September"
  2038. msgstr "Gwengolo"
  2039. #: [month]october
  2040. msgid "October"
  2041. msgstr "Here"
  2042. #: [month]november
  2043. msgid "November"
  2044. msgstr "Du"
  2045. #: [month]december
  2046. msgid "December"
  2047. msgstr "Kerzu"
  2048. #: [year]title
  2049. msgid "Year"
  2050. msgstr "Bloavezh"
  2051. #: [date]today
  2052. msgid "Today"
  2053. msgstr "Hiziv"
  2054. #: [date]tomorrow
  2055. msgid "Tomorrow"
  2056. msgstr "Warc'hoazh"
  2057. #: [date]yesterday
  2058. msgid "Yesterday"
  2059. msgstr "Dec'h"
  2060. #: [date]ago
  2061. msgid "%d days ago"
  2062. msgstr ""
  2063. #: [date]day
  2064. msgid "day"
  2065. msgstr "devezh"
  2066. #: [post]title
  2067. msgid "Title"
  2068. msgstr ""
  2069. #: [post]place
  2070. msgid "Place"
  2071. msgstr ""
  2072. #: [post]by
  2073. msgid "by"
  2074. msgstr ""
  2075. #: [post]geolocalisation
  2076. msgid "Geolocalisation"
  2077. msgstr ""
  2078. #: [post]email
  2079. msgid "email"
  2080. msgstr ""
  2081. #: [post]empty
  2082. msgid "No content"
  2083. msgstr ""
  2084. #: [post]no_comments
  2085. msgid "No comments yet"
  2086. msgstr ""
  2087. #: [post]older
  2088. msgid "Get older posts"
  2089. msgstr "Kaout postadurioù koshoc'h"
  2090. #: [post]new_items
  2091. msgid "%s new items"
  2092. msgstr ""
  2093. #: [post]comment_error
  2094. msgid "Comment publication error"
  2095. msgstr ""
  2096. #: [post]comments_get
  2097. msgid "Get the comments"
  2098. msgstr ""
  2099. #: [post]comment_add
  2100. msgid "Add a comment"
  2101. msgstr ""
  2102. #: [post]share
  2103. msgid "Share with"
  2104. msgstr ""
  2105. #: [post]share_everyone
  2106. msgid "Everyone"
  2107. msgstr ""
  2108. #: [post]updated
  2109. msgid "Updated"
  2110. msgstr ""
  2111. #: [post]content_not_found
  2112. msgid "Content not found"
  2113. msgstr ""
  2114. #: [post]default_title
  2115. msgid "Contact publication"
  2116. msgstr ""
  2117. #: [post]comments
  2118. msgid "Comments"
  2119. msgstr ""
  2120. #: [post]original_deleted
  2121. msgid "Original post deleted"
  2122. msgstr ""
  2123. #: [api]error
  2124. msgid "The API is not reachable, try again later"
  2125. msgstr ""
  2126. #: [field]type_here
  2127. msgid "Type here"
  2128. msgstr ""
  2129. #, fuzzy
  2130. #~ msgid "What do the little banners refer to"
  2131. #~ msgstr "Petra dalv ar bannieloù bihan?"
  2132. #~ msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide."
  2133. #~ msgstr "A-drugarez d'ar pemp bannielig-se e c'heller anavezout buan al live prevezded war an titour roet ganeoc'h."
  2134. #~ msgid "White, only you can see the information"
  2135. #~ msgstr "Gwenn, n'eus nemedoc'h a c'hell gwelout an titour"
  2136. #~ msgid "Green, you have chosen some contacts who can see your information"
  2137. #~ msgstr "Gwer, choazet ho peus an darempredoù a c'hell gwelet ho titouroù"
  2138. #~ msgid "Orange, all your contact list can see your information"
  2139. #~ msgstr "Orañjez, hollad ho tarempredoù a c'hell gwelet ho titouroù"
  2140. #~ msgid "Red, everybody in the XMPP network can see your information"
  2141. #~ msgstr "Ruz, an holl en ho rouedad XMPP a c'hell gwelet ho titouroù"
  2142. #~ msgid "Black, the whole Internet can see your information"
  2143. #~ msgstr "Du, an internet a-bezh a c'hell gwelet ho titouroù"