mediagoblin.po 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682
  1. # Translations template for PROJECT.
  2. # Copyright (C) 2015 ORGANIZATION
  3. # This file is distributed under the same license as the PROJECT project.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2015.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: PACKAGE VERSION\n"
  9. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  10. "POT-Creation-Date: 2015-01-18 16:03-0600\n"
  11. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  12. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  13. "Language-Team: LANGUAGE <LL@li.org>\n"
  14. "Language: hi\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Generator: Translate Toolkit 1.10.0\n"
  19. "Generated-By: Babel 1.3\n"
  20. #: mediagoblin/decorators.py:304 mediagoblin/plugins/openid/views.py:205
  21. msgid "Sorry, registration is disabled on this instance."
  22. msgstr ""
  23. #: mediagoblin/decorators.py:319
  24. msgid "Sorry, reporting is disabled on this instance."
  25. msgstr ""
  26. #: mediagoblin/decorators.py:362 mediagoblin/plugins/ldap/views.py:58
  27. #: mediagoblin/plugins/persona/views.py:79
  28. msgid "Sorry, authentication is disabled on this instance."
  29. msgstr ""
  30. #: mediagoblin/auth/tools.py:45
  31. msgid "Invalid User name or email address."
  32. msgstr ""
  33. #: mediagoblin/auth/tools.py:46
  34. msgid "This field does not take email addresses."
  35. msgstr ""
  36. #: mediagoblin/auth/tools.py:47
  37. msgid "This field requires an email address."
  38. msgstr ""
  39. #: mediagoblin/auth/tools.py:118
  40. msgid "Sorry, a user with that name already exists."
  41. msgstr ""
  42. #: mediagoblin/auth/tools.py:122 mediagoblin/edit/views.py:452
  43. msgid "Sorry, a user with that email address already exists."
  44. msgstr ""
  45. #: mediagoblin/auth/views.py:145 mediagoblin/edit/views.py:408
  46. #: mediagoblin/edit/views.py:429 mediagoblin/plugins/basic_auth/views.py:110
  47. msgid "The verification key or user id is incorrect."
  48. msgstr ""
  49. #: mediagoblin/auth/views.py:164
  50. msgid ""
  51. "Your email address has been verified. You may now login, edit your "
  52. "profile, and submit images!"
  53. msgstr ""
  54. #: mediagoblin/auth/views.py:170
  55. msgid "The verification key or user id is incorrect"
  56. msgstr ""
  57. #: mediagoblin/auth/views.py:188
  58. msgid "You must be logged in so we know who to send the email to!"
  59. msgstr ""
  60. #: mediagoblin/auth/views.py:196
  61. msgid "You've already verified your email address!"
  62. msgstr ""
  63. #: mediagoblin/auth/views.py:206
  64. msgid "Resent your verification email."
  65. msgstr ""
  66. #: mediagoblin/db/mixin.py:404
  67. msgid "{username} added {object}"
  68. msgstr ""
  69. #: mediagoblin/db/mixin.py:405
  70. msgid "{username} added {object} to {target}"
  71. msgstr ""
  72. #: mediagoblin/db/mixin.py:407
  73. msgid "{username} authored {object}"
  74. msgstr ""
  75. #: mediagoblin/db/mixin.py:408
  76. msgid "{username} created {object}"
  77. msgstr ""
  78. #: mediagoblin/db/mixin.py:409
  79. msgid "{username} deleted {object}"
  80. msgstr ""
  81. #: mediagoblin/db/mixin.py:410
  82. msgid "{username} disliked {object}"
  83. msgstr ""
  84. #: mediagoblin/db/mixin.py:411
  85. msgid "{username} favorited {object}"
  86. msgstr ""
  87. #: mediagoblin/db/mixin.py:412
  88. msgid "{username} followed {object}"
  89. msgstr ""
  90. #: mediagoblin/db/mixin.py:413
  91. msgid "{username} liked {object}"
  92. msgstr ""
  93. #: mediagoblin/db/mixin.py:415
  94. msgid "{username} posted {object}"
  95. msgstr ""
  96. #: mediagoblin/db/mixin.py:416
  97. msgid "{username} posted {object} to {target}"
  98. msgstr ""
  99. #: mediagoblin/db/mixin.py:418
  100. msgid "{username} shared {object}"
  101. msgstr ""
  102. #: mediagoblin/db/mixin.py:419
  103. msgid "{username} unfavorited {object}"
  104. msgstr ""
  105. #: mediagoblin/db/mixin.py:420
  106. msgid "{username} stopped following {object}"
  107. msgstr ""
  108. #: mediagoblin/db/mixin.py:421
  109. msgid "{username} unliked {object}"
  110. msgstr ""
  111. #: mediagoblin/db/mixin.py:422
  112. msgid "{username} unshared {object}"
  113. msgstr ""
  114. #: mediagoblin/db/mixin.py:423
  115. msgid "{username} updated {object}"
  116. msgstr ""
  117. #: mediagoblin/db/mixin.py:424
  118. msgid "{username} tagged {object}"
  119. msgstr ""
  120. #: mediagoblin/db/mixin.py:428
  121. msgid "an image"
  122. msgstr ""
  123. #: mediagoblin/db/mixin.py:429
  124. msgid "a comment"
  125. msgstr ""
  126. #: mediagoblin/db/mixin.py:430
  127. msgid "a collection"
  128. msgstr ""
  129. #: mediagoblin/db/mixin.py:431
  130. msgid "a video"
  131. msgstr ""
  132. #: mediagoblin/db/mixin.py:432
  133. msgid "audio"
  134. msgstr ""
  135. #: mediagoblin/db/mixin.py:433
  136. msgid "a person"
  137. msgstr ""
  138. #: mediagoblin/db/mixin.py:450 mediagoblin/db/mixin.py:459
  139. msgid "an object"
  140. msgstr ""
  141. #: mediagoblin/edit/forms.py:29 mediagoblin/edit/forms.py:90
  142. #: mediagoblin/media_types/blog/forms.py:24
  143. #: mediagoblin/media_types/blog/forms.py:33 mediagoblin/submit/forms.py:37
  144. #: mediagoblin/submit/forms.py:61
  145. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:40
  146. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:69
  147. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:100
  148. #: mediagoblin/user_pages/forms.py:45
  149. msgid "Title"
  150. msgstr ""
  151. #: mediagoblin/edit/forms.py:32 mediagoblin/submit/forms.py:40
  152. msgid "Description of this work"
  153. msgstr ""
  154. #: mediagoblin/edit/forms.py:33 mediagoblin/edit/forms.py:56
  155. #: mediagoblin/edit/forms.py:94 mediagoblin/submit/forms.py:65
  156. msgid ""
  157. "You can use\n"
  158. " <a "
  159. "href=\"http://daringfireball.net/projects/markdown/basics\">\n"
  160. " Markdown</a> for formatting."
  161. msgstr ""
  162. #: mediagoblin/edit/forms.py:37 mediagoblin/media_types/blog/forms.py:27
  163. #: mediagoblin/submit/forms.py:45
  164. msgid "Tags"
  165. msgstr ""
  166. #: mediagoblin/edit/forms.py:39 mediagoblin/submit/forms.py:47
  167. msgid "Separate tags by commas."
  168. msgstr ""
  169. #: mediagoblin/edit/forms.py:42 mediagoblin/edit/forms.py:98
  170. msgid "Slug"
  171. msgstr ""
  172. #: mediagoblin/edit/forms.py:43 mediagoblin/edit/forms.py:99
  173. msgid "The slug can't be empty"
  174. msgstr ""
  175. #: mediagoblin/edit/forms.py:44
  176. msgid ""
  177. "The title part of this media's address. You usually don't need to change "
  178. "this."
  179. msgstr ""
  180. #: mediagoblin/edit/forms.py:48 mediagoblin/media_types/blog/forms.py:29
  181. #: mediagoblin/submit/forms.py:50
  182. #: mediagoblin/templates/mediagoblin/utils/license.html:20
  183. msgid "License"
  184. msgstr ""
  185. #: mediagoblin/edit/forms.py:54
  186. msgid "Bio"
  187. msgstr ""
  188. #: mediagoblin/edit/forms.py:60
  189. msgid "Website"
  190. msgstr ""
  191. #: mediagoblin/edit/forms.py:62
  192. msgid "This address contains errors"
  193. msgstr ""
  194. #: mediagoblin/edit/forms.py:64
  195. msgid "Hometown"
  196. msgstr ""
  197. #: mediagoblin/edit/forms.py:68
  198. msgid "Email me when others comment on my media"
  199. msgstr ""
  200. #: mediagoblin/edit/forms.py:70
  201. msgid "Enable insite notifications about events."
  202. msgstr ""
  203. #: mediagoblin/edit/forms.py:72
  204. msgid "License preference"
  205. msgstr ""
  206. #: mediagoblin/edit/forms.py:78
  207. msgid "This will be your default license on upload forms."
  208. msgstr ""
  209. #: mediagoblin/edit/forms.py:91
  210. msgid "The title can't be empty"
  211. msgstr ""
  212. #: mediagoblin/edit/forms.py:93 mediagoblin/submit/forms.py:64
  213. #: mediagoblin/user_pages/forms.py:48
  214. msgid "Description of this collection"
  215. msgstr ""
  216. #: mediagoblin/edit/forms.py:100
  217. msgid ""
  218. "The title part of this collection's address. You usually don't need to "
  219. "change this."
  220. msgstr ""
  221. #: mediagoblin/edit/forms.py:107 mediagoblin/plugins/basic_auth/forms.py:68
  222. msgid "Old password"
  223. msgstr ""
  224. #: mediagoblin/edit/forms.py:109 mediagoblin/plugins/basic_auth/forms.py:70
  225. msgid "Enter your old password to prove you own this account."
  226. msgstr ""
  227. #: mediagoblin/edit/forms.py:112 mediagoblin/plugins/basic_auth/forms.py:73
  228. msgid "New password"
  229. msgstr ""
  230. #: mediagoblin/edit/forms.py:120
  231. msgid "New email address"
  232. msgstr ""
  233. #: mediagoblin/edit/forms.py:124 mediagoblin/plugins/basic_auth/forms.py:28
  234. #: mediagoblin/plugins/basic_auth/forms.py:43
  235. #: mediagoblin/plugins/ldap/forms.py:39
  236. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:67
  237. #: mediagoblin/tests/test_util.py:148
  238. msgid "Password"
  239. msgstr ""
  240. #: mediagoblin/edit/forms.py:126
  241. msgid "Enter your password to prove you own this account."
  242. msgstr ""
  243. #: mediagoblin/edit/forms.py:156
  244. msgid "Identifier"
  245. msgstr ""
  246. #: mediagoblin/edit/forms.py:157
  247. msgid "Value"
  248. msgstr ""
  249. #: mediagoblin/edit/views.py:80
  250. msgid "An entry with that slug already exists for this user."
  251. msgstr ""
  252. #: mediagoblin/edit/views.py:98
  253. msgid "You are editing another user's media. Proceed with caution."
  254. msgstr ""
  255. #: mediagoblin/edit/views.py:168
  256. #, python-format
  257. msgid "You added the attachment %s!"
  258. msgstr ""
  259. #: mediagoblin/edit/views.py:195
  260. msgid "You can only edit your own profile."
  261. msgstr ""
  262. #: mediagoblin/edit/views.py:201
  263. msgid "You are editing a user's profile. Proceed with caution."
  264. msgstr ""
  265. #: mediagoblin/edit/views.py:232
  266. msgid "Profile changes saved"
  267. msgstr ""
  268. #: mediagoblin/edit/views.py:265
  269. msgid "Account settings saved"
  270. msgstr ""
  271. #: mediagoblin/edit/views.py:286
  272. msgid "Unknown application, not able to deauthorize"
  273. msgstr ""
  274. #: mediagoblin/edit/views.py:293
  275. msgid "Application has been deauthorized"
  276. msgstr ""
  277. #: mediagoblin/edit/views.py:327
  278. msgid "You need to confirm the deletion of your account."
  279. msgstr ""
  280. #: mediagoblin/edit/views.py:363 mediagoblin/submit/views.py:134
  281. #: mediagoblin/user_pages/views.py:254
  282. #, python-format
  283. msgid "You already have a collection called \"%s\"!"
  284. msgstr ""
  285. #: mediagoblin/edit/views.py:367
  286. msgid "A collection with that slug already exists for this user."
  287. msgstr ""
  288. #: mediagoblin/edit/views.py:382
  289. msgid "You are editing another user's collection. Proceed with caution."
  290. msgstr ""
  291. #: mediagoblin/edit/views.py:423
  292. msgid "Your email address has been verified."
  293. msgstr ""
  294. #: mediagoblin/edit/views.py:458 mediagoblin/plugins/basic_auth/views.py:200
  295. msgid "Wrong password"
  296. msgstr ""
  297. #: mediagoblin/gmg_commands/assetlink.py:60
  298. msgid "Cannot link theme... no theme set\n"
  299. msgstr ""
  300. #: mediagoblin/gmg_commands/assetlink.py:73
  301. msgid "No asset directory for this theme\n"
  302. msgstr ""
  303. #: mediagoblin/gmg_commands/assetlink.py:76
  304. msgid "However, old link directory symlink found; removed.\n"
  305. msgstr ""
  306. #: mediagoblin/gmg_commands/assetlink.py:112
  307. #, python-format
  308. msgid "Could not link \"%s\": %s exists and is not a symlink\n"
  309. msgstr ""
  310. #: mediagoblin/gmg_commands/assetlink.py:119
  311. #, python-format
  312. msgid "Skipping \"%s\"; already set up.\n"
  313. msgstr ""
  314. #: mediagoblin/gmg_commands/assetlink.py:124
  315. #, python-format
  316. msgid "Old link found for \"%s\"; removing.\n"
  317. msgstr ""
  318. #: mediagoblin/gmg_commands/batchaddmedia.py:40
  319. msgid ""
  320. "For more information about how to properly run this\n"
  321. "script (and how to format the metadata csv file), read the MediaGoblin\n"
  322. "documentation page on command line uploading\n"
  323. "<http://docs.mediagoblin.org/siteadmin/commandline-upload.html>"
  324. msgstr ""
  325. #: mediagoblin/gmg_commands/batchaddmedia.py:46
  326. msgid "Name of user these media entries belong to"
  327. msgstr ""
  328. #: mediagoblin/gmg_commands/batchaddmedia.py:49
  329. msgid "Path to the csv file containing metadata information."
  330. msgstr ""
  331. #: mediagoblin/gmg_commands/batchaddmedia.py:54
  332. msgid "Don't process eagerly, pass off to celery"
  333. msgstr ""
  334. #: mediagoblin/gmg_commands/batchaddmedia.py:69
  335. msgid "Sorry, no user by username '{username}' exists"
  336. msgstr ""
  337. #: mediagoblin/gmg_commands/batchaddmedia.py:80
  338. msgid "File at {path} not found, use -h flag for help"
  339. msgstr ""
  340. #: mediagoblin/gmg_commands/batchaddmedia.py:121
  341. msgid ""
  342. "Error with media '{media_id}' value '{error_path}': {error_msg}\n"
  343. "Metadata was not uploaded."
  344. msgstr ""
  345. #: mediagoblin/gmg_commands/batchaddmedia.py:147
  346. msgid ""
  347. "FAIL: Local file {filename} could not be accessed.\n"
  348. "{filename} will not be uploaded."
  349. msgstr ""
  350. #: mediagoblin/gmg_commands/batchaddmedia.py:163
  351. msgid ""
  352. "Successfully submitted {filename}!\n"
  353. "Be sure to look at the Media Processing Panel on your website to be sure "
  354. "it\n"
  355. "uploaded successfully."
  356. msgstr ""
  357. #: mediagoblin/gmg_commands/batchaddmedia.py:166
  358. msgid "FAIL: This file is larger than the upload limits for this site."
  359. msgstr ""
  360. #: mediagoblin/gmg_commands/batchaddmedia.py:169
  361. msgid "FAIL: This file will put this user past their upload limits."
  362. msgstr ""
  363. #: mediagoblin/gmg_commands/batchaddmedia.py:172
  364. msgid "FAIL: This user is already past their upload limits."
  365. msgstr ""
  366. #: mediagoblin/gmg_commands/batchaddmedia.py:174
  367. msgid "{files_uploaded} out of {files_attempted} files successfully submitted"
  368. msgstr ""
  369. #: mediagoblin/meddleware/csrf.py:134
  370. msgid ""
  371. "CSRF cookie not present. This is most likely the result of a cookie "
  372. "blocker or somesuch.<br/>Make sure to permit the settings of cookies for "
  373. "this domain."
  374. msgstr ""
  375. #: mediagoblin/media_types/__init__.py:79
  376. #: mediagoblin/media_types/__init__.py:101
  377. msgid "Sorry, I don't support that file type :("
  378. msgstr ""
  379. #: mediagoblin/media_types/blog/forms.py:26
  380. #: mediagoblin/media_types/blog/forms.py:35
  381. #: mediagoblin/plugins/oauth/forms.py:36
  382. msgid "Description"
  383. msgstr ""
  384. #: mediagoblin/media_types/blog/forms.py:40 mediagoblin/user_pages/forms.py:31
  385. msgid "I am sure I want to delete this"
  386. msgstr ""
  387. #: mediagoblin/media_types/blog/views.py:158 mediagoblin/submit/views.py:71
  388. msgid "Woohoo! Submitted!"
  389. msgstr ""
  390. #: mediagoblin/media_types/blog/views.py:200
  391. msgid "Woohoo! edited blogpost is submitted"
  392. msgstr ""
  393. #: mediagoblin/media_types/blog/views.py:322
  394. msgid "You deleted the Blog."
  395. msgstr ""
  396. #: mediagoblin/media_types/blog/views.py:328
  397. #: mediagoblin/user_pages/views.py:332
  398. msgid "The media was not deleted because you didn't check that you were sure."
  399. msgstr ""
  400. #: mediagoblin/media_types/blog/views.py:335
  401. msgid "You are about to delete another user's Blog. Proceed with caution."
  402. msgstr ""
  403. #: mediagoblin/media_types/blog/views.py:346
  404. msgid "The blog was not deleted because you have no rights."
  405. msgstr ""
  406. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:43
  407. msgid "Add Blog Post"
  408. msgstr ""
  409. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:50
  410. msgid "Edit Blog"
  411. msgstr ""
  412. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:57
  413. msgid "Delete Blog"
  414. msgstr ""
  415. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:92
  416. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blogpost_draft_view.html:35
  417. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:76
  418. #: mediagoblin/templates/mediagoblin/user_pages/collection.html:52
  419. #: mediagoblin/templates/mediagoblin/user_pages/media.html:85
  420. msgid "Edit"
  421. msgstr ""
  422. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:93
  423. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blogpost_draft_view.html:36
  424. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/delete.html:39
  425. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/edit.html:39
  426. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:80
  427. #: mediagoblin/templates/mediagoblin/user_pages/collection.html:56
  428. #: mediagoblin/templates/mediagoblin/user_pages/media.html:89
  429. msgid "Delete"
  430. msgstr ""
  431. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:102
  432. msgid "<em> Go to list view </em>"
  433. msgstr ""
  434. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:104
  435. msgid " No blog post yet. "
  436. msgstr ""
  437. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_confirm_delete.html:30
  438. #: mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html:30
  439. #, python-format
  440. msgid "Really delete %(title)s?"
  441. msgstr ""
  442. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_confirm_delete.html:47
  443. #: mediagoblin/templates/mediagoblin/edit/attachments.html:61
  444. #: mediagoblin/templates/mediagoblin/edit/delete_account.html:42
  445. #: mediagoblin/templates/mediagoblin/edit/edit.html:41
  446. #: mediagoblin/templates/mediagoblin/edit/edit_collection.html:32
  447. #: mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html:54
  448. #: mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html:60
  449. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:67
  450. #: mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html:48
  451. msgid "Cancel"
  452. msgstr ""
  453. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_confirm_delete.html:48
  454. #: mediagoblin/templates/mediagoblin/edit/delete_account.html:44
  455. #: mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html:56
  456. #: mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html:49
  457. msgid "Delete permanently"
  458. msgstr ""
  459. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_edit_create.html:26
  460. msgid "Create/Edit a Blog"
  461. msgstr ""
  462. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_edit_create.html:37
  463. #: mediagoblin/plugins/oauth/templates/oauth/client/register.html:29
  464. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/add.html:39
  465. #: mediagoblin/templates/mediagoblin/submit/collection.html:30
  466. #: mediagoblin/templates/mediagoblin/submit/start.html:39
  467. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:68
  468. msgid "Add"
  469. msgstr ""
  470. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_post_edit_create.html:23
  471. msgid "Create/Edit a blog post."
  472. msgstr ""
  473. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_post_edit_create.html:29
  474. msgid "Create/Edit a Blog Post."
  475. msgstr ""
  476. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_post_listing.html:24
  477. #, python-format
  478. msgid "%(blog_owner_name)s's Blog"
  479. msgstr ""
  480. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/list_of_blogs.html:46
  481. msgid "View"
  482. msgstr ""
  483. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/list_of_blogs.html:65
  484. msgid "Create a Blog"
  485. msgstr ""
  486. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/url_to_dashboard.html:20
  487. msgid " Blog Dashboard "
  488. msgstr ""
  489. #: mediagoblin/media_types/pdf/processing.py:142
  490. msgid "unoconv failing to run, check log file"
  491. msgstr ""
  492. #: mediagoblin/media_types/video/processing.py:44
  493. msgid "Video transcoding failed"
  494. msgstr ""
  495. #: mediagoblin/moderation/forms.py:21
  496. msgid "Take away privilege"
  497. msgstr ""
  498. #: mediagoblin/moderation/forms.py:22
  499. msgid "Ban the user"
  500. msgstr ""
  501. #: mediagoblin/moderation/forms.py:23
  502. msgid "Send the user a message"
  503. msgstr ""
  504. #: mediagoblin/moderation/forms.py:24
  505. msgid "Delete the content"
  506. msgstr ""
  507. #: mediagoblin/moderation/forms.py:53 mediagoblin/moderation/forms.py:118
  508. msgid "User will be banned until:"
  509. msgstr ""
  510. #: mediagoblin/moderation/forms.py:57
  511. msgid "Why are you banning this User?"
  512. msgstr ""
  513. #: mediagoblin/moderation/forms.py:109
  514. msgid "What action will you take to resolve the report?"
  515. msgstr ""
  516. #: mediagoblin/moderation/forms.py:115
  517. msgid "What privileges will you take away?"
  518. msgstr ""
  519. #: mediagoblin/moderation/forms.py:122
  520. msgid "Why user was banned:"
  521. msgstr ""
  522. #: mediagoblin/moderation/forms.py:125
  523. msgid "Message to user:"
  524. msgstr ""
  525. #: mediagoblin/moderation/forms.py:128
  526. msgid "Resolution content:"
  527. msgstr ""
  528. #: mediagoblin/moderation/tools.py:37
  529. msgid ""
  530. "\n"
  531. "{mod} took away {user}'s {privilege} privileges."
  532. msgstr ""
  533. #: mediagoblin/moderation/tools.py:50
  534. msgid ""
  535. "\n"
  536. "{mod} banned user {user} {expiration_date}."
  537. msgstr ""
  538. #: mediagoblin/moderation/tools.py:54
  539. msgid "until {date}"
  540. msgstr ""
  541. #: mediagoblin/moderation/tools.py:56
  542. #: mediagoblin/templates/mediagoblin/banned.html:30
  543. msgid "indefinitely"
  544. msgstr ""
  545. #: mediagoblin/moderation/tools.py:65
  546. msgid ""
  547. "\n"
  548. "{mod} sent a warning email to the {user}."
  549. msgstr ""
  550. #: mediagoblin/moderation/tools.py:74
  551. msgid ""
  552. "\n"
  553. "{mod} deleted the comment."
  554. msgstr ""
  555. #: mediagoblin/moderation/tools.py:81
  556. msgid ""
  557. "\n"
  558. "{mod} deleted the media entry."
  559. msgstr ""
  560. #: mediagoblin/moderation/tools.py:94
  561. msgid "Warning from"
  562. msgstr ""
  563. #: mediagoblin/notifications/tools.py:54 mediagoblin/user_pages/lib.py:60
  564. msgid "commented on your post"
  565. msgstr ""
  566. #: mediagoblin/notifications/views.py:35
  567. #, python-format
  568. msgid "Subscribed to comments on %s!"
  569. msgstr ""
  570. #: mediagoblin/notifications/views.py:48
  571. #, python-format
  572. msgid "You will not receive notifications for comments on %s."
  573. msgstr ""
  574. #: mediagoblin/oauth/views.py:239
  575. msgid "Must provide an oauth_token."
  576. msgstr ""
  577. #: mediagoblin/oauth/views.py:244 mediagoblin/oauth/views.py:295
  578. msgid "No request token found."
  579. msgstr ""
  580. #: mediagoblin/plugins/api/views.py:78 mediagoblin/plugins/piwigo/views.py:157
  581. #: mediagoblin/submit/views.py:80
  582. msgid "Sorry, the file size is too big."
  583. msgstr ""
  584. #: mediagoblin/plugins/api/views.py:81 mediagoblin/plugins/piwigo/views.py:160
  585. #: mediagoblin/submit/views.py:83
  586. msgid "Sorry, uploading this file will put you over your upload limit."
  587. msgstr ""
  588. #: mediagoblin/plugins/api/views.py:85 mediagoblin/plugins/piwigo/views.py:164
  589. #: mediagoblin/submit/views.py:89
  590. msgid "Sorry, you have reached your upload limit."
  591. msgstr ""
  592. #: mediagoblin/plugins/archivalook/forms.py:21
  593. msgid "Enter the URL for the media to be featured"
  594. msgstr ""
  595. #: mediagoblin/plugins/archivalook/tools.py:132
  596. msgid "Primary"
  597. msgstr ""
  598. #: mediagoblin/plugins/archivalook/tools.py:133
  599. msgid "Secondary"
  600. msgstr ""
  601. #: mediagoblin/plugins/archivalook/tools.py:134
  602. msgid "Tertiary"
  603. msgstr ""
  604. #: mediagoblin/plugins/archivalook/tools.py:135
  605. msgid "-----------{display_type}-Features---------------------------\n"
  606. msgstr ""
  607. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:33
  608. msgid "How does this work?"
  609. msgstr ""
  610. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:34
  611. msgid "How to feature media?"
  612. msgstr ""
  613. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:37
  614. msgid ""
  615. "\n"
  616. " Go to the page of the media entry you want to feature. Copy it's "
  617. "URL and\n"
  618. " then paste it into a new line in the text box above. There should "
  619. "be only\n"
  620. " one url per line. The url that you paste into the text box should "
  621. "be under\n"
  622. " the header describing how prominent a feature it will be (whether "
  623. "Primary,\n"
  624. " Secondary, or Tertiary). Once all of the media that you want to "
  625. "feature are\n"
  626. " inside the text box, click the Submit Query button, and your media "
  627. "should be\n"
  628. " displayed on the front page.\n"
  629. " "
  630. msgstr ""
  631. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:48
  632. msgid "Is there another way to manage featured media?"
  633. msgstr ""
  634. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:51
  635. msgid ""
  636. "\n"
  637. " Yes. If you would prefer, you may go to the media homepage of the"
  638. " piece\n"
  639. " of media you would like to feature or unfeature and look at the "
  640. "bar to\n"
  641. " the side of the media entry. If the piece of media has not been "
  642. "featured\n"
  643. " yet you should see a button that says \"Feature\". Press that "
  644. "button and\n"
  645. " the media will be featured as a Primary Feature at the top of the"
  646. " page.\n"
  647. " All other featured media entries will remain as features, but "
  648. "will be\n"
  649. " pushed further down the page.<br /><br />\n"
  650. "\n"
  651. " If you go to the media homepage of a piece of media that is "
  652. "currently\n"
  653. " featured, you will see the options \"Unfeature\", \"Promote\" and"
  654. " \"Demote\"\n"
  655. " where previously there was the button which said \"Feature\". "
  656. "Click\n"
  657. " Unfeature and that media entry will no longer be displayed on the"
  658. "\n"
  659. " front page, although you can feature it again at any point. "
  660. "Promote\n"
  661. " moves the featured media higher up on the page and makes it more\n"
  662. " prominent and Demote moves the featured media lower down and "
  663. "makes it\n"
  664. " less prominent.\n"
  665. " "
  666. msgstr ""
  667. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:70
  668. msgid "What is a Primary Feature? What is a Secondary Feature?"
  669. msgstr ""
  670. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:74
  671. msgid ""
  672. "\n"
  673. " These categories just describe how prominent a feature will be on "
  674. "your\n"
  675. " front page. Primary Features are placed at the top of the front "
  676. "page and are\n"
  677. " much larger. Next are Secondary Features, which are slightly "
  678. "smaller.\n"
  679. " Tertiary Features make up a grid at the bottom of the page.<br "
  680. "/><br />\n"
  681. "\n"
  682. " Primary Features also can display longer descriptions than "
  683. "Secondary\n"
  684. " Features, and Secondary Features can display longer descriptions "
  685. "than\n"
  686. " Tertiary Features."
  687. msgstr ""
  688. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:85
  689. msgid ""
  690. "How to decide what information is displayed when a media entry is\n"
  691. " featured?"
  692. msgstr ""
  693. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:88
  694. msgid ""
  695. "\n"
  696. " When a media entry is featured, the entry's title, it's thumbnail "
  697. "and a\n"
  698. " portion of its description will be displayed on your website's "
  699. "front page.\n"
  700. " The number of characters displayed varies on the prominence of the "
  701. "feature.\n"
  702. " Primary Features display the first 512 characters of their "
  703. "description,\n"
  704. " Secondary Features display the first 256 characters of their "
  705. "description,\n"
  706. " and Tertiary Features display the first 128 characters of their "
  707. "description.\n"
  708. " "
  709. msgstr ""
  710. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:98
  711. msgid "How to unfeature a piece of media?"
  712. msgstr ""
  713. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:102
  714. msgid ""
  715. "\n"
  716. " Unfeature a media by removing its line from the above textarea and "
  717. "then\n"
  718. " pressing the Submit Query button.\n"
  719. " "
  720. msgstr ""
  721. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:108
  722. msgid "CAUTION:"
  723. msgstr ""
  724. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:110
  725. msgid ""
  726. "\n"
  727. " When copying and pasting urls into the above text box, be aware "
  728. "that if\n"
  729. " you make a typo, once you press Submit Query, your media entry will"
  730. " NOT be\n"
  731. " featured. Make sure that all your intended Media Entries are "
  732. "featured.\n"
  733. " "
  734. msgstr ""
  735. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:26
  736. msgid ""
  737. "\n"
  738. "Feature Media "
  739. msgstr ""
  740. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:28
  741. msgid "Feature"
  742. msgstr ""
  743. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:34
  744. msgid ""
  745. "\n"
  746. "Unfeature Media "
  747. msgstr ""
  748. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:36
  749. msgid "Unfeature"
  750. msgstr ""
  751. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:42
  752. msgid ""
  753. "\n"
  754. "Promote Feature "
  755. msgstr ""
  756. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:44
  757. msgid "Promote"
  758. msgstr ""
  759. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:50
  760. msgid ""
  761. "\n"
  762. "Demote Feature "
  763. msgstr ""
  764. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:52
  765. msgid "Demote"
  766. msgstr ""
  767. #: mediagoblin/plugins/archivalook/templates/archivalook/recent_media.html:30
  768. #: mediagoblin/templates/mediagoblin/root.html:32
  769. msgid "Most recent media"
  770. msgstr ""
  771. #: mediagoblin/plugins/archivalook/templates/archivalook/root.html:61
  772. msgid "Nothing is currently featured."
  773. msgstr ""
  774. #: mediagoblin/plugins/archivalook/templates/archivalook/root.html:62
  775. msgid ""
  776. "If you would like to feature a\n"
  777. " piece of media, go to that media entry's homepage and click the "
  778. "button\n"
  779. " that says <a class=\"button_action\">Feature</a>."
  780. msgstr ""
  781. #: mediagoblin/plugins/archivalook/templates/archivalook/root.html:67
  782. #, python-format
  783. msgid ""
  784. "You're seeing this page because you are a user capable of\n"
  785. " featuring media, a regular user would see a blank page, so be "
  786. "sure to\n"
  787. " have media featured as long as your instance has the "
  788. "'archivalook'\n"
  789. " plugin enabled. A more advanced tool to manage features can be "
  790. "found\n"
  791. " in the <a href=\"%(featured_media_url)s\">feature management "
  792. "panel.</a>"
  793. msgstr ""
  794. #: mediagoblin/plugins/archivalook/templates/archivalook/root.html:79
  795. msgid "View most recent media"
  796. msgstr ""
  797. #: mediagoblin/plugins/archivalook/templates/archivalook/bits/feature_dropdown.html:22
  798. msgid "Feature management panel"
  799. msgstr ""
  800. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_displays/audio_primary.html:43
  801. msgid ""
  802. "Sorry, this audio will not work because\n"
  803. "\tyour web browser does not support HTML5\n"
  804. "\taudio."
  805. msgstr ""
  806. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_displays/audio_primary.html:46
  807. msgid ""
  808. "You can get a modern web browser that\n"
  809. "\tcan play the audio at <a href=\"http://getfirefox.com\">\n"
  810. "\t http://getfirefox.com</a>!"
  811. msgstr ""
  812. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_displays/video_primary.html:43
  813. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_displays/video_secondary.html:43
  814. msgid ""
  815. "Sorry, this video will not work because\n"
  816. " your web browser does not support HTML5 \n"
  817. " video."
  818. msgstr ""
  819. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_displays/video_primary.html:46
  820. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_displays/video_secondary.html:46
  821. msgid ""
  822. "You can get a modern web browser that \n"
  823. " can play this video at <a href=\"http://getfirefox.com\">\n"
  824. " http://getfirefox.com</a>!"
  825. msgstr ""
  826. #: mediagoblin/plugins/basic_auth/forms.py:24
  827. #: mediagoblin/plugins/ldap/forms.py:35 mediagoblin/plugins/openid/forms.py:27
  828. #: mediagoblin/plugins/persona/forms.py:24
  829. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:76
  830. msgid "Username"
  831. msgstr ""
  832. #: mediagoblin/plugins/basic_auth/forms.py:32
  833. #: mediagoblin/plugins/ldap/forms.py:28 mediagoblin/plugins/openid/forms.py:31
  834. #: mediagoblin/plugins/persona/forms.py:28
  835. #: mediagoblin/plugins/persona/forms.py:39
  836. msgid "Email address"
  837. msgstr ""
  838. #: mediagoblin/plugins/basic_auth/forms.py:39
  839. msgid "Username or Email"
  840. msgstr ""
  841. #: mediagoblin/plugins/basic_auth/forms.py:46
  842. msgid "Stay logged in"
  843. msgstr ""
  844. #: mediagoblin/plugins/basic_auth/forms.py:51
  845. msgid "Username or email"
  846. msgstr ""
  847. #: mediagoblin/plugins/basic_auth/views.py:54
  848. msgid ""
  849. "If that email address (case sensitive!) is registered an email has been "
  850. "sent with instructions on how to change your password."
  851. msgstr ""
  852. #: mediagoblin/plugins/basic_auth/views.py:65
  853. msgid "Couldn't find someone with that username."
  854. msgstr ""
  855. #: mediagoblin/plugins/basic_auth/views.py:68
  856. msgid "An email has been sent with instructions on how to change your password."
  857. msgstr ""
  858. #: mediagoblin/plugins/basic_auth/views.py:75
  859. msgid ""
  860. "Could not send password recovery email as your username is inactive or "
  861. "your account's email address has not been verified."
  862. msgstr ""
  863. #: mediagoblin/plugins/basic_auth/views.py:123
  864. msgid "The user id is incorrect."
  865. msgstr ""
  866. #: mediagoblin/plugins/basic_auth/views.py:139
  867. msgid "You can now log in using your new password."
  868. msgstr ""
  869. #: mediagoblin/plugins/basic_auth/views.py:163
  870. msgid ""
  871. "You are no longer an active user. Please contact the system admin to "
  872. "reactivate your account."
  873. msgstr ""
  874. #: mediagoblin/plugins/basic_auth/views.py:215
  875. msgid "Your password was changed successfully"
  876. msgstr ""
  877. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_fp.html:28
  878. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_fp.html:36
  879. msgid "Set your new password"
  880. msgstr ""
  881. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_fp.html:39
  882. msgid "Set password"
  883. msgstr ""
  884. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_pass.html:28
  885. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_pass.html:38
  886. #, python-format
  887. msgid "Changing %(username)s's password"
  888. msgstr ""
  889. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_pass.html:45
  890. #: mediagoblin/templates/mediagoblin/edit/change_email.html:40
  891. msgid "Save"
  892. msgstr ""
  893. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/create_account_link.html:22
  894. msgid "Don't have an account yet?"
  895. msgstr ""
  896. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/create_account_link.html:24
  897. msgid "Create one here!"
  898. msgstr ""
  899. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/edit_link.html:22
  900. msgid "Change your password."
  901. msgstr ""
  902. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/forgot_password.html:23
  903. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/forgot_password.html:31
  904. msgid "Recover password"
  905. msgstr ""
  906. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/forgot_password.html:34
  907. msgid "Send instructions"
  908. msgstr ""
  909. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/fp_link.html:22
  910. msgid "Forgot your password?"
  911. msgstr ""
  912. #: mediagoblin/plugins/geolocation/templates/mediagoblin/plugins/geolocation/map.html:51
  913. #, python-format
  914. msgid "View on <a href=\"%(osm_url)s\">OpenStreetMap</a>"
  915. msgstr ""
  916. #: mediagoblin/plugins/ldap/templates/mediagoblin/plugins/ldap/create_account_link.html:22
  917. msgid "Sign in to create an account!"
  918. msgstr ""
  919. #: mediagoblin/plugins/metadata_display/templates/mediagoblin/plugins/metadata_display/metadata_table.html:22
  920. msgid "Metadata"
  921. msgstr ""
  922. #: mediagoblin/plugins/metadata_display/templates/mediagoblin/plugins/metadata_display/metadata_table.html:40
  923. msgid "Edit Metadata"
  924. msgstr ""
  925. #: mediagoblin/plugins/oauth/forms.py:29
  926. msgid "Allow"
  927. msgstr ""
  928. #: mediagoblin/plugins/oauth/forms.py:30
  929. msgid "Deny"
  930. msgstr ""
  931. #: mediagoblin/plugins/oauth/forms.py:34
  932. msgid "Name"
  933. msgstr ""
  934. #: mediagoblin/plugins/oauth/forms.py:35
  935. msgid "The name of the OAuth client"
  936. msgstr ""
  937. #: mediagoblin/plugins/oauth/forms.py:38
  938. msgid ""
  939. "This will be visible to users allowing your\n"
  940. " application to authenticate as them."
  941. msgstr ""
  942. #: mediagoblin/plugins/oauth/forms.py:40
  943. msgid "Type"
  944. msgstr ""
  945. #: mediagoblin/plugins/oauth/forms.py:45
  946. msgid ""
  947. "<strong>Confidential</strong> - The client can\n"
  948. " make requests to the GNU MediaGoblin instance that can "
  949. "not be\n"
  950. " intercepted by the user agent (e.g. server-side "
  951. "client).<br />\n"
  952. " <strong>Public</strong> - The client can't make "
  953. "confidential\n"
  954. " requests to the GNU MediaGoblin instance (e.g. client-"
  955. "side\n"
  956. " JavaScript client)."
  957. msgstr ""
  958. #: mediagoblin/plugins/oauth/forms.py:52
  959. msgid "Redirect URI"
  960. msgstr ""
  961. #: mediagoblin/plugins/oauth/forms.py:54
  962. msgid ""
  963. "The redirect URI for the applications, this field\n"
  964. " is <strong>required</strong> for public clients."
  965. msgstr ""
  966. #: mediagoblin/plugins/oauth/forms.py:66
  967. msgid "This field is required for public clients"
  968. msgstr ""
  969. #: mediagoblin/plugins/oauth/views.py:57
  970. msgid "The client {0} has been registered!"
  971. msgstr ""
  972. #: mediagoblin/plugins/oauth/templates/oauth/client/connections.html:22
  973. msgid "OAuth client connections"
  974. msgstr ""
  975. #: mediagoblin/plugins/oauth/templates/oauth/client/list.html:22
  976. msgid "Your OAuth clients"
  977. msgstr ""
  978. #: mediagoblin/plugins/openid/__init__.py:97
  979. #: mediagoblin/plugins/openid/views.py:271
  980. #: mediagoblin/plugins/openid/views.py:300
  981. msgid "Sorry, an account is already registered to that OpenID."
  982. msgstr ""
  983. #: mediagoblin/plugins/openid/forms.py:38
  984. msgid "OpenID"
  985. msgstr ""
  986. #: mediagoblin/plugins/openid/views.py:51
  987. msgid "Sorry, the OpenID server could not be found"
  988. msgstr ""
  989. #: mediagoblin/plugins/openid/views.py:64
  990. #, python-format
  991. msgid "No OpenID service was found for %s"
  992. msgstr ""
  993. #: mediagoblin/plugins/openid/views.py:109
  994. #, python-format
  995. msgid "Verification of %s failed: %s"
  996. msgstr ""
  997. #: mediagoblin/plugins/openid/views.py:120
  998. msgid "Verification cancelled"
  999. msgstr ""
  1000. #: mediagoblin/plugins/openid/views.py:317
  1001. msgid "Your OpenID url was saved successfully."
  1002. msgstr ""
  1003. #: mediagoblin/plugins/openid/views.py:341
  1004. #: mediagoblin/plugins/openid/views.py:396
  1005. msgid "You can't delete your only OpenID URL unless you have a password set"
  1006. msgstr ""
  1007. #: mediagoblin/plugins/openid/views.py:346
  1008. #: mediagoblin/plugins/openid/views.py:405
  1009. msgid "That OpenID is not registered to this account."
  1010. msgstr ""
  1011. #: mediagoblin/plugins/openid/views.py:388
  1012. msgid "OpenID was successfully removed."
  1013. msgstr ""
  1014. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/add.html:23
  1015. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/add.html:31
  1016. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/delete.html:34
  1017. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/edit.html:23
  1018. msgid "Add an OpenID"
  1019. msgstr ""
  1020. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/add.html:34
  1021. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/delete.html:23
  1022. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/delete.html:31
  1023. msgid "Delete an OpenID"
  1024. msgstr ""
  1025. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/edit_link.html:21
  1026. msgid "OpenID's"
  1027. msgstr ""
  1028. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/login.html:28
  1029. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/login.html:36
  1030. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/login.html:57
  1031. #: mediagoblin/templates/mediagoblin/base.html:124
  1032. #: mediagoblin/templates/mediagoblin/auth/login.html:28
  1033. #: mediagoblin/templates/mediagoblin/auth/login.html:36
  1034. #: mediagoblin/templates/mediagoblin/auth/login.html:47
  1035. msgid "Log in"
  1036. msgstr ""
  1037. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/login.html:39
  1038. #: mediagoblin/templates/mediagoblin/auth/login.html:39
  1039. msgid "Logging in failed!"
  1040. msgstr ""
  1041. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/login.html:44
  1042. msgid "Log in to create an account!"
  1043. msgstr ""
  1044. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/login.html:51
  1045. msgid "Or login with a password!"
  1046. msgstr ""
  1047. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/login_link.html:23
  1048. msgid "Or login with OpenID!"
  1049. msgstr ""
  1050. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/register_link.html:23
  1051. msgid "Or register with OpenID!"
  1052. msgstr ""
  1053. #: mediagoblin/plugins/persona/__init__.py:90
  1054. msgid "Sorry, an account is already registered to that Persona email."
  1055. msgstr ""
  1056. #: mediagoblin/plugins/persona/views.py:140
  1057. msgid "The Persona email address was successfully removed."
  1058. msgstr ""
  1059. #: mediagoblin/plugins/persona/views.py:146
  1060. msgid ""
  1061. "You can't delete your only Persona email address unless you have a "
  1062. "password set."
  1063. msgstr ""
  1064. #: mediagoblin/plugins/persona/views.py:151
  1065. msgid "That Persona email address is not registered to this account."
  1066. msgstr ""
  1067. #: mediagoblin/plugins/persona/views.py:178
  1068. msgid "Sorry, an account is already registered with that Persona email address."
  1069. msgstr ""
  1070. #: mediagoblin/plugins/persona/views.py:194
  1071. msgid "Your Persona email address was saved successfully."
  1072. msgstr ""
  1073. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/edit.html:31
  1074. msgid "Delete a Persona email address"
  1075. msgstr ""
  1076. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/edit.html:34
  1077. msgid "Add a Persona email address"
  1078. msgstr ""
  1079. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/edit_link.html:21
  1080. msgid "Persona's"
  1081. msgstr ""
  1082. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/login_link.html:22
  1083. msgid "Or login with Persona!"
  1084. msgstr ""
  1085. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/register_link.html:22
  1086. msgid "Or register with Persona!"
  1087. msgstr ""
  1088. #: mediagoblin/processing/__init__.py:422
  1089. msgid "Invalid file given for media type."
  1090. msgstr ""
  1091. #: mediagoblin/processing/__init__.py:429
  1092. msgid "Copying to public storage failed."
  1093. msgstr ""
  1094. #: mediagoblin/processing/__init__.py:437
  1095. msgid "An acceptable processing file was not found"
  1096. msgstr ""
  1097. #: mediagoblin/submit/forms.py:30
  1098. msgid "Max file size: {0} mb"
  1099. msgstr ""
  1100. #: mediagoblin/submit/forms.py:34
  1101. msgid "File"
  1102. msgstr ""
  1103. #: mediagoblin/submit/forms.py:41
  1104. msgid ""
  1105. "You can use\n"
  1106. " <a "
  1107. "href=\"http://daringfireball.net/projects/markdown/basics\">\n"
  1108. " Markdown</a> for formatting."
  1109. msgstr ""
  1110. #: mediagoblin/submit/views.py:57
  1111. msgid "You must provide a file."
  1112. msgstr ""
  1113. #: mediagoblin/submit/views.py:140
  1114. #, python-format
  1115. msgid "Collection \"%s\" added!"
  1116. msgstr ""
  1117. #: mediagoblin/templates/mediagoblin/banned.html:20
  1118. msgid "You are Banned."
  1119. msgstr ""
  1120. #: mediagoblin/templates/mediagoblin/banned.html:24
  1121. #: mediagoblin/templates/mediagoblin/error.html:24
  1122. msgid "Image of goblin stressing out"
  1123. msgstr ""
  1124. #: mediagoblin/templates/mediagoblin/banned.html:26
  1125. msgid "You have been banned"
  1126. msgstr ""
  1127. #: mediagoblin/templates/mediagoblin/banned.html:28
  1128. #, python-format
  1129. msgid "until %(until_when)s"
  1130. msgstr ""
  1131. #: mediagoblin/templates/mediagoblin/base.html:99
  1132. msgid "Verify your email!"
  1133. msgstr ""
  1134. #: mediagoblin/templates/mediagoblin/base.html:106
  1135. #: mediagoblin/templates/mediagoblin/base.html:114
  1136. msgid "log out"
  1137. msgstr ""
  1138. #: mediagoblin/templates/mediagoblin/base.html:133
  1139. #, python-format
  1140. msgid "<a href=\"%(user_url)s\">%(user_name)s</a>'s account"
  1141. msgstr ""
  1142. #: mediagoblin/templates/mediagoblin/base.html:140
  1143. msgid "Change account settings"
  1144. msgstr ""
  1145. #: mediagoblin/templates/mediagoblin/base.html:144
  1146. #: mediagoblin/templates/mediagoblin/base.html:167
  1147. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:21
  1148. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:27
  1149. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:21
  1150. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:26
  1151. msgid "Media processing panel"
  1152. msgstr ""
  1153. #: mediagoblin/templates/mediagoblin/base.html:154
  1154. msgid "Log out"
  1155. msgstr ""
  1156. #: mediagoblin/templates/mediagoblin/base.html:157
  1157. #: mediagoblin/templates/mediagoblin/user_pages/user.html:113
  1158. msgid "Add media"
  1159. msgstr ""
  1160. #: mediagoblin/templates/mediagoblin/base.html:160
  1161. #: mediagoblin/templates/mediagoblin/user_pages/collection_list.html:41
  1162. msgid "Create new collection"
  1163. msgstr ""
  1164. #: mediagoblin/templates/mediagoblin/base.html:165
  1165. msgid "Moderation powers:"
  1166. msgstr ""
  1167. #: mediagoblin/templates/mediagoblin/base.html:171
  1168. msgid "User management panel"
  1169. msgstr ""
  1170. #: mediagoblin/templates/mediagoblin/base.html:175
  1171. msgid "Report management panel"
  1172. msgstr ""
  1173. #: mediagoblin/templates/mediagoblin/api/authorize.html:21
  1174. msgid "Authorization"
  1175. msgstr ""
  1176. #: mediagoblin/templates/mediagoblin/api/authorize.html:26
  1177. #: mediagoblin/templates/mediagoblin/api/authorize.html:53
  1178. msgid "Authorize"
  1179. msgstr ""
  1180. #: mediagoblin/templates/mediagoblin/api/authorize.html:29
  1181. msgid "You are logged in as"
  1182. msgstr ""
  1183. #: mediagoblin/templates/mediagoblin/api/authorize.html:33
  1184. msgid "Do you want to authorize "
  1185. msgstr ""
  1186. #: mediagoblin/templates/mediagoblin/api/authorize.html:37
  1187. msgid "an unknown application"
  1188. msgstr ""
  1189. #: mediagoblin/templates/mediagoblin/api/authorize.html:39
  1190. msgid " to access your account? "
  1191. msgstr ""
  1192. #: mediagoblin/templates/mediagoblin/api/authorize.html:41
  1193. msgid "Applications with access to your account can: "
  1194. msgstr ""
  1195. #: mediagoblin/templates/mediagoblin/api/authorize.html:43
  1196. msgid "Post new media as you"
  1197. msgstr ""
  1198. #: mediagoblin/templates/mediagoblin/api/authorize.html:44
  1199. msgid "See your information (e.g profile, media, etc...)"
  1200. msgstr ""
  1201. #: mediagoblin/templates/mediagoblin/api/authorize.html:45
  1202. msgid "Change your information"
  1203. msgstr ""
  1204. #: mediagoblin/templates/mediagoblin/api/oob.html:21
  1205. msgid "Authorization Finished"
  1206. msgstr ""
  1207. #: mediagoblin/templates/mediagoblin/api/oob.html:26
  1208. msgid "Authorization Complete"
  1209. msgstr ""
  1210. #: mediagoblin/templates/mediagoblin/api/oob.html:28
  1211. msgid "Copy and paste this <strong>verifier code</strong> into your client:"
  1212. msgstr ""
  1213. #: mediagoblin/templates/mediagoblin/auth/register.html:28
  1214. #: mediagoblin/templates/mediagoblin/auth/register.html:36
  1215. msgid "Create an account!"
  1216. msgstr ""
  1217. #: mediagoblin/templates/mediagoblin/auth/register.html:41
  1218. msgid "Create"
  1219. msgstr ""
  1220. #: mediagoblin/templates/mediagoblin/auth/verification_email.txt:19
  1221. #, python-format
  1222. msgid ""
  1223. "Hi %(username)s,\n"
  1224. "\n"
  1225. "to activate your GNU MediaGoblin account, open the following URL in\n"
  1226. "your web browser:\n"
  1227. "\n"
  1228. "%(verification_url)s"
  1229. msgstr ""
  1230. #: mediagoblin/templates/mediagoblin/bits/base_footer.html:21
  1231. #, python-format
  1232. msgid ""
  1233. "Powered by <a href=\"http://mediagoblin.org/\" title='Version "
  1234. "%(version)s'>MediaGoblin</a>, a <a href=\"http://gnu.org/\">GNU</a> "
  1235. "project."
  1236. msgstr ""
  1237. #: mediagoblin/templates/mediagoblin/bits/base_footer.html:24
  1238. #, python-format
  1239. msgid ""
  1240. "Released under the <a "
  1241. "href=\"http://www.fsf.org/licensing/licenses/agpl-3.0.html\">AGPL</a>. <a"
  1242. " href=\"%(source_link)s\">Source code</a> available."
  1243. msgstr ""
  1244. #: mediagoblin/templates/mediagoblin/bits/base_footer.html:30
  1245. msgid "Terms of Service"
  1246. msgstr ""
  1247. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:20
  1248. msgid "Explore"
  1249. msgstr ""
  1250. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:24
  1251. msgid "Hi there, welcome to this MediaGoblin site!"
  1252. msgstr ""
  1253. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:25
  1254. msgid ""
  1255. "This site is running <a href=\"http://mediagoblin.org\">MediaGoblin</a>, "
  1256. "an extraordinarily great piece of media hosting software."
  1257. msgstr ""
  1258. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:27
  1259. msgid ""
  1260. "To add your own media, place comments, and more, you can log in with your"
  1261. " MediaGoblin account."
  1262. msgstr ""
  1263. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:29
  1264. msgid "Don't have one yet? It's easy!"
  1265. msgstr ""
  1266. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:36
  1267. msgid ""
  1268. "\n"
  1269. " >Create an account at this site</a>\n"
  1270. " or"
  1271. msgstr ""
  1272. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:42
  1273. msgid ""
  1274. "\n"
  1275. " <a class=\"button_action\" "
  1276. "href=\"http://mediagoblin.readthedocs.org/\">Set up MediaGoblin on your "
  1277. "own server</a>"
  1278. msgstr ""
  1279. #: mediagoblin/templates/mediagoblin/bits/logo.html:23
  1280. #: mediagoblin/themes/airy/templates/mediagoblin/bits/logo.html:23
  1281. msgid "MediaGoblin logo"
  1282. msgstr ""
  1283. #: mediagoblin/templates/mediagoblin/edit/attachments.html:23
  1284. #: mediagoblin/templates/mediagoblin/edit/attachments.html:35
  1285. #, python-format
  1286. msgid "Editing attachments for %(media_title)s"
  1287. msgstr ""
  1288. #: mediagoblin/templates/mediagoblin/edit/attachments.html:44
  1289. #: mediagoblin/templates/mediagoblin/user_pages/media.html:205
  1290. #: mediagoblin/templates/mediagoblin/user_pages/media.html:221
  1291. msgid "Attachments"
  1292. msgstr ""
  1293. #: mediagoblin/templates/mediagoblin/edit/attachments.html:57
  1294. #: mediagoblin/templates/mediagoblin/user_pages/media.html:227
  1295. msgid "Add attachment"
  1296. msgstr ""
  1297. #: mediagoblin/templates/mediagoblin/edit/attachments.html:63
  1298. #: mediagoblin/templates/mediagoblin/edit/edit.html:42
  1299. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:47
  1300. #: mediagoblin/templates/mediagoblin/edit/edit_collection.html:33
  1301. #: mediagoblin/templates/mediagoblin/edit/edit_profile.html:40
  1302. msgid "Save changes"
  1303. msgstr ""
  1304. #: mediagoblin/templates/mediagoblin/edit/change_email.html:23
  1305. #: mediagoblin/templates/mediagoblin/edit/change_email.html:33
  1306. #, python-format
  1307. msgid "Changing %(username)s's email"
  1308. msgstr ""
  1309. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:21
  1310. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:58
  1311. msgid "Deauthorize applications"
  1312. msgstr ""
  1313. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:27
  1314. msgid "Deauthorize Applications"
  1315. msgstr ""
  1316. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:28
  1317. msgid ""
  1318. "These applications can access your GNU MediaGoblin account. Deauthorizing"
  1319. " the\n"
  1320. " application will prevent the application from accessing your account."
  1321. msgstr ""
  1322. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:37
  1323. msgid "There are no applications authorized."
  1324. msgstr ""
  1325. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:53
  1326. msgid "Type:"
  1327. msgstr ""
  1328. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:58
  1329. msgid "Authorized:"
  1330. msgstr ""
  1331. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:60
  1332. #: mediagoblin/templates/mediagoblin/fragments/header_notifications.html:24
  1333. #: mediagoblin/templates/mediagoblin/media_displays/image.html:39
  1334. #: mediagoblin/templates/mediagoblin/moderation/report.html:57
  1335. #: mediagoblin/templates/mediagoblin/moderation/report.html:120
  1336. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:131
  1337. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:151
  1338. #: mediagoblin/templates/mediagoblin/user_pages/media.html:147
  1339. #: mediagoblin/templates/mediagoblin/user_pages/media.html:182
  1340. #: mediagoblin/templates/mediagoblin/user_pages/report.html:48
  1341. #, python-format
  1342. msgid "%(formatted_time)s ago"
  1343. msgstr ""
  1344. #: mediagoblin/templates/mediagoblin/edit/delete_account.html:28
  1345. #, python-format
  1346. msgid "Really delete user '%(user_name)s' and all related media/comments?"
  1347. msgstr ""
  1348. #: mediagoblin/templates/mediagoblin/edit/delete_account.html:35
  1349. msgid "Yes, really delete my account"
  1350. msgstr ""
  1351. #: mediagoblin/templates/mediagoblin/edit/edit.html:23
  1352. #: mediagoblin/templates/mediagoblin/edit/edit.html:35
  1353. #, python-format
  1354. msgid "Editing %(media_title)s"
  1355. msgstr ""
  1356. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:28
  1357. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:40
  1358. #, python-format
  1359. msgid "Changing %(username)s's account settings"
  1360. msgstr ""
  1361. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:54
  1362. msgid "Delete my account"
  1363. msgstr ""
  1364. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:62
  1365. msgid "Email"
  1366. msgstr ""
  1367. #: mediagoblin/templates/mediagoblin/edit/edit_collection.html:29
  1368. #, python-format
  1369. msgid "Editing %(collection_title)s"
  1370. msgstr ""
  1371. #: mediagoblin/templates/mediagoblin/edit/edit_profile.html:23
  1372. #: mediagoblin/templates/mediagoblin/edit/edit_profile.html:34
  1373. #, python-format
  1374. msgid "Editing %(username)s's profile"
  1375. msgstr ""
  1376. #: mediagoblin/templates/mediagoblin/edit/metadata.html:67
  1377. #, python-format
  1378. msgid "Metadata for \"%(media_name)s\""
  1379. msgstr ""
  1380. #: mediagoblin/templates/mediagoblin/edit/metadata.html:72
  1381. msgid "MetaData"
  1382. msgstr ""
  1383. #: mediagoblin/templates/mediagoblin/edit/metadata.html:80
  1384. msgid "Add new Row"
  1385. msgstr ""
  1386. #: mediagoblin/templates/mediagoblin/edit/metadata.html:83
  1387. msgid "Update Metadata"
  1388. msgstr ""
  1389. #: mediagoblin/templates/mediagoblin/edit/metadata.html:87
  1390. msgid "Clear empty Rows"
  1391. msgstr ""
  1392. #: mediagoblin/templates/mediagoblin/edit/verification.txt:19
  1393. #, python-format
  1394. msgid ""
  1395. "Hi,\n"
  1396. "\n"
  1397. "We wanted to verify that you are %(username)s. If this is the case, then"
  1398. " \n"
  1399. "please follow the link below to verify your new email address.\n"
  1400. "\n"
  1401. "%(verification_url)s\n"
  1402. "\n"
  1403. "If you are not %(username)s or didn't request an email change, you can "
  1404. "ignore\n"
  1405. "this email."
  1406. msgstr ""
  1407. #: mediagoblin/templates/mediagoblin/fragments/header_notifications.html:4
  1408. msgid "New comments"
  1409. msgstr ""
  1410. #: mediagoblin/templates/mediagoblin/fragments/header_notifications.html:41
  1411. msgid "Mark all read"
  1412. msgstr ""
  1413. #: mediagoblin/templates/mediagoblin/listings/collection.html:30
  1414. #: mediagoblin/templates/mediagoblin/listings/collection.html:35
  1415. #: mediagoblin/templates/mediagoblin/listings/tag.html:30
  1416. #: mediagoblin/templates/mediagoblin/listings/tag.html:35
  1417. #, python-format
  1418. msgid "Media tagged with: %(tag_name)s"
  1419. msgstr ""
  1420. #: mediagoblin/templates/mediagoblin/media_displays/ascii.html:36
  1421. #: mediagoblin/templates/mediagoblin/media_displays/audio.html:58
  1422. #: mediagoblin/templates/mediagoblin/media_displays/pdf.html:69
  1423. #: mediagoblin/templates/mediagoblin/media_displays/video.html:76
  1424. msgid "Download"
  1425. msgstr ""
  1426. #: mediagoblin/templates/mediagoblin/media_displays/ascii.html:40
  1427. msgid "Original"
  1428. msgstr ""
  1429. #: mediagoblin/templates/mediagoblin/media_displays/audio.html:45
  1430. msgid ""
  1431. "Sorry, this audio will not work because \n"
  1432. "\t your web browser does not support HTML5 \n"
  1433. "\t audio."
  1434. msgstr ""
  1435. #: mediagoblin/templates/mediagoblin/media_displays/audio.html:48
  1436. msgid ""
  1437. "You can get a modern web browser that \n"
  1438. "\t can play the audio at <a href=\"http://getfirefox.com\">\n"
  1439. "\t http://getfirefox.com</a>!"
  1440. msgstr ""
  1441. #: mediagoblin/templates/mediagoblin/media_displays/audio.html:62
  1442. #: mediagoblin/templates/mediagoblin/media_displays/pdf.html:75
  1443. #: mediagoblin/templates/mediagoblin/media_displays/video.html:82
  1444. msgid "Original file"
  1445. msgstr ""
  1446. #: mediagoblin/templates/mediagoblin/media_displays/audio.html:65
  1447. msgid "WebM file (Vorbis codec)"
  1448. msgstr ""
  1449. #: mediagoblin/templates/mediagoblin/media_displays/image.html:36
  1450. msgid "Created"
  1451. msgstr ""
  1452. #: mediagoblin/templates/mediagoblin/media_displays/pdf.html:60
  1453. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:90
  1454. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:96
  1455. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:102
  1456. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:108
  1457. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:59
  1458. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:65
  1459. #: mediagoblin/templates/mediagoblin/user_pages/media.html:63
  1460. #: mediagoblin/templates/mediagoblin/user_pages/media.html:69
  1461. #, python-format
  1462. msgid "Image for %(media_title)s"
  1463. msgstr ""
  1464. #: mediagoblin/templates/mediagoblin/media_displays/pdf.html:83
  1465. msgid "PDF file"
  1466. msgstr ""
  1467. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:117
  1468. msgid "Perspective"
  1469. msgstr ""
  1470. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:120
  1471. msgid "Front"
  1472. msgstr ""
  1473. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:123
  1474. msgid "Top"
  1475. msgstr ""
  1476. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:126
  1477. msgid "Side"
  1478. msgstr ""
  1479. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:131
  1480. msgid "WebGL"
  1481. msgstr ""
  1482. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:137
  1483. msgid "Download model"
  1484. msgstr ""
  1485. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:146
  1486. msgid "File Format"
  1487. msgstr ""
  1488. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:148
  1489. msgid "Object Height"
  1490. msgstr ""
  1491. #: mediagoblin/templates/mediagoblin/media_displays/video.html:64
  1492. msgid ""
  1493. "Sorry, this video will not work because\n"
  1494. " your web browser does not support HTML5 \n"
  1495. " video."
  1496. msgstr ""
  1497. #: mediagoblin/templates/mediagoblin/media_displays/video.html:67
  1498. msgid ""
  1499. "You can get a modern web browser that \n"
  1500. " can play this video at <a href=\"http://getfirefox.com\">\n"
  1501. " http://getfirefox.com</a>!"
  1502. msgstr ""
  1503. #: mediagoblin/templates/mediagoblin/media_displays/video.html:90
  1504. msgid "WebM file (VP8/Vorbis)"
  1505. msgstr ""
  1506. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:30
  1507. msgid "Here you can track the state of media being processed on this instance."
  1508. msgstr ""
  1509. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:33
  1510. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:32
  1511. msgid "Media in-processing"
  1512. msgstr ""
  1513. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:38
  1514. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:67
  1515. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:98
  1516. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:75
  1517. msgid "ID"
  1518. msgstr ""
  1519. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:39
  1520. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:68
  1521. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:99
  1522. msgid "User"
  1523. msgstr ""
  1524. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:41
  1525. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:70
  1526. msgid "When submitted"
  1527. msgstr ""
  1528. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:42
  1529. msgid "Transcoding progress"
  1530. msgstr ""
  1531. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:53
  1532. msgid "Unknown"
  1533. msgstr ""
  1534. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:59
  1535. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:56
  1536. msgid "No media in-processing"
  1537. msgstr ""
  1538. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:62
  1539. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:59
  1540. msgid "These uploads failed to process:"
  1541. msgstr ""
  1542. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:71
  1543. msgid "Reason for failure"
  1544. msgstr ""
  1545. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:72
  1546. msgid "Failure metadata"
  1547. msgstr ""
  1548. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:91
  1549. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:86
  1550. msgid "No failed entries!"
  1551. msgstr ""
  1552. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:93
  1553. msgid "Last 10 successful uploads"
  1554. msgstr ""
  1555. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:101
  1556. msgid "Submitted"
  1557. msgstr ""
  1558. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:113
  1559. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:107
  1560. msgid "No processed entries, yet!"
  1561. msgstr ""
  1562. #: mediagoblin/templates/mediagoblin/moderation/report.html:27
  1563. msgid "Sorry, no such report found."
  1564. msgstr ""
  1565. #: mediagoblin/templates/mediagoblin/moderation/report.html:33
  1566. msgid "Return to Reports Panel"
  1567. msgstr ""
  1568. #: mediagoblin/templates/mediagoblin/moderation/report.html:35
  1569. #: mediagoblin/templates/mediagoblin/user_pages/media.html:163
  1570. msgid "Report"
  1571. msgstr ""
  1572. #: mediagoblin/templates/mediagoblin/moderation/report.html:38
  1573. msgid "Reported comment"
  1574. msgstr ""
  1575. #: mediagoblin/templates/mediagoblin/moderation/report.html:83
  1576. #, python-format
  1577. msgid ""
  1578. "\n"
  1579. " ❖ Reported media by <a href=\"%(user_url)s\">%(user_name)s</a>\n"
  1580. " "
  1581. msgstr ""
  1582. #: mediagoblin/templates/mediagoblin/moderation/report.html:92
  1583. #, python-format
  1584. msgid ""
  1585. "\n"
  1586. " CONTENT BY\n"
  1587. " <a href=\"%(user_url)s\"> %(user_name)s</a>\n"
  1588. " HAS BEEN DELETED\n"
  1589. " "
  1590. msgstr ""
  1591. #: mediagoblin/templates/mediagoblin/moderation/report.html:102
  1592. msgid "Reason for report:"
  1593. msgstr ""
  1594. #: mediagoblin/templates/mediagoblin/moderation/report.html:133
  1595. #: mediagoblin/templates/mediagoblin/moderation/user.html:136
  1596. msgid "Resolve"
  1597. msgstr ""
  1598. #: mediagoblin/templates/mediagoblin/moderation/report.html:137
  1599. #: mediagoblin/templates/mediagoblin/moderation/report.html:157
  1600. msgid "Resolve This Report"
  1601. msgstr ""
  1602. #: mediagoblin/templates/mediagoblin/moderation/report.html:149
  1603. msgid "Status"
  1604. msgstr ""
  1605. #: mediagoblin/templates/mediagoblin/moderation/report.html:151
  1606. msgid "RESOLVED"
  1607. msgstr ""
  1608. #: mediagoblin/templates/mediagoblin/moderation/report.html:159
  1609. msgid "You cannot take action against an administrator"
  1610. msgstr ""
  1611. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:22
  1612. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:27
  1613. msgid "Report panel"
  1614. msgstr ""
  1615. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:30
  1616. msgid ""
  1617. "\n"
  1618. " Here you can look up open reports that have been filed by users.\n"
  1619. " "
  1620. msgstr ""
  1621. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:35
  1622. msgid "Active Reports Filed"
  1623. msgstr ""
  1624. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:77
  1625. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:173
  1626. msgid "Offender"
  1627. msgstr ""
  1628. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:78
  1629. msgid "When Reported"
  1630. msgstr ""
  1631. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:79
  1632. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:175
  1633. msgid "Reported By"
  1634. msgstr ""
  1635. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:80
  1636. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:176
  1637. msgid "Reason"
  1638. msgstr ""
  1639. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:95
  1640. #, python-format
  1641. msgid ""
  1642. "\n"
  1643. " Comment Report #%(report_id)s\n"
  1644. " "
  1645. msgstr ""
  1646. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:111
  1647. #, python-format
  1648. msgid ""
  1649. "\n"
  1650. " Media Report #%(report_id)s\n"
  1651. " "
  1652. msgstr ""
  1653. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:125
  1654. msgid "No open reports found."
  1655. msgstr ""
  1656. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:127
  1657. msgid "Closed Reports"
  1658. msgstr ""
  1659. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:172
  1660. msgid "Resolved"
  1661. msgstr ""
  1662. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:174
  1663. msgid "Action Taken"
  1664. msgstr ""
  1665. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:188
  1666. #, python-format
  1667. msgid ""
  1668. "\n"
  1669. " Closed Report #%(report_id)s\n"
  1670. " "
  1671. msgstr ""
  1672. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:202
  1673. msgid "No closed reports found."
  1674. msgstr ""
  1675. #: mediagoblin/templates/mediagoblin/moderation/user.html:23
  1676. #, python-format
  1677. msgid "User: %(username)s"
  1678. msgstr ""
  1679. #: mediagoblin/templates/mediagoblin/moderation/user.html:42
  1680. msgid "Return to Users Panel"
  1681. msgstr ""
  1682. #: mediagoblin/templates/mediagoblin/moderation/user.html:49
  1683. msgid "Sorry, no such user found."
  1684. msgstr ""
  1685. #: mediagoblin/templates/mediagoblin/moderation/user.html:53
  1686. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:40
  1687. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:60
  1688. msgid "Email verification needed"
  1689. msgstr ""
  1690. #: mediagoblin/templates/mediagoblin/moderation/user.html:55
  1691. msgid ""
  1692. "Someone has registered an account with this username, but it still has\n"
  1693. " to be activated."
  1694. msgstr ""
  1695. #: mediagoblin/templates/mediagoblin/moderation/user.html:66
  1696. #: mediagoblin/templates/mediagoblin/user_pages/user.html:34
  1697. #: mediagoblin/templates/mediagoblin/user_pages/user.html:46
  1698. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:25
  1699. #, python-format
  1700. msgid "%(username)s's profile"
  1701. msgstr ""
  1702. #: mediagoblin/templates/mediagoblin/moderation/user.html:68
  1703. #, python-format
  1704. msgid "BANNED until %(expiration_date)s"
  1705. msgstr ""
  1706. #: mediagoblin/templates/mediagoblin/moderation/user.html:72
  1707. msgid "Banned Indefinitely"
  1708. msgstr ""
  1709. #: mediagoblin/templates/mediagoblin/moderation/user.html:78
  1710. #: mediagoblin/templates/mediagoblin/user_pages/user.html:62
  1711. msgid "This user hasn't filled in their profile (yet)."
  1712. msgstr ""
  1713. #: mediagoblin/templates/mediagoblin/moderation/user.html:89
  1714. #: mediagoblin/templates/mediagoblin/user_pages/user.html:57
  1715. #: mediagoblin/templates/mediagoblin/user_pages/user.html:74
  1716. msgid "Edit profile"
  1717. msgstr ""
  1718. #: mediagoblin/templates/mediagoblin/moderation/user.html:96
  1719. #: mediagoblin/templates/mediagoblin/user_pages/user.html:81
  1720. msgid "Browse collections"
  1721. msgstr ""
  1722. #: mediagoblin/templates/mediagoblin/moderation/user.html:105
  1723. #, python-format
  1724. msgid "Active Reports on %(username)s"
  1725. msgstr ""
  1726. #: mediagoblin/templates/mediagoblin/moderation/user.html:112
  1727. msgid "Report ID"
  1728. msgstr ""
  1729. #: mediagoblin/templates/mediagoblin/moderation/user.html:113
  1730. msgid "Reported Content"
  1731. msgstr ""
  1732. #: mediagoblin/templates/mediagoblin/moderation/user.html:114
  1733. msgid "Description of Report"
  1734. msgstr ""
  1735. #: mediagoblin/templates/mediagoblin/moderation/user.html:122
  1736. #, python-format
  1737. msgid "Report #%(report_number)s"
  1738. msgstr ""
  1739. #: mediagoblin/templates/mediagoblin/moderation/user.html:129
  1740. msgid "Reported Comment"
  1741. msgstr ""
  1742. #: mediagoblin/templates/mediagoblin/moderation/user.html:131
  1743. msgid "Reported Media Entry"
  1744. msgstr ""
  1745. #: mediagoblin/templates/mediagoblin/moderation/user.html:142
  1746. #, python-format
  1747. msgid "No active reports filed on %(username)s"
  1748. msgstr ""
  1749. #: mediagoblin/templates/mediagoblin/moderation/user.html:150
  1750. #, python-format
  1751. msgid "All reports on %(username)s"
  1752. msgstr ""
  1753. #: mediagoblin/templates/mediagoblin/moderation/user.html:155
  1754. #, python-format
  1755. msgid "All reports that %(username)s has filed"
  1756. msgstr ""
  1757. #: mediagoblin/templates/mediagoblin/moderation/user.html:164
  1758. #, python-format
  1759. msgid "%(username)s's Privileges"
  1760. msgstr ""
  1761. #: mediagoblin/templates/mediagoblin/moderation/user.html:172
  1762. msgid "Privilege"
  1763. msgstr ""
  1764. #: mediagoblin/templates/mediagoblin/moderation/user.html:173
  1765. msgid "Granted"
  1766. msgstr ""
  1767. #: mediagoblin/templates/mediagoblin/moderation/user.html:180
  1768. msgid "Yes"
  1769. msgstr ""
  1770. #: mediagoblin/templates/mediagoblin/moderation/user.html:182
  1771. msgid "No"
  1772. msgstr ""
  1773. #: mediagoblin/templates/mediagoblin/moderation/user.html:213
  1774. msgid "Ban User"
  1775. msgstr ""
  1776. #: mediagoblin/templates/mediagoblin/moderation/user.html:218
  1777. msgid "UnBan User"
  1778. msgstr ""
  1779. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:21
  1780. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:26
  1781. msgid "User panel"
  1782. msgstr ""
  1783. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:29
  1784. msgid ""
  1785. "\n"
  1786. " Here you can look up users in order to take punitive actions on them."
  1787. "\n"
  1788. " "
  1789. msgstr ""
  1790. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:34
  1791. msgid "Active Users"
  1792. msgstr ""
  1793. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:77
  1794. msgid "When Joined"
  1795. msgstr ""
  1796. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:78
  1797. msgid "# of Comments Posted"
  1798. msgstr ""
  1799. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:95
  1800. msgid "No users found."
  1801. msgstr ""
  1802. #: mediagoblin/templates/mediagoblin/submit/collection.html:26
  1803. msgid "Add a collection"
  1804. msgstr ""
  1805. #: mediagoblin/templates/mediagoblin/submit/start.html:28
  1806. #: mediagoblin/templates/mediagoblin/submit/start.html:35
  1807. msgid "Add your media"
  1808. msgstr ""
  1809. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:38
  1810. #, python-format
  1811. msgid "❖ Blog post by <a href=\"%(user_url)s\">%(username)s</a>"
  1812. msgstr ""
  1813. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:92
  1814. #: mediagoblin/templates/mediagoblin/user_pages/media.html:105
  1815. msgid "Add a comment"
  1816. msgstr ""
  1817. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:103
  1818. #: mediagoblin/templates/mediagoblin/user_pages/media.html:116
  1819. msgid "Add this comment"
  1820. msgstr ""
  1821. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:149
  1822. #: mediagoblin/templates/mediagoblin/user_pages/media.html:180
  1823. msgid "Added"
  1824. msgstr ""
  1825. #: mediagoblin/templates/mediagoblin/user_pages/collection.html:30
  1826. #, python-format
  1827. msgid "%(collection_title)s (%(username)s's collection)"
  1828. msgstr ""
  1829. #: mediagoblin/templates/mediagoblin/user_pages/collection.html:39
  1830. #, python-format
  1831. msgid "%(collection_title)s by <a href=\"%(user_url)s\">%(username)s</a>"
  1832. msgstr ""
  1833. #: mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html:23
  1834. #, python-format
  1835. msgid "Delete collection %(collection_title)s"
  1836. msgstr ""
  1837. #: mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html:38
  1838. #, python-format
  1839. msgid "Really delete collection: %(title)s?"
  1840. msgstr ""
  1841. #: mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html:23
  1842. #, python-format
  1843. msgid "Remove %(media_title)s from %(collection_title)s"
  1844. msgstr ""
  1845. #: mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html:39
  1846. #, python-format
  1847. msgid "Really remove %(media_title)s from %(collection_title)s?"
  1848. msgstr ""
  1849. #: mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html:62
  1850. msgid "Remove"
  1851. msgstr ""
  1852. #: mediagoblin/templates/mediagoblin/user_pages/collection_list.html:21
  1853. #, python-format
  1854. msgid "%(username)s's collections"
  1855. msgstr ""
  1856. #: mediagoblin/templates/mediagoblin/user_pages/collection_list.html:28
  1857. #, python-format
  1858. msgid "<a href=\"%(user_url)s\">%(username)s</a>'s collections"
  1859. msgstr ""
  1860. #: mediagoblin/templates/mediagoblin/user_pages/comment_email.txt:19
  1861. #, python-format
  1862. msgid ""
  1863. "Hi %(username)s,\n"
  1864. "%(comment_author)s commented on your post (%(comment_url)s) at "
  1865. "%(instance_name)s\n"
  1866. msgstr ""
  1867. #: mediagoblin/templates/mediagoblin/user_pages/gallery.html:30
  1868. #, python-format
  1869. msgid "%(username)s's media"
  1870. msgstr ""
  1871. #: mediagoblin/templates/mediagoblin/user_pages/gallery.html:38
  1872. #, python-format
  1873. msgid ""
  1874. "<a href=\"%(user_url)s\">%(username)s</a>'s media with tag <a "
  1875. "href=\"%(tag_url)s\">%(tag)s</a>"
  1876. msgstr ""
  1877. #: mediagoblin/templates/mediagoblin/user_pages/gallery.html:48
  1878. #, python-format
  1879. msgid "<a href=\"%(user_url)s\">%(username)s</a>'s media"
  1880. msgstr ""
  1881. #: mediagoblin/templates/mediagoblin/user_pages/media.html:39
  1882. #, python-format
  1883. msgid "❖ Browsing media by <a href=\"%(user_url)s\">%(username)s</a>"
  1884. msgstr ""
  1885. #: mediagoblin/templates/mediagoblin/user_pages/media.html:120
  1886. msgid "Comment Preview"
  1887. msgstr ""
  1888. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:28
  1889. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:40
  1890. #, python-format
  1891. msgid "Add “%(media_title)s” to a collection"
  1892. msgstr ""
  1893. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:54
  1894. msgid "+"
  1895. msgstr ""
  1896. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:58
  1897. msgid "Add a new collection"
  1898. msgstr ""
  1899. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:29
  1900. msgid "You can track the state of media being processed for your gallery here."
  1901. msgstr ""
  1902. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:89
  1903. msgid "Your last 10 successful uploads"
  1904. msgstr ""
  1905. #: mediagoblin/templates/mediagoblin/user_pages/report.html:21
  1906. msgid "<h2>File a Report</h2>"
  1907. msgstr ""
  1908. #: mediagoblin/templates/mediagoblin/user_pages/report.html:24
  1909. msgid "Reporting this Comment"
  1910. msgstr ""
  1911. #: mediagoblin/templates/mediagoblin/user_pages/report.html:60
  1912. msgid "Reporting this Media Entry"
  1913. msgstr ""
  1914. #: mediagoblin/templates/mediagoblin/user_pages/report.html:72
  1915. #, python-format
  1916. msgid ""
  1917. "\n"
  1918. " ❖ Published by <a href=\"%(user_url)s\"\n"
  1919. " class=\"comment_authorlink\">%(username)s</a>\n"
  1920. " "
  1921. msgstr ""
  1922. #: mediagoblin/templates/mediagoblin/user_pages/report.html:81
  1923. msgid "File Report "
  1924. msgstr ""
  1925. #: mediagoblin/templates/mediagoblin/user_pages/user.html:53
  1926. msgid "Here's a spot to tell others about yourself."
  1927. msgstr ""
  1928. #: mediagoblin/templates/mediagoblin/user_pages/user.html:94
  1929. #, python-format
  1930. msgid "View all of %(username)s's media"
  1931. msgstr ""
  1932. #: mediagoblin/templates/mediagoblin/user_pages/user.html:107
  1933. msgid ""
  1934. "This is where your media will appear, but you don't seem to have added "
  1935. "anything yet."
  1936. msgstr ""
  1937. #: mediagoblin/templates/mediagoblin/user_pages/user.html:119
  1938. #: mediagoblin/templates/mediagoblin/utils/collection_gallery.html:84
  1939. #: mediagoblin/templates/mediagoblin/utils/object_gallery.html:70
  1940. msgid "There doesn't seem to be any media here yet..."
  1941. msgstr ""
  1942. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:43
  1943. msgid "Almost done! Your account still needs to be activated."
  1944. msgstr ""
  1945. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:48
  1946. msgid "An email should arrive in a few moments with instructions on how to do so."
  1947. msgstr ""
  1948. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:52
  1949. msgid "In case it doesn't:"
  1950. msgstr ""
  1951. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:55
  1952. msgid "Resend verification email"
  1953. msgstr ""
  1954. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:63
  1955. msgid ""
  1956. "Someone has registered an account with this username, but it still has to"
  1957. " be activated."
  1958. msgstr ""
  1959. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:68
  1960. #, python-format
  1961. msgid ""
  1962. "If you are that person but you've lost your verification email, you can "
  1963. "<a href=\"%(login_url)s\">log in</a> and resend it."
  1964. msgstr ""
  1965. #: mediagoblin/templates/mediagoblin/utils/collection_gallery.html:49
  1966. msgid "(remove)"
  1967. msgstr ""
  1968. #: mediagoblin/templates/mediagoblin/utils/collections.html:21
  1969. msgid "Collected in"
  1970. msgstr ""
  1971. #: mediagoblin/templates/mediagoblin/utils/collections.html:40
  1972. msgid "Add to a collection"
  1973. msgstr ""
  1974. #: mediagoblin/templates/mediagoblin/utils/comment-subscription.html:24
  1975. msgid "Subscribe to comments"
  1976. msgstr ""
  1977. #: mediagoblin/templates/mediagoblin/utils/comment-subscription.html:30
  1978. msgid "Silence comments"
  1979. msgstr ""
  1980. #: mediagoblin/templates/mediagoblin/utils/feed_link.html:21
  1981. #: mediagoblin/themes/airy/templates/mediagoblin/utils/feed_link.html:21
  1982. msgid "feed icon"
  1983. msgstr ""
  1984. #: mediagoblin/templates/mediagoblin/utils/feed_link.html:23
  1985. #: mediagoblin/themes/airy/templates/mediagoblin/utils/feed_link.html:23
  1986. msgid "Atom feed"
  1987. msgstr ""
  1988. #: mediagoblin/templates/mediagoblin/utils/license.html:25
  1989. msgid "All rights reserved"
  1990. msgstr ""
  1991. #: mediagoblin/templates/mediagoblin/utils/pagination.html:39
  1992. msgid "← Newer"
  1993. msgstr ""
  1994. #: mediagoblin/templates/mediagoblin/utils/pagination.html:45
  1995. msgid "Older →"
  1996. msgstr ""
  1997. #: mediagoblin/templates/mediagoblin/utils/pagination.html:48
  1998. msgid "Go to page:"
  1999. msgstr ""
  2000. #: mediagoblin/templates/mediagoblin/utils/prev_next.html:28
  2001. #: mediagoblin/templates/mediagoblin/utils/prev_next.html:33
  2002. msgid "newer"
  2003. msgstr ""
  2004. #: mediagoblin/templates/mediagoblin/utils/prev_next.html:39
  2005. #: mediagoblin/templates/mediagoblin/utils/prev_next.html:44
  2006. msgid "older"
  2007. msgstr ""
  2008. #: mediagoblin/templates/mediagoblin/utils/profile.html:36
  2009. msgid "Location"
  2010. msgstr ""
  2011. #: mediagoblin/templates/mediagoblin/utils/report.html:25
  2012. msgid "Report media"
  2013. msgstr ""
  2014. #: mediagoblin/templates/mediagoblin/utils/tags.html:20
  2015. msgid "Tagged with"
  2016. msgstr ""
  2017. #: mediagoblin/tools/exif.py:83
  2018. msgid "Could not read the image file."
  2019. msgstr ""
  2020. #: mediagoblin/tools/response.py:40
  2021. msgid "Oops!"
  2022. msgstr ""
  2023. #: mediagoblin/tools/response.py:41
  2024. msgid "An error occured"
  2025. msgstr ""
  2026. #: mediagoblin/tools/response.py:55
  2027. msgid "Bad Request"
  2028. msgstr ""
  2029. #: mediagoblin/tools/response.py:57
  2030. msgid "The request sent to the server is invalid, please double check it"
  2031. msgstr ""
  2032. #: mediagoblin/tools/response.py:65
  2033. msgid "Operation not allowed"
  2034. msgstr ""
  2035. #: mediagoblin/tools/response.py:66
  2036. msgid ""
  2037. "Sorry Dave, I can't let you do that!</p><p>You have tried to perform a "
  2038. "function that you are not allowed to. Have you been trying to delete all "
  2039. "user accounts again?"
  2040. msgstr ""
  2041. #: mediagoblin/tools/response.py:74
  2042. msgid ""
  2043. "There doesn't seem to be a page at this address. Sorry!</p><p>If you're "
  2044. "sure the address is correct, maybe the page you're looking for has been "
  2045. "moved or deleted."
  2046. msgstr ""
  2047. #: mediagoblin/tools/timesince.py:62
  2048. msgid "year"
  2049. msgstr ""
  2050. #: mediagoblin/tools/timesince.py:63
  2051. msgid "month"
  2052. msgstr ""
  2053. #: mediagoblin/tools/timesince.py:64
  2054. msgid "week"
  2055. msgstr ""
  2056. #: mediagoblin/tools/timesince.py:65
  2057. msgid "day"
  2058. msgstr ""
  2059. #: mediagoblin/tools/timesince.py:66
  2060. msgid "hour"
  2061. msgstr ""
  2062. #: mediagoblin/tools/timesince.py:67
  2063. msgid "minute"
  2064. msgstr ""
  2065. #: mediagoblin/user_pages/forms.py:23
  2066. msgid "Comment"
  2067. msgstr ""
  2068. #: mediagoblin/user_pages/forms.py:25
  2069. msgid ""
  2070. "You can use <a "
  2071. "href=\"http://daringfireball.net/projects/markdown/basics\" "
  2072. "target=\"_blank\">Markdown</a> for formatting."
  2073. msgstr ""
  2074. #: mediagoblin/user_pages/forms.py:35
  2075. msgid "I am sure I want to remove this item from the collection"
  2076. msgstr ""
  2077. #: mediagoblin/user_pages/forms.py:39
  2078. msgid "Collection"
  2079. msgstr ""
  2080. #: mediagoblin/user_pages/forms.py:40
  2081. msgid "-- Select --"
  2082. msgstr ""
  2083. #: mediagoblin/user_pages/forms.py:42
  2084. msgid "Include a note"
  2085. msgstr ""
  2086. #: mediagoblin/user_pages/forms.py:49
  2087. msgid ""
  2088. "You can use\n"
  2089. " <a "
  2090. "href=\"http://daringfireball.net/projects/markdown/basics\" "
  2091. "target=\"_blank\">\n"
  2092. " Markdown</a> for formatting."
  2093. msgstr ""
  2094. #: mediagoblin/user_pages/forms.py:55 mediagoblin/user_pages/forms.py:61
  2095. msgid "Reason for Reporting"
  2096. msgstr ""
  2097. #: mediagoblin/user_pages/views.py:191
  2098. msgid "Sorry, comments are disabled."
  2099. msgstr ""
  2100. #: mediagoblin/user_pages/views.py:196
  2101. msgid "Oops, your comment was empty."
  2102. msgstr ""
  2103. #: mediagoblin/user_pages/views.py:204
  2104. msgid "Your comment has been posted!"
  2105. msgstr ""
  2106. #: mediagoblin/user_pages/views.py:237
  2107. msgid "Please check your entries and try again."
  2108. msgstr ""
  2109. #: mediagoblin/user_pages/views.py:278
  2110. msgid "You have to select or add a collection"
  2111. msgstr ""
  2112. #: mediagoblin/user_pages/views.py:289
  2113. #, python-format
  2114. msgid "\"%s\" already in collection \"%s\""
  2115. msgstr ""
  2116. #: mediagoblin/user_pages/views.py:295
  2117. #, python-format
  2118. msgid "\"%s\" added to collection \"%s\""
  2119. msgstr ""
  2120. #: mediagoblin/user_pages/views.py:320
  2121. msgid "You deleted the media."
  2122. msgstr ""
  2123. #: mediagoblin/user_pages/views.py:339
  2124. msgid "You are about to delete another user's media. Proceed with caution."
  2125. msgstr ""
  2126. #: mediagoblin/user_pages/views.py:412
  2127. msgid "You deleted the item from the collection."
  2128. msgstr ""
  2129. #: mediagoblin/user_pages/views.py:416
  2130. msgid "The item was not removed because you didn't check that you were sure."
  2131. msgstr ""
  2132. #: mediagoblin/user_pages/views.py:424
  2133. msgid ""
  2134. "You are about to delete an item from another user's collection. Proceed "
  2135. "with caution."
  2136. msgstr ""
  2137. #: mediagoblin/user_pages/views.py:456
  2138. #, python-format
  2139. msgid "You deleted the collection \"%s\""
  2140. msgstr ""
  2141. #: mediagoblin/user_pages/views.py:463
  2142. msgid ""
  2143. "The collection was not deleted because you didn't check that you were "
  2144. "sure."
  2145. msgstr ""
  2146. #: mediagoblin/user_pages/views.py:471
  2147. msgid "You are about to delete another user's collection. Proceed with caution."
  2148. msgstr ""