messages.pot 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2013-04-11 22:01+0400\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: \n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=CHARSET\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  20. #: backend.php:74
  21. msgid "Use default"
  22. msgstr ""
  23. #: backend.php:75
  24. msgid "Never purge"
  25. msgstr ""
  26. #: backend.php:76
  27. msgid "1 week old"
  28. msgstr ""
  29. #: backend.php:77
  30. msgid "2 weeks old"
  31. msgstr ""
  32. #: backend.php:78
  33. msgid "1 month old"
  34. msgstr ""
  35. #: backend.php:79
  36. msgid "2 months old"
  37. msgstr ""
  38. #: backend.php:80
  39. msgid "3 months old"
  40. msgstr ""
  41. #: backend.php:83
  42. msgid "Default interval"
  43. msgstr ""
  44. #: backend.php:84 backend.php:94
  45. msgid "Disable updates"
  46. msgstr ""
  47. #: backend.php:85 backend.php:95
  48. msgid "Each 15 minutes"
  49. msgstr ""
  50. #: backend.php:86 backend.php:96
  51. msgid "Each 30 minutes"
  52. msgstr ""
  53. #: backend.php:87 backend.php:97
  54. msgid "Hourly"
  55. msgstr ""
  56. #: backend.php:88 backend.php:98
  57. msgid "Each 4 hours"
  58. msgstr ""
  59. #: backend.php:89 backend.php:99
  60. msgid "Each 12 hours"
  61. msgstr ""
  62. #: backend.php:90 backend.php:100
  63. msgid "Daily"
  64. msgstr ""
  65. #: backend.php:91 backend.php:101
  66. msgid "Weekly"
  67. msgstr ""
  68. #: backend.php:104 classes/pref/users.php:123
  69. msgid "User"
  70. msgstr ""
  71. #: backend.php:105
  72. msgid "Power User"
  73. msgstr ""
  74. #: backend.php:106
  75. msgid "Administrator"
  76. msgstr ""
  77. #: errors.php:9
  78. msgid ""
  79. "This program requires XmlHttpRequest to function properly. Your browser "
  80. "doesn't seem to support it."
  81. msgstr ""
  82. #: errors.php:12
  83. msgid ""
  84. "This program requires cookies to function properly. Your browser doesn't "
  85. "seem to support them."
  86. msgstr ""
  87. #: errors.php:15
  88. msgid "Backend sanity check failed."
  89. msgstr ""
  90. #: errors.php:17
  91. msgid "Frontend sanity check failed."
  92. msgstr ""
  93. #: errors.php:19
  94. msgid ""
  95. "Incorrect database schema version. &lt;a href='db-updater.php'&gt;Please "
  96. "update&lt;/a&gt;."
  97. msgstr ""
  98. #: errors.php:21
  99. msgid "Request not authorized."
  100. msgstr ""
  101. #: errors.php:23
  102. msgid "No operation to perform."
  103. msgstr ""
  104. #: errors.php:25
  105. msgid ""
  106. "Could not display feed: query failed. Please check label match syntax or "
  107. "local configuration."
  108. msgstr ""
  109. #: errors.php:27
  110. msgid "Denied. Your access level is insufficient to access this page."
  111. msgstr ""
  112. #: errors.php:29
  113. msgid "Configuration check failed"
  114. msgstr ""
  115. #: errors.php:31
  116. msgid ""
  117. "Your version of MySQL is not currently supported. Please see official site "
  118. "for more information."
  119. msgstr ""
  120. #: errors.php:35
  121. msgid "SQL escaping test failed, check your database and PHP configuration"
  122. msgstr ""
  123. #: index.php:135 index.php:152 index.php:277 prefs.php:103
  124. #: classes/backend.php:5 classes/pref/labels.php:296
  125. #: classes/pref/filters.php:680 classes/pref/feeds.php:1348
  126. #: plugins/digest/digest_body.php:63 js/feedlist.js:128 js/feedlist.js:438
  127. #: js/functions.js:420 js/functions.js:758 js/functions.js:1194
  128. #: js/functions.js:1329 js/functions.js:1641 js/prefs.js:86 js/prefs.js:576
  129. #: js/prefs.js:666 js/prefs.js:858 js/prefs.js:1440 js/prefs.js:1493
  130. #: js/prefs.js:1552 js/prefs.js:1569 js/prefs.js:1585 js/prefs.js:1601
  131. #: js/prefs.js:1620 js/prefs.js:1793 js/prefs.js:1809 js/tt-rss.js:497
  132. #: js/tt-rss.js:514 js/viewfeed.js:800 js/viewfeed.js:1224
  133. #: plugins/import_export/import_export.js:17 plugins/updater/updater.js:17
  134. msgid "Loading, please wait..."
  135. msgstr ""
  136. #: index.php:166
  137. msgid "Collapse feedlist"
  138. msgstr ""
  139. #: index.php:169
  140. msgid "Show articles"
  141. msgstr ""
  142. #: index.php:172
  143. msgid "Adaptive"
  144. msgstr ""
  145. #: index.php:173
  146. msgid "All Articles"
  147. msgstr ""
  148. #: index.php:174 include/functions.php:1972 classes/feeds.php:106
  149. msgid "Starred"
  150. msgstr ""
  151. #: index.php:175 include/functions.php:1973 classes/feeds.php:107
  152. msgid "Published"
  153. msgstr ""
  154. #: index.php:176 classes/feeds.php:93 classes/feeds.php:105
  155. msgid "Unread"
  156. msgstr ""
  157. #: index.php:177
  158. msgid "Unread First"
  159. msgstr ""
  160. #: index.php:178
  161. msgid "With Note"
  162. msgstr ""
  163. #: index.php:179
  164. msgid "Ignore Scoring"
  165. msgstr ""
  166. #: index.php:182
  167. msgid "Sort articles"
  168. msgstr ""
  169. #: index.php:185
  170. msgid "Default"
  171. msgstr ""
  172. #: index.php:186
  173. msgid "Newest first"
  174. msgstr ""
  175. #: index.php:187
  176. msgid "Oldest first"
  177. msgstr ""
  178. #: index.php:188
  179. msgid "Title"
  180. msgstr ""
  181. #: index.php:192 index.php:241 include/functions.php:1962
  182. #: classes/feeds.php:111 classes/feeds.php:440 js/FeedTree.js:128
  183. #: js/FeedTree.js:156 plugins/digest/digest.js:647
  184. msgid "Mark as read"
  185. msgstr ""
  186. #: index.php:195
  187. msgid "Older than one day"
  188. msgstr ""
  189. #: index.php:198
  190. msgid "Older than one week"
  191. msgstr ""
  192. #: index.php:201
  193. msgid "Older than two weeks"
  194. msgstr ""
  195. #: index.php:218
  196. msgid "Communication problem with server."
  197. msgstr ""
  198. #: index.php:226
  199. msgid "New version of Tiny Tiny RSS is available!"
  200. msgstr ""
  201. #: index.php:231
  202. msgid "Actions..."
  203. msgstr ""
  204. #: index.php:233
  205. msgid "Preferences..."
  206. msgstr ""
  207. #: index.php:234
  208. msgid "Search..."
  209. msgstr ""
  210. #: index.php:235
  211. msgid "Feed actions:"
  212. msgstr ""
  213. #: index.php:236 classes/handler/public.php:578
  214. msgid "Subscribe to feed..."
  215. msgstr ""
  216. #: index.php:237
  217. msgid "Edit this feed..."
  218. msgstr ""
  219. #: index.php:238
  220. msgid "Rescore feed"
  221. msgstr ""
  222. #: index.php:239 classes/pref/feeds.php:734 classes/pref/feeds.php:1300
  223. #: js/PrefFeedTree.js:73
  224. msgid "Unsubscribe"
  225. msgstr ""
  226. #: index.php:240
  227. msgid "All feeds:"
  228. msgstr ""
  229. #: index.php:242
  230. msgid "(Un)hide read feeds"
  231. msgstr ""
  232. #: index.php:243
  233. msgid "Other actions:"
  234. msgstr ""
  235. #: index.php:245
  236. msgid "Switch to digest..."
  237. msgstr ""
  238. #: index.php:247
  239. msgid "Show tag cloud..."
  240. msgstr ""
  241. #: index.php:248 include/functions.php:1948
  242. msgid "Toggle widescreen mode"
  243. msgstr ""
  244. #: index.php:249
  245. msgid "Select by tags..."
  246. msgstr ""
  247. #: index.php:250
  248. msgid "Create label..."
  249. msgstr ""
  250. #: index.php:251
  251. msgid "Create filter..."
  252. msgstr ""
  253. #: index.php:252
  254. msgid "Keyboard shortcuts help"
  255. msgstr ""
  256. #: index.php:261 plugins/digest/digest_body.php:77
  257. #: plugins/mobile/mobile-functions.php:62
  258. #: plugins/mobile/mobile-functions.php:237
  259. msgid "Logout"
  260. msgstr ""
  261. #: prefs.php:36 prefs.php:121 include/functions.php:1975
  262. #: classes/pref/prefs.php:446
  263. msgid "Preferences"
  264. msgstr ""
  265. #: prefs.php:112
  266. msgid "Keyboard shortcuts"
  267. msgstr ""
  268. #: prefs.php:113
  269. msgid "Exit preferences"
  270. msgstr ""
  271. #: prefs.php:124 classes/pref/feeds.php:107 classes/pref/feeds.php:1226
  272. #: classes/pref/feeds.php:1289
  273. msgid "Feeds"
  274. msgstr ""
  275. #: prefs.php:127 classes/pref/filters.php:156
  276. msgid "Filters"
  277. msgstr ""
  278. #: prefs.php:130 include/functions.php:1161 include/functions.php:1798
  279. #: classes/pref/labels.php:90 plugins/mobile/mobile-functions.php:198
  280. msgid "Labels"
  281. msgstr ""
  282. #: prefs.php:134
  283. msgid "Users"
  284. msgstr ""
  285. #: register.php:186 include/login_form.php:238
  286. msgid "Create new account"
  287. msgstr ""
  288. #: register.php:192
  289. msgid "New user registrations are administratively disabled."
  290. msgstr ""
  291. #: register.php:196 register.php:241 register.php:254 register.php:269
  292. #: register.php:288 register.php:336 register.php:346 register.php:358
  293. #: classes/handler/public.php:648 classes/handler/public.php:736
  294. #: classes/handler/public.php:818 classes/handler/public.php:893
  295. #: classes/handler/public.php:907 classes/handler/public.php:914
  296. #: classes/handler/public.php:939
  297. msgid "Return to Tiny Tiny RSS"
  298. msgstr ""
  299. #: register.php:217
  300. msgid ""
  301. "Your temporary password will be sent to the specified email. Accounts, which "
  302. "were not logged in once, are erased automatically 24 hours after temporary "
  303. "password is sent."
  304. msgstr ""
  305. #: register.php:223
  306. msgid "Desired login:"
  307. msgstr ""
  308. #: register.php:226
  309. msgid "Check availability"
  310. msgstr ""
  311. #: register.php:228 classes/handler/public.php:776
  312. msgid "Email:"
  313. msgstr ""
  314. #: register.php:231 classes/handler/public.php:781
  315. msgid "How much is two plus two:"
  316. msgstr ""
  317. #: register.php:234
  318. msgid "Submit registration"
  319. msgstr ""
  320. #: register.php:252
  321. msgid "Your registration information is incomplete."
  322. msgstr ""
  323. #: register.php:267
  324. msgid "Sorry, this username is already taken."
  325. msgstr ""
  326. #: register.php:286
  327. msgid "Registration failed."
  328. msgstr ""
  329. #: register.php:333
  330. msgid "Account created successfully."
  331. msgstr ""
  332. #: register.php:355
  333. msgid "New user registrations are currently closed."
  334. msgstr ""
  335. #: update.php:56
  336. msgid "Tiny Tiny RSS data update script."
  337. msgstr ""
  338. #: include/digest.php:109 include/functions.php:1170
  339. #: include/functions.php:1699 include/functions.php:1784
  340. #: include/functions.php:1806 classes/opml.php:416 classes/pref/feeds.php:222
  341. msgid "Uncategorized"
  342. msgstr ""
  343. #: include/feedbrowser.php:83
  344. #, php-format
  345. msgid "%d archived article"
  346. msgid_plural "%d archived articles"
  347. msgstr[0] ""
  348. msgstr[1] ""
  349. #: include/feedbrowser.php:107
  350. msgid "No feeds found."
  351. msgstr ""
  352. #: include/functions.php:1159 include/functions.php:1796
  353. #: plugins/mobile/mobile-functions.php:171
  354. msgid "Special"
  355. msgstr ""
  356. #: include/functions.php:1648 classes/feeds.php:1110
  357. #: classes/pref/filters.php:427
  358. msgid "All feeds"
  359. msgstr ""
  360. #: include/functions.php:1849
  361. msgid "Starred articles"
  362. msgstr ""
  363. #: include/functions.php:1851
  364. msgid "Published articles"
  365. msgstr ""
  366. #: include/functions.php:1853
  367. msgid "Fresh articles"
  368. msgstr ""
  369. #: include/functions.php:1855 include/functions.php:1970
  370. msgid "All articles"
  371. msgstr ""
  372. #: include/functions.php:1857
  373. msgid "Archived articles"
  374. msgstr ""
  375. #: include/functions.php:1859
  376. msgid "Recently read"
  377. msgstr ""
  378. #: include/functions.php:1922
  379. msgid "Navigation"
  380. msgstr ""
  381. #: include/functions.php:1923
  382. msgid "Open next feed"
  383. msgstr ""
  384. #: include/functions.php:1924
  385. msgid "Open previous feed"
  386. msgstr ""
  387. #: include/functions.php:1925
  388. msgid "Open next article"
  389. msgstr ""
  390. #: include/functions.php:1926
  391. msgid "Open previous article"
  392. msgstr ""
  393. #: include/functions.php:1927
  394. msgid "Open next article (don't scroll long articles)"
  395. msgstr ""
  396. #: include/functions.php:1928
  397. msgid "Open previous article (don't scroll long articles)"
  398. msgstr ""
  399. #: include/functions.php:1929
  400. msgid "Move to next article (don't expand or mark read)"
  401. msgstr ""
  402. #: include/functions.php:1930
  403. msgid "Move to previous article (don't expand or mark read)"
  404. msgstr ""
  405. #: include/functions.php:1931
  406. msgid "Show search dialog"
  407. msgstr ""
  408. #: include/functions.php:1932
  409. msgid "Article"
  410. msgstr ""
  411. #: include/functions.php:1933
  412. msgid "Toggle starred"
  413. msgstr ""
  414. #: include/functions.php:1934 js/viewfeed.js:1918
  415. msgid "Toggle published"
  416. msgstr ""
  417. #: include/functions.php:1935 js/viewfeed.js:1896
  418. msgid "Toggle unread"
  419. msgstr ""
  420. #: include/functions.php:1936
  421. msgid "Edit tags"
  422. msgstr ""
  423. #: include/functions.php:1937
  424. msgid "Dismiss selected"
  425. msgstr ""
  426. #: include/functions.php:1938
  427. msgid "Dismiss read"
  428. msgstr ""
  429. #: include/functions.php:1939
  430. msgid "Open in new window"
  431. msgstr ""
  432. #: include/functions.php:1940 js/viewfeed.js:1937
  433. msgid "Mark below as read"
  434. msgstr ""
  435. #: include/functions.php:1941 js/viewfeed.js:1931
  436. msgid "Mark above as read"
  437. msgstr ""
  438. #: include/functions.php:1942
  439. msgid "Scroll down"
  440. msgstr ""
  441. #: include/functions.php:1943
  442. msgid "Scroll up"
  443. msgstr ""
  444. #: include/functions.php:1944
  445. msgid "Select article under cursor"
  446. msgstr ""
  447. #: include/functions.php:1945
  448. msgid "Email article"
  449. msgstr ""
  450. #: include/functions.php:1946
  451. msgid "Close/collapse article"
  452. msgstr ""
  453. #: include/functions.php:1947
  454. msgid "Toggle article expansion (combined mode)"
  455. msgstr ""
  456. #: include/functions.php:1949 plugins/embed_original/init.php:33
  457. msgid "Toggle embed original"
  458. msgstr ""
  459. #: include/functions.php:1950
  460. msgid "Article selection"
  461. msgstr ""
  462. #: include/functions.php:1951
  463. msgid "Select all articles"
  464. msgstr ""
  465. #: include/functions.php:1952
  466. msgid "Select unread"
  467. msgstr ""
  468. #: include/functions.php:1953
  469. msgid "Select starred"
  470. msgstr ""
  471. #: include/functions.php:1954
  472. msgid "Select published"
  473. msgstr ""
  474. #: include/functions.php:1955
  475. msgid "Invert selection"
  476. msgstr ""
  477. #: include/functions.php:1956
  478. msgid "Deselect everything"
  479. msgstr ""
  480. #: include/functions.php:1957 classes/pref/feeds.php:538
  481. #: classes/pref/feeds.php:771
  482. msgid "Feed"
  483. msgstr ""
  484. #: include/functions.php:1958
  485. msgid "Refresh current feed"
  486. msgstr ""
  487. #: include/functions.php:1959
  488. msgid "Un/hide read feeds"
  489. msgstr ""
  490. #: include/functions.php:1960 classes/pref/feeds.php:1292
  491. msgid "Subscribe to feed"
  492. msgstr ""
  493. #: include/functions.php:1961 js/FeedTree.js:135 js/PrefFeedTree.js:67
  494. msgid "Edit feed"
  495. msgstr ""
  496. #: include/functions.php:1963
  497. msgid "Reverse headlines"
  498. msgstr ""
  499. #: include/functions.php:1964
  500. msgid "Debug feed update"
  501. msgstr ""
  502. #: include/functions.php:1965 js/FeedTree.js:178
  503. msgid "Mark all feeds as read"
  504. msgstr ""
  505. #: include/functions.php:1966
  506. msgid "Un/collapse current category"
  507. msgstr ""
  508. #: include/functions.php:1967
  509. msgid "Toggle combined mode"
  510. msgstr ""
  511. #: include/functions.php:1968
  512. msgid "Toggle auto expand in combined mode"
  513. msgstr ""
  514. #: include/functions.php:1969
  515. msgid "Go to"
  516. msgstr ""
  517. #: include/functions.php:1971
  518. msgid "Fresh"
  519. msgstr ""
  520. #: include/functions.php:1974 js/tt-rss.js:447 js/tt-rss.js:606
  521. msgid "Tag cloud"
  522. msgstr ""
  523. #: include/functions.php:1976
  524. msgid "Other"
  525. msgstr ""
  526. #: include/functions.php:1977 classes/pref/labels.php:281
  527. msgid "Create label"
  528. msgstr ""
  529. #: include/functions.php:1978 classes/pref/filters.php:654
  530. msgid "Create filter"
  531. msgstr ""
  532. #: include/functions.php:1979
  533. msgid "Un/collapse sidebar"
  534. msgstr ""
  535. #: include/functions.php:1980
  536. msgid "Show help dialog"
  537. msgstr ""
  538. #: include/functions.php:2503
  539. #, php-format
  540. msgid "Search results: %s"
  541. msgstr ""
  542. #: include/functions.php:2996 js/viewfeed.js:2024
  543. msgid "Click to play"
  544. msgstr ""
  545. #: include/functions.php:2997 js/viewfeed.js:2023
  546. msgid "Play"
  547. msgstr ""
  548. #: include/functions.php:3115
  549. msgid " - "
  550. msgstr ""
  551. #: include/functions.php:3137 include/functions.php:3437
  552. #: classes/article.php:281
  553. msgid "no tags"
  554. msgstr ""
  555. #: include/functions.php:3147 classes/feeds.php:689
  556. msgid "Edit tags for this article"
  557. msgstr ""
  558. #: include/functions.php:3181 classes/feeds.php:641
  559. msgid "Originally from:"
  560. msgstr ""
  561. #: include/functions.php:3194 classes/feeds.php:654 classes/pref/feeds.php:557
  562. msgid "Feed URL"
  563. msgstr ""
  564. #: include/functions.php:3226 classes/dlg.php:37 classes/dlg.php:60
  565. #: classes/dlg.php:93 classes/dlg.php:159 classes/dlg.php:190
  566. #: classes/dlg.php:217 classes/dlg.php:250 classes/dlg.php:262
  567. #: classes/backend.php:105 classes/pref/users.php:99
  568. #: classes/pref/filters.php:147 classes/pref/prefs.php:1107
  569. #: classes/pref/feeds.php:1605 classes/pref/feeds.php:1677
  570. #: plugins/import_export/init.php:408 plugins/import_export/init.php:453
  571. #: plugins/googlereaderimport/init.php:197 plugins/share/init.php:67
  572. #: plugins/updater/init.php:370
  573. msgid "Close this window"
  574. msgstr ""
  575. #: include/functions.php:3462
  576. msgid "(edit note)"
  577. msgstr ""
  578. #: include/functions.php:3697
  579. msgid "unknown type"
  580. msgstr ""
  581. #: include/functions.php:3753
  582. msgid "Attachments"
  583. msgstr ""
  584. #: include/login_form.php:183 classes/handler/public.php:483
  585. #: classes/handler/public.php:771 plugins/mobile/login_form.php:40
  586. msgid "Login:"
  587. msgstr ""
  588. #: include/login_form.php:192 classes/handler/public.php:486
  589. #: plugins/mobile/login_form.php:45
  590. msgid "Password:"
  591. msgstr ""
  592. #: include/login_form.php:197
  593. msgid "I forgot my password"
  594. msgstr ""
  595. #: include/login_form.php:201 classes/handler/public.php:489
  596. #: classes/pref/prefs.php:554
  597. msgid "Language:"
  598. msgstr ""
  599. #: include/login_form.php:209
  600. msgid "Profile:"
  601. msgstr ""
  602. #: include/login_form.php:213 classes/handler/public.php:233
  603. #: classes/rpc.php:64 classes/pref/prefs.php:1043
  604. msgid "Default profile"
  605. msgstr ""
  606. #: include/login_form.php:221
  607. msgid "Use less traffic"
  608. msgstr ""
  609. #: include/login_form.php:229
  610. msgid "Remember me"
  611. msgstr ""
  612. #: include/login_form.php:235 classes/handler/public.php:499
  613. #: plugins/mobile/login_form.php:28
  614. msgid "Log in"
  615. msgstr ""
  616. #: include/sessions.php:62
  617. msgid "Session failed to validate (incorrect IP)"
  618. msgstr ""
  619. #: classes/article.php:25
  620. msgid "Article not found."
  621. msgstr ""
  622. #: classes/article.php:179
  623. msgid "Tags for this article (separated by commas):"
  624. msgstr ""
  625. #: classes/article.php:204 classes/pref/users.php:176
  626. #: classes/pref/labels.php:79 classes/pref/filters.php:405
  627. #: classes/pref/prefs.php:989 classes/pref/feeds.php:750
  628. #: classes/pref/feeds.php:898 plugins/nsfw/init.php:86
  629. #: plugins/note/init.php:53 plugins/instances/init.php:248
  630. msgid "Save"
  631. msgstr ""
  632. #: classes/article.php:206 classes/handler/public.php:460
  633. #: classes/handler/public.php:502 classes/feeds.php:1037
  634. #: classes/feeds.php:1089 classes/feeds.php:1149 classes/pref/users.php:178
  635. #: classes/pref/labels.php:81 classes/pref/filters.php:408
  636. #: classes/pref/filters.php:804 classes/pref/filters.php:880
  637. #: classes/pref/filters.php:947 classes/pref/prefs.php:991
  638. #: classes/pref/feeds.php:751 classes/pref/feeds.php:901
  639. #: classes/pref/feeds.php:1817 plugins/mail/init.php:126
  640. #: plugins/note/init.php:55 plugins/instances/init.php:251
  641. #: plugins/instances/init.php:440
  642. msgid "Cancel"
  643. msgstr ""
  644. #: classes/handler/public.php:424 plugins/bookmarklets/init.php:38
  645. msgid "Share with Tiny Tiny RSS"
  646. msgstr ""
  647. #: classes/handler/public.php:432
  648. msgid "Title:"
  649. msgstr ""
  650. #: classes/handler/public.php:434 classes/pref/feeds.php:555
  651. #: classes/pref/feeds.php:786 plugins/instances/init.php:215
  652. #: plugins/instances/init.php:405
  653. msgid "URL:"
  654. msgstr ""
  655. #: classes/handler/public.php:436
  656. msgid "Content:"
  657. msgstr ""
  658. #: classes/handler/public.php:438
  659. msgid "Labels:"
  660. msgstr ""
  661. #: classes/handler/public.php:457
  662. msgid "Shared article will appear in the Published feed."
  663. msgstr ""
  664. #: classes/handler/public.php:459
  665. msgid "Share"
  666. msgstr ""
  667. #: classes/handler/public.php:481
  668. msgid "Not logged in"
  669. msgstr ""
  670. #: classes/handler/public.php:548
  671. msgid "Incorrect username or password"
  672. msgstr ""
  673. #: classes/handler/public.php:584 classes/handler/public.php:681
  674. #, php-format
  675. msgid "Already subscribed to <b>%s</b>."
  676. msgstr ""
  677. #: classes/handler/public.php:587 classes/handler/public.php:672
  678. #, php-format
  679. msgid "Subscribed to <b>%s</b>."
  680. msgstr ""
  681. #: classes/handler/public.php:590 classes/handler/public.php:675
  682. #, php-format
  683. msgid "Could not subscribe to <b>%s</b>."
  684. msgstr ""
  685. #: classes/handler/public.php:593 classes/handler/public.php:678
  686. #, php-format
  687. msgid "No feeds found in <b>%s</b>."
  688. msgstr ""
  689. #: classes/handler/public.php:596 classes/handler/public.php:684
  690. msgid "Multiple feed URLs found."
  691. msgstr ""
  692. #: classes/handler/public.php:600 classes/handler/public.php:689
  693. #, php-format
  694. msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
  695. msgstr ""
  696. #: classes/handler/public.php:618 classes/handler/public.php:707
  697. msgid "Subscribe to selected feed"
  698. msgstr ""
  699. #: classes/handler/public.php:643 classes/handler/public.php:731
  700. msgid "Edit subscription options"
  701. msgstr ""
  702. #: classes/handler/public.php:758
  703. msgid "Password recovery"
  704. msgstr ""
  705. #: classes/handler/public.php:764
  706. msgid ""
  707. "You will need to provide valid account name and email. New password will be "
  708. "sent on your email address."
  709. msgstr ""
  710. #: classes/handler/public.php:786 classes/pref/users.php:360
  711. msgid "Reset password"
  712. msgstr ""
  713. #: classes/handler/public.php:796
  714. msgid "Some of the required form parameters are missing or incorrect."
  715. msgstr ""
  716. #: classes/handler/public.php:800 classes/handler/public.php:826
  717. #: plugins/digest/digest_body.php:69
  718. msgid "Go back"
  719. msgstr ""
  720. #: classes/handler/public.php:822
  721. msgid "Sorry, login and email combination not found."
  722. msgstr ""
  723. #: classes/handler/public.php:842
  724. msgid "Your access level is insufficient to run this script."
  725. msgstr ""
  726. #: classes/handler/public.php:866
  727. msgid "Database Updater"
  728. msgstr ""
  729. #: classes/handler/public.php:931
  730. msgid "Perform updates"
  731. msgstr ""
  732. #: classes/dlg.php:16
  733. msgid ""
  734. "If you have imported labels and/or filters, you might need to reload "
  735. "preferences to see your new data."
  736. msgstr ""
  737. #: classes/dlg.php:48
  738. msgid "Your Public OPML URL is:"
  739. msgstr ""
  740. #: classes/dlg.php:57 classes/dlg.php:214
  741. msgid "Generate new URL"
  742. msgstr ""
  743. #: classes/dlg.php:71
  744. msgid ""
  745. "Update daemon is enabled in configuration, but daemon process is not "
  746. "running, which prevents all feeds from updating. Please start the daemon "
  747. "process or contact instance owner."
  748. msgstr ""
  749. #: classes/dlg.php:75 classes/dlg.php:84
  750. msgid "Last update:"
  751. msgstr ""
  752. #: classes/dlg.php:80
  753. msgid ""
  754. "Update daemon is taking too long to perform a feed update. This could "
  755. "indicate a problem like crash or a hang. Please check the daemon process or "
  756. "contact instance owner."
  757. msgstr ""
  758. #: classes/dlg.php:166
  759. msgid "Match:"
  760. msgstr ""
  761. #: classes/dlg.php:168
  762. msgid "Any"
  763. msgstr ""
  764. #: classes/dlg.php:171
  765. msgid "All tags."
  766. msgstr ""
  767. #: classes/dlg.php:173
  768. msgid "Which Tags?"
  769. msgstr ""
  770. #: classes/dlg.php:186
  771. msgid "Display entries"
  772. msgstr ""
  773. #: classes/dlg.php:205
  774. msgid "You can view this feed as RSS using the following URL:"
  775. msgstr ""
  776. #: classes/dlg.php:233 plugins/updater/init.php:333
  777. #, php-format
  778. msgid "New version of Tiny Tiny RSS is available (%s)."
  779. msgstr ""
  780. #: classes/dlg.php:241
  781. msgid ""
  782. "You can update using built-in updater in the Preferences or by using update."
  783. "php"
  784. msgstr ""
  785. #: classes/dlg.php:245 plugins/updater/init.php:337
  786. msgid "See the release notes"
  787. msgstr ""
  788. #: classes/dlg.php:247
  789. msgid "Download"
  790. msgstr ""
  791. #: classes/dlg.php:255
  792. msgid "Error receiving version information or no new version available."
  793. msgstr ""
  794. #: classes/feeds.php:68
  795. msgid "Visit the website"
  796. msgstr ""
  797. #: classes/feeds.php:83
  798. msgid "View as RSS feed"
  799. msgstr ""
  800. #: classes/feeds.php:84 classes/feeds.php:138 classes/pref/feeds.php:1457
  801. msgid "View as RSS"
  802. msgstr ""
  803. #: classes/feeds.php:91
  804. msgid "Select:"
  805. msgstr ""
  806. #: classes/feeds.php:92 classes/pref/users.php:345 classes/pref/labels.php:275
  807. #: classes/pref/filters.php:282 classes/pref/filters.php:330
  808. #: classes/pref/filters.php:648 classes/pref/filters.php:737
  809. #: classes/pref/filters.php:764 classes/pref/prefs.php:1003
  810. #: classes/pref/feeds.php:1283 classes/pref/feeds.php:1553
  811. #: classes/pref/feeds.php:1623 plugins/instances/init.php:290
  812. msgid "All"
  813. msgstr ""
  814. #: classes/feeds.php:94
  815. msgid "Invert"
  816. msgstr ""
  817. #: classes/feeds.php:95 classes/pref/users.php:347 classes/pref/labels.php:277
  818. #: classes/pref/filters.php:284 classes/pref/filters.php:332
  819. #: classes/pref/filters.php:650 classes/pref/filters.php:739
  820. #: classes/pref/filters.php:766 classes/pref/prefs.php:1005
  821. #: classes/pref/feeds.php:1285 classes/pref/feeds.php:1555
  822. #: classes/pref/feeds.php:1625 plugins/instances/init.php:292
  823. msgid "None"
  824. msgstr ""
  825. #: classes/feeds.php:101
  826. msgid "More..."
  827. msgstr ""
  828. #: classes/feeds.php:103
  829. msgid "Selection toggle:"
  830. msgstr ""
  831. #: classes/feeds.php:109
  832. msgid "Selection:"
  833. msgstr ""
  834. #: classes/feeds.php:112
  835. msgid "Set score"
  836. msgstr ""
  837. #: classes/feeds.php:115
  838. msgid "Archive"
  839. msgstr ""
  840. #: classes/feeds.php:117
  841. msgid "Move back"
  842. msgstr ""
  843. #: classes/feeds.php:118 classes/pref/filters.php:291
  844. #: classes/pref/filters.php:339 classes/pref/filters.php:746
  845. #: classes/pref/filters.php:773
  846. msgid "Delete"
  847. msgstr ""
  848. #: classes/feeds.php:125 classes/feeds.php:130 plugins/mailto/init.php:28
  849. #: plugins/mail/init.php:28
  850. msgid "Forward by email"
  851. msgstr ""
  852. #: classes/feeds.php:134
  853. msgid "Feed:"
  854. msgstr ""
  855. #: classes/feeds.php:205 classes/feeds.php:837
  856. msgid "Feed not found."
  857. msgstr ""
  858. #: classes/feeds.php:387
  859. #, php-format
  860. msgid "Imported at %s"
  861. msgstr ""
  862. #: classes/feeds.php:534
  863. msgid "mark as read"
  864. msgstr ""
  865. #: classes/feeds.php:585
  866. msgid "Collapse article"
  867. msgstr ""
  868. #: classes/feeds.php:738
  869. msgid "No unread articles found to display."
  870. msgstr ""
  871. #: classes/feeds.php:741
  872. msgid "No updated articles found to display."
  873. msgstr ""
  874. #: classes/feeds.php:744
  875. msgid "No starred articles found to display."
  876. msgstr ""
  877. #: classes/feeds.php:748
  878. msgid ""
  879. "No articles found to display. You can assign articles to labels manually "
  880. "from article header context menu (applies to all selected articles) or use a "
  881. "filter."
  882. msgstr ""
  883. #: classes/feeds.php:750
  884. msgid "No articles found to display."
  885. msgstr ""
  886. #: classes/feeds.php:765 classes/feeds.php:932
  887. #, php-format
  888. msgid "Feeds last updated at %s"
  889. msgstr ""
  890. #: classes/feeds.php:775 classes/feeds.php:942
  891. msgid "Some feeds have update errors (click for details)"
  892. msgstr ""
  893. #: classes/feeds.php:922
  894. msgid "No feed selected."
  895. msgstr ""
  896. #: classes/feeds.php:975 classes/feeds.php:983
  897. msgid "Feed or site URL"
  898. msgstr ""
  899. #: classes/feeds.php:989 classes/pref/feeds.php:577 classes/pref/feeds.php:799
  900. #: classes/pref/feeds.php:1781
  901. msgid "Place in category:"
  902. msgstr ""
  903. #: classes/feeds.php:997
  904. msgid "Available feeds"
  905. msgstr ""
  906. #: classes/feeds.php:1009 classes/pref/users.php:139
  907. #: classes/pref/feeds.php:607 classes/pref/feeds.php:835
  908. msgid "Authentication"
  909. msgstr ""
  910. #: classes/feeds.php:1013 classes/pref/users.php:402
  911. #: classes/pref/feeds.php:613 classes/pref/feeds.php:839
  912. #: classes/pref/feeds.php:1795
  913. msgid "Login"
  914. msgstr ""
  915. #: classes/feeds.php:1016 classes/pref/prefs.php:271
  916. #: classes/pref/feeds.php:619 classes/pref/feeds.php:845
  917. #: classes/pref/feeds.php:1798
  918. msgid "Password"
  919. msgstr ""
  920. #: classes/feeds.php:1026
  921. msgid "This feed requires authentication."
  922. msgstr ""
  923. #: classes/feeds.php:1031 classes/feeds.php:1087 classes/pref/feeds.php:1816
  924. msgid "Subscribe"
  925. msgstr ""
  926. #: classes/feeds.php:1034
  927. msgid "More feeds"
  928. msgstr ""
  929. #: classes/feeds.php:1057 classes/feeds.php:1148 classes/pref/users.php:332
  930. #: classes/pref/filters.php:641 classes/pref/feeds.php:1276 js/tt-rss.js:170
  931. msgid "Search"
  932. msgstr ""
  933. #: classes/feeds.php:1061
  934. msgid "Popular feeds"
  935. msgstr ""
  936. #: classes/feeds.php:1062
  937. msgid "Feed archive"
  938. msgstr ""
  939. #: classes/feeds.php:1065
  940. msgid "limit:"
  941. msgstr ""
  942. #: classes/feeds.php:1088 classes/pref/users.php:358
  943. #: classes/pref/labels.php:284 classes/pref/filters.php:398
  944. #: classes/pref/filters.php:667 classes/pref/feeds.php:724
  945. #: plugins/instances/init.php:297
  946. msgid "Remove"
  947. msgstr ""
  948. #: classes/feeds.php:1099
  949. msgid "Look for"
  950. msgstr ""
  951. #: classes/feeds.php:1107
  952. msgid "Limit search to:"
  953. msgstr ""
  954. #: classes/feeds.php:1123
  955. msgid "This feed"
  956. msgstr ""
  957. #: classes/backend.php:33
  958. msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
  959. msgstr ""
  960. #: classes/backend.php:38
  961. msgid "Keyboard Shortcuts"
  962. msgstr ""
  963. #: classes/backend.php:61
  964. msgid "Shift"
  965. msgstr ""
  966. #: classes/backend.php:64
  967. msgid "Ctrl"
  968. msgstr ""
  969. #: classes/backend.php:99
  970. msgid "Help topic not found."
  971. msgstr ""
  972. #: classes/opml.php:28 classes/opml.php:33
  973. msgid "OPML Utility"
  974. msgstr ""
  975. #: classes/opml.php:37
  976. msgid "Importing OPML..."
  977. msgstr ""
  978. #: classes/opml.php:41
  979. msgid "Return to preferences"
  980. msgstr ""
  981. #: classes/opml.php:270
  982. #, php-format
  983. msgid "Adding feed: %s"
  984. msgstr ""
  985. #: classes/opml.php:281
  986. #, php-format
  987. msgid "Duplicate feed: %s"
  988. msgstr ""
  989. #: classes/opml.php:295
  990. #, php-format
  991. msgid "Adding label %s"
  992. msgstr ""
  993. #: classes/opml.php:298
  994. #, php-format
  995. msgid "Duplicate label: %s"
  996. msgstr ""
  997. #: classes/opml.php:310
  998. #, php-format
  999. msgid "Setting preference key %s to %s"
  1000. msgstr ""
  1001. #: classes/opml.php:339
  1002. msgid "Adding filter..."
  1003. msgstr ""
  1004. #: classes/opml.php:416
  1005. #, php-format
  1006. msgid "Processing category: %s"
  1007. msgstr ""
  1008. #: classes/opml.php:465 plugins/import_export/init.php:421
  1009. #: plugins/googlereaderimport/init.php:70
  1010. #, php-format
  1011. msgid "Upload failed with error code %d"
  1012. msgstr ""
  1013. #: classes/opml.php:479 plugins/import_export/init.php:435
  1014. #: plugins/googlereaderimport/init.php:84
  1015. msgid "Unable to move uploaded file."
  1016. msgstr ""
  1017. #: classes/opml.php:483 plugins/import_export/init.php:439
  1018. #: plugins/googlereaderimport/init.php:88
  1019. msgid "Error: please upload OPML file."
  1020. msgstr ""
  1021. #: classes/opml.php:492
  1022. msgid "Error: unable to find moved OPML file."
  1023. msgstr ""
  1024. #: classes/opml.php:499 plugins/googlereaderimport/init.php:190
  1025. msgid "Error while parsing document."
  1026. msgstr ""
  1027. #: classes/pref/users.php:6 plugins/instances/init.php:157
  1028. msgid "Your access level is insufficient to open this tab."
  1029. msgstr ""
  1030. #: classes/pref/users.php:34
  1031. msgid "User not found"
  1032. msgstr ""
  1033. #: classes/pref/users.php:53 classes/pref/users.php:404
  1034. msgid "Registered"
  1035. msgstr ""
  1036. #: classes/pref/users.php:54
  1037. msgid "Last logged in"
  1038. msgstr ""
  1039. #: classes/pref/users.php:61
  1040. msgid "Subscribed feeds count"
  1041. msgstr ""
  1042. #: classes/pref/users.php:65
  1043. msgid "Subscribed feeds"
  1044. msgstr ""
  1045. #: classes/pref/users.php:142
  1046. msgid "Access level: "
  1047. msgstr ""
  1048. #: classes/pref/users.php:155
  1049. msgid "Change password to"
  1050. msgstr ""
  1051. #: classes/pref/users.php:161 classes/pref/feeds.php:627
  1052. #: classes/pref/feeds.php:851
  1053. msgid "Options"
  1054. msgstr ""
  1055. #: classes/pref/users.php:164
  1056. msgid "E-mail: "
  1057. msgstr ""
  1058. #: classes/pref/users.php:240
  1059. #, php-format
  1060. msgid "Added user <b>%s</b> with password <b>%s</b>"
  1061. msgstr ""
  1062. #: classes/pref/users.php:247
  1063. #, php-format
  1064. msgid "Could not create user <b>%s</b>"
  1065. msgstr ""
  1066. #: classes/pref/users.php:251
  1067. #, php-format
  1068. msgid "User <b>%s</b> already exists."
  1069. msgstr ""
  1070. #: classes/pref/users.php:273
  1071. #, php-format
  1072. msgid "Changed password of user <b>%s</b> to <b>%s</b>"
  1073. msgstr ""
  1074. #: classes/pref/users.php:275
  1075. #, php-format
  1076. msgid "Sending new password of user <b>%s</b> to <b>%s</b>"
  1077. msgstr ""
  1078. #: classes/pref/users.php:299
  1079. msgid "[tt-rss] Password change notification"
  1080. msgstr ""
  1081. #: classes/pref/users.php:342 classes/pref/labels.php:272
  1082. #: classes/pref/filters.php:279 classes/pref/filters.php:327
  1083. #: classes/pref/filters.php:645 classes/pref/filters.php:734
  1084. #: classes/pref/filters.php:761 classes/pref/prefs.php:1000
  1085. #: classes/pref/feeds.php:1280 classes/pref/feeds.php:1550
  1086. #: classes/pref/feeds.php:1620 plugins/instances/init.php:287
  1087. msgid "Select"
  1088. msgstr ""
  1089. #: classes/pref/users.php:350
  1090. msgid "Create user"
  1091. msgstr ""
  1092. #: classes/pref/users.php:354
  1093. msgid "Details"
  1094. msgstr ""
  1095. #: classes/pref/users.php:356 classes/pref/filters.php:660
  1096. #: plugins/instances/init.php:296
  1097. msgid "Edit"
  1098. msgstr ""
  1099. #: classes/pref/users.php:403
  1100. msgid "Access Level"
  1101. msgstr ""
  1102. #: classes/pref/users.php:405
  1103. msgid "Last login"
  1104. msgstr ""
  1105. #: classes/pref/users.php:426 plugins/instances/init.php:337
  1106. msgid "Click to edit"
  1107. msgstr ""
  1108. #: classes/pref/users.php:446
  1109. msgid "No users defined."
  1110. msgstr ""
  1111. #: classes/pref/users.php:448
  1112. msgid "No matching users found."
  1113. msgstr ""
  1114. #: classes/pref/labels.php:22 classes/pref/filters.php:268
  1115. #: classes/pref/filters.php:725
  1116. msgid "Caption"
  1117. msgstr ""
  1118. #: classes/pref/labels.php:37
  1119. msgid "Colors"
  1120. msgstr ""
  1121. #: classes/pref/labels.php:42
  1122. msgid "Foreground:"
  1123. msgstr ""
  1124. #: classes/pref/labels.php:42
  1125. msgid "Background:"
  1126. msgstr ""
  1127. #: classes/pref/labels.php:232
  1128. #, php-format
  1129. msgid "Created label <b>%s</b>"
  1130. msgstr ""
  1131. #: classes/pref/labels.php:287
  1132. msgid "Clear colors"
  1133. msgstr ""
  1134. #: classes/pref/filters.php:96
  1135. msgid "Articles matching this filter:"
  1136. msgstr ""
  1137. #: classes/pref/filters.php:133
  1138. msgid "No recent articles matching this filter have been found."
  1139. msgstr ""
  1140. #: classes/pref/filters.php:137
  1141. msgid ""
  1142. "Complex expressions might not give results while testing due to issues with "
  1143. "database server regexp implementation."
  1144. msgstr ""
  1145. #: classes/pref/filters.php:274 classes/pref/filters.php:729
  1146. #: classes/pref/filters.php:844
  1147. msgid "Match"
  1148. msgstr ""
  1149. #: classes/pref/filters.php:288 classes/pref/filters.php:336
  1150. #: classes/pref/filters.php:743 classes/pref/filters.php:770
  1151. msgid "Add"
  1152. msgstr ""
  1153. #: classes/pref/filters.php:322 classes/pref/filters.php:756
  1154. msgid "Apply actions"
  1155. msgstr ""
  1156. #: classes/pref/filters.php:372 classes/pref/filters.php:785
  1157. msgid "Enabled"
  1158. msgstr ""
  1159. #: classes/pref/filters.php:381 classes/pref/filters.php:788
  1160. msgid "Match any rule"
  1161. msgstr ""
  1162. #: classes/pref/filters.php:390 classes/pref/filters.php:791
  1163. msgid "Inverse matching"
  1164. msgstr ""
  1165. #: classes/pref/filters.php:402 classes/pref/filters.php:798
  1166. msgid "Test"
  1167. msgstr ""
  1168. #: classes/pref/filters.php:435
  1169. msgid "(inverse)"
  1170. msgstr ""
  1171. #: classes/pref/filters.php:434
  1172. #, php-format
  1173. msgid "%s on %s in %s %s"
  1174. msgstr ""
  1175. #: classes/pref/filters.php:657
  1176. msgid "Combine"
  1177. msgstr ""
  1178. #: classes/pref/filters.php:663 classes/pref/feeds.php:1296
  1179. #: classes/pref/feeds.php:1310
  1180. msgid "Reset sort order"
  1181. msgstr ""
  1182. #: classes/pref/filters.php:671 classes/pref/feeds.php:1335
  1183. msgid "Rescore articles"
  1184. msgstr ""
  1185. #: classes/pref/filters.php:801
  1186. msgid "Create"
  1187. msgstr ""
  1188. #: classes/pref/filters.php:856
  1189. msgid "Inverse regular expression matching"
  1190. msgstr ""
  1191. #: classes/pref/filters.php:858
  1192. msgid "on field"
  1193. msgstr ""
  1194. #: classes/pref/filters.php:864 js/PrefFilterTree.js:45
  1195. #: plugins/digest/digest.js:242
  1196. msgid "in"
  1197. msgstr ""
  1198. #: classes/pref/filters.php:877
  1199. msgid "Save rule"
  1200. msgstr ""
  1201. #: classes/pref/filters.php:877 js/functions.js:1013
  1202. msgid "Add rule"
  1203. msgstr ""
  1204. #: classes/pref/filters.php:900
  1205. msgid "Perform Action"
  1206. msgstr ""
  1207. #: classes/pref/filters.php:926
  1208. msgid "with parameters:"
  1209. msgstr ""
  1210. #: classes/pref/filters.php:944
  1211. msgid "Save action"
  1212. msgstr ""
  1213. #: classes/pref/filters.php:944 js/functions.js:1039
  1214. msgid "Add action"
  1215. msgstr ""
  1216. #: classes/pref/filters.php:967
  1217. msgid "[No caption]"
  1218. msgstr ""
  1219. #: classes/pref/prefs.php:18
  1220. msgid "General"
  1221. msgstr ""
  1222. #: classes/pref/prefs.php:19
  1223. msgid "Interface"
  1224. msgstr ""
  1225. #: classes/pref/prefs.php:20
  1226. msgid "Advanced"
  1227. msgstr ""
  1228. #: classes/pref/prefs.php:21
  1229. msgid "Digest"
  1230. msgstr ""
  1231. #: classes/pref/prefs.php:25
  1232. msgid "Allow duplicate articles"
  1233. msgstr ""
  1234. #: classes/pref/prefs.php:26
  1235. msgid "Assign articles to labels automatically"
  1236. msgstr ""
  1237. #: classes/pref/prefs.php:27
  1238. msgid "Blacklisted tags"
  1239. msgstr ""
  1240. #: classes/pref/prefs.php:27
  1241. msgid ""
  1242. "When auto-detecting tags in articles these tags will not be applied (comma-"
  1243. "separated list)."
  1244. msgstr ""
  1245. #: classes/pref/prefs.php:28
  1246. msgid "Automatically mark articles as read"
  1247. msgstr ""
  1248. #: classes/pref/prefs.php:28
  1249. msgid ""
  1250. "This option enables marking articles as read automatically while you scroll "
  1251. "article list."
  1252. msgstr ""
  1253. #: classes/pref/prefs.php:29
  1254. msgid "Automatically expand articles in combined mode"
  1255. msgstr ""
  1256. #: classes/pref/prefs.php:30
  1257. msgid "Combined feed display"
  1258. msgstr ""
  1259. #: classes/pref/prefs.php:30
  1260. msgid ""
  1261. "Display expanded list of feed articles, instead of separate displays for "
  1262. "headlines and article content"
  1263. msgstr ""
  1264. #: classes/pref/prefs.php:31
  1265. msgid "Confirm marking feed as read"
  1266. msgstr ""
  1267. #: classes/pref/prefs.php:32
  1268. msgid "Amount of articles to display at once"
  1269. msgstr ""
  1270. #: classes/pref/prefs.php:33
  1271. msgid "Default feed update interval"
  1272. msgstr ""
  1273. #: classes/pref/prefs.php:33
  1274. msgid ""
  1275. "Shortest interval at which a feed will be checked for updates regardless of "
  1276. "update method"
  1277. msgstr ""
  1278. #: classes/pref/prefs.php:34
  1279. msgid "Mark articles in e-mail digest as read"
  1280. msgstr ""
  1281. #: classes/pref/prefs.php:35
  1282. msgid "Enable e-mail digest"
  1283. msgstr ""
  1284. #: classes/pref/prefs.php:35
  1285. msgid ""
  1286. "This option enables sending daily digest of new (and unread) headlines on "
  1287. "your configured e-mail address"
  1288. msgstr ""
  1289. #: classes/pref/prefs.php:36
  1290. msgid "Try to send digests around specified time"
  1291. msgstr ""
  1292. #: classes/pref/prefs.php:36
  1293. msgid "Uses UTC timezone"
  1294. msgstr ""
  1295. #: classes/pref/prefs.php:37
  1296. msgid "Enable API access"
  1297. msgstr ""
  1298. #: classes/pref/prefs.php:37
  1299. msgid "Allows external clients to access this account through the API"
  1300. msgstr ""
  1301. #: classes/pref/prefs.php:38
  1302. msgid "Enable feed categories"
  1303. msgstr ""
  1304. #: classes/pref/prefs.php:39
  1305. msgid "Sort feeds by unread articles count"
  1306. msgstr ""
  1307. #: classes/pref/prefs.php:40
  1308. msgid "Maximum age of fresh articles (in hours)"
  1309. msgstr ""
  1310. #: classes/pref/prefs.php:41
  1311. msgid "Hide feeds with no unread articles"
  1312. msgstr ""
  1313. #: classes/pref/prefs.php:42
  1314. msgid "Show special feeds when hiding read feeds"
  1315. msgstr ""
  1316. #: classes/pref/prefs.php:43
  1317. msgid "Long date format"
  1318. msgstr ""
  1319. #: classes/pref/prefs.php:44
  1320. msgid "On catchup show next feed"
  1321. msgstr ""
  1322. #: classes/pref/prefs.php:44
  1323. msgid ""
  1324. "Automatically open next feed with unread articles after marking one as read"
  1325. msgstr ""
  1326. #: classes/pref/prefs.php:45
  1327. msgid "Purge articles after this number of days (0 - disables)"
  1328. msgstr ""
  1329. #: classes/pref/prefs.php:46
  1330. msgid "Purge unread articles"
  1331. msgstr ""
  1332. #: classes/pref/prefs.php:47 plugins/mobile/prefs.php:60
  1333. msgid "Reverse headline order (oldest first)"
  1334. msgstr ""
  1335. #: classes/pref/prefs.php:48
  1336. msgid "Short date format"
  1337. msgstr ""
  1338. #: classes/pref/prefs.php:49
  1339. msgid "Show content preview in headlines list"
  1340. msgstr ""
  1341. #: classes/pref/prefs.php:50
  1342. msgid "Sort headlines by feed date"
  1343. msgstr ""
  1344. #: classes/pref/prefs.php:50
  1345. msgid "Use feed-specified date to sort headlines instead of local import date."
  1346. msgstr ""
  1347. #: classes/pref/prefs.php:51
  1348. msgid "Login with an SSL certificate"
  1349. msgstr ""
  1350. #: classes/pref/prefs.php:51
  1351. msgid "Click to register your SSL client certificate with tt-rss"
  1352. msgstr ""
  1353. #: classes/pref/prefs.php:52
  1354. msgid "Do not embed images in articles"
  1355. msgstr ""
  1356. #: classes/pref/prefs.php:53
  1357. msgid "Strip unsafe tags from articles"
  1358. msgstr ""
  1359. #: classes/pref/prefs.php:53
  1360. msgid "Strip all but most common HTML tags when reading articles."
  1361. msgstr ""
  1362. #: classes/pref/prefs.php:54 js/prefs.js:1720
  1363. msgid "Customize stylesheet"
  1364. msgstr ""
  1365. #: classes/pref/prefs.php:54
  1366. msgid "Customize CSS stylesheet to your liking"
  1367. msgstr ""
  1368. #: classes/pref/prefs.php:55
  1369. msgid "User timezone"
  1370. msgstr ""
  1371. #: classes/pref/prefs.php:56
  1372. msgid "Group headlines in virtual feeds"
  1373. msgstr ""
  1374. #: classes/pref/prefs.php:56
  1375. msgid "Special feeds, labels, and categories are grouped by originating feeds"
  1376. msgstr ""
  1377. #: classes/pref/prefs.php:57
  1378. msgid "Select theme"
  1379. msgstr ""
  1380. #: classes/pref/prefs.php:57
  1381. msgid "Select one of the available CSS themes"
  1382. msgstr ""
  1383. #: classes/pref/prefs.php:68
  1384. msgid "Old password cannot be blank."
  1385. msgstr ""
  1386. #: classes/pref/prefs.php:73
  1387. msgid "New password cannot be blank."
  1388. msgstr ""
  1389. #: classes/pref/prefs.php:78
  1390. msgid "Entered passwords do not match."
  1391. msgstr ""
  1392. #: classes/pref/prefs.php:88
  1393. msgid "Function not supported by authentication module."
  1394. msgstr ""
  1395. #: classes/pref/prefs.php:135
  1396. msgid "The configuration was saved."
  1397. msgstr ""
  1398. #: classes/pref/prefs.php:150
  1399. #, php-format
  1400. msgid "Unknown option: %s"
  1401. msgstr ""
  1402. #: classes/pref/prefs.php:164
  1403. msgid "Your personal data has been saved."
  1404. msgstr ""
  1405. #: classes/pref/prefs.php:184
  1406. msgid "Your preferences are now set to default values."
  1407. msgstr ""
  1408. #: classes/pref/prefs.php:206
  1409. msgid "Personal data / Authentication"
  1410. msgstr ""
  1411. #: classes/pref/prefs.php:226
  1412. msgid "Personal data"
  1413. msgstr ""
  1414. #: classes/pref/prefs.php:236
  1415. msgid "Full name"
  1416. msgstr ""
  1417. #: classes/pref/prefs.php:240
  1418. msgid "E-mail"
  1419. msgstr ""
  1420. #: classes/pref/prefs.php:246
  1421. msgid "Access level"
  1422. msgstr ""
  1423. #: classes/pref/prefs.php:256
  1424. msgid "Save data"
  1425. msgstr ""
  1426. #: classes/pref/prefs.php:278
  1427. msgid "Your password is at default value, please change it."
  1428. msgstr ""
  1429. #: classes/pref/prefs.php:305
  1430. msgid "Changing your current password will disable OTP."
  1431. msgstr ""
  1432. #: classes/pref/prefs.php:310
  1433. msgid "Old password"
  1434. msgstr ""
  1435. #: classes/pref/prefs.php:313
  1436. msgid "New password"
  1437. msgstr ""
  1438. #: classes/pref/prefs.php:318
  1439. msgid "Confirm password"
  1440. msgstr ""
  1441. #: classes/pref/prefs.php:328
  1442. msgid "Change password"
  1443. msgstr ""
  1444. #: classes/pref/prefs.php:334
  1445. msgid "One time passwords / Authenticator"
  1446. msgstr ""
  1447. #: classes/pref/prefs.php:338
  1448. msgid ""
  1449. "One time passwords are currently enabled. Enter your current password below "
  1450. "to disable."
  1451. msgstr ""
  1452. #: classes/pref/prefs.php:363 classes/pref/prefs.php:414
  1453. msgid "Enter your password"
  1454. msgstr ""
  1455. #: classes/pref/prefs.php:374
  1456. msgid "Disable OTP"
  1457. msgstr ""
  1458. #: classes/pref/prefs.php:380
  1459. msgid ""
  1460. "You will need a compatible Authenticator to use this. Changing your password "
  1461. "would automatically disable OTP."
  1462. msgstr ""
  1463. #: classes/pref/prefs.php:382
  1464. msgid "Scan the following code by the Authenticator application:"
  1465. msgstr ""
  1466. #: classes/pref/prefs.php:423
  1467. msgid "I have scanned the code and would like to enable OTP"
  1468. msgstr ""
  1469. #: classes/pref/prefs.php:431
  1470. msgid "Enable OTP"
  1471. msgstr ""
  1472. #: classes/pref/prefs.php:477
  1473. msgid "Some preferences are only available in default profile."
  1474. msgstr ""
  1475. #: classes/pref/prefs.php:587
  1476. msgid "Customize"
  1477. msgstr ""
  1478. #: classes/pref/prefs.php:647
  1479. msgid "Register"
  1480. msgstr ""
  1481. #: classes/pref/prefs.php:651
  1482. msgid "Clear"
  1483. msgstr ""
  1484. #: classes/pref/prefs.php:657
  1485. #, php-format
  1486. msgid "Current server time: %s (UTC)"
  1487. msgstr ""
  1488. #: classes/pref/prefs.php:690
  1489. msgid "Save configuration"
  1490. msgstr ""
  1491. #: classes/pref/prefs.php:694
  1492. msgid "Save and exit preferences"
  1493. msgstr ""
  1494. #: classes/pref/prefs.php:699
  1495. msgid "Manage profiles"
  1496. msgstr ""
  1497. #: classes/pref/prefs.php:702
  1498. msgid "Reset to defaults"
  1499. msgstr ""
  1500. #: classes/pref/prefs.php:726 classes/pref/prefs.php:728
  1501. msgid "Plugins"
  1502. msgstr ""
  1503. #: classes/pref/prefs.php:730
  1504. msgid ""
  1505. "You will need to reload Tiny Tiny RSS for plugin changes to take effect."
  1506. msgstr ""
  1507. #: classes/pref/prefs.php:732
  1508. msgid ""
  1509. "Download more plugins at tt-rss.org <a class=\"visibleLink\" target=\"_blank"
  1510. "\" href=\"http://tt-rss.org/forum/viewforum.php?f=22\">forums</a> or <a "
  1511. "target=\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins"
  1512. "\">wiki</a>."
  1513. msgstr ""
  1514. #: classes/pref/prefs.php:758
  1515. msgid "System plugins"
  1516. msgstr ""
  1517. #: classes/pref/prefs.php:762 classes/pref/prefs.php:816
  1518. msgid "Plugin"
  1519. msgstr ""
  1520. #: classes/pref/prefs.php:763 classes/pref/prefs.php:817
  1521. msgid "Description"
  1522. msgstr ""
  1523. #: classes/pref/prefs.php:764 classes/pref/prefs.php:818
  1524. msgid "Version"
  1525. msgstr ""
  1526. #: classes/pref/prefs.php:765 classes/pref/prefs.php:819
  1527. msgid "Author"
  1528. msgstr ""
  1529. #: classes/pref/prefs.php:794 classes/pref/prefs.php:851
  1530. msgid "more info"
  1531. msgstr ""
  1532. #: classes/pref/prefs.php:803 classes/pref/prefs.php:860
  1533. msgid "Clear data"
  1534. msgstr ""
  1535. #: classes/pref/prefs.php:812
  1536. msgid "User plugins"
  1537. msgstr ""
  1538. #: classes/pref/prefs.php:875
  1539. msgid "Enable selected plugins"
  1540. msgstr ""
  1541. #: classes/pref/prefs.php:930 classes/pref/prefs.php:948
  1542. msgid "Incorrect password"
  1543. msgstr ""
  1544. #: classes/pref/prefs.php:974
  1545. #, php-format
  1546. msgid ""
  1547. "You can override colors, fonts and layout of your currently selected theme "
  1548. "with custom CSS declarations here. <a target=\"_blank\" class=\"visibleLink"
  1549. "\" href=\"%s\">This file</a> can be used as a baseline."
  1550. msgstr ""
  1551. #: classes/pref/prefs.php:1014
  1552. msgid "Create profile"
  1553. msgstr ""
  1554. #: classes/pref/prefs.php:1037 classes/pref/prefs.php:1067
  1555. msgid "(active)"
  1556. msgstr ""
  1557. #: classes/pref/prefs.php:1101
  1558. msgid "Remove selected profiles"
  1559. msgstr ""
  1560. #: classes/pref/prefs.php:1103
  1561. msgid "Activate profile"
  1562. msgstr ""
  1563. #: classes/pref/feeds.php:13
  1564. msgid "Check to enable field"
  1565. msgstr ""
  1566. #: classes/pref/feeds.php:544
  1567. msgid "Feed Title"
  1568. msgstr ""
  1569. #: classes/pref/feeds.php:585 classes/pref/feeds.php:810
  1570. msgid "Update"
  1571. msgstr ""
  1572. #: classes/pref/feeds.php:600 classes/pref/feeds.php:826
  1573. msgid "Article purging:"
  1574. msgstr ""
  1575. #: classes/pref/feeds.php:623
  1576. msgid ""
  1577. "<b>Hint:</b> you need to fill in your login information if your feed "
  1578. "requires authentication, except for Twitter feeds."
  1579. msgstr ""
  1580. #: classes/pref/feeds.php:639 classes/pref/feeds.php:855
  1581. msgid "Hide from Popular feeds"
  1582. msgstr ""
  1583. #: classes/pref/feeds.php:651 classes/pref/feeds.php:861
  1584. msgid "Include in e-mail digest"
  1585. msgstr ""
  1586. #: classes/pref/feeds.php:664 classes/pref/feeds.php:867
  1587. msgid "Always display image attachments"
  1588. msgstr ""
  1589. #: classes/pref/feeds.php:677 classes/pref/feeds.php:875
  1590. msgid "Do not embed images"
  1591. msgstr ""
  1592. #: classes/pref/feeds.php:690 classes/pref/feeds.php:883
  1593. msgid "Cache images locally"
  1594. msgstr ""
  1595. #: classes/pref/feeds.php:702 classes/pref/feeds.php:889
  1596. msgid "Mark updated articles as unread"
  1597. msgstr ""
  1598. #: classes/pref/feeds.php:708
  1599. msgid "Icon"
  1600. msgstr ""
  1601. #: classes/pref/feeds.php:722
  1602. msgid "Replace"
  1603. msgstr ""
  1604. #: classes/pref/feeds.php:741
  1605. msgid "Resubscribe to push updates"
  1606. msgstr ""
  1607. #: classes/pref/feeds.php:748
  1608. msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
  1609. msgstr ""
  1610. #: classes/pref/feeds.php:1129 classes/pref/feeds.php:1182
  1611. msgid "All done."
  1612. msgstr ""
  1613. #: classes/pref/feeds.php:1237
  1614. msgid "Feeds with errors"
  1615. msgstr ""
  1616. #: classes/pref/feeds.php:1257
  1617. msgid "Inactive feeds"
  1618. msgstr ""
  1619. #: classes/pref/feeds.php:1294
  1620. msgid "Edit selected feeds"
  1621. msgstr ""
  1622. #: classes/pref/feeds.php:1298 js/prefs.js:1765
  1623. msgid "Batch subscribe"
  1624. msgstr ""
  1625. #: classes/pref/feeds.php:1305
  1626. msgid "Categories"
  1627. msgstr ""
  1628. #: classes/pref/feeds.php:1308
  1629. msgid "Add category"
  1630. msgstr ""
  1631. #: classes/pref/feeds.php:1312
  1632. msgid "Remove selected"
  1633. msgstr ""
  1634. #: classes/pref/feeds.php:1321
  1635. msgid "(Un)hide empty categories"
  1636. msgstr ""
  1637. #: classes/pref/feeds.php:1326
  1638. msgid "More actions..."
  1639. msgstr ""
  1640. #: classes/pref/feeds.php:1330
  1641. msgid "Manual purge"
  1642. msgstr ""
  1643. #: classes/pref/feeds.php:1334
  1644. msgid "Clear feed data"
  1645. msgstr ""
  1646. #: classes/pref/feeds.php:1385
  1647. msgid "OPML"
  1648. msgstr ""
  1649. #: classes/pref/feeds.php:1387
  1650. msgid ""
  1651. "Using OPML you can export and import your feeds, filters, labels and Tiny "
  1652. "Tiny RSS settings."
  1653. msgstr ""
  1654. #: classes/pref/feeds.php:1389
  1655. msgid "Only main settings profile can be migrated using OPML."
  1656. msgstr ""
  1657. #: classes/pref/feeds.php:1402
  1658. msgid "Import my OPML"
  1659. msgstr ""
  1660. #: classes/pref/feeds.php:1406
  1661. msgid "Filename:"
  1662. msgstr ""
  1663. #: classes/pref/feeds.php:1408
  1664. msgid "Include settings"
  1665. msgstr ""
  1666. #: classes/pref/feeds.php:1412
  1667. msgid "Export OPML"
  1668. msgstr ""
  1669. #: classes/pref/feeds.php:1416
  1670. msgid ""
  1671. "Your OPML can be published publicly and can be subscribed by anyone who "
  1672. "knows the URL below."
  1673. msgstr ""
  1674. #: classes/pref/feeds.php:1418
  1675. msgid ""
  1676. "Published OPML does not include your Tiny Tiny RSS settings, feeds that "
  1677. "require authentication or feeds hidden from Popular feeds."
  1678. msgstr ""
  1679. #: classes/pref/feeds.php:1420
  1680. msgid "Public OPML URL"
  1681. msgstr ""
  1682. #: classes/pref/feeds.php:1421
  1683. msgid "Display published OPML URL"
  1684. msgstr ""
  1685. #: classes/pref/feeds.php:1431
  1686. msgid "Firefox integration"
  1687. msgstr ""
  1688. #: classes/pref/feeds.php:1433
  1689. msgid ""
  1690. "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the "
  1691. "link below."
  1692. msgstr ""
  1693. #: classes/pref/feeds.php:1440
  1694. msgid "Click here to register this site as a feed reader."
  1695. msgstr ""
  1696. #: classes/pref/feeds.php:1448
  1697. msgid "Published & shared articles / Generated feeds"
  1698. msgstr ""
  1699. #: classes/pref/feeds.php:1450
  1700. msgid "Published articles and generated feeds"
  1701. msgstr ""
  1702. #: classes/pref/feeds.php:1452
  1703. msgid ""
  1704. "Published articles are exported as a public RSS feed and can be subscribed "
  1705. "by anyone who knows the URL specified below."
  1706. msgstr ""
  1707. #: classes/pref/feeds.php:1458
  1708. msgid "Display URL"
  1709. msgstr ""
  1710. #: classes/pref/feeds.php:1461
  1711. msgid "Clear all generated URLs"
  1712. msgstr ""
  1713. #: classes/pref/feeds.php:1463
  1714. msgid "Articles shared by URL"
  1715. msgstr ""
  1716. #: classes/pref/feeds.php:1465
  1717. msgid "You can disable all articles shared by unique URLs here."
  1718. msgstr ""
  1719. #: classes/pref/feeds.php:1468
  1720. msgid "Unshare all articles"
  1721. msgstr ""
  1722. #: classes/pref/feeds.php:1546
  1723. msgid ""
  1724. "These feeds have not been updated with new content for 3 months (oldest "
  1725. "first):"
  1726. msgstr ""
  1727. #: classes/pref/feeds.php:1583 classes/pref/feeds.php:1653
  1728. msgid "Click to edit feed"
  1729. msgstr ""
  1730. #: classes/pref/feeds.php:1601 classes/pref/feeds.php:1673
  1731. msgid "Unsubscribe from selected feeds"
  1732. msgstr ""
  1733. #: classes/pref/feeds.php:1612
  1734. msgid "These feeds have not been updated because of errors:"
  1735. msgstr ""
  1736. #: classes/pref/feeds.php:1778
  1737. msgid "Add one valid RSS feed per line (no feed detection is done)"
  1738. msgstr ""
  1739. #: classes/pref/feeds.php:1787
  1740. msgid "Feeds to subscribe, One per line"
  1741. msgstr ""
  1742. #: classes/pref/feeds.php:1809
  1743. msgid "Feeds require authentication."
  1744. msgstr ""
  1745. #: plugins/digest/digest_body.php:59
  1746. msgid ""
  1747. "Your browser doesn't support Javascript, which is required for this "
  1748. "application to function properly. Please check your browser settings."
  1749. msgstr ""
  1750. #: plugins/digest/digest_body.php:74
  1751. msgid "Hello,"
  1752. msgstr ""
  1753. #: plugins/digest/digest_body.php:80
  1754. msgid "Regular version"
  1755. msgstr ""
  1756. #: plugins/close_button/init.php:24
  1757. msgid "Close article"
  1758. msgstr ""
  1759. #: plugins/nsfw/init.php:32 plugins/nsfw/init.php:43
  1760. msgid "Not work safe (click to toggle)"
  1761. msgstr ""
  1762. #: plugins/nsfw/init.php:53
  1763. msgid "NSFW Plugin"
  1764. msgstr ""
  1765. #: plugins/nsfw/init.php:80
  1766. msgid "Tags to consider NSFW (comma-separated)"
  1767. msgstr ""
  1768. #: plugins/nsfw/init.php:101
  1769. msgid "Configuration saved."
  1770. msgstr ""
  1771. #: plugins/auth_internal/init.php:62
  1772. msgid "Please enter your one time password:"
  1773. msgstr ""
  1774. #: plugins/auth_internal/init.php:185
  1775. msgid "Password has been changed."
  1776. msgstr ""
  1777. #: plugins/auth_internal/init.php:187
  1778. msgid "Old password is incorrect."
  1779. msgstr ""
  1780. #: plugins/mobile/mobile-functions.php:61
  1781. #: plugins/mobile/mobile-functions.php:137
  1782. #: plugins/mobile/mobile-functions.php:173
  1783. #: plugins/mobile/mobile-functions.php:200
  1784. #: plugins/mobile/mobile-functions.php:236
  1785. #: plugins/mobile/mobile-functions.php:373 plugins/mobile/prefs.php:29
  1786. msgid "Home"
  1787. msgstr ""
  1788. #: plugins/mobile/mobile-functions.php:409
  1789. msgid "Nothing found (click to reload feed)."
  1790. msgstr ""
  1791. #: plugins/mobile/login_form.php:52
  1792. msgid "Open regular version"
  1793. msgstr ""
  1794. #: plugins/mobile/prefs.php:34
  1795. msgid "Enable categories"
  1796. msgstr ""
  1797. #: plugins/mobile/prefs.php:35 plugins/mobile/prefs.php:40
  1798. #: plugins/mobile/prefs.php:46 plugins/mobile/prefs.php:51
  1799. #: plugins/mobile/prefs.php:56 plugins/mobile/prefs.php:61
  1800. msgid "ON"
  1801. msgstr ""
  1802. #: plugins/mobile/prefs.php:35 plugins/mobile/prefs.php:40
  1803. #: plugins/mobile/prefs.php:46 plugins/mobile/prefs.php:51
  1804. #: plugins/mobile/prefs.php:56 plugins/mobile/prefs.php:61
  1805. msgid "OFF"
  1806. msgstr ""
  1807. #: plugins/mobile/prefs.php:39
  1808. msgid "Browse categories like folders"
  1809. msgstr ""
  1810. #: plugins/mobile/prefs.php:45
  1811. msgid "Show images in posts"
  1812. msgstr ""
  1813. #: plugins/mobile/prefs.php:50
  1814. msgid "Hide read articles and feeds"
  1815. msgstr ""
  1816. #: plugins/mobile/prefs.php:55
  1817. msgid "Sort feeds by unread count"
  1818. msgstr ""
  1819. #: plugins/mailto/init.php:52 plugins/mailto/init.php:58
  1820. #: plugins/mail/init.php:66 plugins/mail/init.php:72
  1821. msgid "[Forwarded]"
  1822. msgstr ""
  1823. #: plugins/mailto/init.php:52 plugins/mail/init.php:66
  1824. msgid "Multiple articles"
  1825. msgstr ""
  1826. #: plugins/mailto/init.php:74
  1827. msgid "Clicking the following link to invoke your mail client:"
  1828. msgstr ""
  1829. #: plugins/mailto/init.php:78
  1830. msgid "Forward selected article(s) by email."
  1831. msgstr ""
  1832. #: plugins/mailto/init.php:81
  1833. msgid ""
  1834. "You should be able to edit the message before sending in your mail client."
  1835. msgstr ""
  1836. #: plugins/mailto/init.php:86
  1837. msgid "Close this dialog"
  1838. msgstr ""
  1839. #: plugins/bookmarklets/init.php:22
  1840. msgid "Bookmarklets"
  1841. msgstr ""
  1842. #: plugins/bookmarklets/init.php:24
  1843. msgid ""
  1844. "Drag the link below to your browser toolbar, open the feed you're interested "
  1845. "in in your browser and click on the link to subscribe to it."
  1846. msgstr ""
  1847. #: plugins/bookmarklets/init.php:28
  1848. #, php-format
  1849. msgid "Subscribe to %s in Tiny Tiny RSS?"
  1850. msgstr ""
  1851. #: plugins/bookmarklets/init.php:32
  1852. msgid "Subscribe in Tiny Tiny RSS"
  1853. msgstr ""
  1854. #: plugins/bookmarklets/init.php:34
  1855. msgid "Use this bookmarklet to publish arbitrary pages using Tiny Tiny RSS"
  1856. msgstr ""
  1857. #: plugins/import_export/init.php:61
  1858. msgid "Import and export"
  1859. msgstr ""
  1860. #: plugins/import_export/init.php:63
  1861. msgid "Article archive"
  1862. msgstr ""
  1863. #: plugins/import_export/init.php:65
  1864. msgid ""
  1865. "You can export and import your Starred and Archived articles for safekeeping "
  1866. "or when migrating between tt-rss instances."
  1867. msgstr ""
  1868. #: plugins/import_export/init.php:68
  1869. msgid "Export my data"
  1870. msgstr ""
  1871. #: plugins/import_export/init.php:84
  1872. msgid "Import"
  1873. msgstr ""
  1874. #: plugins/import_export/init.php:220
  1875. msgid "Could not import: incorrect schema version."
  1876. msgstr ""
  1877. #: plugins/import_export/init.php:225
  1878. msgid "Could not import: unrecognized document format."
  1879. msgstr ""
  1880. #: plugins/import_export/init.php:384
  1881. msgid "Finished: "
  1882. msgstr ""
  1883. #: plugins/import_export/init.php:385
  1884. #, php-format
  1885. msgid "%d article processed, "
  1886. msgid_plural "%d articles processed, "
  1887. msgstr[0] ""
  1888. msgstr[1] ""
  1889. #: plugins/import_export/init.php:386
  1890. #, php-format
  1891. msgid "%d imported, "
  1892. msgid_plural "%d imported, "
  1893. msgstr[0] ""
  1894. msgstr[1] ""
  1895. #: plugins/import_export/init.php:387
  1896. #, php-format
  1897. msgid "%d feed created."
  1898. msgid_plural "%d feeds created."
  1899. msgstr[0] ""
  1900. msgstr[1] ""
  1901. #: plugins/import_export/init.php:392
  1902. msgid "Could not load XML document."
  1903. msgstr ""
  1904. #: plugins/import_export/init.php:404
  1905. msgid "Prepare data"
  1906. msgstr ""
  1907. #: plugins/import_export/init.php:447 plugins/googlereaderimport/init.php:96
  1908. msgid "No file uploaded."
  1909. msgstr ""
  1910. #: plugins/mail/init.php:87
  1911. msgid "From:"
  1912. msgstr ""
  1913. #: plugins/mail/init.php:96
  1914. msgid "To:"
  1915. msgstr ""
  1916. #: plugins/mail/init.php:109
  1917. msgid "Subject:"
  1918. msgstr ""
  1919. #: plugins/mail/init.php:125
  1920. msgid "Send e-mail"
  1921. msgstr ""
  1922. #: plugins/note/init.php:28 plugins/note/note.js:11
  1923. msgid "Edit article note"
  1924. msgstr ""
  1925. #: plugins/example/init.php:39
  1926. msgid "Example Pane"
  1927. msgstr ""
  1928. #: plugins/example/init.php:70
  1929. msgid "Sample value"
  1930. msgstr ""
  1931. #: plugins/example/init.php:76
  1932. msgid "Set value"
  1933. msgstr ""
  1934. #: plugins/googlereaderimport/init.php:182
  1935. #, php-format
  1936. msgid "All done. %d out of %d articles imported."
  1937. msgstr ""
  1938. #: plugins/googlereaderimport/init.php:186
  1939. msgid "The document has incorrect format."
  1940. msgstr ""
  1941. #: plugins/googlereaderimport/init.php:357
  1942. msgid "Import starred or shared items from Google Reader"
  1943. msgstr ""
  1944. #: plugins/googlereaderimport/init.php:361
  1945. msgid "Paste your starred.json or shared.json into the form below."
  1946. msgstr ""
  1947. #: plugins/googlereaderimport/init.php:375
  1948. msgid "Import my Starred items"
  1949. msgstr ""
  1950. #: plugins/instances/init.php:144
  1951. msgid "Linked"
  1952. msgstr ""
  1953. #: plugins/instances/init.php:207 plugins/instances/init.php:399
  1954. msgid "Instance"
  1955. msgstr ""
  1956. #: plugins/instances/init.php:218 plugins/instances/init.php:315
  1957. #: plugins/instances/init.php:408
  1958. msgid "Instance URL"
  1959. msgstr ""
  1960. #: plugins/instances/init.php:229 plugins/instances/init.php:418
  1961. msgid "Access key:"
  1962. msgstr ""
  1963. #: plugins/instances/init.php:232 plugins/instances/init.php:316
  1964. #: plugins/instances/init.php:421
  1965. msgid "Access key"
  1966. msgstr ""
  1967. #: plugins/instances/init.php:236 plugins/instances/init.php:425
  1968. msgid "Use one access key for both linked instances."
  1969. msgstr ""
  1970. #: plugins/instances/init.php:244 plugins/instances/init.php:433
  1971. msgid "Generate new key"
  1972. msgstr ""
  1973. #: plugins/instances/init.php:295
  1974. msgid "Link instance"
  1975. msgstr ""
  1976. #: plugins/instances/init.php:307
  1977. msgid ""
  1978. "You can connect other instances of Tiny Tiny RSS to this one to share "
  1979. "Popular feeds. Link to this instance of Tiny Tiny RSS by using this URL:"
  1980. msgstr ""
  1981. #: plugins/instances/init.php:317
  1982. msgid "Last connected"
  1983. msgstr ""
  1984. #: plugins/instances/init.php:318
  1985. msgid "Status"
  1986. msgstr ""
  1987. #: plugins/instances/init.php:319
  1988. msgid "Stored feeds"
  1989. msgstr ""
  1990. #: plugins/instances/init.php:437
  1991. msgid "Create link"
  1992. msgstr ""
  1993. #: plugins/share/init.php:27
  1994. msgid "Share by URL"
  1995. msgstr ""
  1996. #: plugins/share/init.php:49
  1997. msgid "You can share this article by the following unique URL:"
  1998. msgstr ""
  1999. #: plugins/updater/init.php:323 plugins/updater/init.php:340
  2000. #: plugins/updater/updater.js:10
  2001. msgid "Update Tiny Tiny RSS"
  2002. msgstr ""
  2003. #: plugins/updater/init.php:343
  2004. msgid "Your Tiny Tiny RSS installation is up to date."
  2005. msgstr ""
  2006. #: plugins/updater/init.php:351
  2007. msgid "Do not close this dialog until updating is finished."
  2008. msgstr ""
  2009. #: plugins/updater/init.php:360
  2010. msgid "It is suggested to backup your tt-rss directory first."
  2011. msgstr ""
  2012. #: plugins/updater/init.php:361
  2013. msgid "Your database will not be modified."
  2014. msgstr ""
  2015. #: plugins/updater/init.php:362
  2016. msgid ""
  2017. "Your current tt-rss installation directory will not be modified. It will be "
  2018. "renamed and left in the parent directory. You will be able to migrate all "
  2019. "your customized files after update finishes."
  2020. msgstr ""
  2021. #: plugins/updater/init.php:363
  2022. msgid "Ready to update."
  2023. msgstr ""
  2024. #: plugins/updater/init.php:368
  2025. msgid "Start update"
  2026. msgstr ""
  2027. #: js/feedlist.js:394 js/feedlist.js:422 plugins/digest/digest.js:26
  2028. msgid "Mark all articles in %s as read?"
  2029. msgstr ""
  2030. #: js/feedlist.js:413
  2031. msgid "Mark all articles in %s older than 1 day as read?"
  2032. msgstr ""
  2033. #: js/feedlist.js:416
  2034. msgid "Mark all articles in %s older than 1 week as read?"
  2035. msgstr ""
  2036. #: js/feedlist.js:419
  2037. msgid "Mark all articles in %s older than 2 weeks as read?"
  2038. msgstr ""
  2039. #: js/functions.js:92
  2040. msgid ""
  2041. "Are you sure to report this exception to tt-rss.org? The report will include "
  2042. "your browser information. Your IP would be saved in the database."
  2043. msgstr ""
  2044. #: js/functions.js:214
  2045. msgid "close"
  2046. msgstr ""
  2047. #: js/functions.js:586
  2048. msgid "Error explained"
  2049. msgstr ""
  2050. #: js/functions.js:668
  2051. msgid "Upload complete."
  2052. msgstr ""
  2053. #: js/functions.js:692
  2054. msgid "Remove stored feed icon?"
  2055. msgstr ""
  2056. #: js/functions.js:697
  2057. msgid "Removing feed icon..."
  2058. msgstr ""
  2059. #: js/functions.js:702
  2060. msgid "Feed icon removed."
  2061. msgstr ""
  2062. #: js/functions.js:724
  2063. msgid "Please select an image file to upload."
  2064. msgstr ""
  2065. #: js/functions.js:726
  2066. msgid "Upload new icon for this feed?"
  2067. msgstr ""
  2068. #: js/functions.js:727
  2069. msgid "Uploading, please wait..."
  2070. msgstr ""
  2071. #: js/functions.js:743
  2072. msgid "Please enter label caption:"
  2073. msgstr ""
  2074. #: js/functions.js:748
  2075. msgid "Can't create label: missing caption."
  2076. msgstr ""
  2077. #: js/functions.js:791
  2078. msgid "Subscribe to Feed"
  2079. msgstr ""
  2080. #: js/functions.js:818
  2081. msgid "Subscribed to %s"
  2082. msgstr ""
  2083. #: js/functions.js:823
  2084. msgid "Specified URL seems to be invalid."
  2085. msgstr ""
  2086. #: js/functions.js:826
  2087. msgid "Specified URL doesn't seem to contain any feeds."
  2088. msgstr ""
  2089. #: js/functions.js:879
  2090. msgid "Couldn't download the specified URL: %s"
  2091. msgstr ""
  2092. #: js/functions.js:883
  2093. msgid "You are already subscribed to this feed."
  2094. msgstr ""
  2095. #: js/functions.js:1013
  2096. msgid "Edit rule"
  2097. msgstr ""
  2098. #: js/functions.js:1039
  2099. msgid "Edit action"
  2100. msgstr ""
  2101. #: js/functions.js:1076
  2102. msgid "Create Filter"
  2103. msgstr ""
  2104. #: js/functions.js:1191
  2105. msgid ""
  2106. "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification "
  2107. "hub again on next feed update."
  2108. msgstr ""
  2109. #: js/functions.js:1202
  2110. msgid "Subscription reset."
  2111. msgstr ""
  2112. #: js/functions.js:1212 js/tt-rss.js:641
  2113. msgid "Unsubscribe from %s?"
  2114. msgstr ""
  2115. #: js/functions.js:1215
  2116. msgid "Removing feed..."
  2117. msgstr ""
  2118. #: js/functions.js:1323
  2119. msgid "Please enter category title:"
  2120. msgstr ""
  2121. #: js/functions.js:1354
  2122. msgid "Generate new syndication address for this feed?"
  2123. msgstr ""
  2124. #: js/functions.js:1358 js/prefs.js:1217
  2125. msgid "Trying to change address..."
  2126. msgstr ""
  2127. #: js/functions.js:1545 js/tt-rss.js:412 js/tt-rss.js:622
  2128. msgid "You can't edit this kind of feed."
  2129. msgstr ""
  2130. #: js/functions.js:1560
  2131. msgid "Edit Feed"
  2132. msgstr ""
  2133. #: js/functions.js:1566 js/prefs.js:194 js/prefs.js:749
  2134. msgid "Saving data..."
  2135. msgstr ""
  2136. #: js/functions.js:1598
  2137. msgid "More Feeds"
  2138. msgstr ""
  2139. #: js/functions.js:1659 js/functions.js:1769 js/prefs.js:397 js/prefs.js:427
  2140. #: js/prefs.js:459 js/prefs.js:642 js/prefs.js:662 js/prefs.js:1193
  2141. #: js/prefs.js:1338
  2142. msgid "No feeds are selected."
  2143. msgstr ""
  2144. #: js/functions.js:1701
  2145. msgid ""
  2146. "Remove selected feeds from the archive? Feeds with stored articles will not "
  2147. "be removed."
  2148. msgstr ""
  2149. #: js/functions.js:1740
  2150. msgid "Feeds with update errors"
  2151. msgstr ""
  2152. #: js/functions.js:1751 js/prefs.js:1175
  2153. msgid "Remove selected feeds?"
  2154. msgstr ""
  2155. #: js/functions.js:1754 js/prefs.js:1178
  2156. msgid "Removing selected feeds..."
  2157. msgstr ""
  2158. #: js/functions.js:1852
  2159. msgid "Help"
  2160. msgstr ""
  2161. #: js/PrefFeedTree.js:47
  2162. msgid "Edit category"
  2163. msgstr ""
  2164. #: js/PrefFeedTree.js:54
  2165. msgid "Remove category"
  2166. msgstr ""
  2167. #: js/PrefFilterTree.js:48
  2168. msgid "Inverse"
  2169. msgstr ""
  2170. #: js/prefs.js:55
  2171. msgid "Please enter login:"
  2172. msgstr ""
  2173. #: js/prefs.js:62
  2174. msgid "Can't create user: no login specified."
  2175. msgstr ""
  2176. #: js/prefs.js:66
  2177. msgid "Adding user..."
  2178. msgstr ""
  2179. #: js/prefs.js:94
  2180. msgid "User Editor"
  2181. msgstr ""
  2182. #: js/prefs.js:117
  2183. msgid "Edit Filter"
  2184. msgstr ""
  2185. #: js/prefs.js:164
  2186. msgid "Remove filter?"
  2187. msgstr ""
  2188. #: js/prefs.js:169
  2189. msgid "Removing filter..."
  2190. msgstr ""
  2191. #: js/prefs.js:279
  2192. msgid "Remove selected labels?"
  2193. msgstr ""
  2194. #: js/prefs.js:282
  2195. msgid "Removing selected labels..."
  2196. msgstr ""
  2197. #: js/prefs.js:295 js/prefs.js:1379
  2198. msgid "No labels are selected."
  2199. msgstr ""
  2200. #: js/prefs.js:309
  2201. msgid ""
  2202. "Remove selected users? Neither default admin nor your account will be "
  2203. "removed."
  2204. msgstr ""
  2205. #: js/prefs.js:312
  2206. msgid "Removing selected users..."
  2207. msgstr ""
  2208. #: js/prefs.js:326 js/prefs.js:507 js/prefs.js:528 js/prefs.js:567
  2209. msgid "No users are selected."
  2210. msgstr ""
  2211. #: js/prefs.js:344
  2212. msgid "Remove selected filters?"
  2213. msgstr ""
  2214. #: js/prefs.js:347
  2215. msgid "Removing selected filters..."
  2216. msgstr ""
  2217. #: js/prefs.js:359 js/prefs.js:597 js/prefs.js:616
  2218. msgid "No filters are selected."
  2219. msgstr ""
  2220. #: js/prefs.js:378
  2221. msgid "Unsubscribe from selected feeds?"
  2222. msgstr ""
  2223. #: js/prefs.js:382
  2224. msgid "Unsubscribing from selected feeds..."
  2225. msgstr ""
  2226. #: js/prefs.js:412
  2227. msgid "Please select only one feed."
  2228. msgstr ""
  2229. #: js/prefs.js:418
  2230. msgid "Erase all non-starred articles in selected feed?"
  2231. msgstr ""
  2232. #: js/prefs.js:421
  2233. msgid "Clearing selected feed..."
  2234. msgstr ""
  2235. #: js/prefs.js:440
  2236. msgid "How many days of articles to keep (0 - use default)?"
  2237. msgstr ""
  2238. #: js/prefs.js:443
  2239. msgid "Purging selected feed..."
  2240. msgstr ""
  2241. #: js/prefs.js:478
  2242. msgid "Login field cannot be blank."
  2243. msgstr ""
  2244. #: js/prefs.js:482
  2245. msgid "Saving user..."
  2246. msgstr ""
  2247. #: js/prefs.js:512 js/prefs.js:533 js/prefs.js:572
  2248. msgid "Please select only one user."
  2249. msgstr ""
  2250. #: js/prefs.js:537
  2251. msgid "Reset password of selected user?"
  2252. msgstr ""
  2253. #: js/prefs.js:540
  2254. msgid "Resetting password for selected user..."
  2255. msgstr ""
  2256. #: js/prefs.js:585
  2257. msgid "User details"
  2258. msgstr ""
  2259. #: js/prefs.js:602
  2260. msgid "Please select only one filter."
  2261. msgstr ""
  2262. #: js/prefs.js:620
  2263. msgid "Combine selected filters?"
  2264. msgstr ""
  2265. #: js/prefs.js:623
  2266. msgid "Joining filters..."
  2267. msgstr ""
  2268. #: js/prefs.js:684
  2269. msgid "Edit Multiple Feeds"
  2270. msgstr ""
  2271. #: js/prefs.js:708
  2272. msgid "Save changes to selected feeds?"
  2273. msgstr ""
  2274. #: js/prefs.js:785
  2275. msgid "OPML Import"
  2276. msgstr ""
  2277. #: js/prefs.js:812
  2278. msgid "Please choose an OPML file first."
  2279. msgstr ""
  2280. #: js/prefs.js:815 plugins/import_export/import_export.js:115
  2281. #: plugins/googlereaderimport/init.js:45
  2282. msgid "Importing, please wait..."
  2283. msgstr ""
  2284. #: js/prefs.js:968
  2285. msgid "Reset to defaults?"
  2286. msgstr ""
  2287. #: js/prefs.js:1082
  2288. msgid ""
  2289. "Remove category %s? Any nested feeds would be placed into Uncategorized."
  2290. msgstr ""
  2291. #: js/prefs.js:1088
  2292. msgid "Removing category..."
  2293. msgstr ""
  2294. #: js/prefs.js:1109
  2295. msgid "Remove selected categories?"
  2296. msgstr ""
  2297. #: js/prefs.js:1112
  2298. msgid "Removing selected categories..."
  2299. msgstr ""
  2300. #: js/prefs.js:1125
  2301. msgid "No categories are selected."
  2302. msgstr ""
  2303. #: js/prefs.js:1133
  2304. msgid "Category title:"
  2305. msgstr ""
  2306. #: js/prefs.js:1137
  2307. msgid "Creating category..."
  2308. msgstr ""
  2309. #: js/prefs.js:1164
  2310. msgid "Feeds without recent updates"
  2311. msgstr ""
  2312. #: js/prefs.js:1213
  2313. msgid "Replace current OPML publishing address with a new one?"
  2314. msgstr ""
  2315. #: js/prefs.js:1302
  2316. msgid "Clearing feed..."
  2317. msgstr ""
  2318. #: js/prefs.js:1322
  2319. msgid "Rescore articles in selected feeds?"
  2320. msgstr ""
  2321. #: js/prefs.js:1325
  2322. msgid "Rescoring selected feeds..."
  2323. msgstr ""
  2324. #: js/prefs.js:1345
  2325. msgid "Rescore all articles? This operation may take a lot of time."
  2326. msgstr ""
  2327. #: js/prefs.js:1348
  2328. msgid "Rescoring feeds..."
  2329. msgstr ""
  2330. #: js/prefs.js:1365
  2331. msgid "Reset selected labels to default colors?"
  2332. msgstr ""
  2333. #: js/prefs.js:1402
  2334. msgid "Settings Profiles"
  2335. msgstr ""
  2336. #: js/prefs.js:1411
  2337. msgid ""
  2338. "Remove selected profiles? Active and default profiles will not be removed."
  2339. msgstr ""
  2340. #: js/prefs.js:1414
  2341. msgid "Removing selected profiles..."
  2342. msgstr ""
  2343. #: js/prefs.js:1429
  2344. msgid "No profiles are selected."
  2345. msgstr ""
  2346. #: js/prefs.js:1437 js/prefs.js:1490
  2347. msgid "Activate selected profile?"
  2348. msgstr ""
  2349. #: js/prefs.js:1453 js/prefs.js:1506
  2350. msgid "Please choose a profile to activate."
  2351. msgstr ""
  2352. #: js/prefs.js:1458
  2353. msgid "Creating profile..."
  2354. msgstr ""
  2355. #: js/prefs.js:1514
  2356. msgid "This will invalidate all previously generated feed URLs. Continue?"
  2357. msgstr ""
  2358. #: js/prefs.js:1517 js/prefs.js:1536
  2359. msgid "Clearing URLs..."
  2360. msgstr ""
  2361. #: js/prefs.js:1524
  2362. msgid "Generated URLs cleared."
  2363. msgstr ""
  2364. #: js/prefs.js:1533
  2365. msgid "This will invalidate all previously shared article URLs. Continue?"
  2366. msgstr ""
  2367. #: js/prefs.js:1543
  2368. msgid "Shared URLs cleared."
  2369. msgstr ""
  2370. #: js/prefs.js:1649
  2371. msgid "Label Editor"
  2372. msgstr ""
  2373. #: js/prefs.js:1771
  2374. msgid "Subscribing to feeds..."
  2375. msgstr ""
  2376. #: js/prefs.js:1808
  2377. msgid "Clear stored data for this plugin?"
  2378. msgstr ""
  2379. #: js/tt-rss.js:124
  2380. msgid "Mark all articles as read?"
  2381. msgstr ""
  2382. #: js/tt-rss.js:130
  2383. msgid "Marking all feeds as read..."
  2384. msgstr ""
  2385. #: js/tt-rss.js:371
  2386. msgid "Please enable mail plugin first."
  2387. msgstr ""
  2388. #: js/tt-rss.js:483
  2389. msgid "Please enable embed_original plugin first."
  2390. msgstr ""
  2391. #: js/tt-rss.js:609
  2392. msgid "Select item(s) by tags"
  2393. msgstr ""
  2394. #: js/tt-rss.js:630
  2395. msgid "You can't unsubscribe from the category."
  2396. msgstr ""
  2397. #: js/tt-rss.js:635 js/tt-rss.js:787
  2398. msgid "Please select some feed first."
  2399. msgstr ""
  2400. #: js/tt-rss.js:782
  2401. msgid "You can't rescore this kind of feed."
  2402. msgstr ""
  2403. #: js/tt-rss.js:792
  2404. msgid "Rescore articles in %s?"
  2405. msgstr ""
  2406. #: js/tt-rss.js:795
  2407. msgid "Rescoring articles..."
  2408. msgstr ""
  2409. #: js/tt-rss.js:929
  2410. msgid "New version available!"
  2411. msgstr ""
  2412. #: js/viewfeed.js:106
  2413. msgid "Cancel search"
  2414. msgstr ""
  2415. #: js/viewfeed.js:455 plugins/digest/digest.js:258
  2416. #: plugins/digest/digest.js:714
  2417. msgid "Unstar article"
  2418. msgstr ""
  2419. #: js/viewfeed.js:459 plugins/digest/digest.js:260
  2420. #: plugins/digest/digest.js:718
  2421. msgid "Star article"
  2422. msgstr ""
  2423. #: js/viewfeed.js:499 plugins/digest/digest.js:263
  2424. #: plugins/digest/digest.js:749
  2425. msgid "Unpublish article"
  2426. msgstr ""
  2427. #: js/viewfeed.js:503 plugins/digest/digest.js:265
  2428. #: plugins/digest/digest.js:754
  2429. msgid "Publish article"
  2430. msgstr ""
  2431. #: js/viewfeed.js:705 js/viewfeed.js:733 js/viewfeed.js:760 js/viewfeed.js:823
  2432. #: js/viewfeed.js:857 js/viewfeed.js:975 js/viewfeed.js:1018
  2433. #: js/viewfeed.js:1071 js/viewfeed.js:2106 plugins/mailto/init.js:7
  2434. #: plugins/mail/mail.js:7
  2435. msgid "No articles are selected."
  2436. msgstr ""
  2437. #: js/viewfeed.js:983
  2438. msgid "Delete %d selected article in %s?"
  2439. msgid_plural "Delete %d selected articles in %s?"
  2440. msgstr[0] ""
  2441. msgstr[1] ""
  2442. #: js/viewfeed.js:985
  2443. msgid "Delete %d selected article?"
  2444. msgid_plural "Delete %d selected articles?"
  2445. msgstr[0] ""
  2446. msgstr[1] ""
  2447. #: js/viewfeed.js:1027
  2448. msgid "Archive %d selected article in %s?"
  2449. msgid_plural "Archive %d selected articles in %s?"
  2450. msgstr[0] ""
  2451. msgstr[1] ""
  2452. #: js/viewfeed.js:1030
  2453. msgid "Move %d archived article back?"
  2454. msgid_plural "Move %d archived articles back?"
  2455. msgstr[0] ""
  2456. msgstr[1] ""
  2457. #: js/viewfeed.js:1032
  2458. msgid ""
  2459. "Please note that unstarred articles might get purged on next feed update."
  2460. msgstr ""
  2461. #: js/viewfeed.js:1077
  2462. msgid "Mark %d selected article in %s as read?"
  2463. msgid_plural "Mark %d selected articles in %s as read?"
  2464. msgstr[0] ""
  2465. msgstr[1] ""
  2466. #: js/viewfeed.js:1101
  2467. msgid "Edit article Tags"
  2468. msgstr ""
  2469. #: js/viewfeed.js:1107
  2470. msgid "Saving article tags..."
  2471. msgstr ""
  2472. #: js/viewfeed.js:1310
  2473. msgid "No article is selected."
  2474. msgstr ""
  2475. #: js/viewfeed.js:1345
  2476. msgid "No articles found to mark"
  2477. msgstr ""
  2478. #: js/viewfeed.js:1347
  2479. msgid "Mark %d article as read?"
  2480. msgid_plural "Mark %d articles as read?"
  2481. msgstr[0] ""
  2482. msgstr[1] ""
  2483. #: js/viewfeed.js:1882
  2484. msgid "Open original article"
  2485. msgstr ""
  2486. #: js/viewfeed.js:1888
  2487. msgid "Display article URL"
  2488. msgstr ""
  2489. #: js/viewfeed.js:1907
  2490. msgid "Toggle marked"
  2491. msgstr ""
  2492. #: js/viewfeed.js:1988
  2493. msgid "Assign label"
  2494. msgstr ""
  2495. #: js/viewfeed.js:1993
  2496. msgid "Remove label"
  2497. msgstr ""
  2498. #: js/viewfeed.js:2017
  2499. msgid "Playing..."
  2500. msgstr ""
  2501. #: js/viewfeed.js:2018
  2502. msgid "Click to pause"
  2503. msgstr ""
  2504. #: js/viewfeed.js:2075
  2505. msgid "Please enter new score for selected articles:"
  2506. msgstr ""
  2507. #: js/viewfeed.js:2117
  2508. msgid "Please enter new score for this article:"
  2509. msgstr ""
  2510. #: js/viewfeed.js:2150
  2511. msgid "Article URL:"
  2512. msgstr ""
  2513. #: plugins/digest/digest.js:72
  2514. msgid "Mark %d displayed article as read?"
  2515. msgid_plural "Mark %d displayed articles as read?"
  2516. msgstr[0] ""
  2517. msgstr[1] ""
  2518. #: plugins/digest/digest.js:290
  2519. msgid "Error: unable to load article."
  2520. msgstr ""
  2521. #: plugins/digest/digest.js:464
  2522. msgid "Click to expand article."
  2523. msgstr ""
  2524. #: plugins/digest/digest.js:535
  2525. msgid "%d more..."
  2526. msgid_plural "%d more..."
  2527. msgstr[0] ""
  2528. msgstr[1] ""
  2529. #: plugins/digest/digest.js:542
  2530. msgid "No unread feeds."
  2531. msgstr ""
  2532. #: plugins/digest/digest.js:649
  2533. msgid "Load more..."
  2534. msgstr ""
  2535. #: plugins/embed_original/init.js:6
  2536. msgid "Sorry, your browser does not support sandboxed iframes."
  2537. msgstr ""
  2538. #: plugins/mailto/init.js:21 plugins/mail/mail.js:21
  2539. msgid "Forward article by email"
  2540. msgstr ""
  2541. #: plugins/import_export/import_export.js:13
  2542. msgid "Export Data"
  2543. msgstr ""
  2544. #: plugins/import_export/import_export.js:40
  2545. msgid ""
  2546. "Finished, exported %d article. You can download the data <a "
  2547. "class='visibleLink' href='%u'>here</a>."
  2548. msgid_plural ""
  2549. "Finished, exported %d articles. You can download the data <a "
  2550. "class='visibleLink' href='%u'>here</a>."
  2551. msgstr[0] ""
  2552. msgstr[1] ""
  2553. #: plugins/import_export/import_export.js:93
  2554. msgid "Data Import"
  2555. msgstr ""
  2556. #: plugins/import_export/import_export.js:112
  2557. msgid "Please choose the file first."
  2558. msgstr ""
  2559. #: plugins/note/note.js:17
  2560. msgid "Saving article note..."
  2561. msgstr ""
  2562. #: plugins/googlereaderimport/init.js:18
  2563. msgid "Google Reader Import"
  2564. msgstr ""
  2565. #: plugins/googlereaderimport/init.js:42
  2566. msgid "Please choose a file first."
  2567. msgstr ""
  2568. #: plugins/instances/instances.js:10
  2569. msgid "Link Instance"
  2570. msgstr ""
  2571. #: plugins/instances/instances.js:73
  2572. msgid "Edit Instance"
  2573. msgstr ""
  2574. #: plugins/instances/instances.js:122
  2575. msgid "Remove selected instances?"
  2576. msgstr ""
  2577. #: plugins/instances/instances.js:125
  2578. msgid "Removing selected instances..."
  2579. msgstr ""
  2580. #: plugins/instances/instances.js:139 plugins/instances/instances.js:151
  2581. msgid "No instances are selected."
  2582. msgstr ""
  2583. #: plugins/instances/instances.js:156
  2584. msgid "Please select only one instance."
  2585. msgstr ""
  2586. #: plugins/share/share.js:10
  2587. msgid "Share article by URL"
  2588. msgstr ""
  2589. #: plugins/updater/updater.js:58
  2590. msgid ""
  2591. "Backup your tt-rss directory before continuing. Please type 'yes' to "
  2592. "continue."
  2593. msgstr ""