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