mediagoblin.po 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685
  1. # Translations template for PROJECT.
  2. # Copyright (C) 2015 ORGANIZATION
  3. # This file is distributed under the same license as the PROJECT project.
  4. #
  5. # Translators:
  6. # velmont <odin.omdal@gmail.com>, 2013-2014
  7. # velmont <odin.omdal@gmail.com>, 2011-2012
  8. # Odin Hørthe <odin.omdal@gmail.com>, 2015.
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: GNU MediaGoblin\n"
  12. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  13. "POT-Creation-Date: 2015-01-16 15:13-0600\n"
  14. "PO-Revision-Date: 2015-08-31 17:10+0000\n"
  15. "Last-Translator: Odin Hørthe <odin.omdal@gmail.com>\n"
  16. "Language-Team: Norwegian Nynorsk (Norway) "
  17. "(http://www.transifex.com/projects/p/mediagoblin/language/nn_NO/)\n"
  18. "Language: nn_NO\n"
  19. "MIME-Version: 1.0\n"
  20. "Content-Type: text/plain; charset=UTF-8\n"
  21. "Content-Transfer-Encoding: 8bit\n"
  22. "Plural-Forms: nplurals=2; plural=(n!=1);\n"
  23. "X-Generator: Pootle 2.5.0\n"
  24. "Generated-By: Babel 1.3\n"
  25. "X-POOTLE-MTIME: 1441041059.0\n"
  26. #: mediagoblin/decorators.py:304 mediagoblin/plugins/openid/views.py:205
  27. msgid "Sorry, registration is disabled on this instance."
  28. msgstr "Registrering er slege av. Orsak."
  29. #: mediagoblin/decorators.py:319
  30. msgid "Sorry, reporting is disabled on this instance."
  31. msgstr "Rapportering er slege av. Orsak."
  32. #: mediagoblin/decorators.py:362 mediagoblin/plugins/ldap/views.py:58
  33. #: mediagoblin/plugins/persona/views.py:79
  34. msgid "Sorry, authentication is disabled on this instance."
  35. msgstr "Autentisering er slege av. Orsak."
  36. #: mediagoblin/auth/tools.py:45
  37. msgid "Invalid User name or email address."
  38. msgstr "Ugyldig brukarnamn eller passord."
  39. #: mediagoblin/auth/tools.py:46
  40. msgid "This field does not take email addresses."
  41. msgstr "Dette feltet tek ikkje epostadresser."
  42. #: mediagoblin/auth/tools.py:47
  43. msgid "This field requires an email address."
  44. msgstr "Dette feltet krev ei epostadresse."
  45. #: mediagoblin/auth/tools.py:118
  46. msgid "Sorry, a user with that name already exists."
  47. msgstr "Ein konto med dette brukarnamnet finst allereide."
  48. #: mediagoblin/auth/tools.py:122 mediagoblin/edit/views.py:452
  49. msgid "Sorry, a user with that email address already exists."
  50. msgstr "Ein brukar med den epostadressa finst allereie."
  51. #: mediagoblin/auth/views.py:145 mediagoblin/edit/views.py:408
  52. #: mediagoblin/edit/views.py:429 mediagoblin/plugins/basic_auth/views.py:110
  53. msgid "The verification key or user id is incorrect."
  54. msgstr "Stadfestingsnykelen eller brukar-ID-en din er feil."
  55. #: mediagoblin/auth/views.py:164
  56. msgid ""
  57. "Your email address has been verified. You may now login, edit your profile, "
  58. "and submit images!"
  59. msgstr "Kontoen din er stadfesta. Du kan no logga inn, endra profilen din og lasta opp filer."
  60. #: mediagoblin/auth/views.py:170
  61. msgid "The verification key or user id is incorrect"
  62. msgstr "Stadfestingsnykelen eller brukar-ID-en din er feil."
  63. #: mediagoblin/auth/views.py:188
  64. msgid "You must be logged in so we know who to send the email to!"
  65. msgstr "Du må vera innlogga, slik me veit kven som skal ha eposten."
  66. #: mediagoblin/auth/views.py:196
  67. msgid "You've already verified your email address!"
  68. msgstr "Du har allereie verifisiert epostadressa."
  69. #: mediagoblin/auth/views.py:206
  70. msgid "Resent your verification email."
  71. msgstr "Stadfestingsepost sendt."
  72. #: mediagoblin/db/mixin.py:404
  73. msgid "{username} added {object}"
  74. msgstr "{username} la til {object}"
  75. #: mediagoblin/db/mixin.py:405
  76. msgid "{username} added {object} to {target}"
  77. msgstr "{username} la {object} til {target}"
  78. #: mediagoblin/db/mixin.py:407
  79. msgid "{username} authored {object}"
  80. msgstr "{username} skreiv {object}"
  81. #: mediagoblin/db/mixin.py:408
  82. msgid "{username} created {object}"
  83. msgstr "{username} lagde {object}"
  84. #: mediagoblin/db/mixin.py:409
  85. msgid "{username} deleted {object}"
  86. msgstr "{username} sletta {object}"
  87. #: mediagoblin/db/mixin.py:410
  88. msgid "{username} disliked {object}"
  89. msgstr "{username} mislikte {object}"
  90. #: mediagoblin/db/mixin.py:411
  91. msgid "{username} favorited {object}"
  92. msgstr "{username} favorittmarkerte {object}"
  93. #: mediagoblin/db/mixin.py:412
  94. msgid "{username} followed {object}"
  95. msgstr "{username} fylgde {object}"
  96. #: mediagoblin/db/mixin.py:413
  97. msgid "{username} liked {object}"
  98. msgstr "{username} likte {object}"
  99. #: mediagoblin/db/mixin.py:415
  100. msgid "{username} posted {object}"
  101. msgstr "{username} posta {object}"
  102. #: mediagoblin/db/mixin.py:416
  103. msgid "{username} posted {object} to {target}"
  104. msgstr "{username} posta {object} til {target}"
  105. #: mediagoblin/db/mixin.py:418
  106. msgid "{username} shared {object}"
  107. msgstr "{username} delte {object}"
  108. #: mediagoblin/db/mixin.py:419
  109. msgid "{username} unfavorited {object}"
  110. msgstr "{username} fjerna favorittmarkering av {object}"
  111. #: mediagoblin/db/mixin.py:420
  112. msgid "{username} stopped following {object}"
  113. msgstr "{username} stoppa fylgja {object}"
  114. #: mediagoblin/db/mixin.py:421
  115. msgid "{username} unliked {object}"
  116. msgstr "{username} stoppa å lika {object}"
  117. #: mediagoblin/db/mixin.py:422
  118. msgid "{username} unshared {object}"
  119. msgstr "{username} slutta å dela {object}"
  120. #: mediagoblin/db/mixin.py:423
  121. msgid "{username} updated {object}"
  122. msgstr "{username} oppdaterte {object}"
  123. #: mediagoblin/db/mixin.py:424
  124. msgid "{username} tagged {object}"
  125. msgstr "{username} merkelappa {object}"
  126. #: mediagoblin/db/mixin.py:428
  127. msgid "an image"
  128. msgstr "eit bilete"
  129. #: mediagoblin/db/mixin.py:429
  130. msgid "a comment"
  131. msgstr "eit innspel"
  132. #: mediagoblin/db/mixin.py:430
  133. msgid "a collection"
  134. msgstr "ei samling"
  135. #: mediagoblin/db/mixin.py:431
  136. msgid "a video"
  137. msgstr "ein video"
  138. #: mediagoblin/db/mixin.py:432
  139. msgid "audio"
  140. msgstr "lyd"
  141. #: mediagoblin/db/mixin.py:433
  142. msgid "a person"
  143. msgstr "ein person"
  144. #: mediagoblin/db/mixin.py:450 mediagoblin/db/mixin.py:459
  145. msgid "an object"
  146. msgstr "eit objekt"
  147. #: mediagoblin/edit/forms.py:29 mediagoblin/edit/forms.py:90
  148. #: mediagoblin/media_types/blog/forms.py:24
  149. #: mediagoblin/media_types/blog/forms.py:33 mediagoblin/submit/forms.py:37
  150. #: mediagoblin/submit/forms.py:61
  151. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:40
  152. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:69
  153. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:100
  154. #: mediagoblin/user_pages/forms.py:45
  155. msgid "Title"
  156. msgstr "Tittel"
  157. #: mediagoblin/edit/forms.py:32 mediagoblin/submit/forms.py:40
  158. msgid "Description of this work"
  159. msgstr "Skildring av verk"
  160. #: mediagoblin/edit/forms.py:33 mediagoblin/edit/forms.py:56
  161. #: mediagoblin/edit/forms.py:94 mediagoblin/submit/forms.py:65
  162. msgid ""
  163. "You can use\n"
  164. " <a href=\"http://daringfireball.net/projects/markdown/basics\">\n"
  165. " Markdown</a> for formatting."
  166. msgstr "Du kan bruka <a href=\"http://daringfireball.net/projects/markdown/basics\">Markdown</a> til formattering."
  167. #: mediagoblin/edit/forms.py:37 mediagoblin/media_types/blog/forms.py:27
  168. #: mediagoblin/submit/forms.py:45
  169. msgid "Tags"
  170. msgstr "Merkelappar"
  171. #: mediagoblin/edit/forms.py:39 mediagoblin/submit/forms.py:47
  172. msgid "Separate tags by commas."
  173. msgstr "Separer merkelappar med komma."
  174. #: mediagoblin/edit/forms.py:42 mediagoblin/edit/forms.py:98
  175. msgid "Slug"
  176. msgstr "Nettnamn"
  177. #: mediagoblin/edit/forms.py:43 mediagoblin/edit/forms.py:99
  178. msgid "The slug can't be empty"
  179. msgstr "Nettnamnet kan ikkje vera tomt"
  180. #: mediagoblin/edit/forms.py:44
  181. msgid ""
  182. "The title part of this media's address. You usually don't need to change "
  183. "this."
  184. msgstr "Nettnamnet (adressetittel) for verket di. Trengst ikkje endrast."
  185. #: mediagoblin/edit/forms.py:48 mediagoblin/media_types/blog/forms.py:29
  186. #: mediagoblin/submit/forms.py:50
  187. #: mediagoblin/templates/mediagoblin/utils/license.html:20
  188. msgid "License"
  189. msgstr "Lisens"
  190. #: mediagoblin/edit/forms.py:54
  191. msgid "Bio"
  192. msgstr "Presentasjon"
  193. #: mediagoblin/edit/forms.py:60
  194. msgid "Website"
  195. msgstr "Heimeside"
  196. #: mediagoblin/edit/forms.py:62
  197. msgid "This address contains errors"
  198. msgstr "Adressa inneheld feil"
  199. #: mediagoblin/edit/forms.py:64
  200. msgid "Hometown"
  201. msgstr "Heimby"
  202. #: mediagoblin/edit/forms.py:68
  203. msgid "Email me when others comment on my media"
  204. msgstr "Send meg epost når andre kjem med innspel på verka mine."
  205. #: mediagoblin/edit/forms.py:70
  206. msgid "Enable insite notifications about events."
  207. msgstr "Slå av/på notifikasjonar om hendingar."
  208. #: mediagoblin/edit/forms.py:72
  209. msgid "License preference"
  210. msgstr "Lisens-val"
  211. #: mediagoblin/edit/forms.py:78
  212. msgid "This will be your default license on upload forms."
  213. msgstr "Dette vil vera standardvalet ditt for lisens."
  214. #: mediagoblin/edit/forms.py:91
  215. msgid "The title can't be empty"
  216. msgstr "Tittelen kjan ikkje vera tom"
  217. #: mediagoblin/edit/forms.py:93 mediagoblin/submit/forms.py:64
  218. #: mediagoblin/user_pages/forms.py:48
  219. msgid "Description of this collection"
  220. msgstr "Forklaringa til denne samlinga"
  221. #: mediagoblin/edit/forms.py:100
  222. msgid ""
  223. "The title part of this collection's address. You usually don't need to "
  224. "change this."
  225. msgstr "Tittel-delen av denne samlinga si adresse. Du treng normalt sett ikkje endra denne."
  226. #: mediagoblin/edit/forms.py:107 mediagoblin/plugins/basic_auth/forms.py:68
  227. msgid "Old password"
  228. msgstr "Gamalt passort"
  229. #: mediagoblin/edit/forms.py:109 mediagoblin/plugins/basic_auth/forms.py:70
  230. msgid "Enter your old password to prove you own this account."
  231. msgstr "Skriv inn det gamle passordet ditt for å stadfesta at du eig denne kontoen."
  232. #: mediagoblin/edit/forms.py:112 mediagoblin/plugins/basic_auth/forms.py:73
  233. msgid "New password"
  234. msgstr "Nytt passord"
  235. #: mediagoblin/edit/forms.py:120
  236. msgid "New email address"
  237. msgstr "Ny epostadresse"
  238. #: mediagoblin/edit/forms.py:124 mediagoblin/plugins/basic_auth/forms.py:28
  239. #: mediagoblin/plugins/basic_auth/forms.py:43
  240. #: mediagoblin/plugins/ldap/forms.py:39
  241. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:67
  242. #: mediagoblin/tests/test_util.py:148
  243. msgid "Password"
  244. msgstr "Passord"
  245. #: mediagoblin/edit/forms.py:126
  246. msgid "Enter your password to prove you own this account."
  247. msgstr "Skriv inn passordet som prov på at dette er din konto."
  248. #: mediagoblin/edit/forms.py:156
  249. msgid "Identifier"
  250. msgstr "Identifikator"
  251. #: mediagoblin/edit/forms.py:157
  252. msgid "Value"
  253. msgstr "Verdi"
  254. #: mediagoblin/edit/views.py:80
  255. msgid "An entry with that slug already exists for this user."
  256. msgstr "Eit innlegg med denne adressetittelen finst allereie."
  257. #: mediagoblin/edit/views.py:98
  258. msgid "You are editing another user's media. Proceed with caution."
  259. msgstr "Trå varsamt, du endrar nokon andre sine verk."
  260. #: mediagoblin/edit/views.py:168
  261. #, python-format
  262. msgid "You added the attachment %s!"
  263. msgstr "La til vedlegg %s."
  264. #: mediagoblin/edit/views.py:195
  265. msgid "You can only edit your own profile."
  266. msgstr "Du kan berre enda din eigen profil."
  267. #: mediagoblin/edit/views.py:201
  268. msgid "You are editing a user's profile. Proceed with caution."
  269. msgstr "Trå varsamt, du endrar nokon andre sin profil."
  270. #: mediagoblin/edit/views.py:232
  271. msgid "Profile changes saved"
  272. msgstr "Lagra endring av profilen"
  273. #: mediagoblin/edit/views.py:265
  274. msgid "Account settings saved"
  275. msgstr "Lagra kontoinstellingar"
  276. #: mediagoblin/edit/views.py:286
  277. msgid "Unknown application, not able to deauthorize"
  278. msgstr "Ukjend applikasjon, kan ikkje fjerna løyve."
  279. #: mediagoblin/edit/views.py:293
  280. msgid "Application has been deauthorized"
  281. msgstr "Fjerna løyve for applikasjon"
  282. #: mediagoblin/edit/views.py:327
  283. msgid "You need to confirm the deletion of your account."
  284. msgstr "Du må stadfesta slettinga av kontoen din."
  285. #: mediagoblin/edit/views.py:363 mediagoblin/submit/views.py:134
  286. #: mediagoblin/user_pages/views.py:254
  287. #, python-format
  288. msgid "You already have a collection called \"%s\"!"
  289. msgstr "Du har allereie ei samling med namn «%s»."
  290. #: mediagoblin/edit/views.py:367
  291. msgid "A collection with that slug already exists for this user."
  292. msgstr "Ei samling med den nettadressa finst allereie for denne brukaren."
  293. #: mediagoblin/edit/views.py:382
  294. msgid "You are editing another user's collection. Proceed with caution."
  295. msgstr "Du endrar ein annan brukar si samling. Trå varsamt."
  296. #: mediagoblin/edit/views.py:423
  297. msgid "Your email address has been verified."
  298. msgstr "Epostadressa di er bekrefta."
  299. #: mediagoblin/edit/views.py:458 mediagoblin/plugins/basic_auth/views.py:200
  300. msgid "Wrong password"
  301. msgstr "Feil passord"
  302. #: mediagoblin/gmg_commands/assetlink.py:60
  303. msgid "Cannot link theme... no theme set\n"
  304. msgstr "Cannot link theme... no theme set\n"
  305. #: mediagoblin/gmg_commands/assetlink.py:73
  306. msgid "No asset directory for this theme\n"
  307. msgstr "No asset directory for this theme\n"
  308. #: mediagoblin/gmg_commands/assetlink.py:76
  309. msgid "However, old link directory symlink found; removed.\n"
  310. msgstr "However, old link directory symlink found; removed.\n"
  311. #: mediagoblin/gmg_commands/assetlink.py:112
  312. #, python-format
  313. msgid "Could not link \"%s\": %s exists and is not a symlink\n"
  314. msgstr "Kunne ikkje lenkja «%s»: %s eksisterer og er ikkje ei symlenkje\n"
  315. #: mediagoblin/gmg_commands/assetlink.py:119
  316. #, python-format
  317. msgid "Skipping \"%s\"; already set up.\n"
  318. msgstr "Hopper over «%s»: allereie satt opp.\n"
  319. #: mediagoblin/gmg_commands/assetlink.py:124
  320. #, python-format
  321. msgid "Old link found for \"%s\"; removing.\n"
  322. msgstr "Gamal lenkje funnen for «%s»; fjernar.\n"
  323. #: mediagoblin/gmg_commands/batchaddmedia.py:40
  324. msgid ""
  325. "For more information about how to properly run this\n"
  326. "script (and how to format the metadata csv file), read the MediaGoblin\n"
  327. "documentation page on command line uploading\n"
  328. "<http://docs.mediagoblin.org/siteadmin/commandline-upload.html>"
  329. msgstr "For more information about how to properly run this\nscript (and how to format the metadata csv file), read the MediaGoblin\ndocumentation page on command line uploading\n<http://docs.mediagoblin.org/siteadmin/commandline-upload.html>"
  330. #: mediagoblin/gmg_commands/batchaddmedia.py:46
  331. msgid "Name of user these media entries belong to"
  332. msgstr "Name of user these media entries belong to"
  333. #: mediagoblin/gmg_commands/batchaddmedia.py:49
  334. msgid "Path to the csv file containing metadata information."
  335. msgstr "Path to the csv file containing metadata information."
  336. #: mediagoblin/gmg_commands/batchaddmedia.py:54
  337. msgid "Don't process eagerly, pass off to celery"
  338. msgstr "Don't process eagerly, pass off to celery"
  339. #: mediagoblin/gmg_commands/batchaddmedia.py:69
  340. msgid "Sorry, no user by username '{username}' exists"
  341. msgstr "Sorry, no user by username '{username}' exists"
  342. #: mediagoblin/gmg_commands/batchaddmedia.py:80
  343. msgid "File at {path} not found, use -h flag for help"
  344. msgstr "File at {path} not found, use -h flag for help"
  345. #: mediagoblin/gmg_commands/batchaddmedia.py:121
  346. msgid ""
  347. "Error with media '{media_id}' value '{error_path}': {error_msg}\n"
  348. "Metadata was not uploaded."
  349. msgstr "Error with media '{media_id}' value '{error_path}': {error_msg}\nMetadata was not uploaded."
  350. #: mediagoblin/gmg_commands/batchaddmedia.py:147
  351. msgid ""
  352. "FAIL: Local file {filename} could not be accessed.\n"
  353. "{filename} will not be uploaded."
  354. msgstr "FAIL: Local file {filename} could not be accessed.\n{filename} will not be uploaded."
  355. #: mediagoblin/gmg_commands/batchaddmedia.py:163
  356. msgid ""
  357. "Successfully submitted {filename}!\n"
  358. "Be sure to look at the Media Processing Panel on your website to be sure it\n"
  359. "uploaded successfully."
  360. msgstr "Successfully submitted {filename}!\nBe sure to look at the Media Processing Panel on your website to be sure it\nuploaded successfully."
  361. #: mediagoblin/gmg_commands/batchaddmedia.py:166
  362. msgid "FAIL: This file is larger than the upload limits for this site."
  363. msgstr "FAIL: This file is larger than the upload limits for this site."
  364. #: mediagoblin/gmg_commands/batchaddmedia.py:169
  365. msgid "FAIL: This file will put this user past their upload limits."
  366. msgstr "FAIL: This file will put this user past their upload limits."
  367. #: mediagoblin/gmg_commands/batchaddmedia.py:172
  368. msgid "FAIL: This user is already past their upload limits."
  369. msgstr "FAIL: This user is already past their upload limits."
  370. #: mediagoblin/gmg_commands/batchaddmedia.py:174
  371. msgid "{files_uploaded} out of {files_attempted} files successfully submitted"
  372. msgstr "{files_uploaded} out of {files_attempted} files successfully submitted"
  373. #: mediagoblin/meddleware/csrf.py:134
  374. msgid ""
  375. "CSRF cookie not present. This is most likely the result of a cookie blocker "
  376. "or somesuch.<br/>Make sure to permit the settings of cookies for this "
  377. "domain."
  378. msgstr "Finn ikkje CSRF-cookien. Dette er truleg grunna ein cookie-blokkar.<br/>\nSjå til at du tillet cookies for dette domenet."
  379. #: mediagoblin/media_types/__init__.py:79
  380. #: mediagoblin/media_types/__init__.py:101
  381. msgid "Sorry, I don't support that file type :("
  382. msgstr "Orsak, stør ikkje den filtypen :("
  383. #: mediagoblin/media_types/blog/forms.py:26
  384. #: mediagoblin/media_types/blog/forms.py:35
  385. #: mediagoblin/plugins/oauth/forms.py:36
  386. msgid "Description"
  387. msgstr "Forklaring"
  388. #: mediagoblin/media_types/blog/forms.py:40 mediagoblin/user_pages/forms.py:31
  389. msgid "I am sure I want to delete this"
  390. msgstr "Eg er sikker eg vil sletta dette"
  391. #: mediagoblin/media_types/blog/views.py:158 mediagoblin/submit/views.py:71
  392. msgid "Woohoo! Submitted!"
  393. msgstr "Johoo! Opplasta!"
  394. #: mediagoblin/media_types/blog/views.py:200
  395. msgid "Woohoo! edited blogpost is submitted"
  396. msgstr "Sende inn det endra innlegget"
  397. #: mediagoblin/media_types/blog/views.py:322
  398. msgid "You deleted the Blog."
  399. msgstr "Du sletta bloggen."
  400. #: mediagoblin/media_types/blog/views.py:328
  401. #: mediagoblin/user_pages/views.py:332
  402. msgid "The media was not deleted because you didn't check that you were sure."
  403. msgstr "Sletta ikkje verket."
  404. #: mediagoblin/media_types/blog/views.py:335
  405. msgid "You are about to delete another user's Blog. Proceed with caution."
  406. msgstr "Du er i ferd med å sletta ein annan brukar sin blogg. Trå varsamt."
  407. #: mediagoblin/media_types/blog/views.py:346
  408. msgid "The blog was not deleted because you have no rights."
  409. msgstr "Sletta ikkje bloggen fordi du ikkje har løyve."
  410. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:43
  411. msgid "Add Blog Post"
  412. msgstr "Legg til innlegg"
  413. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:50
  414. msgid "Edit Blog"
  415. msgstr "Endra blogg"
  416. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:57
  417. msgid "Delete Blog"
  418. msgstr "Slett blogg"
  419. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:92
  420. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blogpost_draft_view.html:35
  421. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:76
  422. #: mediagoblin/templates/mediagoblin/user_pages/collection.html:52
  423. #: mediagoblin/templates/mediagoblin/user_pages/media.html:85
  424. msgid "Edit"
  425. msgstr "Endra"
  426. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:93
  427. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blogpost_draft_view.html:36
  428. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/delete.html:39
  429. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/edit.html:39
  430. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:80
  431. #: mediagoblin/templates/mediagoblin/user_pages/collection.html:56
  432. #: mediagoblin/templates/mediagoblin/user_pages/media.html:89
  433. msgid "Delete"
  434. msgstr "Slett"
  435. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:102
  436. msgid "<em> Go to list view </em>"
  437. msgstr "<em>Gå til listevisning</em>"
  438. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_admin_dashboard.html:104
  439. msgid " No blog post yet. "
  440. msgstr "Ingen innlegg enno."
  441. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_confirm_delete.html:30
  442. #: mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html:30
  443. #, python-format
  444. msgid "Really delete %(title)s?"
  445. msgstr "Vil du verkeleg sletta %(title)s?"
  446. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_confirm_delete.html:47
  447. #: mediagoblin/templates/mediagoblin/edit/attachments.html:61
  448. #: mediagoblin/templates/mediagoblin/edit/delete_account.html:42
  449. #: mediagoblin/templates/mediagoblin/edit/edit.html:41
  450. #: mediagoblin/templates/mediagoblin/edit/edit_collection.html:32
  451. #: mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html:54
  452. #: mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html:60
  453. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:67
  454. #: mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html:48
  455. msgid "Cancel"
  456. msgstr "Bryt av"
  457. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_confirm_delete.html:48
  458. #: mediagoblin/templates/mediagoblin/edit/delete_account.html:44
  459. #: mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html:56
  460. #: mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html:49
  461. msgid "Delete permanently"
  462. msgstr "Slett permanent"
  463. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_edit_create.html:26
  464. msgid "Create/Edit a Blog"
  465. msgstr "Opprett/endra ein blogg"
  466. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_edit_create.html:37
  467. #: mediagoblin/plugins/oauth/templates/oauth/client/register.html:29
  468. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/add.html:39
  469. #: mediagoblin/templates/mediagoblin/submit/collection.html:30
  470. #: mediagoblin/templates/mediagoblin/submit/start.html:39
  471. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:68
  472. msgid "Add"
  473. msgstr "Legg til"
  474. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_post_edit_create.html:23
  475. msgid "Create/Edit a blog post."
  476. msgstr "Opprett/endra eit innlegg."
  477. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_post_edit_create.html:29
  478. msgid "Create/Edit a Blog Post."
  479. msgstr "Opprett/endra eit innlegg."
  480. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/blog_post_listing.html:24
  481. #, python-format
  482. msgid "%(blog_owner_name)s's Blog"
  483. msgstr "Bloggen til %(blog_owner_name)s"
  484. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/list_of_blogs.html:46
  485. msgid "View"
  486. msgstr "Vis"
  487. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/list_of_blogs.html:65
  488. msgid "Create a Blog"
  489. msgstr "Lag ein blogg"
  490. #: mediagoblin/media_types/blog/templates/mediagoblin/blog/url_to_dashboard.html:20
  491. msgid " Blog Dashboard "
  492. msgstr "Blogg styringspanel"
  493. #: mediagoblin/media_types/pdf/processing.py:142
  494. msgid "unoconv failing to run, check log file"
  495. msgstr "klarte ikkje køyra unoconv, sjekk logg-fil"
  496. #: mediagoblin/media_types/video/processing.py:44
  497. msgid "Video transcoding failed"
  498. msgstr "Skjedde noko gale med video-transkodinga"
  499. #: mediagoblin/moderation/forms.py:21
  500. msgid "Take away privilege"
  501. msgstr "Ta-med-privilegium"
  502. #: mediagoblin/moderation/forms.py:22
  503. msgid "Ban the user"
  504. msgstr "Bannlys brukaren"
  505. #: mediagoblin/moderation/forms.py:23
  506. msgid "Send the user a message"
  507. msgstr "Send brukaren ei melding"
  508. #: mediagoblin/moderation/forms.py:24
  509. msgid "Delete the content"
  510. msgstr "Slett innhaldet"
  511. #: mediagoblin/moderation/forms.py:53 mediagoblin/moderation/forms.py:118
  512. msgid "User will be banned until:"
  513. msgstr "Brukaren vil bli bannlyst til:"
  514. #: mediagoblin/moderation/forms.py:57
  515. msgid "Why are you banning this User?"
  516. msgstr "Kvifor bannlyser du denne brukaren?"
  517. #: mediagoblin/moderation/forms.py:109
  518. msgid "What action will you take to resolve the report?"
  519. msgstr "Kva handling vil du ta for å løysa rapporteringa?"
  520. #: mediagoblin/moderation/forms.py:115
  521. msgid "What privileges will you take away?"
  522. msgstr "Kva privilegium vil du ta vekk?"
  523. #: mediagoblin/moderation/forms.py:122
  524. msgid "Why user was banned:"
  525. msgstr "Grunn til at brukaren er utestengd:"
  526. #: mediagoblin/moderation/forms.py:125
  527. msgid "Message to user:"
  528. msgstr "Melding til brukar:"
  529. #: mediagoblin/moderation/forms.py:128
  530. msgid "Resolution content:"
  531. msgstr "Løysingsinnhald:"
  532. #: mediagoblin/moderation/tools.py:37
  533. msgid ""
  534. "\n"
  535. "{mod} took away {user}'s {privilege} privileges."
  536. msgstr "\n{mod} tok vekk {privilege} privilegiane til {user}."
  537. #: mediagoblin/moderation/tools.py:50
  538. msgid ""
  539. "\n"
  540. "{mod} banned user {user} {expiration_date}."
  541. msgstr "\n{mod} utestengde brukaren {user} {expiration_date}."
  542. #: mediagoblin/moderation/tools.py:54
  543. msgid "until {date}"
  544. msgstr "til {dato}"
  545. #: mediagoblin/moderation/tools.py:56
  546. #: mediagoblin/templates/mediagoblin/banned.html:30
  547. msgid "indefinitely"
  548. msgstr "for alltid"
  549. #: mediagoblin/moderation/tools.py:65
  550. msgid ""
  551. "\n"
  552. "{mod} sent a warning email to the {user}."
  553. msgstr "\n{mod} sende ein åtvaringsepost til {user}."
  554. #: mediagoblin/moderation/tools.py:74
  555. msgid ""
  556. "\n"
  557. "{mod} deleted the comment."
  558. msgstr "\n{mod} sletta innspelet."
  559. #: mediagoblin/moderation/tools.py:81
  560. msgid ""
  561. "\n"
  562. "{mod} deleted the media entry."
  563. msgstr "\n{mod} sletta verket."
  564. #: mediagoblin/moderation/tools.py:94
  565. msgid "Warning from"
  566. msgstr "Åtvaring frå"
  567. #: mediagoblin/notifications/tools.py:54 mediagoblin/user_pages/lib.py:60
  568. msgid "commented on your post"
  569. msgstr "kom med innspel på innlegget ditt"
  570. #: mediagoblin/notifications/views.py:35
  571. #, python-format
  572. msgid "Subscribed to comments on %s!"
  573. msgstr "Tingar innspel frå %s."
  574. #: mediagoblin/notifications/views.py:48
  575. #, python-format
  576. msgid "You will not receive notifications for comments on %s."
  577. msgstr "Du vil ikkje få notifikasjonar for innspel på %s."
  578. #: mediagoblin/oauth/views.py:239
  579. msgid "Must provide an oauth_token."
  580. msgstr "Treng oauth_token (must provide oath_token)."
  581. #: mediagoblin/oauth/views.py:244 mediagoblin/oauth/views.py:295
  582. msgid "No request token found."
  583. msgstr "Noko gjekk gale :( (no request token found)."
  584. #: mediagoblin/plugins/api/views.py:78 mediagoblin/plugins/piwigo/views.py:157
  585. #: mediagoblin/submit/views.py:80
  586. msgid "Sorry, the file size is too big."
  587. msgstr "Fila er for stor."
  588. #: mediagoblin/plugins/api/views.py:81 mediagoblin/plugins/piwigo/views.py:160
  589. #: mediagoblin/submit/views.py:83
  590. msgid "Sorry, uploading this file will put you over your upload limit."
  591. msgstr "Opplasting av denne fila vil putta deg over opplastingsgrensa di."
  592. #: mediagoblin/plugins/api/views.py:85 mediagoblin/plugins/piwigo/views.py:164
  593. #: mediagoblin/submit/views.py:89
  594. msgid "Sorry, you have reached your upload limit."
  595. msgstr "Du har nådd opplastingsgrensa di."
  596. #: mediagoblin/plugins/archivalook/forms.py:21
  597. msgid "Enter the URL for the media to be featured"
  598. msgstr "Skriv adresse for verket du vil visa fram."
  599. #: mediagoblin/plugins/archivalook/tools.py:132
  600. msgid "Primary"
  601. msgstr "Primær"
  602. #: mediagoblin/plugins/archivalook/tools.py:133
  603. msgid "Secondary"
  604. msgstr "Sekundær"
  605. #: mediagoblin/plugins/archivalook/tools.py:134
  606. msgid "Tertiary"
  607. msgstr "Tertiær"
  608. #: mediagoblin/plugins/archivalook/tools.py:135
  609. msgid "-----------{display_type}-Features---------------------------\n"
  610. msgstr "-----------{display_type}-Funksjonar---------------------------\n"
  611. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:33
  612. msgid "How does this work?"
  613. msgstr "Korleis fungerer dette?"
  614. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:34
  615. msgid "How to feature media?"
  616. msgstr "Korleis framheva media?"
  617. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:37
  618. msgid ""
  619. "\n"
  620. " Go to the page of the media entry you want to feature. Copy it's URL and\n"
  621. " then paste it into a new line in the text box above. There should be only\n"
  622. " one url per line. The url that you paste into the text box should be under\n"
  623. " the header describing how prominent a feature it will be (whether Primary,\n"
  624. " Secondary, or Tertiary). Once all of the media that you want to feature are\n"
  625. " inside the text box, click the Submit Query button, and your media should be\n"
  626. " displayed on the front page.\n"
  627. " "
  628. msgstr ""
  629. "Gå til sida med verket du vil framheva. Kopier addressa og kopier ho inn i "
  630. "ei ny line i tekstboksar over. Det bør berre vera ei adresse per line. "
  631. "Adressa du limte inn i tekstboksen bør vera under overskrifta som seier kor "
  632. "prominent plasseringa skal vera (primær, sekundær eller tertiær). Når alle "
  633. "verka du vil framheva er inne i tekstboksen, klikk Send-knappen og verkene "
  634. "skal bli vist på framsida."
  635. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:48
  636. msgid "Is there another way to manage featured media?"
  637. msgstr "Er det ein annen måte å handtera framheva verk?"
  638. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:51
  639. msgid ""
  640. "\n"
  641. " Yes. If you would prefer, you may go to the media homepage of the piece\n"
  642. " of media you would like to feature or unfeature and look at the bar to\n"
  643. " the side of the media entry. If the piece of media has not been featured\n"
  644. " yet you should see a button that says \"Feature\". Press that button and\n"
  645. " the media will be featured as a Primary Feature at the top of the page.\n"
  646. " All other featured media entries will remain as features, but will be\n"
  647. " pushed further down the page.<br /><br />\n"
  648. "\n"
  649. " If you go to the media homepage of a piece of media that is currently\n"
  650. " featured, you will see the options \"Unfeature\", \"Promote\" and \"Demote\"\n"
  651. " where previously there was the button which said \"Feature\". Click\n"
  652. " Unfeature and that media entry will no longer be displayed on the\n"
  653. " front page, although you can feature it again at any point. Promote\n"
  654. " moves the featured media higher up on the page and makes it more\n"
  655. " prominent and Demote moves the featured media lower down and makes it\n"
  656. " less prominent.\n"
  657. " "
  658. msgstr ""
  659. "Ja, dersom du føretrekk, kan du gå til verket si side og framheva/ta vekk "
  660. "framheving der. Du vil sjå ei lenkje som heiter «Framhev», når du trykkjer "
  661. "den kjem verket på framsida og dytter ned dei andre verka som allereie er "
  662. "valt.<br/ ><br />Dersom verket allereie er framheva kan du velja mellom "
  663. "«Fjern framheving», «Viktigare framheving» og «Mindre viktig framheving». "
  664. "Fjern framheving gjer nett det, «viktigare framheving» let verket få ei "
  665. "høgare plassering på sida, og «mindre viktig framheving» gjer det motsette."
  666. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:70
  667. msgid "What is a Primary Feature? What is a Secondary Feature?"
  668. msgstr "Kva ein ein primær-framheving? Kva med sekundær-framheving?"
  669. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:74
  670. msgid ""
  671. "\n"
  672. " These categories just describe how prominent a feature will be on your\n"
  673. " front page. Primary Features are placed at the top of the front page and are\n"
  674. " much larger. Next are Secondary Features, which are slightly smaller.\n"
  675. " Tertiary Features make up a grid at the bottom of the page.<br /><br />\n"
  676. "\n"
  677. " Primary Features also can display longer descriptions than Secondary\n"
  678. " Features, and Secondary Features can display longer descriptions than\n"
  679. " Tertiary Features."
  680. msgstr ""
  681. "Desse kategoriane berre seier kor framheva/prominent dei vil vera på "
  682. "framsida di. Primær er plassert på toppen av framsida og er store. Sekundær "
  683. "er litt mindre. Tertiær er i ein tabell nedst på sida.<br /><br />Primære "
  684. "framhevingar har òg lengre skildringar enn sekundær og tertiær."
  685. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:85
  686. msgid ""
  687. "How to decide what information is displayed when a media entry is\n"
  688. " featured?"
  689. msgstr "Korleis bestemma kva informasjon som skal visast i eit framheva verk?"
  690. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:88
  691. msgid ""
  692. "\n"
  693. " When a media entry is featured, the entry's title, it's thumbnail and a\n"
  694. " portion of its description will be displayed on your website's front page.\n"
  695. " The number of characters displayed varies on the prominence of the feature.\n"
  696. " Primary Features display the first 512 characters of their description,\n"
  697. " Secondary Features display the first 256 characters of their description,\n"
  698. " and Tertiary Features display the first 128 characters of their description.\n"
  699. " "
  700. msgstr ""
  701. "Ved framheving vil eit verk sin tittel, knøttbilete og ein del av skildringa "
  702. "visast fram på framsida. Primær framheving viser dei fyrste 512 teikna av "
  703. "skildringa. Sekundær viser 256 og tertiær 128."
  704. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:98
  705. msgid "How to unfeature a piece of media?"
  706. msgstr "Korleis fjerna eit verk frå framheving?"
  707. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:102
  708. msgid ""
  709. "\n"
  710. " Unfeature a media by removing its line from the above textarea and then\n"
  711. " pressing the Submit Query button.\n"
  712. " "
  713. msgstr "Ganske enkelt fjern lina frå tekstfeltet og trykk «Send inn»-knappen."
  714. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:108
  715. msgid "CAUTION:"
  716. msgstr "ÅTVARING:"
  717. #: mediagoblin/plugins/archivalook/templates/archivalook/feature.html:110
  718. msgid ""
  719. "\n"
  720. " When copying and pasting urls into the above text box, be aware that if\n"
  721. " you make a typo, once you press Submit Query, your media entry will NOT be\n"
  722. " featured. Make sure that all your intended Media Entries are featured.\n"
  723. " "
  724. msgstr ""
  725. "Når du limer inn addresser inn i tekstboksen over, pass på at dersom du "
  726. "skriv noko feil og trykkjer «Send inn» so vil ikkje verket bli framheva."
  727. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:26
  728. msgid ""
  729. "\n"
  730. "Feature Media "
  731. msgstr "Framhev verk"
  732. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:28
  733. msgid "Feature"
  734. msgstr "Framhev"
  735. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:34
  736. msgid ""
  737. "\n"
  738. "Unfeature Media "
  739. msgstr "Fjern framheving"
  740. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:36
  741. msgid "Unfeature"
  742. msgstr "Fjern framheving"
  743. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:42
  744. msgid ""
  745. "\n"
  746. "Promote Feature "
  747. msgstr "Viktigare framheving"
  748. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:44
  749. msgid "Promote"
  750. msgstr "Viktigare"
  751. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:50
  752. msgid ""
  753. "\n"
  754. "Demote Feature "
  755. msgstr "Mindre viktig framheving"
  756. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_media_sidebar.html:52
  757. msgid "Demote"
  758. msgstr "Mindre viktig"
  759. #: mediagoblin/plugins/archivalook/templates/archivalook/recent_media.html:30
  760. #: mediagoblin/templates/mediagoblin/root.html:32
  761. msgid "Most recent media"
  762. msgstr "Nyaste verk"
  763. #: mediagoblin/plugins/archivalook/templates/archivalook/root.html:61
  764. msgid "Nothing is currently featured."
  765. msgstr "Ingen verk er framheva nett no."
  766. #: mediagoblin/plugins/archivalook/templates/archivalook/root.html:62
  767. msgid ""
  768. "If you would like to feature a\n"
  769. " piece of media, go to that media entry's homepage and click the button\n"
  770. " that says <a class=\"button_action\">Feature</a>."
  771. msgstr ""
  772. "Dersom du ynskjer å framheva eit verk, gå til verket og klikk på knappen som "
  773. "seier <a class=\"button_action\">Framhev</a>."
  774. #: mediagoblin/plugins/archivalook/templates/archivalook/root.html:67
  775. #, python-format
  776. msgid ""
  777. "You're seeing this page because you are a user capable of\n"
  778. " featuring media, a regular user would see a blank page, so be sure to\n"
  779. " have media featured as long as your instance has the 'archivalook'\n"
  780. " plugin enabled. A more advanced tool to manage features can be found\n"
  781. " in the <a href=\"%(featured_media_url)s\">feature management panel.</a>"
  782. msgstr ""
  783. "Du ser denne sida fordi du er ein brukar som kan framheva verk. Ein vanleg "
  784. "brukar vil sjå ei blank side, so pass på at du har framheva verk so lengje "
  785. "som du har 'archivalook' innstikket aktivert. Eit meir avansert verkty for å "
  786. "handtera framhevingar kan finnast i <a href=\"%"
  787. "(featured_media_url)s\">panelet for framhevingar.</a>"
  788. #: mediagoblin/plugins/archivalook/templates/archivalook/root.html:79
  789. msgid "View most recent media"
  790. msgstr "Sjå nyaste verk"
  791. #: mediagoblin/plugins/archivalook/templates/archivalook/bits/feature_dropdown.html:22
  792. msgid "Feature management panel"
  793. msgstr "Handtering av framhevingar"
  794. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_displays/audio_primary.html:43
  795. msgid ""
  796. "Sorry, this audio will not work because\n"
  797. "\tyour web browser does not support HTML5\n"
  798. "\taudio."
  799. msgstr ""
  800. "Orsak, lyden vil ikkje fungera fordi netlesaren din stør ikkje HTML5 audio."
  801. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_displays/audio_primary.html:46
  802. msgid ""
  803. "You can get a modern web browser that\n"
  804. "\tcan play the audio at <a href=\"http://getfirefox.com\">\n"
  805. "\t http://getfirefox.com</a>!"
  806. msgstr ""
  807. "Du kan få ei moderne netlesar som kan spela lyden på <a "
  808. "href=\"http://getfirefox.com\">http://getfirefox.com</a>."
  809. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_displays/video_primary.html:43
  810. #: mediagoblin/plugins/archivalook/templates/archivalook/feature_displays/video_secondary.html:43
  811. msgid ""
  812. "Sorry, this video will not work because\n"
  813. " your web browser does not support HTML5 \n"
  814. " video."
  815. msgstr ""
  816. "Orsak, denne videoen fungerer ikkje\n"
  817. "fordi netlesaren din ikkje stør\n"
  818. "HTML5 video."
  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. "Du kan skaffa deg ein moderne netlesar som kan spela denne videoen hjå <a "
  827. "href=http://opera.com>http://opera.com</a> eller <a "
  828. "href=\"http://getfirefox.com\">http://getfirefox.com</a>."
  829. #: mediagoblin/plugins/basic_auth/forms.py:24
  830. #: mediagoblin/plugins/ldap/forms.py:35 mediagoblin/plugins/openid/forms.py:27
  831. #: mediagoblin/plugins/persona/forms.py:24
  832. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:76
  833. msgid "Username"
  834. msgstr "Brukarnamn"
  835. #: mediagoblin/plugins/basic_auth/forms.py:32
  836. #: mediagoblin/plugins/ldap/forms.py:28 mediagoblin/plugins/openid/forms.py:31
  837. #: mediagoblin/plugins/persona/forms.py:28
  838. #: mediagoblin/plugins/persona/forms.py:39
  839. msgid "Email address"
  840. msgstr "Epost"
  841. #: mediagoblin/plugins/basic_auth/forms.py:39
  842. msgid "Username or Email"
  843. msgstr "Brukarnamn eller epost"
  844. #: mediagoblin/plugins/basic_auth/forms.py:46
  845. msgid "Stay logged in"
  846. msgstr "Hald meg innlogga"
  847. #: mediagoblin/plugins/basic_auth/forms.py:51
  848. msgid "Username or email"
  849. msgstr "Brukarnamn eller epost"
  850. #: mediagoblin/plugins/basic_auth/views.py:54
  851. msgid ""
  852. "If that email address (case sensitive!) is registered an email has been sent"
  853. " with instructions on how to change your password."
  854. msgstr "Dersom denne epostadressa er registrert, har ein epost med instruksjonar for å endra passord vorte sendt til han."
  855. #: mediagoblin/plugins/basic_auth/views.py:65
  856. msgid "Couldn't find someone with that username."
  857. msgstr "Fann ingen med det brukarnamnet."
  858. #: mediagoblin/plugins/basic_auth/views.py:68
  859. msgid ""
  860. "An email has been sent with instructions on how to change your password."
  861. msgstr "Sender epost med instruksjonar for å endra passordet ditt."
  862. #: mediagoblin/plugins/basic_auth/views.py:75
  863. msgid ""
  864. "Could not send password recovery email as your username is inactive or your "
  865. "account's email address has not been verified."
  866. msgstr "Kunne ikkje senda epost. Brukarnamnet ditt er inaktivt eller ikkje stadfesta."
  867. #: mediagoblin/plugins/basic_auth/views.py:123
  868. msgid "The user id is incorrect."
  869. msgstr "Brukar-ID-en er feil."
  870. #: mediagoblin/plugins/basic_auth/views.py:139
  871. msgid "You can now log in using your new password."
  872. msgstr "Du kan no logga inn med det nye passordet ditt."
  873. #: mediagoblin/plugins/basic_auth/views.py:163
  874. msgid ""
  875. "You are no longer an active user. Please contact the system admin to "
  876. "reactivate your account."
  877. msgstr "Brukaren er ikkje aktiv. Kontakt administrator for å aktivera kontoen din att."
  878. #: mediagoblin/plugins/basic_auth/views.py:215
  879. msgid "Your password was changed successfully"
  880. msgstr "Endra passord"
  881. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_fp.html:28
  882. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_fp.html:36
  883. msgid "Set your new password"
  884. msgstr "Lag nytt passord"
  885. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_fp.html:39
  886. msgid "Set password"
  887. msgstr "Set passord"
  888. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_pass.html:28
  889. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_pass.html:38
  890. #, python-format
  891. msgid "Changing %(username)s's password"
  892. msgstr "Endrar passordet til %(username)s"
  893. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/change_pass.html:45
  894. #: mediagoblin/templates/mediagoblin/edit/change_email.html:40
  895. msgid "Save"
  896. msgstr "Lagra"
  897. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/create_account_link.html:22
  898. msgid "Don't have an account yet?"
  899. msgstr "Manglar du konto?"
  900. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/create_account_link.html:24
  901. msgid "Create one here!"
  902. msgstr "Opprett ein!"
  903. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/edit_link.html:22
  904. msgid "Change your password."
  905. msgstr "Endra passordet ditt."
  906. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/forgot_password.html:23
  907. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/forgot_password.html:31
  908. msgid "Recover password"
  909. msgstr "Gløymd passordet?"
  910. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/forgot_password.html:34
  911. msgid "Send instructions"
  912. msgstr "Send instruksjonar"
  913. #: mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/fp_link.html:22
  914. msgid "Forgot your password?"
  915. msgstr "Gløymd passordet?"
  916. #: mediagoblin/plugins/geolocation/templates/mediagoblin/plugins/geolocation/map.html:51
  917. #, python-format
  918. msgid "View on <a href=\"%(osm_url)s\">OpenStreetMap</a>"
  919. msgstr "Sjå på <a href=\"%(osm_url)s\">OpenStreetMap</a>"
  920. #: mediagoblin/plugins/ldap/templates/mediagoblin/plugins/ldap/create_account_link.html:22
  921. msgid "Sign in to create an account!"
  922. msgstr "Logg inn for å oppretta ein konto."
  923. #: mediagoblin/plugins/metadata_display/templates/mediagoblin/plugins/metadata_display/metadata_table.html:22
  924. msgid "Metadata"
  925. msgstr "Metadata"
  926. #: mediagoblin/plugins/metadata_display/templates/mediagoblin/plugins/metadata_display/metadata_table.html:40
  927. msgid "Edit Metadata"
  928. msgstr "Endra metadata"
  929. #: mediagoblin/plugins/oauth/forms.py:29
  930. msgid "Allow"
  931. msgstr "Godta"
  932. #: mediagoblin/plugins/oauth/forms.py:30
  933. msgid "Deny"
  934. msgstr "Nekt"
  935. #: mediagoblin/plugins/oauth/forms.py:34
  936. msgid "Name"
  937. msgstr "Namn"
  938. #: mediagoblin/plugins/oauth/forms.py:35
  939. msgid "The name of the OAuth client"
  940. msgstr "Namnet til OAuth-klienten"
  941. #: mediagoblin/plugins/oauth/forms.py:38
  942. msgid ""
  943. "This will be visible to users allowing your\n"
  944. " application to authenticate as them."
  945. msgstr "Dette vil vera synleg for brukarar som godtek applikasjonen din til å autentisera dei."
  946. #: mediagoblin/plugins/oauth/forms.py:40
  947. msgid "Type"
  948. msgstr "Type"
  949. #: mediagoblin/plugins/oauth/forms.py:45
  950. msgid ""
  951. "<strong>Confidential</strong> - The client can\n"
  952. " make requests to the GNU MediaGoblin instance that can not be\n"
  953. " intercepted by the user agent (e.g. server-side client).<br />\n"
  954. " <strong>Public</strong> - The client can't make confidential\n"
  955. " requests to the GNU MediaGoblin instance (e.g. client-side\n"
  956. " JavaScript client)."
  957. msgstr "<strong>Confidential</strong> - Konfidensielt, på engelsk: The client can\n make requests to the GNU MediaGoblin instance that can not be\n intercepted by the user agent (e.g. server-side client).<br />\n<strong>Public</strong> - Open, på engelsk: The client can't make confidential\n requests to the GNU MediaGoblin instance (e.g. client-side\n JavaScript client)."
  958. #: mediagoblin/plugins/oauth/forms.py:52
  959. msgid "Redirect URI"
  960. msgstr "Omdirigering URI"
  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 "Omdirigerings-URI-en for programmene. Denne feltet <strong>krevst</strong> for opne (public) klientar."
  966. #: mediagoblin/plugins/oauth/forms.py:66
  967. msgid "This field is required for public clients"
  968. msgstr "Dette feltet krevst for opne (public) klientar"
  969. #: mediagoblin/plugins/oauth/views.py:57
  970. msgid "The client {0} has been registered!"
  971. msgstr "Klienten {0} er registrert."
  972. #: mediagoblin/plugins/oauth/templates/oauth/client/connections.html:22
  973. msgid "OAuth client connections"
  974. msgstr "OAuth klient-tilkoplingar"
  975. #: mediagoblin/plugins/oauth/templates/oauth/client/list.html:22
  976. msgid "Your OAuth clients"
  977. msgstr "Dine OAuth-klientar"
  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 "Ein konto er allereie registrert til den OpenID-en."
  983. #: mediagoblin/plugins/openid/forms.py:38
  984. msgid "OpenID"
  985. msgstr "OpenID"
  986. #: mediagoblin/plugins/openid/views.py:51
  987. msgid "Sorry, the OpenID server could not be found"
  988. msgstr "Fann ikkje OpenID-tenaren."
  989. #: mediagoblin/plugins/openid/views.py:64
  990. #, python-format
  991. msgid "No OpenID service was found for %s"
  992. msgstr "Ingen OpenID funne for %s."
  993. #: mediagoblin/plugins/openid/views.py:109
  994. #, python-format
  995. msgid "Verification of %s failed: %s"
  996. msgstr "Stadfesting av %s feila: %s"
  997. #: mediagoblin/plugins/openid/views.py:120
  998. msgid "Verification cancelled"
  999. msgstr "Stadfesting avbrutt"
  1000. #: mediagoblin/plugins/openid/views.py:317
  1001. msgid "Your OpenID url was saved successfully."
  1002. msgstr "Lagra OpenID-url."
  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 "Kan ikkje sletta den einaste OpenID-urlen utan at du har eit passord satt."
  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 "Den OpenID-en er ikkje registrert til denne kontoen."
  1011. #: mediagoblin/plugins/openid/views.py:388
  1012. msgid "OpenID was successfully removed."
  1013. msgstr "Fjerna OpenID-en."
  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 "Legg til OpenID"
  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 "Slett ein OpenID"
  1025. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/edit_link.html:21
  1026. msgid "OpenID's"
  1027. msgstr "OpenID-ar"
  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 "Logg inn"
  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 "Innlogging feila"
  1041. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/login.html:44
  1042. msgid "Log in to create an account!"
  1043. msgstr "Logg inn for å oppretta ein konto"
  1044. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/login.html:51
  1045. msgid "Or login with a password!"
  1046. msgstr "Eller logg inn med passord."
  1047. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/login_link.html:23
  1048. msgid "Or login with OpenID!"
  1049. msgstr "Eller logg inn med OpenID."
  1050. #: mediagoblin/plugins/openid/templates/mediagoblin/plugins/openid/register_link.html:23
  1051. msgid "Or register with OpenID!"
  1052. msgstr "Eller registrer med OpenID."
  1053. #: mediagoblin/plugins/persona/__init__.py:90
  1054. msgid "Sorry, an account is already registered to that Persona email."
  1055. msgstr "Ein konto er allereie registrert til den Persona-eposten."
  1056. #: mediagoblin/plugins/persona/views.py:140
  1057. msgid "The Persona email address was successfully removed."
  1058. msgstr "Persone-eposten fjerna."
  1059. #: mediagoblin/plugins/persona/views.py:146
  1060. msgid ""
  1061. "You can't delete your only Persona email address unless you have a password "
  1062. "set."
  1063. msgstr "Du kan ikkje sletta din einaste Persona-epostadresse utan eit passord satt."
  1064. #: mediagoblin/plugins/persona/views.py:151
  1065. msgid "That Persona email address is not registered to this account."
  1066. msgstr "Den Persona-epostadressa er ikkje registrert til denne kontoen."
  1067. #: mediagoblin/plugins/persona/views.py:178
  1068. msgid ""
  1069. "Sorry, an account is already registered with that Persona email address."
  1070. msgstr "Ein konto med den Persona-epostadressa finst allereie."
  1071. #: mediagoblin/plugins/persona/views.py:194
  1072. msgid "Your Persona email address was saved successfully."
  1073. msgstr "Persone-epostadressa lagra."
  1074. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/edit.html:31
  1075. msgid "Delete a Persona email address"
  1076. msgstr "Fjern ei Persona-epostadresse"
  1077. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/edit.html:34
  1078. msgid "Add a Persona email address"
  1079. msgstr "Ny Persona-epostadresse"
  1080. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/edit_link.html:21
  1081. msgid "Persona's"
  1082. msgstr "Personaer"
  1083. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/login_link.html:22
  1084. msgid "Or login with Persona!"
  1085. msgstr "Eller logg inn med Persona."
  1086. #: mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/register_link.html:22
  1087. msgid "Or register with Persona!"
  1088. msgstr "Eller registrer med Persona."
  1089. #: mediagoblin/processing/__init__.py:422
  1090. msgid "Invalid file given for media type."
  1091. msgstr "Ugyldig fil for medietypen."
  1092. #: mediagoblin/processing/__init__.py:429
  1093. msgid "Copying to public storage failed."
  1094. msgstr "Klarte ikkje kopiera til «public storage»."
  1095. #: mediagoblin/processing/__init__.py:437
  1096. msgid "An acceptable processing file was not found"
  1097. msgstr "Fann ingen akseptable filar for prosessering."
  1098. #: mediagoblin/submit/forms.py:30
  1099. msgid "Max file size: {0} mb"
  1100. msgstr "Maks filstorleik: {0} mb"
  1101. #: mediagoblin/submit/forms.py:34
  1102. msgid "File"
  1103. msgstr "Fil"
  1104. #: mediagoblin/submit/forms.py:41
  1105. msgid ""
  1106. "You can use\n"
  1107. " <a href=\"http://daringfireball.net/projects/markdown/basics\">\n"
  1108. " Markdown</a> for formatting."
  1109. msgstr "Du kan bruka\n <a href=\"http://daringfireball.net/projects/markdown/basics\">\n Markdown</a> til formattering."
  1110. #: mediagoblin/submit/views.py:57
  1111. msgid "You must provide a file."
  1112. msgstr "Du må velja ei fil."
  1113. #: mediagoblin/submit/views.py:140
  1114. #, python-format
  1115. msgid "Collection \"%s\" added!"
  1116. msgstr "La til samlinga «%s»."
  1117. #: mediagoblin/templates/mediagoblin/banned.html:20
  1118. msgid "You are Banned."
  1119. msgstr "Du er bannlyst."
  1120. #: mediagoblin/templates/mediagoblin/banned.html:24
  1121. #: mediagoblin/templates/mediagoblin/error.html:24
  1122. msgid "Image of goblin stressing out"
  1123. msgstr "Bilete av stressa goblin"
  1124. #: mediagoblin/templates/mediagoblin/banned.html:26
  1125. msgid "You have been banned"
  1126. msgstr "Du har blitt bannlyst."
  1127. #: mediagoblin/templates/mediagoblin/banned.html:28
  1128. #, python-format
  1129. msgid "until %(until_when)s"
  1130. msgstr "til %(until_when)s"
  1131. #: mediagoblin/templates/mediagoblin/base.html:99
  1132. msgid "Verify your email!"
  1133. msgstr "Stadfest epostadressa di."
  1134. #: mediagoblin/templates/mediagoblin/base.html:106
  1135. #: mediagoblin/templates/mediagoblin/base.html:114
  1136. msgid "log out"
  1137. msgstr "Logg ut"
  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 "<a href=\"%(user_url)s\">%(user_name)s</a> sin konto"
  1142. #: mediagoblin/templates/mediagoblin/base.html:140
  1143. msgid "Change account settings"
  1144. msgstr "Endra kontoinstellingar"
  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 "Verkprosesseringspanel"
  1153. #: mediagoblin/templates/mediagoblin/base.html:154
  1154. msgid "Log out"
  1155. msgstr "Logg ut"
  1156. #: mediagoblin/templates/mediagoblin/base.html:157
  1157. #: mediagoblin/templates/mediagoblin/user_pages/user.html:113
  1158. msgid "Add media"
  1159. msgstr "Legg til verk"
  1160. #: mediagoblin/templates/mediagoblin/base.html:160
  1161. #: mediagoblin/templates/mediagoblin/user_pages/collection_list.html:41
  1162. msgid "Create new collection"
  1163. msgstr "Lag ny samling"
  1164. #: mediagoblin/templates/mediagoblin/base.html:165
  1165. msgid "Moderation powers:"
  1166. msgstr "Modereringsrettar:"
  1167. #: mediagoblin/templates/mediagoblin/base.html:171
  1168. msgid "User management panel"
  1169. msgstr "Brukaradministrasjon"
  1170. #: mediagoblin/templates/mediagoblin/base.html:175
  1171. msgid "Report management panel"
  1172. msgstr "Rapporteringsadministrasjon"
  1173. #: mediagoblin/templates/mediagoblin/api/authorize.html:21
  1174. msgid "Authorization"
  1175. msgstr "Godkjenning"
  1176. #: mediagoblin/templates/mediagoblin/api/authorize.html:26
  1177. #: mediagoblin/templates/mediagoblin/api/authorize.html:53
  1178. msgid "Authorize"
  1179. msgstr "Godkjenn"
  1180. #: mediagoblin/templates/mediagoblin/api/authorize.html:29
  1181. msgid "You are logged in as"
  1182. msgstr "Du er innlogga som"
  1183. #: mediagoblin/templates/mediagoblin/api/authorize.html:33
  1184. msgid "Do you want to authorize "
  1185. msgstr "Vil du godkjenna"
  1186. #: mediagoblin/templates/mediagoblin/api/authorize.html:37
  1187. msgid "an unknown application"
  1188. msgstr "som ukjend applikasjon"
  1189. #: mediagoblin/templates/mediagoblin/api/authorize.html:39
  1190. msgid " to access your account? "
  1191. msgstr "å få tilgang til kontoen din?"
  1192. #: mediagoblin/templates/mediagoblin/api/authorize.html:41
  1193. msgid "Applications with access to your account can: "
  1194. msgstr "Applikasjonar med tilgang til kontoen din kan:"
  1195. #: mediagoblin/templates/mediagoblin/api/authorize.html:43
  1196. msgid "Post new media as you"
  1197. msgstr "Leggja til media som deg"
  1198. #: mediagoblin/templates/mediagoblin/api/authorize.html:44
  1199. msgid "See your information (e.g profile, media, etc...)"
  1200. msgstr "Sjå informasjonen din (t.d. profil, bilete, osb...)"
  1201. #: mediagoblin/templates/mediagoblin/api/authorize.html:45
  1202. msgid "Change your information"
  1203. msgstr "Endra informasjonen din"
  1204. #: mediagoblin/templates/mediagoblin/api/oob.html:21
  1205. msgid "Authorization Finished"
  1206. msgstr "Godkjenning ferdig"
  1207. #: mediagoblin/templates/mediagoblin/api/oob.html:26
  1208. msgid "Authorization Complete"
  1209. msgstr "Godkjenning ferdig"
  1210. #: mediagoblin/templates/mediagoblin/api/oob.html:28
  1211. msgid "Copy and paste this <strong>verifier code</strong> into your client:"
  1212. msgstr ""
  1213. "Kopier og lim inn <strong>verifiseringskoden</strong> inn i klienten din:"
  1214. #: mediagoblin/templates/mediagoblin/auth/register.html:28
  1215. #: mediagoblin/templates/mediagoblin/auth/register.html:36
  1216. msgid "Create an account!"
  1217. msgstr "Opprett ein konto."
  1218. #: mediagoblin/templates/mediagoblin/auth/register.html:41
  1219. msgid "Create"
  1220. msgstr "Opprett"
  1221. #: mediagoblin/templates/mediagoblin/auth/verification_email.txt:19
  1222. #, python-format
  1223. msgid ""
  1224. "Hi %(username)s,\n"
  1225. "\n"
  1226. "to activate your GNU MediaGoblin account, open the following URL in\n"
  1227. "your web browser:\n"
  1228. "\n"
  1229. "%(verification_url)s"
  1230. msgstr "Hei %(username)s,\n\nopna fylgjande netadresse i netlesaren din for å aktivera kontoen din:\n\n%(verification_url)s"
  1231. #: mediagoblin/templates/mediagoblin/bits/base_footer.html:21
  1232. #, python-format
  1233. msgid ""
  1234. "Powered by <a href=\"http://mediagoblin.org/\" title='Version "
  1235. "%(version)s'>MediaGoblin</a>, a <a href=\"http://gnu.org/\">GNU</a> project."
  1236. msgstr "Drive av <a href=\"http://mediagoblin.org\" title='Version %(version)s'>MediaGoblin</a>, eit <a href=\"http://gnu.org/\">GNU</a>-prosjekt."
  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 "Lisensiert med <a href=\"http://www.fsf.org/licensing/licenses/agpl-3.0.html\">AGPL</a>. <a href=\"%(source_link)s\">Kjeldekode</a> er tilgjengeleg."
  1244. #: mediagoblin/templates/mediagoblin/bits/base_footer.html:30
  1245. msgid "Terms of Service"
  1246. msgstr "Bruksvilkår"
  1247. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:20
  1248. msgid "Explore"
  1249. msgstr "Utforsk"
  1250. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:24
  1251. msgid "Hi there, welcome to this MediaGoblin site!"
  1252. msgstr "Heihei, velkomen til denne MediaGoblin-sida."
  1253. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:25
  1254. msgid ""
  1255. "This site is running <a href=\"http://mediagoblin.org\">MediaGoblin</a>, an "
  1256. "extraordinarily great piece of media hosting software."
  1257. msgstr "Denne sida køyrer <a href=\"http://mediagoblin.org\">MediaGoblin</a>, eit superbra program for å visa fram dine kreative verk."
  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 "Vil du leggja til eigne verk og innpel, so må du logga inn."
  1263. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:29
  1264. msgid "Don't have one yet? It's easy!"
  1265. msgstr "Har du ikkje ein enno? Det er enkelt!"
  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 ">Lag ein konto på denne sida</a> eller"
  1272. #: mediagoblin/templates/mediagoblin/bits/frontpage_welcome.html:42
  1273. msgid ""
  1274. "\n"
  1275. " <a class=\"button_action\" href=\"http://mediagoblin.readthedocs.org/\">Set up MediaGoblin on your own server</a>"
  1276. msgstr ""
  1277. "<a class=\"button_action\" href=\"http://mediagoblin.readthedocs.org/\">set opp "
  1278. "MediaGoblin på din eigen server</a>"
  1279. #: mediagoblin/templates/mediagoblin/bits/logo.html:23
  1280. #: mediagoblin/themes/airy/templates/mediagoblin/bits/logo.html:23
  1281. msgid "MediaGoblin logo"
  1282. msgstr "MediaGoblin"
  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 "Endrar vedlegg for %(media_title)s"
  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 "Vedlegg"
  1293. #: mediagoblin/templates/mediagoblin/edit/attachments.html:57
  1294. #: mediagoblin/templates/mediagoblin/user_pages/media.html:227
  1295. msgid "Add attachment"
  1296. msgstr "Legg ved vedlegg"
  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 "Lagra"
  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 "Endrar eposten til %(username)s"
  1309. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:21
  1310. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:58
  1311. msgid "Deauthorize applications"
  1312. msgstr "Fjern løyve for applikasjonar"
  1313. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:27
  1314. msgid "Deauthorize Applications"
  1315. msgstr "Fjern løyve for applikasjonar"
  1316. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:28
  1317. msgid ""
  1318. "These applications can access your GNU MediaGoblin account. Deauthorizing the\n"
  1319. " application will prevent the application from accessing your account."
  1320. msgstr ""
  1321. "Desse applikasjonane har tilgang til GNU MediaGoblin-kontoen din. Viss du "
  1322. "fjernar løyvet til ein applikasjon vil du fjerna den tilgangen."
  1323. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:37
  1324. msgid "There are no applications authorized."
  1325. msgstr "Ingen applikasjonar med løyve."
  1326. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:53
  1327. msgid "Type:"
  1328. msgstr "Type:"
  1329. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:58
  1330. msgid "Authorized:"
  1331. msgstr "Løyve:"
  1332. #: mediagoblin/templates/mediagoblin/edit/deauthorize_applications.html:60
  1333. #: mediagoblin/templates/mediagoblin/fragments/header_notifications.html:24
  1334. #: mediagoblin/templates/mediagoblin/media_displays/image.html:39
  1335. #: mediagoblin/templates/mediagoblin/moderation/report.html:57
  1336. #: mediagoblin/templates/mediagoblin/moderation/report.html:120
  1337. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:131
  1338. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:151
  1339. #: mediagoblin/templates/mediagoblin/user_pages/media.html:147
  1340. #: mediagoblin/templates/mediagoblin/user_pages/media.html:182
  1341. #: mediagoblin/templates/mediagoblin/user_pages/report.html:48
  1342. #, python-format
  1343. msgid "%(formatted_time)s ago"
  1344. msgstr "%(formatted_time)s sidan"
  1345. #: mediagoblin/templates/mediagoblin/edit/delete_account.html:28
  1346. #, python-format
  1347. msgid "Really delete user '%(user_name)s' and all related media/comments?"
  1348. msgstr "Sletta brukar '%(user_name)s' og alle relaterte verk og kommentarar?"
  1349. #: mediagoblin/templates/mediagoblin/edit/delete_account.html:35
  1350. msgid "Yes, really delete my account"
  1351. msgstr "Ja, slett kontoen min"
  1352. #: mediagoblin/templates/mediagoblin/edit/edit.html:23
  1353. #: mediagoblin/templates/mediagoblin/edit/edit.html:35
  1354. #, python-format
  1355. msgid "Editing %(media_title)s"
  1356. msgstr "Endrar %(media_title)s"
  1357. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:28
  1358. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:40
  1359. #, python-format
  1360. msgid "Changing %(username)s's account settings"
  1361. msgstr "Endrar kontoinnstellingane til %(username)s"
  1362. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:54
  1363. msgid "Delete my account"
  1364. msgstr "Slett kontoen min"
  1365. #: mediagoblin/templates/mediagoblin/edit/edit_account.html:62
  1366. msgid "Email"
  1367. msgstr "Epost"
  1368. #: mediagoblin/templates/mediagoblin/edit/edit_collection.html:29
  1369. #, python-format
  1370. msgid "Editing %(collection_title)s"
  1371. msgstr "Endrar %(collection_title)s"
  1372. #: mediagoblin/templates/mediagoblin/edit/edit_profile.html:23
  1373. #: mediagoblin/templates/mediagoblin/edit/edit_profile.html:34
  1374. #, python-format
  1375. msgid "Editing %(username)s's profile"
  1376. msgstr "Endrar profilen til %(username)s"
  1377. #: mediagoblin/templates/mediagoblin/edit/metadata.html:67
  1378. #, python-format
  1379. msgid "Metadata for \"%(media_name)s\""
  1380. msgstr "Metadata for «%(media_name)s»"
  1381. #: mediagoblin/templates/mediagoblin/edit/metadata.html:72
  1382. msgid "MetaData"
  1383. msgstr "Metadata"
  1384. #: mediagoblin/templates/mediagoblin/edit/metadata.html:80
  1385. msgid "Add new Row"
  1386. msgstr "Legg til ny rad"
  1387. #: mediagoblin/templates/mediagoblin/edit/metadata.html:83
  1388. msgid "Update Metadata"
  1389. msgstr "Oppdater metadata"
  1390. #: mediagoblin/templates/mediagoblin/edit/metadata.html:87
  1391. msgid "Clear empty Rows"
  1392. msgstr "Fjern tomme radar"
  1393. #: mediagoblin/templates/mediagoblin/edit/verification.txt:19
  1394. #, python-format
  1395. msgid ""
  1396. "Hi,\n"
  1397. "\n"
  1398. "We wanted to verify that you are %(username)s. If this is the case, then \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 ignore\n"
  1404. "this email."
  1405. msgstr "Hei!\n\nMe ynskjer å stadfesta at du er %(username)s. Dersom du er\nfylg denne lenkja for å stadfesta epostadressa di:\n\n%(verification_url)s\n\nDersom du ikkje er %(username)s eller ikkje ynskjer ei epost-endring kan du\nberre ignorera denne eposten."
  1406. #: mediagoblin/templates/mediagoblin/fragments/header_notifications.html:4
  1407. msgid "New comments"
  1408. msgstr "Nye innspel"
  1409. #: mediagoblin/templates/mediagoblin/fragments/header_notifications.html:41
  1410. msgid "Mark all read"
  1411. msgstr "Marker alt lese"
  1412. #: mediagoblin/templates/mediagoblin/listings/collection.html:30
  1413. #: mediagoblin/templates/mediagoblin/listings/collection.html:35
  1414. #: mediagoblin/templates/mediagoblin/listings/tag.html:30
  1415. #: mediagoblin/templates/mediagoblin/listings/tag.html:35
  1416. #, python-format
  1417. msgid "Media tagged with: %(tag_name)s"
  1418. msgstr "Verk merka med: %(tag_name)s"
  1419. #: mediagoblin/templates/mediagoblin/media_displays/ascii.html:36
  1420. #: mediagoblin/templates/mediagoblin/media_displays/audio.html:58
  1421. #: mediagoblin/templates/mediagoblin/media_displays/pdf.html:69
  1422. #: mediagoblin/templates/mediagoblin/media_displays/video.html:76
  1423. msgid "Download"
  1424. msgstr "Last ned"
  1425. #: mediagoblin/templates/mediagoblin/media_displays/ascii.html:40
  1426. msgid "Original"
  1427. msgstr "Opphavleg"
  1428. #: mediagoblin/templates/mediagoblin/media_displays/audio.html:45
  1429. msgid ""
  1430. "Sorry, this audio will not work because \n"
  1431. "\t your web browser does not support HTML5 \n"
  1432. "\t audio."
  1433. msgstr ""
  1434. "Orsak, lyden fungerer ikkje fordi netlesaren din stør ikkje HTML5 audio."
  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. "Du kan få ei moderne netlesar som kan spela lyden på <a "
  1442. "href=\"http://getfirefox.com\">http://getfirefox.com</a>."
  1443. #: mediagoblin/templates/mediagoblin/media_displays/audio.html:62
  1444. #: mediagoblin/templates/mediagoblin/media_displays/pdf.html:75
  1445. #: mediagoblin/templates/mediagoblin/media_displays/video.html:82
  1446. msgid "Original file"
  1447. msgstr "Opphavleg fil"
  1448. #: mediagoblin/templates/mediagoblin/media_displays/audio.html:65
  1449. msgid "WebM file (Vorbis codec)"
  1450. msgstr "WebM-fil (Vorbis-kodek)"
  1451. #: mediagoblin/templates/mediagoblin/media_displays/image.html:36
  1452. msgid "Created"
  1453. msgstr "Oppretta"
  1454. #: mediagoblin/templates/mediagoblin/media_displays/pdf.html:60
  1455. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:90
  1456. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:96
  1457. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:102
  1458. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:108
  1459. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:59
  1460. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:65
  1461. #: mediagoblin/templates/mediagoblin/user_pages/media.html:63
  1462. #: mediagoblin/templates/mediagoblin/user_pages/media.html:69
  1463. #, python-format
  1464. msgid "Image for %(media_title)s"
  1465. msgstr "Bilete for %(media_title)s"
  1466. #: mediagoblin/templates/mediagoblin/media_displays/pdf.html:83
  1467. msgid "PDF file"
  1468. msgstr "PDF-fil"
  1469. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:117
  1470. msgid "Perspective"
  1471. msgstr "Perspektiv"
  1472. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:120
  1473. msgid "Front"
  1474. msgstr "Front"
  1475. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:123
  1476. msgid "Top"
  1477. msgstr "Topp"
  1478. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:126
  1479. msgid "Side"
  1480. msgstr "Side"
  1481. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:131
  1482. msgid "WebGL"
  1483. msgstr "WebGL"
  1484. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:137
  1485. msgid "Download model"
  1486. msgstr "Last ned modell"
  1487. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:146
  1488. msgid "File Format"
  1489. msgstr "Filformat"
  1490. #: mediagoblin/templates/mediagoblin/media_displays/stl.html:148
  1491. msgid "Object Height"
  1492. msgstr "Objekthøgd"
  1493. #: mediagoblin/templates/mediagoblin/media_displays/video.html:64
  1494. msgid ""
  1495. "Sorry, this video will not work because\n"
  1496. " your web browser does not support HTML5 \n"
  1497. " video."
  1498. msgstr "Orsak, denne videoen fungerer ikkje\nfordi netlesaren din ikkje stør\nHTML5 video."
  1499. #: mediagoblin/templates/mediagoblin/media_displays/video.html:67
  1500. msgid ""
  1501. "You can get a modern web browser that \n"
  1502. " can play this video at <a href=\"http://getfirefox.com\">\n"
  1503. " http://getfirefox.com</a>!"
  1504. msgstr "Du kan skaffa deg ein moderne netlesar som kan spela denne videoen hjå <a href=http://opera.com>http://opera.com</a> eller <a href=\"http://getfirefox.com\">http://getfirefox.com</a>."
  1505. #: mediagoblin/templates/mediagoblin/media_displays/video.html:90
  1506. msgid "WebM file (VP8/Vorbis)"
  1507. msgstr "WebM-fil (VP8/Vorbis)"
  1508. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:30
  1509. msgid ""
  1510. "Here you can track the state of media being processed on this instance."
  1511. msgstr "Hald oppsyn med statusen for prosessering av verka dine her."
  1512. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:33
  1513. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:32
  1514. msgid "Media in-processing"
  1515. msgstr "Verk under prosessesering"
  1516. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:38
  1517. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:67
  1518. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:98
  1519. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:75
  1520. msgid "ID"
  1521. msgstr "ID"
  1522. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:39
  1523. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:68
  1524. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:99
  1525. msgid "User"
  1526. msgstr "Brukar"
  1527. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:41
  1528. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:70
  1529. msgid "When submitted"
  1530. msgstr "Når opplasta"
  1531. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:42
  1532. msgid "Transcoding progress"
  1533. msgstr "Transkoding-prosess"
  1534. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:53
  1535. msgid "Unknown"
  1536. msgstr "Ukjend"
  1537. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:59
  1538. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:56
  1539. msgid "No media in-processing"
  1540. msgstr "Ingen verk vert prosessert"
  1541. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:62
  1542. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:59
  1543. msgid "These uploads failed to process:"
  1544. msgstr "Klarte ikkje prosessera desse opplasta filene:"
  1545. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:71
  1546. msgid "Reason for failure"
  1547. msgstr "Grunn for feil"
  1548. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:72
  1549. msgid "Failure metadata"
  1550. msgstr "Metadata for feil"
  1551. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:91
  1552. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:86
  1553. msgid "No failed entries!"
  1554. msgstr "Ingen feila filer."
  1555. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:93
  1556. msgid "Last 10 successful uploads"
  1557. msgstr "Dei siste ti opplastningane"
  1558. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:101
  1559. msgid "Submitted"
  1560. msgstr "Opplasta"
  1561. #: mediagoblin/templates/mediagoblin/moderation/media_panel.html:113
  1562. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:107
  1563. msgid "No processed entries, yet!"
  1564. msgstr "Ingenting prossesert, enno."
  1565. #: mediagoblin/templates/mediagoblin/moderation/report.html:27
  1566. msgid "Sorry, no such report found."
  1567. msgstr "Fann ikkje rapporten."
  1568. #: mediagoblin/templates/mediagoblin/moderation/report.html:33
  1569. msgid "Return to Reports Panel"
  1570. msgstr "Attende til rapporteringspanelet"
  1571. #: mediagoblin/templates/mediagoblin/moderation/report.html:35
  1572. #: mediagoblin/templates/mediagoblin/user_pages/media.html:163
  1573. msgid "Report"
  1574. msgstr "Rapport"
  1575. #: mediagoblin/templates/mediagoblin/moderation/report.html:38
  1576. msgid "Reported comment"
  1577. msgstr "Rapportert innspel"
  1578. #: mediagoblin/templates/mediagoblin/moderation/report.html:83
  1579. #, python-format
  1580. msgid ""
  1581. "\n"
  1582. " ❖ Reported media by <a href=\"%(user_url)s\">%(user_name)s</a>\n"
  1583. " "
  1584. msgstr "\n ❖ Rapportert verk av <a href=\"%(user_url)s\">%(user_name)s</a>\n "
  1585. #: mediagoblin/templates/mediagoblin/moderation/report.html:92
  1586. #, python-format
  1587. msgid ""
  1588. "\n"
  1589. " CONTENT BY\n"
  1590. " <a href=\"%(user_url)s\"> %(user_name)s</a>\n"
  1591. " HAS BEEN DELETED\n"
  1592. " "
  1593. msgstr "\n INNHALD AV\n <a href=\"%(user_url)s\"> %(user_name)s</a>\n ER SLETTA\n "
  1594. #: mediagoblin/templates/mediagoblin/moderation/report.html:102
  1595. msgid "Reason for report:"
  1596. msgstr "Grunn til rapportering:"
  1597. #: mediagoblin/templates/mediagoblin/moderation/report.html:133
  1598. #: mediagoblin/templates/mediagoblin/moderation/user.html:136
  1599. msgid "Resolve"
  1600. msgstr "Løys"
  1601. #: mediagoblin/templates/mediagoblin/moderation/report.html:137
  1602. #: mediagoblin/templates/mediagoblin/moderation/report.html:157
  1603. msgid "Resolve This Report"
  1604. msgstr "Løys denne rapporten"
  1605. #: mediagoblin/templates/mediagoblin/moderation/report.html:149
  1606. msgid "Status"
  1607. msgstr "Status"
  1608. #: mediagoblin/templates/mediagoblin/moderation/report.html:151
  1609. msgid "RESOLVED"
  1610. msgstr "LØYST"
  1611. #: mediagoblin/templates/mediagoblin/moderation/report.html:159
  1612. msgid "You cannot take action against an administrator"
  1613. msgstr "Du kan ikkje handla mot ein administrator"
  1614. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:22
  1615. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:27
  1616. msgid "Report panel"
  1617. msgstr "Rapporteringspanel"
  1618. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:30
  1619. msgid ""
  1620. "\n"
  1621. " Here you can look up open reports that have been filed by users.\n"
  1622. " "
  1623. msgstr "\nHer kan du sjå opne rapportar som brukarane dine har lagt til."
  1624. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:35
  1625. msgid "Active Reports Filed"
  1626. msgstr "Aktive rapportar"
  1627. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:77
  1628. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:173
  1629. msgid "Offender"
  1630. msgstr "Skulda"
  1631. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:78
  1632. msgid "When Reported"
  1633. msgstr "Rapportert"
  1634. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:79
  1635. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:175
  1636. msgid "Reported By"
  1637. msgstr "Rapportert av"
  1638. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:80
  1639. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:176
  1640. msgid "Reason"
  1641. msgstr "Årsak"
  1642. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:95
  1643. #, python-format
  1644. msgid ""
  1645. "\n"
  1646. " Comment Report #%(report_id)s\n"
  1647. " "
  1648. msgstr "\n Innspelsrapport #%(report_id)s\n "
  1649. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:111
  1650. #, python-format
  1651. msgid ""
  1652. "\n"
  1653. " Media Report #%(report_id)s\n"
  1654. " "
  1655. msgstr "\n Verk-rapport #%(report_id)s\n "
  1656. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:125
  1657. msgid "No open reports found."
  1658. msgstr "Ingen opne rapportar."
  1659. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:127
  1660. msgid "Closed Reports"
  1661. msgstr "Løyste rapportar"
  1662. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:172
  1663. msgid "Resolved"
  1664. msgstr "Løyst"
  1665. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:174
  1666. msgid "Action Taken"
  1667. msgstr "Handling teke"
  1668. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:188
  1669. #, python-format
  1670. msgid ""
  1671. "\n"
  1672. " Closed Report #%(report_id)s\n"
  1673. " "
  1674. msgstr "\nLukka rapport #%(report_id)s"
  1675. #: mediagoblin/templates/mediagoblin/moderation/report_panel.html:202
  1676. msgid "No closed reports found."
  1677. msgstr "Ingen lukka rapportar."
  1678. #: mediagoblin/templates/mediagoblin/moderation/user.html:23
  1679. #, python-format
  1680. msgid "User: %(username)s"
  1681. msgstr "Brukar: %(username)s"
  1682. #: mediagoblin/templates/mediagoblin/moderation/user.html:42
  1683. msgid "Return to Users Panel"
  1684. msgstr "Returnet til brukarpanel"
  1685. #: mediagoblin/templates/mediagoblin/moderation/user.html:49
  1686. msgid "Sorry, no such user found."
  1687. msgstr "Orsak, fann ikkje denne brukaren."
  1688. #: mediagoblin/templates/mediagoblin/moderation/user.html:53
  1689. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:40
  1690. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:60
  1691. msgid "Email verification needed"
  1692. msgstr "Treng stadfesting av epostadressa"
  1693. #: mediagoblin/templates/mediagoblin/moderation/user.html:55
  1694. msgid ""
  1695. "Someone has registered an account with this username, but it still has\n"
  1696. " to be activated."
  1697. msgstr ""
  1698. "Nokon (du?) har registrert ein konto med dette brukarnamnet, men kontoen er "
  1699. "ikkje aktivert (sjekk epost?)."
  1700. #: mediagoblin/templates/mediagoblin/moderation/user.html:66
  1701. #: mediagoblin/templates/mediagoblin/user_pages/user.html:34
  1702. #: mediagoblin/templates/mediagoblin/user_pages/user.html:46
  1703. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:25
  1704. #, python-format
  1705. msgid "%(username)s's profile"
  1706. msgstr "%(username)s sin profil"
  1707. #: mediagoblin/templates/mediagoblin/moderation/user.html:68
  1708. #, python-format
  1709. msgid "BANNED until %(expiration_date)s"
  1710. msgstr "UTESTENGD til %(expiration_date)s"
  1711. #: mediagoblin/templates/mediagoblin/moderation/user.html:72
  1712. msgid "Banned Indefinitely"
  1713. msgstr "Utestengd på ubestemt tid"
  1714. #: mediagoblin/templates/mediagoblin/moderation/user.html:78
  1715. #: mediagoblin/templates/mediagoblin/user_pages/user.html:62
  1716. msgid "This user hasn't filled in their profile (yet)."
  1717. msgstr "Brukaren har ikkje fylt ut profilen sin (enno)."
  1718. #: mediagoblin/templates/mediagoblin/moderation/user.html:89
  1719. #: mediagoblin/templates/mediagoblin/user_pages/user.html:57
  1720. #: mediagoblin/templates/mediagoblin/user_pages/user.html:74
  1721. msgid "Edit profile"
  1722. msgstr "Endra profil"
  1723. #: mediagoblin/templates/mediagoblin/moderation/user.html:96
  1724. #: mediagoblin/templates/mediagoblin/user_pages/user.html:81
  1725. msgid "Browse collections"
  1726. msgstr "Sjå gjennom samlingar"
  1727. #: mediagoblin/templates/mediagoblin/moderation/user.html:105
  1728. #, python-format
  1729. msgid "Active Reports on %(username)s"
  1730. msgstr "Gjeldande rapportar på %(username)s"
  1731. #: mediagoblin/templates/mediagoblin/moderation/user.html:112
  1732. msgid "Report ID"
  1733. msgstr "Rapport-ID"
  1734. #: mediagoblin/templates/mediagoblin/moderation/user.html:113
  1735. msgid "Reported Content"
  1736. msgstr "Rapportert innhald"
  1737. #: mediagoblin/templates/mediagoblin/moderation/user.html:114
  1738. msgid "Description of Report"
  1739. msgstr "Skildring av rapport"
  1740. #: mediagoblin/templates/mediagoblin/moderation/user.html:122
  1741. #, python-format
  1742. msgid "Report #%(report_number)s"
  1743. msgstr "Rapport #%(report_number)s"
  1744. #: mediagoblin/templates/mediagoblin/moderation/user.html:129
  1745. msgid "Reported Comment"
  1746. msgstr "Rapportert innspel"
  1747. #: mediagoblin/templates/mediagoblin/moderation/user.html:131
  1748. msgid "Reported Media Entry"
  1749. msgstr "Rapportert verk"
  1750. #: mediagoblin/templates/mediagoblin/moderation/user.html:142
  1751. #, python-format
  1752. msgid "No active reports filed on %(username)s"
  1753. msgstr "Ingen aktive rapportar på %(username)s"
  1754. #: mediagoblin/templates/mediagoblin/moderation/user.html:150
  1755. #, python-format
  1756. msgid "All reports on %(username)s"
  1757. msgstr "Alle rapportar på %(username)s"
  1758. #: mediagoblin/templates/mediagoblin/moderation/user.html:155
  1759. #, python-format
  1760. msgid "All reports that %(username)s has filed"
  1761. msgstr "Alle rapportar som %(username)s har kome med"
  1762. #: mediagoblin/templates/mediagoblin/moderation/user.html:164
  1763. #, python-format
  1764. msgid "%(username)s's Privileges"
  1765. msgstr "Privilegiane til %(username)s"
  1766. #: mediagoblin/templates/mediagoblin/moderation/user.html:172
  1767. msgid "Privilege"
  1768. msgstr "Privilegie"
  1769. # Usikker på denne, må nesten bruka modereringa litt og sjå korleis det vert brukt.
  1770. #: mediagoblin/templates/mediagoblin/moderation/user.html:173
  1771. msgid "Granted"
  1772. msgstr "Løyve gjeven"
  1773. #: mediagoblin/templates/mediagoblin/moderation/user.html:180
  1774. msgid "Yes"
  1775. msgstr "Ja"
  1776. #: mediagoblin/templates/mediagoblin/moderation/user.html:182
  1777. msgid "No"
  1778. msgstr "Nei"
  1779. #: mediagoblin/templates/mediagoblin/moderation/user.html:213
  1780. msgid "Ban User"
  1781. msgstr "Utesteng brukar"
  1782. #: mediagoblin/templates/mediagoblin/moderation/user.html:218
  1783. msgid "UnBan User"
  1784. msgstr "Slepp brukar innatt"
  1785. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:21
  1786. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:26
  1787. msgid "User panel"
  1788. msgstr "Brukarpanel"
  1789. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:29
  1790. msgid ""
  1791. "\n"
  1792. " Here you can look up users in order to take punitive actions on them.\n"
  1793. " "
  1794. msgstr "\nHer kan du slå opp brukarar og straffa dei."
  1795. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:34
  1796. msgid "Active Users"
  1797. msgstr "Aktive brukarar"
  1798. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:77
  1799. msgid "When Joined"
  1800. msgstr "Vart med"
  1801. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:78
  1802. msgid "# of Comments Posted"
  1803. msgstr "Tal på innspel"
  1804. #: mediagoblin/templates/mediagoblin/moderation/user_panel.html:95
  1805. msgid "No users found."
  1806. msgstr "Fann ingen brukarar."
  1807. #: mediagoblin/templates/mediagoblin/submit/collection.html:26
  1808. msgid "Add a collection"
  1809. msgstr "Legg til ei samling"
  1810. #: mediagoblin/templates/mediagoblin/submit/start.html:28
  1811. #: mediagoblin/templates/mediagoblin/submit/start.html:35
  1812. msgid "Add your media"
  1813. msgstr "Legg til verk"
  1814. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:38
  1815. #, python-format
  1816. msgid "❖ Blog post by <a href=\"%(user_url)s\">%(username)s</a>"
  1817. msgstr "❖ Bloggpost av <a href=\"%(user_url)s\">%(username)s</a>"
  1818. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:92
  1819. #: mediagoblin/templates/mediagoblin/user_pages/media.html:105
  1820. msgid "Add a comment"
  1821. msgstr "Legg att innspel"
  1822. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:103
  1823. #: mediagoblin/templates/mediagoblin/user_pages/media.html:116
  1824. msgid "Add this comment"
  1825. msgstr "Legg til dette innspelet"
  1826. #: mediagoblin/templates/mediagoblin/user_pages/blog_media.html:149
  1827. #: mediagoblin/templates/mediagoblin/user_pages/media.html:180
  1828. msgid "Added"
  1829. msgstr "Lagt til"
  1830. #: mediagoblin/templates/mediagoblin/user_pages/collection.html:30
  1831. #, python-format
  1832. msgid "%(collection_title)s (%(username)s's collection)"
  1833. msgstr "%(collection_title)s (%(username)s si samling)"
  1834. #: mediagoblin/templates/mediagoblin/user_pages/collection.html:39
  1835. #, python-format
  1836. msgid "%(collection_title)s by <a href=\"%(user_url)s\">%(username)s</a>"
  1837. msgstr "%(collection_title)s av <a href=\"%(user_url)s\">%(username)s</a>"
  1838. #: mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html:23
  1839. #, python-format
  1840. msgid "Delete collection %(collection_title)s"
  1841. msgstr "Slett samling %(collection_title)s"
  1842. #: mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html:38
  1843. #, python-format
  1844. msgid "Really delete collection: %(title)s?"
  1845. msgstr "Sletta samlinga: %(title)s?"
  1846. #: mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html:23
  1847. #, python-format
  1848. msgid "Remove %(media_title)s from %(collection_title)s"
  1849. msgstr "Fjern %(media_title)s frå %(collection_title)s"
  1850. #: mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html:39
  1851. #, python-format
  1852. msgid "Really remove %(media_title)s from %(collection_title)s?"
  1853. msgstr "Fjerna %(media_title)s frå %(collection_title)s?"
  1854. #: mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html:62
  1855. msgid "Remove"
  1856. msgstr "Fjern"
  1857. #: mediagoblin/templates/mediagoblin/user_pages/collection_list.html:21
  1858. #, python-format
  1859. msgid "%(username)s's collections"
  1860. msgstr "%(username)s sine samlingar"
  1861. #: mediagoblin/templates/mediagoblin/user_pages/collection_list.html:28
  1862. #, python-format
  1863. msgid "<a href=\"%(user_url)s\">%(username)s</a>'s collections"
  1864. msgstr "<a href=\"%(user_url)s\">%(username)s</a> sine samlingar"
  1865. #: mediagoblin/templates/mediagoblin/user_pages/comment_email.txt:19
  1866. #, python-format
  1867. msgid ""
  1868. "Hi %(username)s,\n"
  1869. "%(comment_author)s commented on your post (%(comment_url)s) at %(instance_name)s\n"
  1870. msgstr "Hei %(username)s,\n%(comment_author)s kommenterte innlegget ditt (%(comment_url)s) hjå %(instance_name)s\n"
  1871. #: mediagoblin/templates/mediagoblin/user_pages/gallery.html:30
  1872. #, python-format
  1873. msgid "%(username)s's media"
  1874. msgstr "Verka til %(username)s"
  1875. #: mediagoblin/templates/mediagoblin/user_pages/gallery.html:38
  1876. #, python-format
  1877. msgid ""
  1878. "<a href=\"%(user_url)s\">%(username)s</a>'s media with tag <a "
  1879. "href=\"%(tag_url)s\">%(tag)s</a>"
  1880. msgstr "<a href=\"%(user_url)s\">%(username)s</a> sine verk merka <a href=\"%(tag_url)s\">%(tag)s</a>"
  1881. #: mediagoblin/templates/mediagoblin/user_pages/gallery.html:48
  1882. #, python-format
  1883. msgid "<a href=\"%(user_url)s\">%(username)s</a>'s media"
  1884. msgstr "<a href=\"%(user_url)s\">%(username)s</a> sine verk"
  1885. #: mediagoblin/templates/mediagoblin/user_pages/media.html:39
  1886. #, python-format
  1887. msgid "❖ Browsing media by <a href=\"%(user_url)s\">%(username)s</a>"
  1888. msgstr "❖ Ser på <a href=\"%(user_url)s\">%(username)s</a> sine verk"
  1889. #: mediagoblin/templates/mediagoblin/user_pages/media.html:120
  1890. msgid "Comment Preview"
  1891. msgstr "Førehandsvisning av innspel"
  1892. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:28
  1893. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:40
  1894. #, python-format
  1895. msgid "Add “%(media_title)s” to a collection"
  1896. msgstr "Putt «%(media_title)s» i samling"
  1897. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:54
  1898. msgid "+"
  1899. msgstr "+"
  1900. #: mediagoblin/templates/mediagoblin/user_pages/media_collect.html:58
  1901. msgid "Add a new collection"
  1902. msgstr "Legg til ei ny samling"
  1903. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:29
  1904. msgid ""
  1905. "You can track the state of media being processed for your gallery here."
  1906. msgstr "Sjå status for prosessering av verka dine her."
  1907. #: mediagoblin/templates/mediagoblin/user_pages/processing_panel.html:89
  1908. msgid "Your last 10 successful uploads"
  1909. msgstr "Dine ti siste opplastningar."
  1910. #: mediagoblin/templates/mediagoblin/user_pages/report.html:21
  1911. msgid "<h2>File a Report</h2>"
  1912. msgstr "<h2>Rapportér</h2>"
  1913. #: mediagoblin/templates/mediagoblin/user_pages/report.html:24
  1914. msgid "Reporting this Comment"
  1915. msgstr "Rapporterer dette innspelet"
  1916. #: mediagoblin/templates/mediagoblin/user_pages/report.html:60
  1917. msgid "Reporting this Media Entry"
  1918. msgstr "Rapporterer dette verket"
  1919. #: mediagoblin/templates/mediagoblin/user_pages/report.html:72
  1920. #, python-format
  1921. msgid ""
  1922. "\n"
  1923. " ❖ Published by <a href=\"%(user_url)s\"\n"
  1924. " class=\"comment_authorlink\">%(username)s</a>\n"
  1925. " "
  1926. msgstr "\n ❖ Publisert av <a href=\"%(user_url)s\"\n class=\"comment_authorlink\">%(username)s</a>\n "
  1927. #: mediagoblin/templates/mediagoblin/user_pages/report.html:81
  1928. msgid "File Report "
  1929. msgstr "Rapportér"
  1930. #: mediagoblin/templates/mediagoblin/user_pages/user.html:53
  1931. msgid "Here's a spot to tell others about yourself."
  1932. msgstr "Her kan du fortelja om deg sjølv."
  1933. #: mediagoblin/templates/mediagoblin/user_pages/user.html:94
  1934. #, python-format
  1935. msgid "View all of %(username)s's media"
  1936. msgstr "Sjå alle %(username)s sine verk"
  1937. #: mediagoblin/templates/mediagoblin/user_pages/user.html:107
  1938. msgid ""
  1939. "This is where your media will appear, but you don't seem to have added "
  1940. "anything yet."
  1941. msgstr "Her kjem verka dine."
  1942. #: mediagoblin/templates/mediagoblin/user_pages/user.html:119
  1943. #: mediagoblin/templates/mediagoblin/utils/collection_gallery.html:84
  1944. #: mediagoblin/templates/mediagoblin/utils/object_gallery.html:70
  1945. msgid "There doesn't seem to be any media here yet..."
  1946. msgstr "Ser ikkje ut til at det finst nokon verk her nett no."
  1947. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:43
  1948. msgid "Almost done! Your account still needs to be activated."
  1949. msgstr "Nesten ferdig. Du treng berre aktivera kontoen."
  1950. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:48
  1951. msgid ""
  1952. "An email should arrive in a few moments with instructions on how to do so."
  1953. msgstr "Ein epost med instruksjonar kjem straks."
  1954. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:52
  1955. msgid "In case it doesn't:"
  1956. msgstr "I tilfelle det ikkje skjer:"
  1957. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:55
  1958. msgid "Resend verification email"
  1959. msgstr "Send ein ny stadfestingsepost"
  1960. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:63
  1961. msgid ""
  1962. "Someone has registered an account with this username, but it still has to be"
  1963. " activated."
  1964. msgstr "Dette brukarnamnet finst allereie, men det er ikkje aktivert."
  1965. #: mediagoblin/templates/mediagoblin/user_pages/user_nonactive.html:68
  1966. #, python-format
  1967. msgid ""
  1968. "If you are that person but you've lost your verification email, you can <a "
  1969. "href=\"%(login_url)s\">log in</a> and resend it."
  1970. msgstr "Viss dette er deg, kan du <a href=\"%(login_url)s\">logga inn</a> for å få tilsendt ny epost med stadfestingslenkje."
  1971. #: mediagoblin/templates/mediagoblin/utils/collection_gallery.html:49
  1972. msgid "(remove)"
  1973. msgstr "(fjern)"
  1974. #: mediagoblin/templates/mediagoblin/utils/collections.html:21
  1975. msgid "Collected in"
  1976. msgstr "I samling"
  1977. #: mediagoblin/templates/mediagoblin/utils/collections.html:40
  1978. msgid "Add to a collection"
  1979. msgstr "Putt i samling"
  1980. #: mediagoblin/templates/mediagoblin/utils/comment-subscription.html:24
  1981. msgid "Subscribe to comments"
  1982. msgstr "Ting innspel"
  1983. #: mediagoblin/templates/mediagoblin/utils/comment-subscription.html:30
  1984. msgid "Silence comments"
  1985. msgstr "Slå av innspel"
  1986. #: mediagoblin/templates/mediagoblin/utils/feed_link.html:21
  1987. #: mediagoblin/themes/airy/templates/mediagoblin/utils/feed_link.html:21
  1988. msgid "feed icon"
  1989. msgstr " "
  1990. #: mediagoblin/templates/mediagoblin/utils/feed_link.html:23
  1991. #: mediagoblin/themes/airy/templates/mediagoblin/utils/feed_link.html:23
  1992. msgid "Atom feed"
  1993. msgstr "Atom-kjelde"
  1994. #: mediagoblin/templates/mediagoblin/utils/license.html:25
  1995. msgid "All rights reserved"
  1996. msgstr "Alle rettar reservert"
  1997. #: mediagoblin/templates/mediagoblin/utils/pagination.html:39
  1998. msgid "← Newer"
  1999. msgstr "← Nyare"
  2000. #: mediagoblin/templates/mediagoblin/utils/pagination.html:45
  2001. msgid "Older →"
  2002. msgstr "Eldre →"
  2003. #: mediagoblin/templates/mediagoblin/utils/pagination.html:48
  2004. msgid "Go to page:"
  2005. msgstr "Gå til side:"
  2006. #: mediagoblin/templates/mediagoblin/utils/prev_next.html:28
  2007. #: mediagoblin/templates/mediagoblin/utils/prev_next.html:33
  2008. msgid "newer"
  2009. msgstr "nyare"
  2010. #: mediagoblin/templates/mediagoblin/utils/prev_next.html:39
  2011. #: mediagoblin/templates/mediagoblin/utils/prev_next.html:44
  2012. msgid "older"
  2013. msgstr "eldre"
  2014. #: mediagoblin/templates/mediagoblin/utils/profile.html:36
  2015. msgid "Location"
  2016. msgstr "Stad"
  2017. #: mediagoblin/templates/mediagoblin/utils/report.html:25
  2018. msgid "Report media"
  2019. msgstr "Rapportér verk"
  2020. #: mediagoblin/templates/mediagoblin/utils/tags.html:20
  2021. msgid "Tagged with"
  2022. msgstr "Merka med"
  2023. #: mediagoblin/tools/exif.py:83
  2024. msgid "Could not read the image file."
  2025. msgstr "Klarte ikkje lesa biletefila."
  2026. #: mediagoblin/tools/response.py:40
  2027. msgid "Oops!"
  2028. msgstr "Oops."
  2029. #: mediagoblin/tools/response.py:41
  2030. msgid "An error occured"
  2031. msgstr "Noko gjekk gale"
  2032. #: mediagoblin/tools/response.py:55
  2033. msgid "Bad Request"
  2034. msgstr "Bad Request (noko gjekk gale)"
  2035. #: mediagoblin/tools/response.py:57
  2036. msgid "The request sent to the server is invalid, please double check it"
  2037. msgstr "The request sent to the server is invalid, please double check it"
  2038. #: mediagoblin/tools/response.py:65
  2039. msgid "Operation not allowed"
  2040. msgstr "Ulovleg operasjon"
  2041. #: mediagoblin/tools/response.py:66
  2042. msgid ""
  2043. "Sorry Dave, I can't let you do that!</p><p>You have tried to perform a "
  2044. "function that you are not allowed to. Have you been trying to delete all "
  2045. "user accounts again?"
  2046. msgstr "Orsak Dave, eg kan ikkje la deg gjera det!&lt;HAL2000&gt;</p>\n<p>Du prøvde å gjera noko du ikkje har løyve til. Prøvar du å sletta alle brukarkonti no igjen?"
  2047. #: mediagoblin/tools/response.py:74
  2048. msgid ""
  2049. "There doesn't seem to be a page at this address. Sorry!</p><p>If you're sure"
  2050. " the address is correct, maybe the page you're looking for has been moved or"
  2051. " deleted."
  2052. msgstr "Ser ikkje ut til å finnast noko her. Orsak.</p>\n<p>Dersom du er sikker på at adressa finst, so er ho truleg flytta eller sletta."
  2053. #: mediagoblin/tools/timesince.py:62
  2054. msgid "year"
  2055. msgstr "år"
  2056. #: mediagoblin/tools/timesince.py:63
  2057. msgid "month"
  2058. msgstr "månad"
  2059. #: mediagoblin/tools/timesince.py:64
  2060. msgid "week"
  2061. msgstr "veke"
  2062. #: mediagoblin/tools/timesince.py:65
  2063. msgid "day"
  2064. msgstr "dag"
  2065. #: mediagoblin/tools/timesince.py:66
  2066. msgid "hour"
  2067. msgstr "time"
  2068. #: mediagoblin/tools/timesince.py:67
  2069. msgid "minute"
  2070. msgstr "minutt"
  2071. #: mediagoblin/user_pages/forms.py:23
  2072. msgid "Comment"
  2073. msgstr "Innspel"
  2074. #: mediagoblin/user_pages/forms.py:25
  2075. msgid ""
  2076. "You can use <a href=\"http://daringfireball.net/projects/markdown/basics\" "
  2077. "target=\"_blank\">Markdown</a> for formatting."
  2078. msgstr "Du kan bruka <a href=\"http://daringfireball.net/projects/markdown/basics\" target=_blank>Markdown</a> til formatterring."
  2079. #: mediagoblin/user_pages/forms.py:35
  2080. msgid "I am sure I want to remove this item from the collection"
  2081. msgstr "Eg er sikker på at eg vil fjerna dette frå samlinga"
  2082. #: mediagoblin/user_pages/forms.py:39
  2083. msgid "Collection"
  2084. msgstr "Samling"
  2085. #: mediagoblin/user_pages/forms.py:40
  2086. msgid "-- Select --"
  2087. msgstr "-- Vel --"
  2088. #: mediagoblin/user_pages/forms.py:42
  2089. msgid "Include a note"
  2090. msgstr "Legg ved eit notat"
  2091. #: mediagoblin/user_pages/forms.py:49
  2092. msgid ""
  2093. "You can use\n"
  2094. " <a href=\"http://daringfireball.net/projects/markdown/basics\" target=\"_blank\">\n"
  2095. " Markdown</a> for formatting."
  2096. msgstr "Du kan bruka <a href=\"http://daringfireball.net/projects/markdown/basics\" target=_blank>Markdown</a> til formattering."
  2097. #: mediagoblin/user_pages/forms.py:55 mediagoblin/user_pages/forms.py:61
  2098. msgid "Reason for Reporting"
  2099. msgstr "Årsak for rapportering"
  2100. #: mediagoblin/user_pages/views.py:191
  2101. msgid "Sorry, comments are disabled."
  2102. msgstr "Innspel er avslege"
  2103. #: mediagoblin/user_pages/views.py:196
  2104. msgid "Oops, your comment was empty."
  2105. msgstr "Vops, innspelet ditt var tomt."
  2106. #: mediagoblin/user_pages/views.py:204
  2107. msgid "Your comment has been posted!"
  2108. msgstr "Innspelet ditt er lagt til."
  2109. #: mediagoblin/user_pages/views.py:237
  2110. msgid "Please check your entries and try again."
  2111. msgstr "Sjekk filene dine og prøv omatt."
  2112. #: mediagoblin/user_pages/views.py:278
  2113. msgid "You have to select or add a collection"
  2114. msgstr "Du må velja eller laga ei samling"
  2115. #: mediagoblin/user_pages/views.py:289
  2116. #, python-format
  2117. msgid "\"%s\" already in collection \"%s\""
  2118. msgstr "«%s» er allereie i samling «%s»"
  2119. #: mediagoblin/user_pages/views.py:295
  2120. #, python-format
  2121. msgid "\"%s\" added to collection \"%s\""
  2122. msgstr "«%s» lagt til samling «%s»"
  2123. #: mediagoblin/user_pages/views.py:320
  2124. msgid "You deleted the media."
  2125. msgstr "Du sletta verket."
  2126. #: mediagoblin/user_pages/views.py:339
  2127. msgid "You are about to delete another user's media. Proceed with caution."
  2128. msgstr "Du er i ferd med å sletta ein annan brukar sine verk. Trå varsamt."
  2129. #: mediagoblin/user_pages/views.py:412
  2130. msgid "You deleted the item from the collection."
  2131. msgstr "Du fjerna fila frå samlinga."
  2132. #: mediagoblin/user_pages/views.py:416
  2133. msgid "The item was not removed because you didn't check that you were sure."
  2134. msgstr "Fila var ikkje fjerna fordi du ikkje var sikker."
  2135. #: mediagoblin/user_pages/views.py:424
  2136. msgid ""
  2137. "You are about to delete an item from another user's collection. Proceed with"
  2138. " caution."
  2139. msgstr "Du er i ferd med å fjerna ei fil frå ein annan brukar si samling. Trå varsamt."
  2140. #: mediagoblin/user_pages/views.py:456
  2141. #, python-format
  2142. msgid "You deleted the collection \"%s\""
  2143. msgstr "Samlinga «%s» sletta"
  2144. #: mediagoblin/user_pages/views.py:463
  2145. msgid ""
  2146. "The collection was not deleted because you didn't check that you were sure."
  2147. msgstr "Sletta ikkje samlinga."
  2148. #: mediagoblin/user_pages/views.py:471
  2149. msgid ""
  2150. "You are about to delete another user's collection. Proceed with caution."
  2151. msgstr "Du er i ferd med å sletta ein annan brukar si samling. Trå varsamt."