messages.po 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. # Welsh translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Cymrodor <aled@aledpowell.cymru>, 2019
  7. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  8. # CJ <charl.cj.monke@gmail.com>, 2022.
  9. # RhysJones <proladrhys123@outlook.com>, 2023.
  10. # return42 <markus.heiser@darmarit.de>, 2023.
  11. msgid ""
  12. msgstr ""
  13. "Project-Id-Version: searx\n"
  14. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  15. "POT-Creation-Date: 2024-05-09 15:27+0000\n"
  16. "PO-Revision-Date: 2023-11-23 06:13+0000\n"
  17. "Last-Translator: return42 <markus.heiser@darmarit.de>\n"
  18. "Language: cy\n"
  19. "Language-Team: Welsh "
  20. "<https://translate.codeberg.org/projects/searxng/searxng/cy/>\n"
  21. "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n "
  22. "!= 11) ? 2 : 3;\n"
  23. "MIME-Version: 1.0\n"
  24. "Content-Type: text/plain; charset=utf-8\n"
  25. "Content-Transfer-Encoding: 8bit\n"
  26. "Generated-By: Babel 2.14.0\n"
  27. #. CONSTANT_NAMES['NO_SUBGROUPING']
  28. #: searx/searxng.msg
  29. msgid "without further subgrouping"
  30. msgstr "heb is-grwpio pellach"
  31. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  32. #: searx/searxng.msg
  33. msgid "other"
  34. msgstr "arall"
  35. #. CATEGORY_NAMES['FILES']
  36. #: searx/searxng.msg
  37. msgid "files"
  38. msgstr "ffeiliau"
  39. #. CATEGORY_NAMES['GENERAL']
  40. #: searx/searxng.msg
  41. msgid "general"
  42. msgstr "cyffredinol"
  43. #. CATEGORY_NAMES['MUSIC']
  44. #: searx/searxng.msg
  45. msgid "music"
  46. msgstr "cerddoriaeth"
  47. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  48. #: searx/searxng.msg
  49. msgid "social media"
  50. msgstr "cyfryngau cymdeithasol"
  51. #. CATEGORY_NAMES['IMAGES']
  52. #: searx/searxng.msg
  53. msgid "images"
  54. msgstr "delweddau"
  55. #. CATEGORY_NAMES['VIDEOS']
  56. #: searx/searxng.msg
  57. msgid "videos"
  58. msgstr "fideos"
  59. #. CATEGORY_NAMES['RADIO']
  60. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  61. msgid "radio"
  62. msgstr "radio"
  63. #. CATEGORY_NAMES['TV']
  64. #: searx/searxng.msg
  65. msgid "tv"
  66. msgstr ""
  67. #. CATEGORY_NAMES['IT']
  68. #: searx/searxng.msg
  69. msgid "it"
  70. msgstr "Technoleg"
  71. #. CATEGORY_NAMES['NEWS']
  72. #: searx/searxng.msg
  73. msgid "news"
  74. msgstr "newyddion"
  75. #. CATEGORY_NAMES['MAP']
  76. #: searx/searxng.msg
  77. msgid "map"
  78. msgstr "map"
  79. #. CATEGORY_NAMES['ONIONS']
  80. #: searx/searxng.msg
  81. msgid "onions"
  82. msgstr "winwns"
  83. #. CATEGORY_NAMES['SCIENCE']
  84. #: searx/searxng.msg
  85. msgid "science"
  86. msgstr "gwyddoniaeth"
  87. #. CATEGORY_GROUPS['APPS']
  88. #: searx/searxng.msg
  89. msgid "apps"
  90. msgstr "apiau"
  91. #. CATEGORY_GROUPS['DICTIONARIES']
  92. #: searx/searxng.msg
  93. msgid "dictionaries"
  94. msgstr "geiriaduron"
  95. #. CATEGORY_GROUPS['LYRICS']
  96. #: searx/searxng.msg
  97. msgid "lyrics"
  98. msgstr "geiriau"
  99. #. CATEGORY_GROUPS['PACKAGES']
  100. #: searx/searxng.msg
  101. msgid "packages"
  102. msgstr "pecyn"
  103. #. CATEGORY_GROUPS['Q_A']
  104. #: searx/searxng.msg
  105. msgid "q&a"
  106. msgstr "q&a"
  107. #. CATEGORY_GROUPS['REPOS']
  108. #: searx/searxng.msg
  109. msgid "repos"
  110. msgstr "Gorffwys"
  111. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  112. #: searx/searxng.msg
  113. msgid "software wikis"
  114. msgstr "wikis meddalwedd"
  115. #. CATEGORY_GROUPS['WEB']
  116. #: searx/searxng.msg
  117. msgid "web"
  118. msgstr "gwe"
  119. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  120. #: searx/searxng.msg
  121. msgid "scientific publications"
  122. msgstr "cyhoeddiadau gwyddonol"
  123. #. STYLE_NAMES['AUTO']
  124. #: searx/searxng.msg
  125. msgid "auto"
  126. msgstr "auto"
  127. #. STYLE_NAMES['LIGHT']
  128. #: searx/searxng.msg
  129. msgid "light"
  130. msgstr "golau"
  131. #. STYLE_NAMES['DARK']
  132. #: searx/searxng.msg
  133. msgid "dark"
  134. msgstr "tywyll"
  135. #. BRAND_CUSTOM_LINKS['UPTIME']
  136. #: searx/searxng.msg
  137. msgid "Uptime"
  138. msgstr ""
  139. #. BRAND_CUSTOM_LINKS['ABOUT']
  140. #: searx/searxng.msg searx/templates/simple/base.html:50
  141. msgid "About"
  142. msgstr "Ynghylch"
  143. #. WEATHER_TERMS['AVERAGE TEMP.']
  144. #: searx/searxng.msg
  145. msgid "Average temp."
  146. msgstr ""
  147. #. WEATHER_TERMS['CLOUD COVER']
  148. #: searx/searxng.msg
  149. msgid "Cloud cover"
  150. msgstr ""
  151. #. WEATHER_TERMS['CONDITION']
  152. #: searx/searxng.msg
  153. msgid "Condition"
  154. msgstr ""
  155. #. WEATHER_TERMS['CURRENT CONDITION']
  156. #: searx/searxng.msg
  157. msgid "Current condition"
  158. msgstr ""
  159. #. WEATHER_TERMS['EVENING']
  160. #: searx/engines/wttr.py:100 searx/searxng.msg
  161. msgid "Evening"
  162. msgstr "Noswaith"
  163. #. WEATHER_TERMS['FEELS LIKE']
  164. #: searx/searxng.msg
  165. msgid "Feels like"
  166. msgstr ""
  167. #. WEATHER_TERMS['HUMIDITY']
  168. #: searx/searxng.msg
  169. msgid "Humidity"
  170. msgstr ""
  171. #. WEATHER_TERMS['MAX TEMP.']
  172. #: searx/searxng.msg
  173. msgid "Max temp."
  174. msgstr ""
  175. #. WEATHER_TERMS['MIN TEMP.']
  176. #: searx/searxng.msg
  177. msgid "Min temp."
  178. msgstr ""
  179. #. WEATHER_TERMS['MORNING']
  180. #: searx/engines/wttr.py:100 searx/searxng.msg
  181. msgid "Morning"
  182. msgstr "Bore"
  183. #. WEATHER_TERMS['NIGHT']
  184. #: searx/engines/wttr.py:100 searx/searxng.msg
  185. msgid "Night"
  186. msgstr "Nos"
  187. #. WEATHER_TERMS['NOON']
  188. #: searx/engines/wttr.py:100 searx/searxng.msg
  189. msgid "Noon"
  190. msgstr "Canol Dydd"
  191. #. WEATHER_TERMS['PRESSURE']
  192. #: searx/searxng.msg
  193. msgid "Pressure"
  194. msgstr ""
  195. #. WEATHER_TERMS['SUNRISE']
  196. #: searx/searxng.msg
  197. msgid "Sunrise"
  198. msgstr ""
  199. #. WEATHER_TERMS['SUNSET']
  200. #: searx/searxng.msg
  201. msgid "Sunset"
  202. msgstr ""
  203. #. WEATHER_TERMS['TEMPERATURE']
  204. #: searx/searxng.msg
  205. msgid "Temperature"
  206. msgstr ""
  207. #. WEATHER_TERMS['UV INDEX']
  208. #: searx/searxng.msg
  209. msgid "UV index"
  210. msgstr ""
  211. #. WEATHER_TERMS['VISIBILITY']
  212. #: searx/searxng.msg
  213. msgid "Visibility"
  214. msgstr ""
  215. #. WEATHER_TERMS['WIND']
  216. #: searx/searxng.msg
  217. msgid "Wind"
  218. msgstr ""
  219. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  220. #: searx/searxng.msg
  221. msgid "subscribers"
  222. msgstr ""
  223. #. SOCIAL_MEDIA_TERMS['POSTS']
  224. #: searx/searxng.msg
  225. msgid "posts"
  226. msgstr ""
  227. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  228. #: searx/searxng.msg
  229. msgid "active users"
  230. msgstr ""
  231. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  232. #: searx/searxng.msg
  233. msgid "comments"
  234. msgstr ""
  235. #. SOCIAL_MEDIA_TERMS['USER']
  236. #: searx/searxng.msg
  237. msgid "user"
  238. msgstr ""
  239. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  240. #: searx/searxng.msg
  241. msgid "community"
  242. msgstr ""
  243. #. SOCIAL_MEDIA_TERMS['POINTS']
  244. #: searx/searxng.msg
  245. msgid "points"
  246. msgstr ""
  247. #. SOCIAL_MEDIA_TERMS['TITLE']
  248. #: searx/searxng.msg
  249. msgid "title"
  250. msgstr ""
  251. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  252. #: searx/searxng.msg
  253. msgid "author"
  254. msgstr ""
  255. #: searx/webapp.py:330
  256. msgid "No item found"
  257. msgstr "Ni chanfuwyd eitem"
  258. #: searx/engines/qwant.py:281
  259. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
  260. msgid "Source"
  261. msgstr "Ffynhonnell"
  262. #: searx/webapp.py:334
  263. msgid "Error loading the next page"
  264. msgstr "Gwall wrth lwytho'r dudalen nesaf"
  265. #: searx/webapp.py:491 searx/webapp.py:887
  266. msgid "Invalid settings, please edit your preferences"
  267. msgstr "Gosodiadau annilys, golygu eich dewisiadau"
  268. #: searx/webapp.py:507
  269. msgid "Invalid settings"
  270. msgstr "Gosodiadau annilys"
  271. #: searx/webapp.py:584 searx/webapp.py:666
  272. msgid "search error"
  273. msgstr "gwall chwilio"
  274. #: searx/webutils.py:36
  275. msgid "timeout"
  276. msgstr "amser allan"
  277. #: searx/webutils.py:37
  278. msgid "parsing error"
  279. msgstr "gwall dosrannu"
  280. #: searx/webutils.py:38
  281. msgid "HTTP protocol error"
  282. msgstr "Gwall protocol HTTP"
  283. #: searx/webutils.py:39
  284. msgid "network error"
  285. msgstr "gwall rhwydwaith"
  286. #: searx/webutils.py:40
  287. msgid "SSL error: certificate validation has failed"
  288. msgstr "Gwall SSL: dilysu tystysgrif wedi methu"
  289. #: searx/webutils.py:42
  290. msgid "unexpected crash"
  291. msgstr "damwain annisgwyl"
  292. #: searx/webutils.py:49
  293. msgid "HTTP error"
  294. msgstr "gwall http"
  295. #: searx/webutils.py:50
  296. msgid "HTTP connection error"
  297. msgstr "gwall cysylltiad http"
  298. #: searx/webutils.py:56
  299. msgid "proxy error"
  300. msgstr "gwall dirprwy"
  301. #: searx/webutils.py:57
  302. msgid "CAPTCHA"
  303. msgstr "CAPTCHA"
  304. #: searx/webutils.py:58
  305. msgid "too many requests"
  306. msgstr "gormod o geisiadau"
  307. #: searx/webutils.py:59
  308. msgid "access denied"
  309. msgstr "mynediad wedi ei wrthod"
  310. #: searx/webutils.py:60
  311. msgid "server API error"
  312. msgstr "gwall API gweinydd"
  313. #: searx/webutils.py:79
  314. msgid "Suspended"
  315. msgstr "Atal"
  316. #: searx/webutils.py:314
  317. msgid "{minutes} minute(s) ago"
  318. msgstr "{minutes} munud yn ôl"
  319. #: searx/webutils.py:315
  320. msgid "{hours} hour(s), {minutes} minute(s) ago"
  321. msgstr "{hours} awr, {minutes} munud yn ôl"
  322. #: searx/answerers/random/answerer.py:75
  323. msgid "Random value generator"
  324. msgstr "Generadur gwerth ar hap"
  325. #: searx/answerers/random/answerer.py:76
  326. msgid "Generate different random values"
  327. msgstr "Cynhyrchu gwahanol werthoedd ar hap"
  328. #: searx/answerers/statistics/answerer.py:48
  329. msgid "Statistics functions"
  330. msgstr "Swyddogaethau ystadegau"
  331. #: searx/answerers/statistics/answerer.py:49
  332. msgid "Compute {functions} of the arguments"
  333. msgstr "Compute {functions} o'r dadleuon"
  334. #: searx/engines/openstreetmap.py:159
  335. msgid "Get directions"
  336. msgstr "Cael cyfarwyddiadau"
  337. #: searx/engines/pdbe.py:96
  338. msgid "{title} (OBSOLETE)"
  339. msgstr "{title} (OBSOLETE)"
  340. #: searx/engines/pdbe.py:103
  341. msgid "This entry has been superseded by"
  342. msgstr "Mae'r cofnod hwn wedi ei ddisodli gan"
  343. #: searx/engines/qwant.py:283
  344. msgid "Channel"
  345. msgstr "Sianel"
  346. #: searx/engines/radio_browser.py:105
  347. msgid "bitrate"
  348. msgstr "cyfradd didau"
  349. #: searx/engines/radio_browser.py:106
  350. msgid "votes"
  351. msgstr ""
  352. #: searx/engines/radio_browser.py:107
  353. msgid "clicks"
  354. msgstr ""
  355. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  356. #: searx/engines/zlibrary.py:128
  357. msgid "Language"
  358. msgstr "Iaith"
  359. #: searx/engines/semantic_scholar.py:78
  360. msgid ""
  361. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  362. "{lastCitationVelocityYear}"
  363. msgstr ""
  364. "{numCitations} dyfyniadau o'r flwyddyn {firstCitationVelocityYear} i "
  365. "{lastCitationVelocityYear}"
  366. #: searx/engines/tineye.py:39
  367. msgid ""
  368. "Could not read that image url. This may be due to an unsupported file "
  369. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  370. " WebP."
  371. msgstr ""
  372. "Allai ddim darllen yr url delwedd hwnnw. Gall hyn fod oherwydd fformat "
  373. "ffeil heb gymorth. Mae TinEye yn cefnogi delweddau yn unig sy'n JPEG, "
  374. "PNG, GIF, BMP, TIFF neu WebP."
  375. #: searx/engines/tineye.py:45
  376. msgid ""
  377. "The image is too simple to find matches. TinEye requires a basic level of"
  378. " visual detail to successfully identify matches."
  379. msgstr ""
  380. "Mae'r ddelwedd yn rhy syml i ddod o hyd i gemau. Mae TinEye angen lefel "
  381. "sylfaenol o fanylion gweledol i adnabod gemau yn llwyddiannus."
  382. #: searx/engines/tineye.py:51
  383. msgid "The image could not be downloaded."
  384. msgstr "Doedd dim modd lawrlwytho'r ddelwedd."
  385. #: searx/engines/zlibrary.py:129
  386. msgid "Book rating"
  387. msgstr "Gradd llyfr"
  388. #: searx/engines/zlibrary.py:130
  389. msgid "File quality"
  390. msgstr ""
  391. #: searx/plugins/calculator.py:12
  392. msgid "Calculate mathematical expressions via the search bar"
  393. msgstr ""
  394. #: searx/plugins/hash_plugin.py:10
  395. msgid "Converts strings to different hash digests."
  396. msgstr "Trosi llinynnau i wahanol dreuliadau hash."
  397. #: searx/plugins/hash_plugin.py:38
  398. msgid "hash digest"
  399. msgstr "Digon o hash"
  400. #: searx/plugins/hostname_replace.py:12
  401. msgid "Hostname replace"
  402. msgstr ""
  403. #: searx/plugins/hostname_replace.py:13
  404. msgid "Rewrite result hostnames or remove results based on the hostname"
  405. msgstr ""
  406. #: searx/plugins/oa_doi_rewrite.py:12
  407. msgid "Open Access DOI rewrite"
  408. msgstr ""
  409. #: searx/plugins/oa_doi_rewrite.py:13
  410. msgid ""
  411. "Avoid paywalls by redirecting to open-access versions of publications "
  412. "when available"
  413. msgstr ""
  414. #: searx/plugins/self_info.py:9
  415. msgid "Self Information"
  416. msgstr ""
  417. #: searx/plugins/self_info.py:10
  418. msgid ""
  419. "Displays your IP if the query is \"ip\" and your user agent if the query "
  420. "contains \"user agent\"."
  421. msgstr ""
  422. #: searx/plugins/tor_check.py:24
  423. msgid "Tor check plugin"
  424. msgstr ""
  425. #: searx/plugins/tor_check.py:27
  426. msgid ""
  427. "This plugin checks if the address of the request is a Tor exit-node, and "
  428. "informs the user if it is; like check.torproject.org, but from SearXNG."
  429. msgstr ""
  430. #: searx/plugins/tor_check.py:61
  431. msgid ""
  432. "Could not download the list of Tor exit-nodes from: "
  433. "https://check.torproject.org/exit-addresses"
  434. msgstr ""
  435. #: searx/plugins/tor_check.py:77
  436. msgid ""
  437. "You are using Tor and it looks like you have this external IP address: "
  438. "{ip_address}"
  439. msgstr ""
  440. #: searx/plugins/tor_check.py:85
  441. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  442. msgstr ""
  443. #: searx/plugins/tracker_url_remover.py:16
  444. msgid "Tracker URL remover"
  445. msgstr ""
  446. #: searx/plugins/tracker_url_remover.py:17
  447. msgid "Remove trackers arguments from the returned URL"
  448. msgstr ""
  449. #: searx/plugins/unit_converter.py:29
  450. msgid "Convert between units"
  451. msgstr ""
  452. #: searx/templates/simple/404.html:4
  453. msgid "Page not found"
  454. msgstr ""
  455. #: searx/templates/simple/404.html:6
  456. #, python-format
  457. msgid "Go to %(search_page)s."
  458. msgstr "Mynd i %(search_page)s."
  459. #: searx/templates/simple/404.html:6
  460. msgid "search page"
  461. msgstr "tudalen chwilio"
  462. #: searx/templates/simple/base.html:54
  463. msgid "Donate"
  464. msgstr "Rhoddi"
  465. #: searx/templates/simple/base.html:58
  466. #: searx/templates/simple/preferences.html:156
  467. msgid "Preferences"
  468. msgstr "Dewisiadau"
  469. #: searx/templates/simple/base.html:68
  470. msgid "Powered by"
  471. msgstr "Pwerwyd gan"
  472. #: searx/templates/simple/base.html:68
  473. msgid "a privacy-respecting, open metasearch engine"
  474. msgstr ""
  475. #: searx/templates/simple/base.html:69
  476. #: searx/templates/simple/result_templates/packages.html:59
  477. msgid "Source code"
  478. msgstr "Cod ffynhonnell"
  479. #: searx/templates/simple/base.html:70
  480. msgid "Issue tracker"
  481. msgstr ""
  482. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  483. msgid "Engine stats"
  484. msgstr ""
  485. #: searx/templates/simple/base.html:73
  486. msgid "Public instances"
  487. msgstr ""
  488. #: searx/templates/simple/base.html:76
  489. msgid "Privacy policy"
  490. msgstr ""
  491. #: searx/templates/simple/base.html:79
  492. msgid "Contact instance maintainer"
  493. msgstr ""
  494. #: searx/templates/simple/categories.html:26
  495. msgid "Click on the magnifier to perform search"
  496. msgstr "Cliciwch ar y chwyddwydr i berfformio chwiliad"
  497. #: searx/templates/simple/macros.html:36
  498. msgid "Length"
  499. msgstr ""
  500. #: searx/templates/simple/macros.html:37
  501. #: searx/templates/simple/result_templates/files.html:34
  502. #: searx/templates/simple/result_templates/images.html:19
  503. #: searx/templates/simple/result_templates/paper.html:6
  504. msgid "Author"
  505. msgstr "Awduron"
  506. #: searx/templates/simple/macros.html:45
  507. msgid "cached"
  508. msgstr ""
  509. #: searx/templates/simple/macros.html:45
  510. msgid "proxied"
  511. msgstr ""
  512. #: searx/templates/simple/new_issue.html:64
  513. msgid "Start submiting a new issue on GitHub"
  514. msgstr ""
  515. #: searx/templates/simple/new_issue.html:66
  516. msgid "Please check for existing bugs about this engine on GitHub"
  517. msgstr ""
  518. #: searx/templates/simple/new_issue.html:69
  519. msgid "I confirm there is no existing bug about the issue I encounter"
  520. msgstr ""
  521. #: searx/templates/simple/new_issue.html:71
  522. msgid "If this is a public instance, please specify the URL in the bug report"
  523. msgstr ""
  524. #: searx/templates/simple/new_issue.html:72
  525. msgid "Submit a new issue on Github including the above information"
  526. msgstr ""
  527. #: searx/templates/simple/preferences.html:65
  528. msgid "No HTTPS"
  529. msgstr ""
  530. #: searx/templates/simple/elements/engines_msg.html:18
  531. #: searx/templates/simple/preferences.html:69
  532. #: searx/templates/simple/preferences.html:70
  533. msgid "View error logs and submit a bug report"
  534. msgstr ""
  535. #: searx/templates/simple/preferences.html:74
  536. msgid "!bang for this engine"
  537. msgstr ""
  538. #: searx/templates/simple/preferences.html:80
  539. msgid "!bang for its categories"
  540. msgstr ""
  541. #: searx/templates/simple/preferences.html:102
  542. #: searx/templates/simple/stats.html:64
  543. msgid "Median"
  544. msgstr ""
  545. #: searx/templates/simple/preferences.html:103
  546. #: searx/templates/simple/stats.html:70
  547. msgid "P80"
  548. msgstr ""
  549. #: searx/templates/simple/preferences.html:104
  550. #: searx/templates/simple/stats.html:76
  551. msgid "P95"
  552. msgstr ""
  553. #: searx/templates/simple/preferences.html:136
  554. msgid "Failed checker test(s): "
  555. msgstr ""
  556. #: searx/templates/simple/preferences.html:138
  557. msgid "Errors:"
  558. msgstr ""
  559. #: searx/templates/simple/preferences.html:162
  560. msgid "General"
  561. msgstr "Cyffredin"
  562. #: searx/templates/simple/preferences.html:165
  563. msgid "Default categories"
  564. msgstr "Categorïau arferol"
  565. #: searx/templates/simple/preferences.html:187
  566. msgid "User interface"
  567. msgstr "Rhyngwyneb defnyddiwr"
  568. #: searx/templates/simple/preferences.html:208
  569. msgid "Privacy"
  570. msgstr "Preifatrwydd"
  571. #: searx/templates/simple/preferences.html:221
  572. msgid "Engines"
  573. msgstr "Peiriannau"
  574. #: searx/templates/simple/preferences.html:223
  575. msgid "Currently used search engines"
  576. msgstr ""
  577. #: searx/templates/simple/preferences.html:231
  578. msgid "Special Queries"
  579. msgstr ""
  580. #: searx/templates/simple/preferences.html:237
  581. msgid "Cookies"
  582. msgstr "Cwcis"
  583. #: searx/templates/simple/results.html:23
  584. msgid "Answers"
  585. msgstr "Atebion"
  586. #: searx/templates/simple/results.html:42
  587. msgid "Number of results"
  588. msgstr "Nifer o ganlyniadau"
  589. #: searx/templates/simple/results.html:48
  590. msgid "Info"
  591. msgstr "Gwybodaeth"
  592. #: searx/templates/simple/results.html:77
  593. msgid "Try searching for:"
  594. msgstr "Rho gynnig ar chwilio am:"
  595. #: searx/templates/simple/results.html:109
  596. msgid "Back to top"
  597. msgstr ""
  598. #: searx/templates/simple/results.html:127
  599. msgid "Previous page"
  600. msgstr ""
  601. #: searx/templates/simple/results.html:145
  602. msgid "Next page"
  603. msgstr ""
  604. #: searx/templates/simple/search.html:3
  605. msgid "Display the front page"
  606. msgstr ""
  607. #: searx/templates/simple/search.html:9
  608. #: searx/templates/simple/simple_search.html:5
  609. msgid "Search for..."
  610. msgstr "Chwilio am..."
  611. #: searx/templates/simple/search.html:10
  612. #: searx/templates/simple/simple_search.html:6
  613. msgid "clear"
  614. msgstr ""
  615. #: searx/templates/simple/search.html:11
  616. #: searx/templates/simple/simple_search.html:7
  617. msgid "search"
  618. msgstr "chwilio"
  619. #: searx/templates/simple/stats.html:21
  620. msgid "There is currently no data available. "
  621. msgstr "Does dim data ar gael ar hyn o bryd."
  622. #: searx/templates/simple/preferences/engines.html:24
  623. #: searx/templates/simple/stats.html:25
  624. msgid "Engine name"
  625. msgstr ""
  626. #: searx/templates/simple/stats.html:26
  627. msgid "Scores"
  628. msgstr "Sgoriau"
  629. #: searx/templates/simple/stats.html:27
  630. msgid "Result count"
  631. msgstr ""
  632. #: searx/templates/simple/preferences/engines.html:31
  633. #: searx/templates/simple/stats.html:28
  634. msgid "Response time"
  635. msgstr ""
  636. #: searx/templates/simple/preferences/engines.html:35
  637. #: searx/templates/simple/stats.html:29
  638. msgid "Reliability"
  639. msgstr ""
  640. #: searx/templates/simple/stats.html:59
  641. msgid "Total"
  642. msgstr ""
  643. #: searx/templates/simple/stats.html:60
  644. msgid "HTTP"
  645. msgstr "HTTP"
  646. #: searx/templates/simple/stats.html:61
  647. msgid "Processing"
  648. msgstr ""
  649. #: searx/templates/simple/stats.html:99
  650. msgid "Warnings"
  651. msgstr ""
  652. #: searx/templates/simple/stats.html:99
  653. msgid "Errors and exceptions"
  654. msgstr ""
  655. #: searx/templates/simple/stats.html:105
  656. msgid "Exception"
  657. msgstr ""
  658. #: searx/templates/simple/stats.html:107
  659. msgid "Message"
  660. msgstr "Negeseuon"
  661. #: searx/templates/simple/stats.html:109
  662. msgid "Percentage"
  663. msgstr ""
  664. #: searx/templates/simple/stats.html:111
  665. msgid "Parameter"
  666. msgstr ""
  667. #: searx/templates/simple/result_templates/files.html:36
  668. #: searx/templates/simple/stats.html:119
  669. msgid "Filename"
  670. msgstr ""
  671. #: searx/templates/simple/stats.html:120
  672. msgid "Function"
  673. msgstr ""
  674. #: searx/templates/simple/stats.html:121
  675. msgid "Code"
  676. msgstr "Côd"
  677. #: searx/templates/simple/stats.html:128
  678. msgid "Checker"
  679. msgstr ""
  680. #: searx/templates/simple/stats.html:131
  681. msgid "Failed test"
  682. msgstr ""
  683. #: searx/templates/simple/stats.html:132
  684. msgid "Comment(s)"
  685. msgstr ""
  686. #: searx/templates/simple/elements/apis.html:3
  687. msgid "Download results"
  688. msgstr "Lawrlwytho'r canlyniadau"
  689. #: searx/templates/simple/elements/engines_msg.html:7
  690. msgid "Messages from the search engines"
  691. msgstr ""
  692. #: searx/templates/simple/elements/engines_msg.html:12
  693. msgid "Error!"
  694. msgstr "Gwall!"
  695. #: searx/templates/simple/elements/engines_msg.html:13
  696. msgid "Engines cannot retrieve results"
  697. msgstr "Ni all y peiriannau cael canlyniadau"
  698. #: searx/templates/simple/elements/search_url.html:3
  699. msgid "Search URL"
  700. msgstr ""
  701. #: searx/templates/simple/elements/search_url.html:4
  702. #: searx/templates/simple/preferences/cookies.html:54
  703. msgid "Copied"
  704. msgstr ""
  705. #: searx/templates/simple/elements/search_url.html:4
  706. #: searx/templates/simple/preferences/cookies.html:54
  707. msgid "Copy"
  708. msgstr ""
  709. #: searx/templates/simple/elements/suggestions.html:3
  710. msgid "Suggestions"
  711. msgstr "Awgrymiadau"
  712. #: searx/templates/simple/filters/languages.html:1
  713. #: searx/templates/simple/preferences/language.html:2
  714. msgid "Search language"
  715. msgstr "Iaith chwilio"
  716. #: searx/templates/simple/filters/languages.html:2
  717. #: searx/templates/simple/preferences/language.html:7
  718. msgid "Default language"
  719. msgstr "Iaith arferol"
  720. #: searx/templates/simple/filters/languages.html:4
  721. #: searx/templates/simple/preferences/language.html:11
  722. msgid "Auto-detect"
  723. msgstr ""
  724. #: searx/templates/simple/filters/safesearch.html:1
  725. #: searx/templates/simple/filters/safesearch.html:2
  726. #: searx/templates/simple/filters/safesearch.html:3
  727. #: searx/templates/simple/filters/safesearch.html:4
  728. #: searx/templates/simple/preferences/engines.html:27
  729. #: searx/templates/simple/preferences/safesearch.html:2
  730. msgid "SafeSearch"
  731. msgstr ""
  732. #: searx/templates/simple/filters/safesearch.html:2
  733. #: searx/templates/simple/preferences/safesearch.html:7
  734. msgid "Strict"
  735. msgstr "Caeth"
  736. #: searx/templates/simple/filters/safesearch.html:3
  737. #: searx/templates/simple/preferences/safesearch.html:11
  738. msgid "Moderate"
  739. msgstr "Cymhedrol"
  740. #: searx/templates/simple/filters/safesearch.html:4
  741. #: searx/templates/simple/preferences/safesearch.html:15
  742. msgid "None"
  743. msgstr "Dim"
  744. #: searx/templates/simple/filters/time_range.html:1
  745. #: searx/templates/simple/preferences/engines.html:28
  746. msgid "Time range"
  747. msgstr "Cyfnod amser"
  748. #: searx/templates/simple/filters/time_range.html:3
  749. msgid "Anytime"
  750. msgstr "Unrhyw amser"
  751. #: searx/templates/simple/filters/time_range.html:6
  752. msgid "Last day"
  753. msgstr "Y diwrnod diwethaf"
  754. #: searx/templates/simple/filters/time_range.html:9
  755. msgid "Last week"
  756. msgstr "Yr wythnos diwethaf"
  757. #: searx/templates/simple/filters/time_range.html:12
  758. msgid "Last month"
  759. msgstr "Y mis diwethaf"
  760. #: searx/templates/simple/filters/time_range.html:15
  761. msgid "Last year"
  762. msgstr "Y flwyddyn ddiwethaf"
  763. #: searx/templates/simple/messages/no_cookies.html:3
  764. msgid "Information!"
  765. msgstr "Gwybodaeth!"
  766. #: searx/templates/simple/messages/no_cookies.html:4
  767. msgid "currently, there are no cookies defined."
  768. msgstr ""
  769. #: searx/templates/simple/messages/no_results.html:6
  770. msgid "Sorry!"
  771. msgstr "Sori!"
  772. #: searx/templates/simple/messages/no_results.html:12
  773. msgid "No results were found. You can try to:"
  774. msgstr ""
  775. #: searx/templates/simple/messages/no_results.html:14
  776. msgid "There are no more results. You can try to:"
  777. msgstr ""
  778. #: searx/templates/simple/messages/no_results.html:19
  779. msgid "Refresh the page."
  780. msgstr ""
  781. #: searx/templates/simple/messages/no_results.html:20
  782. msgid "Search for another query or select another category (above)."
  783. msgstr ""
  784. #: searx/templates/simple/messages/no_results.html:21
  785. msgid "Change the search engine used in the preferences:"
  786. msgstr ""
  787. #: searx/templates/simple/messages/no_results.html:22
  788. msgid "Switch to another instance:"
  789. msgstr ""
  790. #: searx/templates/simple/messages/no_results.html:24
  791. msgid "Search for another query or select another category."
  792. msgstr ""
  793. #: searx/templates/simple/messages/no_results.html:25
  794. msgid "Go back to the previous page using the previous page button."
  795. msgstr ""
  796. #: searx/templates/simple/preferences/answerers.html:4
  797. #: searx/templates/simple/preferences/engines.html:23
  798. msgid "Allow"
  799. msgstr "Caniatáu"
  800. #: searx/templates/simple/preferences/answerers.html:5
  801. msgid "Keywords"
  802. msgstr "Allweddeiriau"
  803. #: searx/templates/simple/preferences/answerers.html:6
  804. #: searx/templates/simple/result_templates/packages.html:7
  805. msgid "Name"
  806. msgstr "Enw"
  807. #: searx/templates/simple/preferences/answerers.html:7
  808. msgid "Description"
  809. msgstr "Disgrifiad"
  810. #: searx/templates/simple/preferences/answerers.html:8
  811. msgid "Examples"
  812. msgstr "Enghreifftiau"
  813. #: searx/templates/simple/preferences/answerers.html:13
  814. msgid "This is the list of SearXNG's instant answering modules."
  815. msgstr ""
  816. #: searx/templates/simple/preferences/answerers.html:29
  817. msgid "This is the list of plugins."
  818. msgstr ""
  819. #: searx/templates/simple/preferences/autocomplete.html:2
  820. msgid "Autocomplete"
  821. msgstr "Awto-gwblhau"
  822. #: searx/templates/simple/preferences/autocomplete.html:15
  823. msgid "Find stuff as you type"
  824. msgstr "Darganfod pethau wrth i chi deipio"
  825. #: searx/templates/simple/preferences/center_alignment.html:2
  826. msgid "Center Alignment"
  827. msgstr ""
  828. #: searx/templates/simple/preferences/center_alignment.html:14
  829. msgid "Displays results in the center of the page (Oscar layout)."
  830. msgstr ""
  831. #: searx/templates/simple/preferences/cookies.html:2
  832. msgid ""
  833. "This is the list of cookies and their values SearXNG is storing on your "
  834. "computer."
  835. msgstr ""
  836. #: searx/templates/simple/preferences/cookies.html:3
  837. msgid "With that list, you can assess SearXNG transparency."
  838. msgstr ""
  839. #: searx/templates/simple/preferences/cookies.html:9
  840. msgid "Cookie name"
  841. msgstr "Enw cwci"
  842. #: searx/templates/simple/preferences/cookies.html:10
  843. msgid "Value"
  844. msgstr "Gwerth"
  845. #: searx/templates/simple/preferences/cookies.html:23
  846. msgid "Search URL of the currently saved preferences"
  847. msgstr ""
  848. #: searx/templates/simple/preferences/cookies.html:32
  849. msgid ""
  850. "Note: specifying custom settings in the search URL can reduce privacy by "
  851. "leaking data to the clicked result sites."
  852. msgstr ""
  853. #: searx/templates/simple/preferences/cookies.html:35
  854. msgid "URL to restore your preferences in another browser"
  855. msgstr ""
  856. #: searx/templates/simple/preferences/cookies.html:43
  857. msgid ""
  858. "Specifying custom settings in the preferences URL can be used to sync "
  859. "preferences across devices."
  860. msgstr ""
  861. #: searx/templates/simple/preferences/cookies.html:46
  862. msgid "Copy preferences hash"
  863. msgstr ""
  864. #: searx/templates/simple/preferences/cookies.html:57
  865. msgid "Insert copied preferences hash (without URL) to restore"
  866. msgstr ""
  867. #: searx/templates/simple/preferences/cookies.html:59
  868. msgid "Preferences hash"
  869. msgstr ""
  870. #: searx/templates/simple/preferences/doi_resolver.html:2
  871. msgid "Open Access DOI resolver"
  872. msgstr ""
  873. #: searx/templates/simple/preferences/doi_resolver.html:14
  874. msgid "Select service used by DOI rewrite"
  875. msgstr ""
  876. #: searx/templates/simple/preferences/engines.html:9
  877. msgid ""
  878. "This tab does not exists in the user interface, but you can search in "
  879. "these engines by its !bangs."
  880. msgstr ""
  881. #: searx/templates/simple/preferences/engines.html:15
  882. msgid "Enable all"
  883. msgstr ""
  884. #: searx/templates/simple/preferences/engines.html:16
  885. msgid "Disable all"
  886. msgstr ""
  887. #: searx/templates/simple/preferences/engines.html:25
  888. msgid "!bang"
  889. msgstr ""
  890. #: searx/templates/simple/preferences/engines.html:26
  891. msgid "Supports selected language"
  892. msgstr "Cefnogir yr iaith a ddewiswyd"
  893. #: searx/templates/simple/preferences/engines.html:29
  894. msgid "Weight"
  895. msgstr ""
  896. #: searx/templates/simple/preferences/engines.html:33
  897. msgid "Max time"
  898. msgstr ""
  899. #: searx/templates/simple/preferences/footer.html:2
  900. msgid ""
  901. "These settings are stored in your cookies, this allows us not to store "
  902. "this data about you."
  903. msgstr ""
  904. #: searx/templates/simple/preferences/footer.html:3
  905. msgid ""
  906. "These cookies serve your sole convenience, we don't use these cookies to "
  907. "track you."
  908. msgstr ""
  909. #: searx/templates/simple/preferences/footer.html:6
  910. msgid "Save"
  911. msgstr "Cadw"
  912. #: searx/templates/simple/preferences/footer.html:9
  913. msgid "Reset defaults"
  914. msgstr "Ailosod rhagosodiadau"
  915. #: searx/templates/simple/preferences/footer.html:13
  916. msgid "Back"
  917. msgstr "Nôl"
  918. #: searx/templates/simple/preferences/hotkeys.html:2
  919. msgid "Hotkeys"
  920. msgstr ""
  921. #: searx/templates/simple/preferences/hotkeys.html:13
  922. msgid "Vim-like"
  923. msgstr ""
  924. #: searx/templates/simple/preferences/hotkeys.html:18
  925. msgid ""
  926. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  927. "key on main or result page to get help."
  928. msgstr ""
  929. #: searx/templates/simple/preferences/image_proxy.html:2
  930. msgid "Image proxy"
  931. msgstr ""
  932. #: searx/templates/simple/preferences/image_proxy.html:14
  933. msgid "Proxying image results through SearXNG"
  934. msgstr ""
  935. #: searx/templates/simple/preferences/infinite_scroll.html:2
  936. msgid "Infinite scroll"
  937. msgstr ""
  938. #: searx/templates/simple/preferences/infinite_scroll.html:14
  939. msgid "Automatically load next page when scrolling to bottom of current page"
  940. msgstr ""
  941. #: searx/templates/simple/preferences/language.html:24
  942. msgid "What language do you prefer for search?"
  943. msgstr "Ym mha iaith wyt ti'n ffafrio chwilio?"
  944. #: searx/templates/simple/preferences/language.html:25
  945. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  946. msgstr ""
  947. #: searx/templates/simple/preferences/method.html:2
  948. msgid "HTTP Method"
  949. msgstr ""
  950. #: searx/templates/simple/preferences/method.html:14
  951. msgid "Change how forms are submitted"
  952. msgstr ""
  953. #: searx/templates/simple/preferences/query_in_title.html:2
  954. msgid "Query in the page's title"
  955. msgstr ""
  956. #: searx/templates/simple/preferences/query_in_title.html:14
  957. msgid ""
  958. "When enabled, the result page's title contains your query. Your browser "
  959. "can record this title"
  960. msgstr ""
  961. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  962. msgid "Results on new tabs"
  963. msgstr "Canlyniadau mewn tabiau newydd"
  964. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  965. msgid "Open result links on new browser tabs"
  966. msgstr "Agor dolenni canlyniadau mewn tabiau newydd yn y porwr"
  967. #: searx/templates/simple/preferences/safesearch.html:20
  968. msgid "Filter content"
  969. msgstr ""
  970. #: searx/templates/simple/preferences/search_on_category_select.html:2
  971. msgid "Search on category select"
  972. msgstr ""
  973. #: searx/templates/simple/preferences/search_on_category_select.html:14
  974. msgid ""
  975. "Perform search immediately if a category selected. Disable to select "
  976. "multiple categories"
  977. msgstr ""
  978. #: searx/templates/simple/preferences/theme.html:2
  979. msgid "Theme"
  980. msgstr "Thema"
  981. #: searx/templates/simple/preferences/theme.html:14
  982. msgid "Change SearXNG layout"
  983. msgstr ""
  984. #: searx/templates/simple/preferences/theme.html:19
  985. msgid "Theme style"
  986. msgstr ""
  987. #: searx/templates/simple/preferences/theme.html:31
  988. msgid "Choose auto to follow your browser settings"
  989. msgstr ""
  990. #: searx/templates/simple/preferences/tokens.html:2
  991. msgid "Engine tokens"
  992. msgstr ""
  993. #: searx/templates/simple/preferences/tokens.html:9
  994. msgid "Access tokens for private engines"
  995. msgstr ""
  996. #: searx/templates/simple/preferences/ui_locale.html:2
  997. msgid "Interface language"
  998. msgstr "Iaith y rhyngwyneb"
  999. #: searx/templates/simple/preferences/ui_locale.html:14
  1000. msgid "Change the language of the layout"
  1001. msgstr "Newid iaith rhyngwyneb searX"
  1002. #: searx/templates/simple/result_templates/code.html:13
  1003. msgid "repo"
  1004. msgstr ""
  1005. #: searx/templates/simple/result_templates/default.html:6
  1006. #: searx/templates/simple/result_templates/files.html:8
  1007. #: searx/templates/simple/result_templates/files.html:11
  1008. msgid "show media"
  1009. msgstr "dangos cyfryngau"
  1010. #: searx/templates/simple/result_templates/default.html:6
  1011. #: searx/templates/simple/result_templates/files.html:8
  1012. msgid "hide media"
  1013. msgstr "cuddio cyfryngau"
  1014. #: searx/templates/simple/result_templates/default.html:14
  1015. #: searx/templates/simple/result_templates/videos.html:14
  1016. msgid "This site did not provide any description."
  1017. msgstr ""
  1018. #: searx/templates/simple/result_templates/files.html:38
  1019. #: searx/templates/simple/result_templates/images.html:22
  1020. #: searx/templates/simple/result_templates/torrent.html:11
  1021. msgid "Filesize"
  1022. msgstr "Maint ffeil"
  1023. #: searx/templates/simple/result_templates/files.html:39
  1024. #: searx/templates/simple/result_templates/torrent.html:12
  1025. msgid "Bytes"
  1026. msgstr "Beitiau"
  1027. #: searx/templates/simple/result_templates/files.html:40
  1028. #: searx/templates/simple/result_templates/torrent.html:13
  1029. msgid "kiB"
  1030. msgstr "kiB"
  1031. #: searx/templates/simple/result_templates/files.html:41
  1032. #: searx/templates/simple/result_templates/torrent.html:14
  1033. msgid "MiB"
  1034. msgstr "MiB"
  1035. #: searx/templates/simple/result_templates/files.html:42
  1036. #: searx/templates/simple/result_templates/torrent.html:15
  1037. msgid "GiB"
  1038. msgstr "GiB"
  1039. #: searx/templates/simple/result_templates/files.html:43
  1040. #: searx/templates/simple/result_templates/torrent.html:16
  1041. msgid "TiB"
  1042. msgstr "TiB"
  1043. #: searx/templates/simple/result_templates/files.html:47
  1044. msgid "Date"
  1045. msgstr ""
  1046. #: searx/templates/simple/result_templates/files.html:49
  1047. #: searx/templates/simple/result_templates/paper.html:24
  1048. msgid "Type"
  1049. msgstr ""
  1050. #: searx/templates/simple/result_templates/images.html:20
  1051. msgid "Resolution"
  1052. msgstr ""
  1053. #: searx/templates/simple/result_templates/images.html:21
  1054. msgid "Format"
  1055. msgstr ""
  1056. #: searx/templates/simple/result_templates/images.html:24
  1057. msgid "Engine"
  1058. msgstr "Peiriant"
  1059. #: searx/templates/simple/result_templates/images.html:25
  1060. msgid "View source"
  1061. msgstr "Gweld y ffynhonnell"
  1062. #: searx/templates/simple/result_templates/map.html:12
  1063. msgid "address"
  1064. msgstr ""
  1065. #: searx/templates/simple/result_templates/map.html:43
  1066. msgid "show map"
  1067. msgstr "dangos map"
  1068. #: searx/templates/simple/result_templates/map.html:43
  1069. msgid "hide map"
  1070. msgstr "cuddio map"
  1071. #: searx/templates/simple/result_templates/packages.html:12
  1072. msgid "Version"
  1073. msgstr ""
  1074. #: searx/templates/simple/result_templates/packages.html:18
  1075. msgid "Maintainer"
  1076. msgstr ""
  1077. #: searx/templates/simple/result_templates/packages.html:24
  1078. msgid "Updated at"
  1079. msgstr ""
  1080. #: searx/templates/simple/result_templates/packages.html:30
  1081. #: searx/templates/simple/result_templates/paper.html:25
  1082. msgid "Tags"
  1083. msgstr "Tag"
  1084. #: searx/templates/simple/result_templates/packages.html:36
  1085. msgid "Popularity"
  1086. msgstr ""
  1087. #: searx/templates/simple/result_templates/packages.html:42
  1088. msgid "License"
  1089. msgstr ""
  1090. #: searx/templates/simple/result_templates/packages.html:52
  1091. msgid "Project"
  1092. msgstr ""
  1093. #: searx/templates/simple/result_templates/packages.html:55
  1094. msgid "Project homepage"
  1095. msgstr ""
  1096. #: searx/templates/simple/result_templates/paper.html:5
  1097. msgid "Published date"
  1098. msgstr ""
  1099. #: searx/templates/simple/result_templates/paper.html:9
  1100. msgid "Journal"
  1101. msgstr ""
  1102. #: searx/templates/simple/result_templates/paper.html:22
  1103. msgid "Editor"
  1104. msgstr ""
  1105. #: searx/templates/simple/result_templates/paper.html:23
  1106. msgid "Publisher"
  1107. msgstr ""
  1108. #: searx/templates/simple/result_templates/paper.html:26
  1109. msgid "DOI"
  1110. msgstr "DOI"
  1111. #: searx/templates/simple/result_templates/paper.html:27
  1112. msgid "ISSN"
  1113. msgstr "ISSN"
  1114. #: searx/templates/simple/result_templates/paper.html:28
  1115. msgid "ISBN"
  1116. msgstr "ISBN"
  1117. #: searx/templates/simple/result_templates/paper.html:33
  1118. msgid "PDF"
  1119. msgstr "PDF"
  1120. #: searx/templates/simple/result_templates/paper.html:34
  1121. msgid "HTML"
  1122. msgstr "HTML"
  1123. #: searx/templates/simple/result_templates/torrent.html:6
  1124. msgid "magnet link"
  1125. msgstr "dolen magnet"
  1126. #: searx/templates/simple/result_templates/torrent.html:7
  1127. msgid "torrent file"
  1128. msgstr "ffeil torrent"
  1129. #: searx/templates/simple/result_templates/torrent.html:9
  1130. msgid "Seeder"
  1131. msgstr "Hadau"
  1132. #: searx/templates/simple/result_templates/torrent.html:9
  1133. msgid "Leecher"
  1134. msgstr "Lawrlwythwyr"
  1135. #: searx/templates/simple/result_templates/torrent.html:20
  1136. msgid "Number of Files"
  1137. msgstr "Nifer o Ffeiliau"
  1138. #: searx/templates/simple/result_templates/videos.html:6
  1139. msgid "show video"
  1140. msgstr "dangos fideo"
  1141. #: searx/templates/simple/result_templates/videos.html:6
  1142. msgid "hide video"
  1143. msgstr "cuddio fideo"
  1144. #~ msgid "Engine time (sec)"
  1145. #~ msgstr ""
  1146. #~ msgid "Page loads (sec)"
  1147. #~ msgstr ""
  1148. #~ msgid "Errors"
  1149. #~ msgstr "Gwallau"
  1150. #~ msgid "CAPTCHA required"
  1151. #~ msgstr ""
  1152. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1153. #~ msgstr ""
  1154. #~ msgid ""
  1155. #~ "Results are opened in the same "
  1156. #~ "window by default. This plugin "
  1157. #~ "overwrites the default behaviour to open"
  1158. #~ " links on new tabs/windows. (JavaScript "
  1159. #~ "required)"
  1160. #~ msgstr ""
  1161. #~ "Mae canlyniadau fel arfer yn cael "
  1162. #~ "eu hagor yn yr un ffenestr. Mae'r"
  1163. #~ " ategolyn hwn yn newid hyn fel "
  1164. #~ "bod dolenni yn cael eu hagor mewn"
  1165. #~ " tabiau/ffenestri newydd. (Angen JavaScript)"
  1166. #~ msgid "Color"
  1167. #~ msgstr "Lliw"
  1168. #~ msgid "Blue (default)"
  1169. #~ msgstr "Glas (arferol)"
  1170. #~ msgid "Violet"
  1171. #~ msgstr "Fioled"
  1172. #~ msgid "Green"
  1173. #~ msgstr "Gwyrdd"
  1174. #~ msgid "Cyan"
  1175. #~ msgstr "Gwyrddlas"
  1176. #~ msgid "Orange"
  1177. #~ msgstr "Oren"
  1178. #~ msgid "Red"
  1179. #~ msgstr "Coch"
  1180. #~ msgid "Category"
  1181. #~ msgstr "Categori"
  1182. #~ msgid "Block"
  1183. #~ msgstr "Rhwystro"
  1184. #~ msgid "original context"
  1185. #~ msgstr "cyd-destun gwreiddiol"
  1186. #~ msgid "Plugins"
  1187. #~ msgstr "Ategolion"
  1188. #~ msgid "Answerers"
  1189. #~ msgstr "Atebwyr"
  1190. #~ msgid "Avg. time"
  1191. #~ msgstr ""
  1192. #~ msgid "show details"
  1193. #~ msgstr "dangos manylion"
  1194. #~ msgid "hide details"
  1195. #~ msgstr "cuddio manylion"
  1196. #~ msgid "Load more..."
  1197. #~ msgstr "Dysgu mwy..."
  1198. #~ msgid "Loading..."
  1199. #~ msgstr ""
  1200. #~ msgid "Change searx layout"
  1201. #~ msgstr "Newid cynllun searX"
  1202. #~ msgid "Proxying image results through searx"
  1203. #~ msgstr ""
  1204. #~ msgid "This is the list of searx's instant answering modules."
  1205. #~ msgstr ""
  1206. #~ msgid ""
  1207. #~ "This is the list of cookies and"
  1208. #~ " their values searx is storing on "
  1209. #~ "your computer."
  1210. #~ msgstr ""
  1211. #~ "Dyma restr y cwcis, a'u gwerthoedd, "
  1212. #~ "mae searX yn eu cadw ar eich "
  1213. #~ "dyfais."
  1214. #~ msgid "With that list, you can assess searx transparency."
  1215. #~ msgstr ""
  1216. #~ msgid "It look like you are using searx first time."
  1217. #~ msgstr "Mae'n ymddangos eich bod yn defnyddio searx am y tro cyntaf."
  1218. #~ msgid "Please, try again later or find another searx instance."
  1219. #~ msgstr ""
  1220. #~ msgid "Themes"
  1221. #~ msgstr "Themâu"
  1222. #~ msgid "Reliablity"
  1223. #~ msgstr ""
  1224. #~ msgid ""
  1225. #~ "When enabled, the result page's title"
  1226. #~ " contains your query. Your browser "
  1227. #~ "can record this title."
  1228. #~ msgstr ""
  1229. #~ msgid "Method"
  1230. #~ msgstr "Dull"
  1231. #~ msgid ""
  1232. #~ "This tab does not show up for "
  1233. #~ "search results but you can search "
  1234. #~ "the engines listed here via bangs."
  1235. #~ msgstr ""
  1236. #~ msgid "Advanced settings"
  1237. #~ msgstr "Gosodiadau uwch"
  1238. #~ msgid "Close"
  1239. #~ msgstr "Cau"
  1240. #~ msgid "Language"
  1241. #~ msgstr ""
  1242. #~ msgid "broken"
  1243. #~ msgstr ""
  1244. #~ msgid "supported"
  1245. #~ msgstr "cefnogir"
  1246. #~ msgid "not supported"
  1247. #~ msgstr "ni chefnogir"
  1248. #~ msgid "about"
  1249. #~ msgstr "ynghylch"
  1250. #~ msgid "Avg."
  1251. #~ msgstr ""
  1252. #~ msgid "User Interface"
  1253. #~ msgstr ""
  1254. #~ msgid "Choose style for this theme"
  1255. #~ msgstr "Dewis arddull ar gyfer y thema hon"
  1256. #~ msgid "Style"
  1257. #~ msgstr "Arddull"
  1258. #~ msgid "Show advanced settings"
  1259. #~ msgstr ""
  1260. #~ msgid "Show advanced settings panel in the home page by default"
  1261. #~ msgstr ""
  1262. #~ msgid "Allow all"
  1263. #~ msgstr ""
  1264. #~ msgid "Disable all"
  1265. #~ msgstr ""
  1266. #~ msgid "Selected language"
  1267. #~ msgstr "Iaith a ddewiswyd"
  1268. #~ msgid "Query"
  1269. #~ msgstr ""
  1270. #~ msgid "save"
  1271. #~ msgstr "cadw"
  1272. #~ msgid "back"
  1273. #~ msgstr "nôl"
  1274. #~ msgid "Links"
  1275. #~ msgstr "Dolenni"
  1276. #~ msgid "RSS subscription"
  1277. #~ msgstr ""
  1278. #~ msgid "Search results"
  1279. #~ msgstr "Canlyniadau chwilio"
  1280. #~ msgid "next page"
  1281. #~ msgstr "tudalen nesaf"
  1282. #~ msgid "previous page"
  1283. #~ msgstr "tudalen ddiwethaf"
  1284. #~ msgid "Start search"
  1285. #~ msgstr "Dechrau chwilio"
  1286. #~ msgid "Clear search"
  1287. #~ msgstr ""
  1288. #~ msgid "Clear"
  1289. #~ msgstr ""
  1290. #~ msgid "stats"
  1291. #~ msgstr "ystadegau"
  1292. #~ msgid "Heads up!"
  1293. #~ msgstr ""
  1294. #~ msgid "It look like you are using SearXNG first time."
  1295. #~ msgstr ""
  1296. #~ msgid "Well done!"
  1297. #~ msgstr "Da iawn!"
  1298. #~ msgid "Settings saved successfully."
  1299. #~ msgstr "Cadwyd y gosodiadau yn iawn."
  1300. #~ msgid "Oh snap!"
  1301. #~ msgstr ""
  1302. #~ msgid "Something went wrong."
  1303. #~ msgstr "Aeth rhywbeth o'i le."
  1304. #~ msgid "Date"
  1305. #~ msgstr ""
  1306. #~ msgid "Type"
  1307. #~ msgstr ""
  1308. #~ msgid "Get image"
  1309. #~ msgstr "Cael y ddelwedd"
  1310. #~ msgid "Center Alignment"
  1311. #~ msgstr ""
  1312. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1313. #~ msgstr ""
  1314. #~ msgid "preferences"
  1315. #~ msgstr "dewisiadau"
  1316. #~ msgid "Scores per result"
  1317. #~ msgstr ""
  1318. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1319. #~ msgstr ""
  1320. #~ msgid "No abstract is available for this publication."
  1321. #~ msgstr ""
  1322. #~ msgid "Self Informations"
  1323. #~ msgstr ""
  1324. #~ msgid ""
  1325. #~ "Change how forms are submited, <a "
  1326. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1327. #~ " rel=\"external\">learn more about request "
  1328. #~ "methods</a>"
  1329. #~ msgstr ""
  1330. #~ msgid ""
  1331. #~ "This plugin checks if the address "
  1332. #~ "of the request is a TOR exit "
  1333. #~ "node, and informs the user if it"
  1334. #~ " is, like check.torproject.org but from "
  1335. #~ "searxng."
  1336. #~ msgstr ""
  1337. #~ msgid ""
  1338. #~ "The TOR exit node list "
  1339. #~ "(https://check.torproject.org/exit-addresses) is "
  1340. #~ "unreachable."
  1341. #~ msgstr ""
  1342. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1343. #~ msgstr ""
  1344. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1345. #~ msgstr ""
  1346. #~ msgid ""
  1347. #~ "The could not download the list of"
  1348. #~ " Tor exit-nodes from "
  1349. #~ "https://check.torproject.org/exit-addresses."
  1350. #~ msgstr ""
  1351. #~ msgid ""
  1352. #~ "You are using Tor. It looks like"
  1353. #~ " you have this external IP address:"
  1354. #~ " {ip_address}."
  1355. #~ msgstr ""
  1356. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1357. #~ msgstr ""
  1358. #~ msgid "Autodetect search language"
  1359. #~ msgstr ""
  1360. #~ msgid "Automatically detect the query search language and switch to it."
  1361. #~ msgstr ""
  1362. #~ msgid "others"
  1363. #~ msgstr "eraill"
  1364. #~ msgid ""
  1365. #~ "This tab does not show up for "
  1366. #~ "search results, but you can search "
  1367. #~ "the engines listed here via bangs."
  1368. #~ msgstr ""
  1369. #~ msgid "Shortcut"
  1370. #~ msgstr "Llwybr Byr"
  1371. #~ msgid "!bang"
  1372. #~ msgstr ""
  1373. #~ msgid ""
  1374. #~ "This tab dues not exists in the"
  1375. #~ " user interface, but you can search"
  1376. #~ " in these engines by its !bangs."
  1377. #~ msgstr ""
  1378. #~ msgid "Engines cannot retrieve results."
  1379. #~ msgstr "Ni all y peiriannau cael canlyniadau."
  1380. #~ msgid "Please, try again later or find another SearXNG instance."
  1381. #~ msgstr ""
  1382. #~ msgid ""
  1383. #~ "Redirect to open-access versions of "
  1384. #~ "publications when available (plugin required)"
  1385. #~ msgstr ""
  1386. #~ msgid "Bang"
  1387. #~ msgstr "!bang"
  1388. #~ msgid ""
  1389. #~ "Change how forms are submitted, <a "
  1390. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1391. #~ " rel=\"external\">learn more about request "
  1392. #~ "methods</a>"
  1393. #~ msgstr ""
  1394. #~ msgid "On"
  1395. #~ msgstr "Ymlaen"
  1396. #~ msgid "Off"
  1397. #~ msgstr "I ffwrdd"
  1398. #~ msgid "Enabled"
  1399. #~ msgstr "Galluogwyd"
  1400. #~ msgid "Disabled"
  1401. #~ msgstr "Analluogwyd"
  1402. #~ msgid ""
  1403. #~ "Perform search immediately if a category"
  1404. #~ " selected. Disable to select multiple "
  1405. #~ "categories. (JavaScript required)"
  1406. #~ msgstr ""
  1407. #~ msgid "Vim-like hotkeys"
  1408. #~ msgstr ""
  1409. #~ msgid ""
  1410. #~ "Navigate search results with Vim-like"
  1411. #~ " hotkeys (JavaScript required). Press \"h\""
  1412. #~ " key on main or result page to"
  1413. #~ " get help."
  1414. #~ msgstr ""
  1415. #~ msgid ""
  1416. #~ "we didn't find any results. Please "
  1417. #~ "use another query or search in "
  1418. #~ "more categories."
  1419. #~ msgstr ""
  1420. #~ "Ni ddaethpwyd o hyd i unrhyw "
  1421. #~ "ganlyniadau. Defnyddiwch derm(au) chwilio "
  1422. #~ "gwahanol neu ehangu'r chwilio i ragor"
  1423. #~ " o gategorïau."