messages.po 49 KB

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