messages.po 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103
  1. # Filipino translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # gr01d, 2018
  7. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  8. # Hachiki <ninonakano408@gmail.com>, 2022.
  9. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  10. # johnmartzbuntia <johnmartibuntia@jmtb.xyz>, 2024.
  11. # hankskyjames777 <iamjuanz30312@gmail.com>, 2024.
  12. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  13. # Kita Ikuyo <searinminecraft@courvix.com>, 2024, 2025.
  14. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  15. # hankskyjames777 <hankskyjames777@users.noreply.translate.codeberg.org>,
  16. # 2025.
  17. # johnmartzbuntia <johnmartzbuntia@users.noreply.translate.codeberg.org>,
  18. # marc-lopez <marc-lopez@noreply.codeberg.org>, 2025.
  19. msgid ""
  20. msgstr ""
  21. "Project-Id-Version: searx\n"
  22. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  23. "POT-Creation-Date: 2025-03-29 09:21+0000\n"
  24. "PO-Revision-Date: 2025-03-06 16:03+0000\n"
  25. "Last-Translator: marc-lopez <marc-lopez@noreply.codeberg.org>\n"
  26. "Language: fil\n"
  27. "Language-Team: Filipino "
  28. "<https://translate.codeberg.org/projects/searxng/searxng/fil/>\n"
  29. "Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4"
  30. " || n % 10 != 6 || n % 10 != 9);\n"
  31. "MIME-Version: 1.0\n"
  32. "Content-Type: text/plain; charset=utf-8\n"
  33. "Content-Transfer-Encoding: 8bit\n"
  34. "Generated-By: Babel 2.17.0\n"
  35. #. CONSTANT_NAMES['NO_SUBGROUPING']
  36. #: searx/searxng.msg
  37. msgid "without further subgrouping"
  38. msgstr "nang walang karagdagang pagbubuklod ng data"
  39. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  40. #: searx/searxng.msg
  41. msgid "other"
  42. msgstr "iba pa"
  43. #. CATEGORY_NAMES['FILES']
  44. #: searx/searxng.msg
  45. msgid "files"
  46. msgstr "file"
  47. #. CATEGORY_NAMES['GENERAL']
  48. #: searx/searxng.msg
  49. msgid "general"
  50. msgstr "pangkalahatan"
  51. #. CATEGORY_NAMES['MUSIC']
  52. #: searx/searxng.msg
  53. msgid "music"
  54. msgstr "musika"
  55. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  56. #: searx/searxng.msg
  57. msgid "social media"
  58. msgstr "social media"
  59. #. CATEGORY_NAMES['IMAGES']
  60. #: searx/searxng.msg
  61. msgid "images"
  62. msgstr "larawan"
  63. #. CATEGORY_NAMES['VIDEOS']
  64. #: searx/searxng.msg
  65. msgid "videos"
  66. msgstr "mga bidyo"
  67. #. CATEGORY_NAMES['RADIO']
  68. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  69. msgid "radio"
  70. msgstr "radyo"
  71. #. CATEGORY_NAMES['TV']
  72. #: searx/searxng.msg
  73. msgid "tv"
  74. msgstr "tv"
  75. #. CATEGORY_NAMES['IT']
  76. #: searx/searxng.msg
  77. msgid "it"
  78. msgstr "it"
  79. #. CATEGORY_NAMES['NEWS']
  80. #: searx/searxng.msg
  81. msgid "news"
  82. msgstr "mga balita"
  83. #. CATEGORY_NAMES['MAP']
  84. #: searx/searxng.msg
  85. msgid "map"
  86. msgstr "mapa"
  87. #. CATEGORY_NAMES['ONIONS']
  88. #: searx/searxng.msg
  89. msgid "onions"
  90. msgstr "mga onion links"
  91. #. CATEGORY_NAMES['SCIENCE']
  92. #: searx/searxng.msg
  93. msgid "science"
  94. msgstr "agham't siyénsiyá"
  95. #. CATEGORY_GROUPS['APPS']
  96. #: searx/searxng.msg
  97. msgid "apps"
  98. msgstr "mga aplikasyon"
  99. #. CATEGORY_GROUPS['DICTIONARIES']
  100. #: searx/searxng.msg
  101. msgid "dictionaries"
  102. msgstr "diksyonaryo"
  103. #. CATEGORY_GROUPS['LYRICS']
  104. #: searx/searxng.msg
  105. msgid "lyrics"
  106. msgstr "mga liriko"
  107. #. CATEGORY_GROUPS['PACKAGES']
  108. #: searx/searxng.msg
  109. msgid "packages"
  110. msgstr "Packages"
  111. #. CATEGORY_GROUPS['Q_A']
  112. #: searx/searxng.msg
  113. msgid "q&a"
  114. msgstr "Katanungan at Sagot"
  115. #. CATEGORY_GROUPS['REPOS']
  116. #: searx/searxng.msg
  117. msgid "repos"
  118. msgstr "repositoryo"
  119. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  120. #: searx/searxng.msg
  121. msgid "software wikis"
  122. msgstr "mga software wikis"
  123. #. CATEGORY_GROUPS['WEB']
  124. #: searx/searxng.msg
  125. msgid "web"
  126. msgstr "web"
  127. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  128. #: searx/searxng.msg
  129. msgid "scientific publications"
  130. msgstr "mga lathalaing pang agham't siyénsiyá"
  131. #. STYLE_NAMES['AUTO']
  132. #: searx/searxng.msg
  133. msgid "auto"
  134. msgstr "Awto"
  135. #. STYLE_NAMES['LIGHT']
  136. #: searx/searxng.msg
  137. msgid "light"
  138. msgstr "maliwanag"
  139. #. STYLE_NAMES['DARK']
  140. #: searx/searxng.msg
  141. msgid "dark"
  142. msgstr "madilim"
  143. #. STYLE_NAMES['BLACK']
  144. #: searx/searxng.msg
  145. msgid "black"
  146. msgstr "itim"
  147. #. BRAND_CUSTOM_LINKS['UPTIME']
  148. #: searx/searxng.msg
  149. msgid "Uptime"
  150. msgstr "\"uptime\""
  151. #. BRAND_CUSTOM_LINKS['ABOUT']
  152. #: searx/searxng.msg searx/templates/simple/base.html:49
  153. msgid "About"
  154. msgstr "Tungkol"
  155. #. WEATHER_TERMS['AVERAGE TEMP.']
  156. #: searx/engines/wttr.py:32 searx/searxng.msg
  157. msgid "Average temp."
  158. msgstr "Karaniwang temp."
  159. #. WEATHER_TERMS['CLOUD COVER']
  160. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  161. msgid "Cloud cover"
  162. msgstr "sakop ng mga ulap"
  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 "Kondisyon"
  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 "Kasalukuyang kondisyon"
  173. #. WEATHER_TERMS['EVENING']
  174. #: searx/engines/wttr.py:100 searx/searxng.msg
  175. msgid "Evening"
  176. msgstr "Hapon"
  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 "parang pakiramdam ng"
  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 "halumimig"
  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 "pinakamataas na temperatura"
  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 "pinikamababang temperatura"
  197. #. WEATHER_TERMS['MORNING']
  198. #: searx/engines/wttr.py:100 searx/searxng.msg
  199. msgid "Morning"
  200. msgstr "Umaga"
  201. #. WEATHER_TERMS['NIGHT']
  202. #: searx/engines/wttr.py:100 searx/searxng.msg
  203. msgid "Night"
  204. msgstr "Gabi"
  205. #. WEATHER_TERMS['NOON']
  206. #: searx/engines/wttr.py:100 searx/searxng.msg
  207. msgid "Noon"
  208. msgstr "Tanghali"
  209. #. WEATHER_TERMS['PRESSURE']
  210. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  211. msgid "Pressure"
  212. msgstr "presyon"
  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 "silang ng araw"
  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 "sibsib ng araw"
  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 "temperatura"
  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 "index ng 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 "bisibílidád"
  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 "hangin"
  243. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  244. #: searx/engines/lemmy.py:85 searx/searxng.msg
  245. msgid "subscribers"
  246. msgstr "mga suskritor"
  247. #. SOCIAL_MEDIA_TERMS['POSTS']
  248. #: searx/engines/lemmy.py:86 searx/searxng.msg
  249. msgid "posts"
  250. msgstr "mga post"
  251. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  252. #: searx/engines/lemmy.py:87 searx/searxng.msg
  253. msgid "active users"
  254. msgstr "mga aktibong gumagamit"
  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 "mga komento"
  260. #. SOCIAL_MEDIA_TERMS['USER']
  261. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  262. msgid "user"
  263. msgstr "tagagamit"
  264. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  265. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  266. msgid "community"
  267. msgstr "pamayanan"
  268. #. SOCIAL_MEDIA_TERMS['POINTS']
  269. #: searx/engines/hackernews.py:82 searx/searxng.msg
  270. msgid "points"
  271. msgstr "mga punto"
  272. #. SOCIAL_MEDIA_TERMS['TITLE']
  273. #: searx/searxng.msg
  274. msgid "title"
  275. msgstr "titulo"
  276. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  277. #: searx/engines/hackernews.py:85 searx/searxng.msg
  278. msgid "author"
  279. msgstr "maykatha"
  280. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  281. #: searx/engines/discourse.py:149 searx/searxng.msg
  282. msgid "open"
  283. msgstr "bukas"
  284. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  285. #: searx/engines/discourse.py:149 searx/searxng.msg
  286. msgid "closed"
  287. msgstr "sarado"
  288. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  289. #: searx/engines/discourse.py:160 searx/searxng.msg
  290. msgid "answered"
  291. msgstr "sinagot"
  292. #: searx/webapp.py:312
  293. msgid "No item found"
  294. msgstr "Walang nakita na aytem"
  295. #: searx/engines/qwant.py:291
  296. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:314
  297. msgid "Source"
  298. msgstr "Pinagmulan"
  299. #: searx/webapp.py:316
  300. msgid "Error loading the next page"
  301. msgstr "Error sa paglo-load ng susunod na pahina"
  302. #: searx/webapp.py:469 searx/webapp.py:875
  303. msgid "Invalid settings, please edit your preferences"
  304. msgstr "Di-wastong mga setting, pakibago ang iyong mga kagustuhan"
  305. #: searx/webapp.py:485
  306. msgid "Invalid settings"
  307. msgstr "Di-wastong mga setting"
  308. #: searx/webapp.py:562 searx/webapp.py:652
  309. msgid "search error"
  310. msgstr "nagkaproblema sa paghahanap ng mga resulta"
  311. #: searx/webutils.py:36
  312. msgid "timeout"
  313. msgstr "panandaliang pagtigil"
  314. #: searx/webutils.py:37
  315. msgid "parsing error"
  316. msgstr "error sa pag-parse ng mga resulta"
  317. #: searx/webutils.py:38
  318. msgid "HTTP protocol error"
  319. msgstr "Error sa HTTPS protokol"
  320. #: searx/webutils.py:39
  321. msgid "network error"
  322. msgstr "Network Error"
  323. #: searx/webutils.py:40
  324. msgid "SSL error: certificate validation has failed"
  325. msgstr "SSL error: Nabigo ang pagpapatunay ng sertipiko"
  326. #: searx/webutils.py:42
  327. msgid "unexpected crash"
  328. msgstr "Hindi inaasahang pagbagsak"
  329. #: searx/webutils.py:49
  330. msgid "HTTP error"
  331. msgstr "HTTP error"
  332. #: searx/webutils.py:50
  333. msgid "HTTP connection error"
  334. msgstr "Error sa koneksyong HTTP"
  335. #: searx/webutils.py:56
  336. msgid "proxy error"
  337. msgstr "Proxy Error"
  338. #: searx/webutils.py:57
  339. msgid "CAPTCHA"
  340. msgstr "CAPTCHA"
  341. #: searx/webutils.py:58
  342. msgid "too many requests"
  343. msgstr "masyadong maraming mga kahilingan"
  344. #: searx/webutils.py:59
  345. msgid "access denied"
  346. msgstr "tinanggihan ang access"
  347. #: searx/webutils.py:60
  348. msgid "server API error"
  349. msgstr "pagkakamali sa server API"
  350. #: searx/webutils.py:79
  351. msgid "Suspended"
  352. msgstr "Suspendido"
  353. #: searx/webutils.py:314
  354. #, python-brace-format
  355. msgid "{minutes} minute(s) ago"
  356. msgstr "{minutes} na minuto ang nakalipas"
  357. #: searx/webutils.py:315
  358. #, python-brace-format
  359. msgid "{hours} hour(s), {minutes} minute(s) ago"
  360. msgstr "{hours} oras at {minutes} na minto ang nakalipas"
  361. #: searx/answerers/random.py:69
  362. msgid "Generate different random values"
  363. msgstr "Maglabas ng iba't ibang halaga"
  364. #: searx/answerers/statistics.py:36
  365. #, python-brace-format
  366. msgid "Compute {func} of the arguments"
  367. msgstr "Ikwenta ang {func} ng mga argumento"
  368. #: searx/engines/openstreetmap.py:158
  369. msgid "Show route in map .."
  370. msgstr "Pakita sa mapa ang ruta .."
  371. #: searx/engines/pdbe.py:96
  372. #, python-brace-format
  373. msgid "{title} (OBSOLETE)"
  374. msgstr "{title} (Luma)"
  375. #: searx/engines/pdbe.py:103
  376. msgid "This entry has been superseded by"
  377. msgstr "Ang tala na ito ay ipinagpaliban ng"
  378. #: searx/engines/qwant.py:293
  379. msgid "Channel"
  380. msgstr "Tyanel"
  381. #: searx/engines/radio_browser.py:105
  382. msgid "bitrate"
  383. msgstr "bitrate"
  384. #: searx/engines/radio_browser.py:106
  385. msgid "votes"
  386. msgstr "mga boto"
  387. #: searx/engines/radio_browser.py:107
  388. msgid "clicks"
  389. msgstr "mga click"
  390. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  391. #: searx/engines/zlibrary.py:137
  392. msgid "Language"
  393. msgstr "Wika"
  394. #: searx/engines/semantic_scholar.py:79
  395. #, python-brace-format
  396. msgid ""
  397. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  398. "{lastCitationVelocityYear}"
  399. msgstr ""
  400. "{numCitations} mga sipi mula sa taon {firstCitationVelocityYear} at "
  401. "{lastCitationVelocityYear}"
  402. #: searx/engines/tineye.py:48
  403. msgid ""
  404. "Could not read that image url. This may be due to an unsupported file "
  405. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  406. " WebP."
  407. msgstr ""
  408. "Hindi mabasa ang url ng imahe. Baka ang format ay hindi suportado. JPEG, "
  409. "PNG, GIF, BMP, TIFF o WebP lamang ang tinatanggap ng TinEye."
  410. #: searx/engines/tineye.py:54
  411. msgid ""
  412. "The image is too simple to find matches. TinEye requires a basic level of"
  413. " visual detail to successfully identify matches."
  414. msgstr ""
  415. "Masyadong payak ang imahe. Gusto ni TinEye ng higit pang detalye para "
  416. "makahanap ng katugma."
  417. #: searx/engines/tineye.py:59
  418. msgid "The image could not be downloaded."
  419. msgstr "Hindi ma-download ang imahe na ito."
  420. #: searx/engines/zlibrary.py:138
  421. msgid "Book rating"
  422. msgstr "rating ng libro"
  423. #: searx/engines/zlibrary.py:139
  424. msgid "File quality"
  425. msgstr "Kalidad ng file"
  426. #: searx/plugins/ahmia_filter.py:32
  427. msgid "Ahmia blacklist"
  428. msgstr ""
  429. #: searx/plugins/ahmia_filter.py:33
  430. msgid "Filter out onion results that appear in Ahmia's blacklist."
  431. msgstr ""
  432. #: searx/plugins/calculator.py:38
  433. msgid "Basic Calculator"
  434. msgstr ""
  435. #: searx/plugins/calculator.py:39
  436. msgid "Calculate mathematical expressions via the search bar"
  437. msgstr "kalkulahin ang matematika gamit ang rehas ng pagsaliksik"
  438. #: searx/plugins/hash_plugin.py:34
  439. msgid "Hash plugin"
  440. msgstr "Plugin na hash"
  441. #: searx/plugins/hash_plugin.py:35
  442. msgid "Converts strings to different hash digests."
  443. msgstr "Isinasalin ang string sa iba't ibang hash digests."
  444. #: searx/plugins/hash_plugin.py:62
  445. msgid "hash digest"
  446. msgstr "Hash digest"
  447. #: searx/plugins/hostnames.py:123
  448. msgid "Hostnames plugin"
  449. msgstr "Hostnames plugin"
  450. #: searx/plugins/hostnames.py:124
  451. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  452. msgstr ""
  453. "Isulat muli ang mga hostname, alisin ang mga resulta o unahin ang mga ito"
  454. " batay sa hostname"
  455. #: searx/plugins/oa_doi_rewrite.py:55
  456. msgid "Open Access DOI rewrite"
  457. msgstr "Malayang akses sa muling pagsulat ng DOI"
  458. #: searx/plugins/oa_doi_rewrite.py:56
  459. msgid ""
  460. "Avoid paywalls by redirecting to open-access versions of publications "
  461. "when available"
  462. msgstr ""
  463. "Iwasan ang paywall sa pag-redirect sa open-access na bersyon ng "
  464. "pahahayagan kapagmakukuha"
  465. #: searx/plugins/self_info.py:37
  466. msgid "Self Information"
  467. msgstr "Pansariling impormasyon"
  468. #: searx/plugins/self_info.py:39
  469. msgid ""
  470. "Displays your IP if the query is \"ip\" and your user agent if the query "
  471. "is \"user-agent\"."
  472. msgstr ""
  473. "Ipapakita ang iyong IP kung ang query ay \"ip\" at ang iyong user agent "
  474. "kung ang query ay \"user-agent\"."
  475. #: searx/plugins/self_info.py:52
  476. msgid "Your IP is: "
  477. msgstr "Ang iyong IP ay: "
  478. #: searx/plugins/self_info.py:55
  479. msgid "Your user-agent is: "
  480. msgstr "Ang iyong user-agent ay: "
  481. #: searx/plugins/tor_check.py:42
  482. msgid "Tor check plugin"
  483. msgstr "Plugin na pang-suri ng Tor"
  484. #: searx/plugins/tor_check.py:44
  485. msgid ""
  486. "This plugin checks if the address of the request is a Tor exit-node, and "
  487. "informs the user if it is; like check.torproject.org, but from SearXNG."
  488. msgstr ""
  489. "Ang plugin na ito ay tsini-check kung ang address ng request ay isang TOR"
  490. " exit node, at i-iinform ang user kung oo, gaya ng check.torproject.org "
  491. "ngunit SearXNG."
  492. #: searx/plugins/tor_check.py:65
  493. msgid "Could not download the list of Tor exit-nodes from"
  494. msgstr "Hindi madownload ang listahan ng Tor exit-nodes mula sa"
  495. #: searx/plugins/tor_check.py:72
  496. msgid "You are using Tor and it looks like you have the external IP address"
  497. msgstr "Ikaw ay gumagamit ng Tor at mukhang meron kang pang-labas na IP address"
  498. #: searx/plugins/tor_check.py:76
  499. msgid "You are not using Tor and you have the external IP address"
  500. msgstr "Ikaw ay hindi gumagamit ng Tor at meron kang pang-labas na IP address"
  501. #: searx/plugins/tracker_url_remover.py:37
  502. msgid "Tracker URL remover"
  503. msgstr "Alisin ang URL tracker"
  504. #: searx/plugins/tracker_url_remover.py:38
  505. msgid "Remove trackers arguments from the returned URL"
  506. msgstr "Alisin ang tracker sa ibabalik na URL"
  507. #: searx/plugins/unit_converter.py:49
  508. msgid "Unit converter plugin"
  509. msgstr ""
  510. #: searx/plugins/unit_converter.py:50
  511. msgid "Convert between units"
  512. msgstr "ipalit sa pamamagitan ng mga yunit"
  513. #: searx/templates/simple/404.html:4
  514. msgid "Page not found"
  515. msgstr "Hindi natagpuan ang pahina"
  516. #: searx/templates/simple/404.html:6
  517. #, python-format
  518. msgid "Go to %(search_page)s."
  519. msgstr "Pumunta sa %(search_page)s."
  520. #: searx/templates/simple/404.html:6
  521. msgid "search page"
  522. msgstr "ang pahina ng paghahanap"
  523. #: searx/templates/simple/base.html:53
  524. msgid "Donate"
  525. msgstr "Magbigay"
  526. #: searx/templates/simple/base.html:57
  527. #: searx/templates/simple/preferences.html:156
  528. msgid "Preferences"
  529. msgstr "Mga Kagustuhan"
  530. #: searx/templates/simple/base.html:67
  531. msgid "Powered by"
  532. msgstr "Pinapatakbo ng"
  533. #: searx/templates/simple/base.html:67
  534. msgid "a privacy-respecting, open metasearch engine"
  535. msgstr "isang nagrerespeto sa privacy, at open na metasearch engine"
  536. #: searx/templates/simple/base.html:68
  537. #: searx/templates/simple/result_templates/packages.html:59
  538. msgid "Source code"
  539. msgstr "sors kowd"
  540. #: searx/templates/simple/base.html:69
  541. msgid "Issue tracker"
  542. msgstr "Tagasubaybay ng isyu"
  543. #: searx/templates/simple/base.html:70 searx/templates/simple/stats.html:18
  544. msgid "Engine stats"
  545. msgstr "Engine stats"
  546. #: searx/templates/simple/base.html:72
  547. msgid "Public instances"
  548. msgstr "Pampublikong instances"
  549. #: searx/templates/simple/base.html:75
  550. msgid "Privacy policy"
  551. msgstr "Polisiyang pampribado"
  552. #: searx/templates/simple/base.html:78
  553. msgid "Contact instance maintainer"
  554. msgstr "Kontakin ang iyong instance maintainer"
  555. #: searx/templates/simple/categories.html:30
  556. msgid "Click on the magnifier to perform search"
  557. msgstr "Pindutin ang magnifier para maghanap"
  558. #: searx/templates/simple/macros.html:40
  559. msgid "Length"
  560. msgstr "Haba"
  561. #: searx/templates/simple/macros.html:41
  562. msgid "Views"
  563. msgstr "mga pananaw"
  564. #: searx/templates/simple/macros.html:42
  565. #: searx/templates/simple/result_templates/files.html:34
  566. #: searx/templates/simple/result_templates/images.html:19
  567. #: searx/templates/simple/result_templates/paper.html:6
  568. msgid "Author"
  569. msgstr "Awtor"
  570. #: searx/templates/simple/macros.html:50
  571. msgid "cached"
  572. msgstr "naka-cache"
  573. #: searx/templates/simple/macros.html:50
  574. msgid "proxied"
  575. msgstr "na-proxy"
  576. #: searx/templates/simple/new_issue.html:64
  577. msgid "Start submitting a new issue on GitHub"
  578. msgstr "Mag-simulang mag-abot ng mga bagong isyu sa GitHub"
  579. #: searx/templates/simple/new_issue.html:66
  580. msgid "Please check for existing bugs about this engine on GitHub"
  581. msgstr "Pakitingnan ang mga umiiral nang bug tungkol sa engine na ito sa GitHub"
  582. #: searx/templates/simple/new_issue.html:69
  583. msgid "I confirm there is no existing bug about the issue I encounter"
  584. msgstr "Kinukumpirma kong walang umiiral na bug tungkol sa isyung nakatagpo ko"
  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 ""
  588. "Kung ito ay isang pampublikong instance, mangyaring tukuyin ang URL sa "
  589. "ulat ng bug"
  590. #: searx/templates/simple/new_issue.html:72
  591. msgid "Submit a new issue on Github including the above information"
  592. msgstr ""
  593. "Mga-submit ng isang bagong issue sa GitHub kasama ng impormasyong nasa "
  594. "itaas"
  595. #: searx/templates/simple/preferences.html:65
  596. msgid "No HTTPS"
  597. msgstr "Walang HTTPS"
  598. #: searx/templates/simple/elements/engines_msg.html:14
  599. #: searx/templates/simple/preferences.html:69
  600. #: searx/templates/simple/preferences.html:70
  601. msgid "View error logs and submit a bug report"
  602. msgstr "Tignan ang error logs at magsumite ng bug report"
  603. #: searx/templates/simple/preferences.html:74
  604. msgid "!bang for this engine"
  605. msgstr "!bang para sa engine"
  606. #: searx/templates/simple/preferences.html:80
  607. msgid "!bang for its categories"
  608. msgstr "!bang para sa katerogidad"
  609. #: searx/templates/simple/preferences.html:102
  610. #: searx/templates/simple/stats.html:64
  611. msgid "Median"
  612. msgstr "Gitna"
  613. #: searx/templates/simple/preferences.html:103
  614. #: searx/templates/simple/stats.html:70
  615. msgid "P80"
  616. msgstr "P80"
  617. #: searx/templates/simple/preferences.html:104
  618. #: searx/templates/simple/stats.html:76
  619. msgid "P95"
  620. msgstr "P95"
  621. #: searx/templates/simple/preferences.html:136
  622. msgid "Failed checker test(s): "
  623. msgstr "Nabigo ang checker test(s): "
  624. #: searx/templates/simple/preferences.html:138
  625. msgid "Errors:"
  626. msgstr "Mga error:"
  627. #: searx/templates/simple/preferences.html:163
  628. msgid "General"
  629. msgstr "Pangkalahatan"
  630. #: searx/templates/simple/preferences.html:166
  631. msgid "Default categories"
  632. msgstr "Ang mga default na uri"
  633. #: searx/templates/simple/preferences.html:194
  634. msgid "User interface"
  635. msgstr "Ang User interface"
  636. #: searx/templates/simple/preferences.html:217
  637. msgid "Privacy"
  638. msgstr "Pagiging Pribado"
  639. #: searx/templates/simple/preferences.html:232
  640. msgid "Engines"
  641. msgstr "Engines"
  642. #: searx/templates/simple/preferences.html:234
  643. msgid "Currently used search engines"
  644. msgstr "Ang ginagamit natin na search engines"
  645. #: searx/templates/simple/preferences.html:243
  646. msgid "Special Queries"
  647. msgstr "Mga Espesyal na Queries"
  648. #: searx/templates/simple/preferences.html:251
  649. msgid "Cookies"
  650. msgstr "Cookies"
  651. #: searx/templates/simple/results.html:30
  652. msgid "Number of results"
  653. msgstr "Bilang ng resulta"
  654. #: searx/templates/simple/results.html:36
  655. msgid "Info"
  656. msgstr "Impormasyon"
  657. #: searx/templates/simple/results.html:77
  658. msgid "Back to top"
  659. msgstr "Balik sa taas"
  660. #: searx/templates/simple/results.html:95
  661. msgid "Previous page"
  662. msgstr "Kaninang Pahina"
  663. #: searx/templates/simple/results.html:113
  664. msgid "Next page"
  665. msgstr "Susunod na page"
  666. #: searx/templates/simple/search.html:3
  667. msgid "Display the front page"
  668. msgstr "Ipakita ang front page"
  669. #: searx/templates/simple/search.html:9
  670. #: searx/templates/simple/simple_search.html:5
  671. msgid "Search for..."
  672. msgstr "Maghanap ng..."
  673. #: searx/templates/simple/search.html:10
  674. #: searx/templates/simple/simple_search.html:6
  675. msgid "clear"
  676. msgstr "Malinaw"
  677. #: searx/templates/simple/search.html:11
  678. #: searx/templates/simple/simple_search.html:7
  679. msgid "search"
  680. msgstr "maghanap"
  681. #: searx/templates/simple/stats.html:21
  682. msgid "There is currently no data available. "
  683. msgstr "Wala pa sa ngayon na makitang datos."
  684. #: searx/templates/simple/preferences/engines.html:24
  685. #: searx/templates/simple/stats.html:25
  686. msgid "Engine name"
  687. msgstr "Pangalan ng engine"
  688. #: searx/templates/simple/stats.html:26
  689. msgid "Scores"
  690. msgstr "Iskor"
  691. #: searx/templates/simple/stats.html:27
  692. msgid "Result count"
  693. msgstr "bilang ng mga resulta"
  694. #: searx/templates/simple/elements/engines_msg.html:7
  695. #: searx/templates/simple/preferences/engines.html:31
  696. #: searx/templates/simple/stats.html:28
  697. msgid "Response time"
  698. msgstr "Oras ng pagtugon"
  699. #: searx/templates/simple/preferences/engines.html:35
  700. #: searx/templates/simple/stats.html:29
  701. msgid "Reliability"
  702. msgstr "pagiging maaasahan"
  703. #: searx/templates/simple/stats.html:59
  704. msgid "Total"
  705. msgstr "Kabuuan"
  706. #: searx/templates/simple/stats.html:60
  707. msgid "HTTP"
  708. msgstr "HTTP"
  709. #: searx/templates/simple/stats.html:61
  710. msgid "Processing"
  711. msgstr "prumoproseso"
  712. #: searx/templates/simple/stats.html:99
  713. msgid "Warnings"
  714. msgstr "Mga babala"
  715. #: searx/templates/simple/stats.html:99
  716. msgid "Errors and exceptions"
  717. msgstr "Mga error at exceptions"
  718. #: searx/templates/simple/stats.html:105
  719. msgid "Exception"
  720. msgstr "pagkakabigo/eksepsyon"
  721. #: searx/templates/simple/stats.html:107
  722. msgid "Message"
  723. msgstr "Mensahe"
  724. #: searx/templates/simple/stats.html:109
  725. msgid "Percentage"
  726. msgstr "porsyento"
  727. #: searx/templates/simple/stats.html:111
  728. msgid "Parameter"
  729. msgstr "pamantayan"
  730. #: searx/templates/simple/result_templates/files.html:36
  731. #: searx/templates/simple/stats.html:119
  732. msgid "Filename"
  733. msgstr "pangalan ng file"
  734. #: searx/templates/simple/stats.html:120
  735. msgid "Function"
  736. msgstr "gawain"
  737. #: searx/templates/simple/stats.html:121
  738. msgid "Code"
  739. msgstr "code"
  740. #: searx/templates/simple/stats.html:128
  741. msgid "Checker"
  742. msgstr "tagasuri"
  743. #: searx/templates/simple/stats.html:131
  744. msgid "Failed test"
  745. msgstr "Nabigong Pagsusulit"
  746. #: searx/templates/simple/stats.html:132
  747. msgid "Comment(s)"
  748. msgstr "(mga) komento"
  749. #: searx/templates/simple/answer/translations.html:12
  750. #: searx/templates/simple/preferences/answerers.html:8
  751. msgid "Examples"
  752. msgstr "Mga halimbawa"
  753. #: searx/templates/simple/answer/translations.html:21
  754. msgid "Definitions"
  755. msgstr "Mga Kahulugan"
  756. #: searx/templates/simple/answer/translations.html:30
  757. msgid "Synonyms"
  758. msgstr "síngkahulugán"
  759. #: searx/templates/simple/elements/answers.html:2
  760. msgid "Answers"
  761. msgstr "Mga sagot"
  762. #: searx/templates/simple/elements/apis.html:3
  763. msgid "Download results"
  764. msgstr "I-download ang mga resulta"
  765. #: searx/templates/simple/elements/corrections.html:2
  766. msgid "Try searching for:"
  767. msgstr "Subukan maghanap ng:"
  768. #: searx/templates/simple/elements/engines_msg.html:4
  769. msgid "Messages from the search engines"
  770. msgstr "Mga mensahe mula sa mga search engine"
  771. #: searx/templates/simple/elements/engines_msg.html:7
  772. msgid "seconds"
  773. msgstr "mga segundo"
  774. #: searx/templates/simple/elements/search_url.html:3
  775. msgid "Search URL"
  776. msgstr "URL ng Search"
  777. #: searx/templates/simple/elements/search_url.html:4
  778. #: searx/templates/simple/preferences/cookies.html:54
  779. msgid "Copied"
  780. msgstr "nakopya"
  781. #: searx/templates/simple/elements/search_url.html:4
  782. #: searx/templates/simple/preferences/cookies.html:54
  783. msgid "Copy"
  784. msgstr "kopyahin"
  785. #: searx/templates/simple/elements/suggestions.html:3
  786. msgid "Suggestions"
  787. msgstr "Mga mungkahi"
  788. #: searx/templates/simple/filters/languages.html:1
  789. #: searx/templates/simple/preferences/language.html:2
  790. msgid "Search language"
  791. msgstr "Ang wika ng paghahanap"
  792. #: searx/templates/simple/filters/languages.html:4
  793. #: searx/templates/simple/preferences/language.html:7
  794. msgid "Default language"
  795. msgstr "Default na wika"
  796. #: searx/templates/simple/filters/languages.html:8
  797. #: searx/templates/simple/preferences/language.html:11
  798. msgid "Auto-detect"
  799. msgstr "awtomatikong pangdedetekta"
  800. #: searx/templates/simple/filters/safesearch.html:1
  801. #: searx/templates/simple/filters/safesearch.html:2
  802. #: searx/templates/simple/filters/safesearch.html:3
  803. #: searx/templates/simple/filters/safesearch.html:4
  804. #: searx/templates/simple/preferences/engines.html:27
  805. #: searx/templates/simple/preferences/safesearch.html:2
  806. msgid "SafeSearch"
  807. msgstr "Ligtas na Paghahanap"
  808. #: searx/templates/simple/filters/safesearch.html:2
  809. #: searx/templates/simple/preferences/safesearch.html:7
  810. msgid "Strict"
  811. msgstr "Mahigpit"
  812. #: searx/templates/simple/filters/safesearch.html:3
  813. #: searx/templates/simple/preferences/safesearch.html:11
  814. msgid "Moderate"
  815. msgstr "Banayad"
  816. #: searx/templates/simple/filters/safesearch.html:4
  817. #: searx/templates/simple/preferences/safesearch.html:15
  818. msgid "None"
  819. msgstr "Wala"
  820. #: searx/templates/simple/filters/time_range.html:1
  821. #: searx/templates/simple/preferences/engines.html:28
  822. msgid "Time range"
  823. msgstr "Agwat ng oras"
  824. #: searx/templates/simple/filters/time_range.html:3
  825. msgid "Anytime"
  826. msgstr "Kahit anong oras"
  827. #: searx/templates/simple/filters/time_range.html:6
  828. msgid "Last day"
  829. msgstr "Nakaraang araw"
  830. #: searx/templates/simple/filters/time_range.html:9
  831. msgid "Last week"
  832. msgstr "Nakaraang linggo"
  833. #: searx/templates/simple/filters/time_range.html:12
  834. msgid "Last month"
  835. msgstr "Nakaraang buwan"
  836. #: searx/templates/simple/filters/time_range.html:15
  837. msgid "Last year"
  838. msgstr "Nakaraang taon"
  839. #: searx/templates/simple/messages/no_cookies.html:3
  840. msgid "Information!"
  841. msgstr "Impormasyon!"
  842. #: searx/templates/simple/messages/no_cookies.html:4
  843. msgid "currently, there are no cookies defined."
  844. msgstr "wala pang cookies na naka-define sa ngayon."
  845. #: searx/templates/simple/messages/no_results.html:6
  846. msgid "Sorry!"
  847. msgstr "Paumanhin!"
  848. #: searx/templates/simple/messages/no_results.html:12
  849. msgid "No results were found. You can try to:"
  850. msgstr "Walang mga resultang nahanap. Pwede mong subukang:"
  851. #: searx/templates/simple/messages/no_results.html:14
  852. msgid "There are no more results. You can try to:"
  853. msgstr "Walang karagdagang mga resulta. Maaari mong subukan ang:"
  854. #: searx/templates/simple/messages/no_results.html:19
  855. msgid "Refresh the page."
  856. msgstr "I-refresh ang pahina."
  857. #: searx/templates/simple/messages/no_results.html:20
  858. msgid "Search for another query or select another category (above)."
  859. msgstr "Hanapin ang iba pang query o pumili ng ibang kategorya (sa itaas)."
  860. #: searx/templates/simple/messages/no_results.html:21
  861. msgid "Change the search engine used in the preferences:"
  862. msgstr "Baguhin ang ginagamit na search engine sa mga nais:"
  863. #: searx/templates/simple/messages/no_results.html:22
  864. msgid "Switch to another instance:"
  865. msgstr "Lumipat sa ibang \"instance\":"
  866. #: searx/templates/simple/messages/no_results.html:24
  867. msgid "Search for another query or select another category."
  868. msgstr "Humanap ng ibang query o pumili ng ibang kategorya."
  869. #: searx/templates/simple/messages/no_results.html:25
  870. msgid "Go back to the previous page using the previous page button."
  871. msgstr "Bumalik sa nakaraang pahina gamit ang button ng nakaraang pahina."
  872. #: searx/templates/simple/preferences/answerers.html:4
  873. #: searx/templates/simple/preferences/engines.html:23
  874. msgid "Allow"
  875. msgstr "Payagan"
  876. #: searx/templates/simple/preferences/answerers.html:5
  877. msgid "Keywords (first word in query)"
  878. msgstr "Mga mahahalagang salita (unang salita sa query)"
  879. #: searx/templates/simple/preferences/answerers.html:6
  880. #: searx/templates/simple/result_templates/packages.html:7
  881. msgid "Name"
  882. msgstr "Pangalan"
  883. #: searx/templates/simple/preferences/answerers.html:7
  884. msgid "Description"
  885. msgstr "Paglalarawan"
  886. #: searx/templates/simple/preferences/answerers.html:13
  887. msgid "This is the list of SearXNG's instant answering modules."
  888. msgstr "Ito ang listahan ng mga instant answering module ng SearXNG."
  889. #: searx/templates/simple/preferences/answerers.html:29
  890. msgid "This is the list of plugins."
  891. msgstr "Ito ang listahan ng mga plugin."
  892. #: searx/templates/simple/preferences/autocomplete.html:2
  893. msgid "Autocomplete"
  894. msgstr "Kusang tinatapos"
  895. #: searx/templates/simple/preferences/autocomplete.html:15
  896. msgid "Find stuff as you type"
  897. msgstr "Maghanap habang ikaw ang nag-tytype"
  898. #: searx/templates/simple/preferences/center_alignment.html:2
  899. msgid "Center Alignment"
  900. msgstr "Pag-align sa Gitnang"
  901. #: searx/templates/simple/preferences/center_alignment.html:14
  902. msgid "Displays results in the center of the page (Oscar layout)."
  903. msgstr "Tignan ang resulta sa gitnang bahagi ng pahina (Oscar layout)."
  904. #: searx/templates/simple/preferences/cookies.html:2
  905. msgid ""
  906. "This is the list of cookies and their values SearXNG is storing on your "
  907. "computer."
  908. msgstr ""
  909. "Ito ang listahan ng mga cookies at values na ini-store ng SearXNG sa "
  910. "i'yong computer."
  911. #: searx/templates/simple/preferences/cookies.html:3
  912. msgid "With that list, you can assess SearXNG transparency."
  913. msgstr "Sa tulong ng listahan, maaari mong suriin ang transparansiya ng SearXNG."
  914. #: searx/templates/simple/preferences/cookies.html:9
  915. msgid "Cookie name"
  916. msgstr "Pangalan ng cookie"
  917. #: searx/templates/simple/preferences/cookies.html:10
  918. msgid "Value"
  919. msgstr "Nilalaman"
  920. #: searx/templates/simple/preferences/cookies.html:23
  921. msgid "Search URL of the currently saved preferences"
  922. msgstr "Search URL ng kasalukuyan na naka-save sa preferences"
  923. #: searx/templates/simple/preferences/cookies.html:32
  924. msgid ""
  925. "Note: specifying custom settings in the search URL can reduce privacy by "
  926. "leaking data to the clicked result sites."
  927. msgstr ""
  928. "Tandaan: kapag gumawa ng sariling settings sa search URL mababawasan ang "
  929. "pagiging pribado dahil magkakaroon ng butas sa datos dahil sa pag-pindot "
  930. "sa resulta na sites."
  931. #: searx/templates/simple/preferences/cookies.html:35
  932. msgid "URL to restore your preferences in another browser"
  933. msgstr "URL para ibalik ang iyong mga preference sa ibang browser"
  934. #: searx/templates/simple/preferences/cookies.html:43
  935. msgid ""
  936. "A URL containing your preferences. This URL can be used to restore your "
  937. "settings on a different device."
  938. msgstr ""
  939. #: searx/templates/simple/preferences/cookies.html:46
  940. msgid "Copy preferences hash"
  941. msgstr "Kopyahin ang hash ng mga preference"
  942. #: searx/templates/simple/preferences/cookies.html:57
  943. msgid "Insert copied preferences hash (without URL) to restore"
  944. msgstr ""
  945. "Ilagay ang kinopyahang hash ng mga preference (walang URL) upang mag-"
  946. "restore"
  947. #: searx/templates/simple/preferences/cookies.html:59
  948. msgid "Preferences hash"
  949. msgstr "Hash ng mga preference"
  950. #: searx/templates/simple/preferences/doi_resolver.html:1
  951. msgid "Digital Object Identifier (DOI)"
  952. msgstr "Digital Object Identifier (DOI)"
  953. #: searx/templates/simple/preferences/doi_resolver.html:6
  954. msgid "Open Access DOI resolver"
  955. msgstr "Open Access DOI resolver"
  956. #: searx/templates/simple/preferences/doi_resolver.html:18
  957. msgid "Select service used by DOI rewrite"
  958. msgstr "Pumili ng serbisyo na ginagamit sa pagsulat ng DOI"
  959. #: searx/templates/simple/preferences/engines.html:9
  960. msgid ""
  961. "This tab does not exists in the user interface, but you can search in "
  962. "these engines by its !bangs."
  963. msgstr ""
  964. "Ang tab na ito ay hindi umiiral sa interface ng gumagamit, ngunit maaari "
  965. "kang maghanap sa mga engine na ito sa pamamagitan ng kanilang !bangs."
  966. #: searx/templates/simple/preferences/engines.html:15
  967. msgid "Enable all"
  968. msgstr "paganahin ang lahat"
  969. #: searx/templates/simple/preferences/engines.html:16
  970. msgid "Disable all"
  971. msgstr "huwag paganahin ang lahat"
  972. #: searx/templates/simple/preferences/engines.html:25
  973. msgid "!bang"
  974. msgstr "!bang"
  975. #: searx/templates/simple/preferences/engines.html:26
  976. msgid "Supports selected language"
  977. msgstr "Suportado ang pinili na wika"
  978. #: searx/templates/simple/preferences/engines.html:29
  979. msgid "Weight"
  980. msgstr "Timbang"
  981. #: searx/templates/simple/preferences/engines.html:33
  982. msgid "Max time"
  983. msgstr "Ang max na oras"
  984. #: searx/templates/simple/preferences/favicon.html:2
  985. msgid "Favicon Resolver"
  986. msgstr "favicon solver"
  987. #: searx/templates/simple/preferences/favicon.html:15
  988. msgid "Display favicons near search results"
  989. msgstr "Ipakita ang mga favicon malapit sa mga resulta ng paghahanap"
  990. #: searx/templates/simple/preferences/footer.html:2
  991. msgid ""
  992. "These settings are stored in your cookies, this allows us not to store "
  993. "this data about you."
  994. msgstr ""
  995. "Ang settings ay nakalagay sa cookies upang hindi kami makakuha ng datos "
  996. "mula sa iyo."
  997. #: searx/templates/simple/preferences/footer.html:3
  998. msgid ""
  999. "These cookies serve your sole convenience, we don't use these cookies to "
  1000. "track you."
  1001. msgstr ""
  1002. "Hindi namin ginagamit ang cookies para i-track ka, ito ay para maging "
  1003. "maayos ang paggamit mo."
  1004. #: searx/templates/simple/preferences/footer.html:6
  1005. msgid "Save"
  1006. msgstr "I-save"
  1007. #: searx/templates/simple/preferences/footer.html:9
  1008. msgid "Reset defaults"
  1009. msgstr "I-reset ang defaults"
  1010. #: searx/templates/simple/preferences/footer.html:13
  1011. msgid "Back"
  1012. msgstr "Bumalik"
  1013. #: searx/templates/simple/preferences/hotkeys.html:2
  1014. msgid "Hotkeys"
  1015. msgstr "Mga Hotkeys"
  1016. #: searx/templates/simple/preferences/hotkeys.html:13
  1017. msgid "Vim-like"
  1018. msgstr "Katulad ng Vim"
  1019. #: searx/templates/simple/preferences/hotkeys.html:18
  1020. msgid ""
  1021. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1022. "key on main or result page to get help."
  1023. msgstr ""
  1024. "Mag-navigate sa mga resulta ng paghahanap gamit ang mga hotkey "
  1025. "(JavaScript ay kinakailangan). Pindutin ang \"h\" na key sa pangunahin o "
  1026. "resultang pahina para sa tulong."
  1027. #: searx/templates/simple/preferences/image_proxy.html:2
  1028. msgid "Image proxy"
  1029. msgstr "Proxy ng larawan"
  1030. #: searx/templates/simple/preferences/image_proxy.html:14
  1031. msgid "Proxying image results through SearXNG"
  1032. msgstr "Ang pag-proxy ng mga resulta ng imahe sa pamamagitan ng SearXNG"
  1033. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1034. msgid "Infinite scroll"
  1035. msgstr "Walang hanggan na pag-scroll"
  1036. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1037. msgid "Automatically load next page when scrolling to bottom of current page"
  1038. msgstr ""
  1039. "Awtomatiko na ikarga ang sumunod na pahina kapag nakarating na sa dulo ng"
  1040. " kasalukuyang pahina"
  1041. #: searx/templates/simple/preferences/language.html:24
  1042. msgid "What language do you prefer for search?"
  1043. msgstr "Ano ang gusto mong wika sa paghahanap?"
  1044. #: searx/templates/simple/preferences/language.html:25
  1045. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1046. msgstr ""
  1047. "Pumili ng Auto-detect upang payagan ang SearXNG na matukoy ang wika ng "
  1048. "iyong query."
  1049. #: searx/templates/simple/preferences/method.html:2
  1050. msgid "HTTP Method"
  1051. msgstr "Paraan ng HTTP"
  1052. #: searx/templates/simple/preferences/method.html:14
  1053. msgid "Change how forms are submitted"
  1054. msgstr "Ipalit panong i-submit ang mga form"
  1055. #: searx/templates/simple/preferences/query_in_title.html:2
  1056. msgid "Query in the page's title"
  1057. msgstr "Query sa pamagat ng page"
  1058. #: searx/templates/simple/preferences/query_in_title.html:14
  1059. msgid ""
  1060. "When enabled, the result page's title contains your query. Your browser "
  1061. "can record this title"
  1062. msgstr ""
  1063. "Kapag pinagana, ang pamagat ng pahina ng resulta ay naglalaman ng iyong "
  1064. "query. Maaaring i-record ng iyong browser ang pamagat na ito"
  1065. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1066. msgid "Results on new tabs"
  1067. msgstr "Ang resulta ay na sa bagong tab"
  1068. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1069. msgid "Open result links on new browser tabs"
  1070. msgstr "Buksan ang resulta sa panibagong browser tab"
  1071. #: searx/templates/simple/preferences/safesearch.html:20
  1072. msgid "Filter content"
  1073. msgstr "Salain ang mga nilalaman"
  1074. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1075. msgid "Search on category select"
  1076. msgstr "Maghanap kapag nakapili ng uri"
  1077. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1078. msgid ""
  1079. "Perform search immediately if a category selected. Disable to select "
  1080. "multiple categories"
  1081. msgstr ""
  1082. "Isagawa ang paghahanap kaagad kung may kategoryang pinili. I-disable "
  1083. "upang pumili ng maramihang mga kategorya"
  1084. #: searx/templates/simple/preferences/theme.html:2
  1085. msgid "Theme"
  1086. msgstr "Tema"
  1087. #: searx/templates/simple/preferences/theme.html:14
  1088. msgid "Change SearXNG layout"
  1089. msgstr "Baguhin ang SearXNG layout"
  1090. #: searx/templates/simple/preferences/theme.html:19
  1091. msgid "Theme style"
  1092. msgstr "Stilo ng theme"
  1093. #: searx/templates/simple/preferences/theme.html:31
  1094. msgid "Choose auto to follow your browser settings"
  1095. msgstr "Pumili ng auto para sundin ang mga setting ng iyong browser"
  1096. #: searx/templates/simple/preferences/tokens.html:2
  1097. msgid "Engine tokens"
  1098. msgstr "Mga token ng makina"
  1099. #: searx/templates/simple/preferences/tokens.html:9
  1100. msgid "Access tokens for private engines"
  1101. msgstr "I-access ang mga token para sa mga pribadong makina"
  1102. #: searx/templates/simple/preferences/ui_locale.html:2
  1103. msgid "Interface language"
  1104. msgstr "Ang wika ng Interface"
  1105. #: searx/templates/simple/preferences/ui_locale.html:14
  1106. msgid "Change the language of the layout"
  1107. msgstr "Ibahin ang layout pangwika"
  1108. #: searx/templates/simple/preferences/urlformatting.html:2
  1109. msgid "URL formatting"
  1110. msgstr "Format ng URL"
  1111. #: searx/templates/simple/preferences/urlformatting.html:8
  1112. msgid "Pretty"
  1113. msgstr "Maganda"
  1114. #: searx/templates/simple/preferences/urlformatting.html:13
  1115. msgid "Full"
  1116. msgstr "Puno"
  1117. #: searx/templates/simple/preferences/urlformatting.html:18
  1118. msgid "Host"
  1119. msgstr "Host"
  1120. #: searx/templates/simple/preferences/urlformatting.html:23
  1121. msgid "Change result URL formatting"
  1122. msgstr "Palitan ang pag-format ng URL ng resulta"
  1123. #: searx/templates/simple/result_templates/code.html:13
  1124. msgid "repo"
  1125. msgstr "repositoryo"
  1126. #: searx/templates/simple/result_templates/default.html:6
  1127. #: searx/templates/simple/result_templates/files.html:8
  1128. #: searx/templates/simple/result_templates/files.html:11
  1129. msgid "show media"
  1130. msgstr "ipakita ang media"
  1131. #: searx/templates/simple/result_templates/default.html:6
  1132. #: searx/templates/simple/result_templates/files.html:8
  1133. msgid "hide media"
  1134. msgstr "itago ang media"
  1135. #: searx/templates/simple/result_templates/default.html:14
  1136. #: searx/templates/simple/result_templates/videos.html:14
  1137. msgid "This site did not provide any description."
  1138. msgstr "Ang site na ito ay hindi nagbigay ng deskripsyon."
  1139. #: searx/templates/simple/result_templates/files.html:38
  1140. #: searx/templates/simple/result_templates/images.html:22
  1141. #: searx/templates/simple/result_templates/torrent.html:18
  1142. msgid "Filesize"
  1143. msgstr "Laki ng file"
  1144. #: searx/templates/simple/result_templates/files.html:40
  1145. msgid "Date"
  1146. msgstr "Petsa"
  1147. #: searx/templates/simple/result_templates/files.html:42
  1148. #: searx/templates/simple/result_templates/paper.html:24
  1149. msgid "Type"
  1150. msgstr "Uri"
  1151. #: searx/templates/simple/result_templates/images.html:20
  1152. msgid "Resolution"
  1153. msgstr "Resolusyon"
  1154. #: searx/templates/simple/result_templates/images.html:21
  1155. msgid "Format"
  1156. msgstr "Anyo"
  1157. #: searx/templates/simple/result_templates/images.html:24
  1158. msgid "Engine"
  1159. msgstr "Engine"
  1160. #: searx/templates/simple/result_templates/images.html:25
  1161. msgid "View source"
  1162. msgstr "Tignan ang source"
  1163. #: searx/templates/simple/result_templates/map.html:12
  1164. msgid "address"
  1165. msgstr "address"
  1166. #: searx/templates/simple/result_templates/map.html:43
  1167. msgid "show map"
  1168. msgstr "ipakita ang mapa"
  1169. #: searx/templates/simple/result_templates/map.html:43
  1170. msgid "hide map"
  1171. msgstr "itago ang mapa"
  1172. #: searx/templates/simple/result_templates/packages.html:12
  1173. msgid "Version"
  1174. msgstr "Bersyon"
  1175. #: searx/templates/simple/result_templates/packages.html:18
  1176. msgid "Maintainer"
  1177. msgstr "Tagapangasiwa"
  1178. #: searx/templates/simple/result_templates/packages.html:24
  1179. msgid "Updated at"
  1180. msgstr "Na-update sa"
  1181. #: searx/templates/simple/result_templates/packages.html:30
  1182. #: searx/templates/simple/result_templates/paper.html:25
  1183. msgid "Tags"
  1184. msgstr "Mga Tag/Tatak"
  1185. #: searx/templates/simple/result_templates/packages.html:36
  1186. msgid "Popularity"
  1187. msgstr "Kasikatan"
  1188. #: searx/templates/simple/result_templates/packages.html:42
  1189. msgid "License"
  1190. msgstr "Lisensya"
  1191. #: searx/templates/simple/result_templates/packages.html:52
  1192. msgid "Project"
  1193. msgstr "proyekto"
  1194. #: searx/templates/simple/result_templates/packages.html:55
  1195. msgid "Project homepage"
  1196. msgstr "homepage ng proyekto"
  1197. #: searx/templates/simple/result_templates/paper.html:5
  1198. msgid "Published date"
  1199. msgstr "Petsa ng Paglathala"
  1200. #: searx/templates/simple/result_templates/paper.html:9
  1201. msgid "Journal"
  1202. msgstr "Talaan"
  1203. #: searx/templates/simple/result_templates/paper.html:22
  1204. msgid "Editor"
  1205. msgstr "Patnugot"
  1206. #: searx/templates/simple/result_templates/paper.html:23
  1207. msgid "Publisher"
  1208. msgstr "tagapaglathala"
  1209. #: searx/templates/simple/result_templates/paper.html:26
  1210. msgid "DOI"
  1211. msgstr "DOI"
  1212. #: searx/templates/simple/result_templates/paper.html:27
  1213. msgid "ISSN"
  1214. msgstr "ISSN"
  1215. #: searx/templates/simple/result_templates/paper.html:28
  1216. msgid "ISBN"
  1217. msgstr "ISBN"
  1218. #: searx/templates/simple/result_templates/paper.html:33
  1219. msgid "PDF"
  1220. msgstr "PDF"
  1221. #: searx/templates/simple/result_templates/paper.html:34
  1222. msgid "HTML"
  1223. msgstr "HTML"
  1224. #: searx/templates/simple/result_templates/torrent.html:7
  1225. msgid "magnet link"
  1226. msgstr "i-magnet ang link"
  1227. #: searx/templates/simple/result_templates/torrent.html:8
  1228. msgid "torrent file"
  1229. msgstr "file na torrent"
  1230. #: searx/templates/simple/result_templates/torrent.html:13
  1231. msgid "Seeder"
  1232. msgstr "Seeder"
  1233. #: searx/templates/simple/result_templates/torrent.html:14
  1234. msgid "Leecher"
  1235. msgstr "Leecher"
  1236. #: searx/templates/simple/result_templates/torrent.html:19
  1237. msgid "Number of Files"
  1238. msgstr "Bilang ng mga files"
  1239. #: searx/templates/simple/result_templates/videos.html:6
  1240. msgid "show video"
  1241. msgstr "ipakita ang video"
  1242. #: searx/templates/simple/result_templates/videos.html:6
  1243. msgid "hide video"
  1244. msgstr "itago ang video"
  1245. #~ msgid "Engine time (sec)"
  1246. #~ msgstr "Oras ng engine (segundo)"
  1247. #~ msgid "Page loads (sec)"
  1248. #~ msgstr "Oras ng pagkarga ng pahina (segundo)"
  1249. #~ msgid "Errors"
  1250. #~ msgstr "Kamalian"
  1251. #~ msgid "CAPTCHA required"
  1252. #~ msgstr ""
  1253. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1254. #~ msgstr "Palitan ang HTTP links patungo sa HTTPS hanggat maaari"
  1255. #~ msgid ""
  1256. #~ "Results are opened in the same "
  1257. #~ "window by default. This plugin "
  1258. #~ "overwrites the default behaviour to open"
  1259. #~ " links on new tabs/windows. (JavaScript "
  1260. #~ "required)"
  1261. #~ msgstr ""
  1262. #~ "Ang mga resulta ang bubuksan sa "
  1263. #~ "kasalukuyan window, ito ay ang default."
  1264. #~ " Ang plugin na ito ay babaliwalain"
  1265. #~ " ang default na kilos sa pagbukas "
  1266. #~ "ng panibagong link sa bagong tab/window."
  1267. #~ msgid "Color"
  1268. #~ msgstr "Kulay"
  1269. #~ msgid "Blue (default)"
  1270. #~ msgstr "Asul (default)"
  1271. #~ msgid "Violet"
  1272. #~ msgstr "Byoleta"
  1273. #~ msgid "Green"
  1274. #~ msgstr "Berde"
  1275. #~ msgid "Cyan"
  1276. #~ msgstr "Siyano"
  1277. #~ msgid "Orange"
  1278. #~ msgstr "Kulay-dalandan"
  1279. #~ msgid "Red"
  1280. #~ msgstr "Pula"
  1281. #~ msgid "Category"
  1282. #~ msgstr "Uri"
  1283. #~ msgid "Block"
  1284. #~ msgstr "Harangan"
  1285. #~ msgid "original context"
  1286. #~ msgstr "orihinal na nilalaman"
  1287. #~ msgid "Plugins"
  1288. #~ msgstr "Plugins"
  1289. #~ msgid "Answerers"
  1290. #~ msgstr "Mga pangsagot"
  1291. #~ msgid "Avg. time"
  1292. #~ msgstr "Gitnang oras"
  1293. #~ msgid "show details"
  1294. #~ msgstr "ipakita ang nilalaman"
  1295. #~ msgid "hide details"
  1296. #~ msgstr "itago ang nilalaman"
  1297. #~ msgid "Load more..."
  1298. #~ msgstr "Maghanap pa..."
  1299. #~ msgid "Loading..."
  1300. #~ msgstr ""
  1301. #~ msgid "Change searx layout"
  1302. #~ msgstr "Ibahin ang layout ng searx"
  1303. #~ msgid "Proxying image results through searx"
  1304. #~ msgstr "I-Proxy ang resulta ng mga larawan papunta sa searx"
  1305. #~ msgid "This is the list of searx's instant answering modules."
  1306. #~ msgstr "Ito ang listahan ng instant answering modules ni searx."
  1307. #~ msgid ""
  1308. #~ "This is the list of cookies and"
  1309. #~ " their values searx is storing on "
  1310. #~ "your computer."
  1311. #~ msgstr ""
  1312. #~ "Ito ang listahan ng cookies at ang"
  1313. #~ " kanilang value na inilagay ni searx"
  1314. #~ " sa iyon kompyuter."
  1315. #~ msgid "With that list, you can assess searx transparency."
  1316. #~ msgstr ""
  1317. #~ "Dahil sa listahan na iyon, maaari "
  1318. #~ "mong makita ang pagiging transparent ni"
  1319. #~ " searx."
  1320. #~ msgid "It look like you are using searx first time."
  1321. #~ msgstr "Mukhang ito ang unang paggamit mo ng searx."
  1322. #~ msgid "Please, try again later or find another searx instance."
  1323. #~ msgstr "Paki subukan muli o gumamit ng ibang instance ng searx."
  1324. #~ msgid "Themes"
  1325. #~ msgstr "Tema"
  1326. #~ msgid "Reliablity"
  1327. #~ msgstr ""
  1328. #~ msgid ""
  1329. #~ "When enabled, the result page's title"
  1330. #~ " contains your query. Your browser "
  1331. #~ "can record this title."
  1332. #~ msgstr ""
  1333. #~ msgid "Method"
  1334. #~ msgstr "Paraan"
  1335. #~ msgid ""
  1336. #~ "This tab does not show up for "
  1337. #~ "search results but you can search "
  1338. #~ "the engines listed here via bangs."
  1339. #~ msgstr ""
  1340. #~ msgid "Advanced settings"
  1341. #~ msgstr ""
  1342. #~ msgid "Close"
  1343. #~ msgstr "Isara"
  1344. #~ msgid "Language"
  1345. #~ msgstr ""
  1346. #~ msgid "broken"
  1347. #~ msgstr ""
  1348. #~ msgid "supported"
  1349. #~ msgstr "suportado"
  1350. #~ msgid "not supported"
  1351. #~ msgstr "hindi suportado"
  1352. #~ msgid "about"
  1353. #~ msgstr "hinggil"
  1354. #~ msgid "Avg."
  1355. #~ msgstr ""
  1356. #~ msgid "User Interface"
  1357. #~ msgstr ""
  1358. #~ msgid "Choose style for this theme"
  1359. #~ msgstr "Pumili ng estilo para sa tema na ito"
  1360. #~ msgid "Style"
  1361. #~ msgstr "Estilo"
  1362. #~ msgid "Show advanced settings"
  1363. #~ msgstr ""
  1364. #~ msgid "Show advanced settings panel in the home page by default"
  1365. #~ msgstr ""
  1366. #~ msgid "Allow all"
  1367. #~ msgstr ""
  1368. #~ msgid "Disable all"
  1369. #~ msgstr ""
  1370. #~ msgid "Selected language"
  1371. #~ msgstr "Piniling wika"
  1372. #~ msgid "Query"
  1373. #~ msgstr ""
  1374. #~ msgid "save"
  1375. #~ msgstr "i-save"
  1376. #~ msgid "back"
  1377. #~ msgstr "bumalik"
  1378. #~ msgid "Links"
  1379. #~ msgstr "Links"
  1380. #~ msgid "RSS subscription"
  1381. #~ msgstr ""
  1382. #~ msgid "Search results"
  1383. #~ msgstr "Mga resulta ng paghahanap"
  1384. #~ msgid "next page"
  1385. #~ msgstr "pumanhik sa sumunod na pahina"
  1386. #~ msgid "previous page"
  1387. #~ msgstr "bumalik sa nakaraang pahina"
  1388. #~ msgid "Start search"
  1389. #~ msgstr "Simulan ang paghahanap"
  1390. #~ msgid "Clear search"
  1391. #~ msgstr ""
  1392. #~ msgid "Clear"
  1393. #~ msgstr ""
  1394. #~ msgid "stats"
  1395. #~ msgstr "stats"
  1396. #~ msgid "Heads up!"
  1397. #~ msgstr "Alerto!"
  1398. #~ msgid "It look like you are using SearXNG first time."
  1399. #~ msgstr ""
  1400. #~ msgid "Well done!"
  1401. #~ msgstr "Mahusay!"
  1402. #~ msgid "Settings saved successfully."
  1403. #~ msgstr "Tagumpay sa pag-save ng settings."
  1404. #~ msgid "Oh snap!"
  1405. #~ msgstr "Naku!"
  1406. #~ msgid "Something went wrong."
  1407. #~ msgstr "Nagkaproblema."
  1408. #~ msgid "Date"
  1409. #~ msgstr ""
  1410. #~ msgid "Type"
  1411. #~ msgstr ""
  1412. #~ msgid "Get image"
  1413. #~ msgstr "Kuhanin ang larawan"
  1414. #~ msgid "Center Alignment"
  1415. #~ msgstr ""
  1416. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1417. #~ msgstr ""
  1418. #~ msgid "preferences"
  1419. #~ msgstr ""
  1420. #~ msgid "Scores per result"
  1421. #~ msgstr "Iskor ng bawat resulta"
  1422. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1423. #~ msgstr "isang gumagalang sa pagiging pribado, hackable na metasearch engine"
  1424. #~ msgid "No abstract is available for this publication."
  1425. #~ msgstr "Walang nakita na abstract para sa pahahayag na ito."
  1426. #~ msgid "Self Informations"
  1427. #~ msgstr "Pansariling impormasyon"
  1428. #~ msgid ""
  1429. #~ "Change how forms are submited, <a "
  1430. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1431. #~ " rel=\"external\">learn more about request "
  1432. #~ "methods</a>"
  1433. #~ msgstr ""
  1434. #~ "Ibahin kung paano ang mga forms "
  1435. #~ "are pinapasa, <a "
  1436. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1437. #~ " rel=\"external\">alamin ang iba pang mga"
  1438. #~ " request methods</a>"
  1439. #~ msgid ""
  1440. #~ "This plugin checks if the address "
  1441. #~ "of the request is a TOR exit "
  1442. #~ "node, and informs the user if it"
  1443. #~ " is, like check.torproject.org but from "
  1444. #~ "searxng."
  1445. #~ msgstr ""
  1446. #~ "Ang plugin na ito ay tsini-check"
  1447. #~ " kung ang address ng request ay "
  1448. #~ "isang TOR exit node, at i-iinform "
  1449. #~ "ang user kung oo, gaya ng "
  1450. #~ "check.torproject.org ngunit searxng."
  1451. #~ msgid ""
  1452. #~ "The TOR exit node list "
  1453. #~ "(https://check.torproject.org/exit-addresses) is "
  1454. #~ "unreachable."
  1455. #~ msgstr ""
  1456. #~ "Ang TOR exit node list "
  1457. #~ "(https://check.torproject.org/exit-addresses) ay "
  1458. #~ "unreachable."
  1459. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1460. #~ msgstr "Ikaw ay gumagamit ng TOR. Ang i'yong IP address ay: {ip_address}."
  1461. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1462. #~ msgstr "Ikaw ay hindi gumagamit ng TOR. Ang i'yong IP address ay: {ip_address}."
  1463. #~ msgid ""
  1464. #~ "The could not download the list of"
  1465. #~ " Tor exit-nodes from "
  1466. #~ "https://check.torproject.org/exit-addresses."
  1467. #~ msgstr ""
  1468. #~ msgid ""
  1469. #~ "You are using Tor. It looks like"
  1470. #~ " you have this external IP address:"
  1471. #~ " {ip_address}."
  1472. #~ msgstr ""
  1473. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1474. #~ msgstr ""
  1475. #~ msgid "Autodetect search language"
  1476. #~ msgstr ""
  1477. #~ msgid "Automatically detect the query search language and switch to it."
  1478. #~ msgstr ""
  1479. #~ msgid "others"
  1480. #~ msgstr "other pa"
  1481. #~ msgid ""
  1482. #~ "This tab does not show up for "
  1483. #~ "search results, but you can search "
  1484. #~ "the engines listed here via bangs."
  1485. #~ msgstr ""
  1486. #~ "Ang tab na ito ay hindi lumalabas"
  1487. #~ " para sa mga resulta ng paghahanap,"
  1488. #~ " ngunit maaari kang maghanap sa mga"
  1489. #~ " engine na nakalista dito sa "
  1490. #~ "pamamagitan ng bangs."
  1491. #~ msgid "Shortcut"
  1492. #~ msgstr "Pagikliin/Maikli"
  1493. #~ msgid "!bang"
  1494. #~ msgstr ""
  1495. #~ msgid ""
  1496. #~ "This tab dues not exists in the"
  1497. #~ " user interface, but you can search"
  1498. #~ " in these engines by its !bangs."
  1499. #~ msgstr ""
  1500. #~ msgid "Engines cannot retrieve results."
  1501. #~ msgstr "Hindi makuha ng engines ang mga resulta."
  1502. #~ msgid "Please, try again later or find another SearXNG instance."
  1503. #~ msgstr "Pakiusap, subukan muli mamaya o humanap ng ibang SearXNG instance."
  1504. #~ msgid ""
  1505. #~ "Redirect to open-access versions of "
  1506. #~ "publications when available (plugin required)"
  1507. #~ msgstr ""
  1508. #~ "Mag-redirect sa open-access na mga"
  1509. #~ " bersyon ng mga publikasyon kapag "
  1510. #~ "available (kailangan ang plugin)"
  1511. #~ msgid "Bang"
  1512. #~ msgstr ""
  1513. #~ msgid ""
  1514. #~ "Change how forms are submitted, <a "
  1515. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1516. #~ " rel=\"external\">learn more about request "
  1517. #~ "methods</a>"
  1518. #~ msgstr ""
  1519. #~ msgid "On"
  1520. #~ msgstr "Bukas"
  1521. #~ msgid "Off"
  1522. #~ msgstr "Sara"
  1523. #~ msgid "Enabled"
  1524. #~ msgstr "Paganahin"
  1525. #~ msgid "Disabled"
  1526. #~ msgstr "Hindi paganahin"
  1527. #~ msgid ""
  1528. #~ "Perform search immediately if a category"
  1529. #~ " selected. Disable to select multiple "
  1530. #~ "categories. (JavaScript required)"
  1531. #~ msgstr ""
  1532. #~ "Gawin ang paghahanap hanggat maaari "
  1533. #~ "kapag nakapili ng uri. Alisin kapag "
  1534. #~ "nakapili ng maraming uri. (Nangagailangan "
  1535. #~ "ng JavaScript)"
  1536. #~ msgid "Vim-like hotkeys"
  1537. #~ msgstr "Kasingtulad ng vim hotkeys"
  1538. #~ msgid ""
  1539. #~ "Navigate search results with Vim-like"
  1540. #~ " hotkeys (JavaScript required). Press \"h\""
  1541. #~ " key on main or result page to"
  1542. #~ " get help."
  1543. #~ msgstr ""
  1544. #~ "Maglakbay sa resulta ng paghahanap gamit"
  1545. #~ " ang 'Vim-like hotkeys' (Nangagailangan "
  1546. #~ "ito ng JavaScript). Pindutin ang \"h\""
  1547. #~ " na pindutan sa panguna o ang "
  1548. #~ "pahina ng resulta para makahingi ng "
  1549. #~ "tulong."
  1550. #~ msgid ""
  1551. #~ "we didn't find any results. Please "
  1552. #~ "use another query or search in "
  1553. #~ "more categories."
  1554. #~ msgstr ""
  1555. #~ "wala kaming nakita na resulta. Pakiusap"
  1556. #~ " na ibahin ang tanong o maghanap "
  1557. #~ "sa maraming uri."
  1558. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1559. #~ msgstr ""
  1560. #~ "Palitan ang resulta ng hostname o "
  1561. #~ "tanggalin ang resulta base sa hostname"
  1562. #~ msgid "Bytes"
  1563. #~ msgstr "Bytes"
  1564. #~ msgid "kiB"
  1565. #~ msgstr "kiB"
  1566. #~ msgid "MiB"
  1567. #~ msgstr "MiB"
  1568. #~ msgid "GiB"
  1569. #~ msgstr "GiB"
  1570. #~ msgid "TiB"
  1571. #~ msgstr "TiB"
  1572. #~ msgid "Hostname replace"
  1573. #~ msgstr "Palitan ang hostname"
  1574. #~ msgid "Error!"
  1575. #~ msgstr "Kamalian!"
  1576. #~ msgid "Engines cannot retrieve results"
  1577. #~ msgstr "Hindi makuha ng engines ang mga resulta"
  1578. #~ msgid "Start submiting a new issue on GitHub"
  1579. #~ msgstr "Mag-simulang mag-abot ng mga bagong isyu sa GitHub"
  1580. #~ msgid "dummy"
  1581. #~ msgstr ""
  1582. #~ msgid "Random value generator"
  1583. #~ msgstr "Random na generator ng halaga"
  1584. #~ msgid "Statistics functions"
  1585. #~ msgstr "Estatistika ng mga tungkulin"
  1586. #~ msgid "Compute {functions} of the arguments"
  1587. #~ msgstr "Tuusin ang {functions} ng pangangatuwiran"
  1588. #~ msgid "Get directions"
  1589. #~ msgstr "Kumuha ng direksyon"
  1590. #~ msgid ""
  1591. #~ "Displays your IP if the query is"
  1592. #~ " \"ip\" and your user agent if "
  1593. #~ "the query contains \"user agent\"."
  1594. #~ msgstr ""
  1595. #~ "Ipapakita ang iyong IP kapag ang "
  1596. #~ "tanong ay \"ip\" at ang iyong user"
  1597. #~ " agent kapag ang sa tanong ay "
  1598. #~ "naglalaman ng \"user agent\"."
  1599. #~ msgid ""
  1600. #~ "Could not download the list of Tor"
  1601. #~ " exit-nodes from: https://check.torproject.org"
  1602. #~ "/exit-addresses"
  1603. #~ msgstr ""
  1604. #~ "Hindi ma-download ang listahan ng "
  1605. #~ "mga Tor exit-node mula sa: "
  1606. #~ "https://check.torproject.org/exit-addresses"
  1607. #~ msgid ""
  1608. #~ "You are using Tor and it looks "
  1609. #~ "like you have this external IP "
  1610. #~ "address: {ip_address}"
  1611. #~ msgstr ""
  1612. #~ "Ginagamit mo ang Tor at mukang ito"
  1613. #~ " ang iyong external IP address: "
  1614. #~ "{ip_address}"
  1615. #~ msgid ""
  1616. #~ "You are not using Tor and you "
  1617. #~ "have this external IP address: "
  1618. #~ "{ip_address}"
  1619. #~ msgstr ""
  1620. #~ "Hindi mo ginagamit ang Tor at ito"
  1621. #~ " ang iyong external IP address: "
  1622. #~ "{ip_address}"
  1623. #~ msgid "Keywords"
  1624. #~ msgstr "Mga keyword"
  1625. #~ msgid "/"
  1626. #~ msgstr ""
  1627. #~ msgid ""
  1628. #~ "Specifying custom settings in the "
  1629. #~ "preferences URL can be used to "
  1630. #~ "sync preferences across devices."
  1631. #~ msgstr ""
  1632. #~ "Ang pagtukoy ng pasadyang mga setting"
  1633. #~ " sa URL ng mga preference ay "
  1634. #~ "maaaring gamitin upang i-sync ang mga"
  1635. #~ " preference sa iba't ibang mga "
  1636. #~ "aparato."