messages.po 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803
  1. # Indonesian translations for PROJECT.
  2. # Copyright (C) 2021 ORGANIZATION
  3. # This file is distributed under the same license as the PROJECT project.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
  5. # Linerly <linerly@protonmail.com>, 2022, 2023, 2024.
  6. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  7. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  8. msgid ""
  9. msgstr ""
  10. "Project-Id-Version: PROJECT VERSION\n"
  11. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  12. "POT-Creation-Date: 2024-04-27 16:29+0000\n"
  13. "PO-Revision-Date: 2024-02-26 16:56+0000\n"
  14. "Last-Translator: return42 <markus.heiser@darmarit.de>\n"
  15. "Language: id\n"
  16. "Language-Team: Indonesian "
  17. "<https://translate.codeberg.org/projects/searxng/searxng/id/>\n"
  18. "Plural-Forms: nplurals=1; plural=0;\n"
  19. "MIME-Version: 1.0\n"
  20. "Content-Type: text/plain; charset=utf-8\n"
  21. "Content-Transfer-Encoding: 8bit\n"
  22. "Generated-By: Babel 2.14.0\n"
  23. #. CONSTANT_NAMES['NO_SUBGROUPING']
  24. #: searx/searxng.msg
  25. msgid "without further subgrouping"
  26. msgstr "tanpa subkelompok lebih lanjut"
  27. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  28. #: searx/searxng.msg
  29. msgid "other"
  30. msgstr "lainnya"
  31. #. CATEGORY_NAMES['FILES']
  32. #: searx/searxng.msg
  33. msgid "files"
  34. msgstr "berkas"
  35. #. CATEGORY_NAMES['GENERAL']
  36. #: searx/searxng.msg
  37. msgid "general"
  38. msgstr "umum"
  39. #. CATEGORY_NAMES['MUSIC']
  40. #: searx/searxng.msg
  41. msgid "music"
  42. msgstr "musik"
  43. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  44. #: searx/searxng.msg
  45. msgid "social media"
  46. msgstr "media sosial"
  47. #. CATEGORY_NAMES['IMAGES']
  48. #: searx/searxng.msg
  49. msgid "images"
  50. msgstr "gambar"
  51. #. CATEGORY_NAMES['VIDEOS']
  52. #: searx/searxng.msg
  53. msgid "videos"
  54. msgstr "video"
  55. #. CATEGORY_NAMES['RADIO']
  56. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  57. msgid "radio"
  58. msgstr "radio"
  59. #. CATEGORY_NAMES['TV']
  60. #: searx/searxng.msg
  61. msgid "tv"
  62. msgstr ""
  63. #. CATEGORY_NAMES['IT']
  64. #: searx/searxng.msg
  65. msgid "it"
  66. msgstr "teknologi"
  67. #. CATEGORY_NAMES['NEWS']
  68. #: searx/searxng.msg
  69. msgid "news"
  70. msgstr "berita"
  71. #. CATEGORY_NAMES['MAP']
  72. #: searx/searxng.msg
  73. msgid "map"
  74. msgstr "peta"
  75. #. CATEGORY_NAMES['ONIONS']
  76. #: searx/searxng.msg
  77. msgid "onions"
  78. msgstr "onion"
  79. #. CATEGORY_NAMES['SCIENCE']
  80. #: searx/searxng.msg
  81. msgid "science"
  82. msgstr "sains"
  83. #. CATEGORY_GROUPS['APPS']
  84. #: searx/searxng.msg
  85. msgid "apps"
  86. msgstr "aplikasi"
  87. #. CATEGORY_GROUPS['DICTIONARIES']
  88. #: searx/searxng.msg
  89. msgid "dictionaries"
  90. msgstr "kamus"
  91. #. CATEGORY_GROUPS['LYRICS']
  92. #: searx/searxng.msg
  93. msgid "lyrics"
  94. msgstr "lirik"
  95. #. CATEGORY_GROUPS['PACKAGES']
  96. #: searx/searxng.msg
  97. msgid "packages"
  98. msgstr "paket"
  99. #. CATEGORY_GROUPS['Q_A']
  100. #: searx/searxng.msg
  101. msgid "q&a"
  102. msgstr "tanya jawab"
  103. #. CATEGORY_GROUPS['REPOS']
  104. #: searx/searxng.msg
  105. msgid "repos"
  106. msgstr "repositori"
  107. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  108. #: searx/searxng.msg
  109. msgid "software wikis"
  110. msgstr "wiki perangkat lunak"
  111. #. CATEGORY_GROUPS['WEB']
  112. #: searx/searxng.msg
  113. msgid "web"
  114. msgstr "web"
  115. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  116. #: searx/searxng.msg
  117. msgid "scientific publications"
  118. msgstr "publikasi ilmiah"
  119. #. STYLE_NAMES['AUTO']
  120. #: searx/searxng.msg
  121. msgid "auto"
  122. msgstr "otomatis"
  123. #. STYLE_NAMES['LIGHT']
  124. #: searx/searxng.msg
  125. msgid "light"
  126. msgstr "cerah"
  127. #. STYLE_NAMES['DARK']
  128. #: searx/searxng.msg
  129. msgid "dark"
  130. msgstr "gelap"
  131. #. BRAND_CUSTOM_LINKS['UPTIME']
  132. #: searx/searxng.msg
  133. msgid "Uptime"
  134. msgstr "Waktu aktif"
  135. #. BRAND_CUSTOM_LINKS['ABOUT']
  136. #: searx/searxng.msg searx/templates/simple/base.html:50
  137. msgid "About"
  138. msgstr "Tentang"
  139. #. WEATHER_TERMS['AVERAGE TEMP.']
  140. #: searx/searxng.msg
  141. msgid "Average temp."
  142. msgstr ""
  143. #. WEATHER_TERMS['CLOUD COVER']
  144. #: searx/searxng.msg
  145. msgid "Cloud cover"
  146. msgstr ""
  147. #. WEATHER_TERMS['CONDITION']
  148. #: searx/searxng.msg
  149. msgid "Condition"
  150. msgstr ""
  151. #. WEATHER_TERMS['CURRENT CONDITION']
  152. #: searx/searxng.msg
  153. msgid "Current condition"
  154. msgstr ""
  155. #. WEATHER_TERMS['EVENING']
  156. #: searx/engines/wttr.py:100 searx/searxng.msg
  157. msgid "Evening"
  158. msgstr "Sore"
  159. #. WEATHER_TERMS['FEELS LIKE']
  160. #: searx/searxng.msg
  161. msgid "Feels like"
  162. msgstr ""
  163. #. WEATHER_TERMS['HUMIDITY']
  164. #: searx/searxng.msg
  165. msgid "Humidity"
  166. msgstr ""
  167. #. WEATHER_TERMS['MAX TEMP.']
  168. #: searx/searxng.msg
  169. msgid "Max temp."
  170. msgstr ""
  171. #. WEATHER_TERMS['MIN TEMP.']
  172. #: searx/searxng.msg
  173. msgid "Min temp."
  174. msgstr ""
  175. #. WEATHER_TERMS['MORNING']
  176. #: searx/engines/wttr.py:100 searx/searxng.msg
  177. msgid "Morning"
  178. msgstr "Pagi"
  179. #. WEATHER_TERMS['NIGHT']
  180. #: searx/engines/wttr.py:100 searx/searxng.msg
  181. msgid "Night"
  182. msgstr "Malam"
  183. #. WEATHER_TERMS['NOON']
  184. #: searx/engines/wttr.py:100 searx/searxng.msg
  185. msgid "Noon"
  186. msgstr "Siang"
  187. #. WEATHER_TERMS['PRESSURE']
  188. #: searx/searxng.msg
  189. msgid "Pressure"
  190. msgstr ""
  191. #. WEATHER_TERMS['SUNRISE']
  192. #: searx/searxng.msg
  193. msgid "Sunrise"
  194. msgstr ""
  195. #. WEATHER_TERMS['SUNSET']
  196. #: searx/searxng.msg
  197. msgid "Sunset"
  198. msgstr ""
  199. #. WEATHER_TERMS['TEMPERATURE']
  200. #: searx/searxng.msg
  201. msgid "Temperature"
  202. msgstr ""
  203. #. WEATHER_TERMS['UV INDEX']
  204. #: searx/searxng.msg
  205. msgid "UV index"
  206. msgstr ""
  207. #. WEATHER_TERMS['VISIBILITY']
  208. #: searx/searxng.msg
  209. msgid "Visibility"
  210. msgstr ""
  211. #. WEATHER_TERMS['WIND']
  212. #: searx/searxng.msg
  213. msgid "Wind"
  214. msgstr ""
  215. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  216. #: searx/searxng.msg
  217. msgid "subscribers"
  218. msgstr ""
  219. #. SOCIAL_MEDIA_TERMS['POSTS']
  220. #: searx/searxng.msg
  221. msgid "posts"
  222. msgstr ""
  223. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  224. #: searx/searxng.msg
  225. msgid "active users"
  226. msgstr ""
  227. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  228. #: searx/searxng.msg
  229. msgid "comments"
  230. msgstr ""
  231. #. SOCIAL_MEDIA_TERMS['USER']
  232. #: searx/searxng.msg
  233. msgid "user"
  234. msgstr ""
  235. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  236. #: searx/searxng.msg
  237. msgid "community"
  238. msgstr ""
  239. #. SOCIAL_MEDIA_TERMS['POINTS']
  240. #: searx/searxng.msg
  241. msgid "points"
  242. msgstr ""
  243. #. SOCIAL_MEDIA_TERMS['TITLE']
  244. #: searx/searxng.msg
  245. msgid "title"
  246. msgstr ""
  247. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  248. #: searx/searxng.msg
  249. msgid "author"
  250. msgstr ""
  251. #: searx/webapp.py:330
  252. msgid "No item found"
  253. msgstr "Item tidak ditemukan"
  254. #: searx/engines/qwant.py:281
  255. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
  256. msgid "Source"
  257. msgstr "Sumber"
  258. #: searx/webapp.py:334
  259. msgid "Error loading the next page"
  260. msgstr "Gagal memuat halaman berikutnya"
  261. #: searx/webapp.py:491 searx/webapp.py:887
  262. msgid "Invalid settings, please edit your preferences"
  263. msgstr "Pengaturan tidak valid, mohon ubah preferensi Anda"
  264. #: searx/webapp.py:507
  265. msgid "Invalid settings"
  266. msgstr "Pengaturan tidak valid"
  267. #: searx/webapp.py:584 searx/webapp.py:666
  268. msgid "search error"
  269. msgstr "kesalahan pencarian"
  270. #: searx/webutils.py:36
  271. msgid "timeout"
  272. msgstr "waktu habis"
  273. #: searx/webutils.py:37
  274. msgid "parsing error"
  275. msgstr "kesalahan penguraian"
  276. #: searx/webutils.py:38
  277. msgid "HTTP protocol error"
  278. msgstr "kesalahan protokol HTTP"
  279. #: searx/webutils.py:39
  280. msgid "network error"
  281. msgstr "kesalahan jaringan"
  282. #: searx/webutils.py:40
  283. msgid "SSL error: certificate validation has failed"
  284. msgstr "Kesalahan SSL: validasi sertifikat gagal"
  285. #: searx/webutils.py:42
  286. msgid "unexpected crash"
  287. msgstr "kegagalan yang tak terduga"
  288. #: searx/webutils.py:49
  289. msgid "HTTP error"
  290. msgstr "kesalahan HTTP"
  291. #: searx/webutils.py:50
  292. msgid "HTTP connection error"
  293. msgstr "kesalahan koneksi HTTP"
  294. #: searx/webutils.py:56
  295. msgid "proxy error"
  296. msgstr "kesalahan proksi"
  297. #: searx/webutils.py:57
  298. msgid "CAPTCHA"
  299. msgstr "CAPTCHA"
  300. #: searx/webutils.py:58
  301. msgid "too many requests"
  302. msgstr "terlalu banyak permintaan"
  303. #: searx/webutils.py:59
  304. msgid "access denied"
  305. msgstr "akses ditolak"
  306. #: searx/webutils.py:60
  307. msgid "server API error"
  308. msgstr "kesalahan server API"
  309. #: searx/webutils.py:79
  310. msgid "Suspended"
  311. msgstr "Ditangguhkan"
  312. #: searx/webutils.py:314
  313. msgid "{minutes} minute(s) ago"
  314. msgstr "{minutes} menit yang lalu"
  315. #: searx/webutils.py:315
  316. msgid "{hours} hour(s), {minutes} minute(s) ago"
  317. msgstr "{hours} jam, {minutes} menit yang lalu"
  318. #: searx/answerers/random/answerer.py:75
  319. msgid "Random value generator"
  320. msgstr "Penghasil nilai acak"
  321. #: searx/answerers/random/answerer.py:76
  322. msgid "Generate different random values"
  323. msgstr "Menghasilkan nilai-nilai acak yang berbeda"
  324. #: searx/answerers/statistics/answerer.py:48
  325. msgid "Statistics functions"
  326. msgstr "Fungsi statistik"
  327. #: searx/answerers/statistics/answerer.py:49
  328. msgid "Compute {functions} of the arguments"
  329. msgstr "Menghitung {functions} dari argumen"
  330. #: searx/engines/openstreetmap.py:159
  331. msgid "Get directions"
  332. msgstr "Mendapatkan arah"
  333. #: searx/engines/pdbe.py:96
  334. msgid "{title} (OBSOLETE)"
  335. msgstr "{title} (USANG)"
  336. #: searx/engines/pdbe.py:103
  337. msgid "This entry has been superseded by"
  338. msgstr "Masukan ini telah digantikan oleh"
  339. #: searx/engines/qwant.py:283
  340. msgid "Channel"
  341. msgstr "Saluran"
  342. #: searx/engines/radio_browser.py:105
  343. msgid "bitrate"
  344. msgstr "kecepatan bit"
  345. #: searx/engines/radio_browser.py:106
  346. msgid "votes"
  347. msgstr "suara"
  348. #: searx/engines/radio_browser.py:107
  349. msgid "clicks"
  350. msgstr "klik"
  351. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  352. #: searx/engines/zlibrary.py:128
  353. msgid "Language"
  354. msgstr "Bahasa"
  355. #: searx/engines/semantic_scholar.py:78
  356. msgid ""
  357. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  358. "{lastCitationVelocityYear}"
  359. msgstr ""
  360. "{numCitations} kutipan dari tahun {firstCitationVelocityYear} sampai "
  361. "{lastCitationVelocityYear}"
  362. #: searx/engines/tineye.py:39
  363. msgid ""
  364. "Could not read that image url. This may be due to an unsupported file "
  365. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  366. " WebP."
  367. msgstr ""
  368. "Tidak dapat membaca url gambar. Ini mungkin dikarenakan oleh format file "
  369. "yang tidak didukung. TinEye hanya mendukung gambar JPEG, PNG, GIF, BMP, "
  370. "TIFF, atau WebP."
  371. #: searx/engines/tineye.py:45
  372. msgid ""
  373. "The image is too simple to find matches. TinEye requires a basic level of"
  374. " visual detail to successfully identify matches."
  375. msgstr ""
  376. "Gambar ini terlalu sederhana untuk menemukan kecocokan. TinEye "
  377. "membutuhkan sebuah detail yang dasar untuk mengenal kecocokan dengan "
  378. "berhasil."
  379. #: searx/engines/tineye.py:51
  380. msgid "The image could not be downloaded."
  381. msgstr "Gambar ini tidak dapat diunduh."
  382. #: searx/engines/zlibrary.py:129
  383. msgid "Book rating"
  384. msgstr "Peringkat buku"
  385. #: searx/engines/zlibrary.py:130
  386. msgid "File quality"
  387. msgstr "Kualitas berkas"
  388. #: searx/plugins/hash_plugin.py:10
  389. msgid "Converts strings to different hash digests."
  390. msgstr "Mengubah string menjadi hash digest yang berbeda."
  391. #: searx/plugins/hash_plugin.py:38
  392. msgid "hash digest"
  393. msgstr "intisari hash"
  394. #: searx/plugins/hostname_replace.py:12
  395. msgid "Hostname replace"
  396. msgstr "Pengubah nama host"
  397. #: searx/plugins/hostname_replace.py:13
  398. msgid "Rewrite result hostnames or remove results based on the hostname"
  399. msgstr "Tulis ulang nama host hasil atau hapus hasil berdasarkan pada nama host"
  400. #: searx/plugins/oa_doi_rewrite.py:12
  401. msgid "Open Access DOI rewrite"
  402. msgstr "Penulisan ulang Open Access DOI"
  403. #: searx/plugins/oa_doi_rewrite.py:13
  404. msgid ""
  405. "Avoid paywalls by redirecting to open-access versions of publications "
  406. "when available"
  407. msgstr ""
  408. "Hindari paywall dengan mengalihkan ke versi yang terbuka dari publikasi "
  409. "saat tersedia"
  410. #: searx/plugins/self_info.py:9
  411. msgid "Self Information"
  412. msgstr "Informasi Diri"
  413. #: searx/plugins/self_info.py:10
  414. msgid ""
  415. "Displays your IP if the query is \"ip\" and your user agent if the query "
  416. "contains \"user agent\"."
  417. msgstr ""
  418. "Menampilkan IP Anda jika pencariannya adalah \"ip\" dan agen pengguna "
  419. "Anda jika pencariannya mengandung \"user agent\"."
  420. #: searx/plugins/tor_check.py:24
  421. msgid "Tor check plugin"
  422. msgstr "Plugin pemeriksaan Tor"
  423. #: searx/plugins/tor_check.py:27
  424. msgid ""
  425. "This plugin checks if the address of the request is a Tor exit-node, and "
  426. "informs the user if it is; like check.torproject.org, but from SearXNG."
  427. msgstr ""
  428. "Plugin ini memeriksa jika alamat permintaan adalah node keluar Tor, dan "
  429. "memberi tahu pengguna jika benar; seperti check.torproject.org, tetapi "
  430. "dari SearXNG."
  431. #: searx/plugins/tor_check.py:61
  432. msgid ""
  433. "Could not download the list of Tor exit-nodes from: "
  434. "https://check.torproject.org/exit-addresses"
  435. msgstr ""
  436. "Tidak dapat mengunduh daftar node keluar Tor dari: "
  437. "https://check.torproject.org/exit-addresses"
  438. #: searx/plugins/tor_check.py:77
  439. msgid ""
  440. "You are using Tor and it looks like you have this external IP address: "
  441. "{ip_address}"
  442. msgstr ""
  443. "Anda sedang menggunakan Tor dan sepertinya Anda memiliki alamat IP "
  444. "eksternal berikut: {ip_address}"
  445. #: searx/plugins/tor_check.py:85
  446. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  447. msgstr ""
  448. "Anda sedang tidak menggunakan Tor dan Anda memiliki alamat IP eksternal "
  449. "berikut: {ip_address}"
  450. #: searx/plugins/tracker_url_remover.py:16
  451. msgid "Tracker URL remover"
  452. msgstr "Penghapus URL pelacak"
  453. #: searx/plugins/tracker_url_remover.py:17
  454. msgid "Remove trackers arguments from the returned URL"
  455. msgstr "Membuang argumen pelacak dari URL yang dikembalikan"
  456. #: searx/plugins/unit_converter.py:10
  457. msgid "Convert between units"
  458. msgstr ""
  459. #: searx/templates/simple/404.html:4
  460. msgid "Page not found"
  461. msgstr "Halaman tidak ditemukan"
  462. #: searx/templates/simple/404.html:6
  463. #, python-format
  464. msgid "Go to %(search_page)s."
  465. msgstr "Pergi ke %(search_page)s."
  466. #: searx/templates/simple/404.html:6
  467. msgid "search page"
  468. msgstr "halaman pencarian"
  469. #: searx/templates/simple/base.html:54
  470. msgid "Donate"
  471. msgstr "Donasi"
  472. #: searx/templates/simple/base.html:58
  473. #: searx/templates/simple/preferences.html:156
  474. msgid "Preferences"
  475. msgstr "Preferensi"
  476. #: searx/templates/simple/base.html:68
  477. msgid "Powered by"
  478. msgstr "Diberdayakan oleh"
  479. #: searx/templates/simple/base.html:68
  480. msgid "a privacy-respecting, open metasearch engine"
  481. msgstr "sebuah mesin pencari meta terbuka yang menghormati privasi"
  482. #: searx/templates/simple/base.html:69
  483. #: searx/templates/simple/result_templates/packages.html:59
  484. msgid "Source code"
  485. msgstr "Kode sumber"
  486. #: searx/templates/simple/base.html:70
  487. msgid "Issue tracker"
  488. msgstr "Pelacak masalah"
  489. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  490. msgid "Engine stats"
  491. msgstr "Statistik mesin"
  492. #: searx/templates/simple/base.html:73
  493. msgid "Public instances"
  494. msgstr "Instansi umum"
  495. #: searx/templates/simple/base.html:76
  496. msgid "Privacy policy"
  497. msgstr "Kebijakan privasi"
  498. #: searx/templates/simple/base.html:79
  499. msgid "Contact instance maintainer"
  500. msgstr "Hubungi pengelola instansi"
  501. #: searx/templates/simple/categories.html:26
  502. msgid "Click on the magnifier to perform search"
  503. msgstr "Tekan pada kaca pembesar untuk melakukan pencarian"
  504. #: searx/templates/simple/macros.html:36
  505. msgid "Length"
  506. msgstr "Durasi"
  507. #: searx/templates/simple/macros.html:37
  508. #: searx/templates/simple/result_templates/files.html:34
  509. #: searx/templates/simple/result_templates/images.html:19
  510. #: searx/templates/simple/result_templates/paper.html:6
  511. msgid "Author"
  512. msgstr "Penulis"
  513. #: searx/templates/simple/macros.html:45
  514. msgid "cached"
  515. msgstr "tembolok"
  516. #: searx/templates/simple/macros.html:45
  517. msgid "proxied"
  518. msgstr "proksi"
  519. #: searx/templates/simple/new_issue.html:64
  520. msgid "Start submiting a new issue on GitHub"
  521. msgstr "Mulai mengirimkan sebuah masalah baru di GitHub"
  522. #: searx/templates/simple/new_issue.html:66
  523. msgid "Please check for existing bugs about this engine on GitHub"
  524. msgstr "Mohon periksa kutu yang sudah ada tentang mesin ini di GitHub"
  525. #: searx/templates/simple/new_issue.html:69
  526. msgid "I confirm there is no existing bug about the issue I encounter"
  527. msgstr ""
  528. "Saya konfirmasi bahwa tidak ada kutu yang sudah ada tentang masalah yang "
  529. "saya alami"
  530. #: searx/templates/simple/new_issue.html:71
  531. msgid "If this is a public instance, please specify the URL in the bug report"
  532. msgstr "Jika ini sebuah instansi publik, mohon berikan URL di laporan kutu"
  533. #: searx/templates/simple/new_issue.html:72
  534. msgid "Submit a new issue on Github including the above information"
  535. msgstr "Kirim sebuah masalah baru di Github yang mengandung informasi di atas"
  536. #: searx/templates/simple/preferences.html:65
  537. msgid "No HTTPS"
  538. msgstr "Tanpa HTTPS"
  539. #: searx/templates/simple/elements/engines_msg.html:18
  540. #: searx/templates/simple/preferences.html:69
  541. #: searx/templates/simple/preferences.html:70
  542. msgid "View error logs and submit a bug report"
  543. msgstr "Lihat log kesalahan dan kirim sebuah laporan bug"
  544. #: searx/templates/simple/preferences.html:74
  545. msgid "!bang for this engine"
  546. msgstr "!bang untuk mesin ini"
  547. #: searx/templates/simple/preferences.html:80
  548. msgid "!bang for its categories"
  549. msgstr "!bang untuk kategorinya"
  550. #: searx/templates/simple/preferences.html:102
  551. #: searx/templates/simple/stats.html:64
  552. msgid "Median"
  553. msgstr "Median"
  554. #: searx/templates/simple/preferences.html:103
  555. #: searx/templates/simple/stats.html:70
  556. msgid "P80"
  557. msgstr "P80"
  558. #: searx/templates/simple/preferences.html:104
  559. #: searx/templates/simple/stats.html:76
  560. msgid "P95"
  561. msgstr "P95"
  562. #: searx/templates/simple/preferences.html:136
  563. msgid "Failed checker test(s): "
  564. msgstr "Tes pemeriksa gagal: "
  565. #: searx/templates/simple/preferences.html:138
  566. msgid "Errors:"
  567. msgstr "Kesalahan:"
  568. #: searx/templates/simple/preferences.html:162
  569. msgid "General"
  570. msgstr "Umum"
  571. #: searx/templates/simple/preferences.html:165
  572. msgid "Default categories"
  573. msgstr "Kategori bawaan"
  574. #: searx/templates/simple/preferences.html:187
  575. msgid "User interface"
  576. msgstr "Antarmuka pengguna"
  577. #: searx/templates/simple/preferences.html:208
  578. msgid "Privacy"
  579. msgstr "Privasi"
  580. #: searx/templates/simple/preferences.html:221
  581. msgid "Engines"
  582. msgstr "Mesin"
  583. #: searx/templates/simple/preferences.html:223
  584. msgid "Currently used search engines"
  585. msgstr "Mesin pencari yang saat ini digunakan"
  586. #: searx/templates/simple/preferences.html:231
  587. msgid "Special Queries"
  588. msgstr "Pencarian Khusus"
  589. #: searx/templates/simple/preferences.html:237
  590. msgid "Cookies"
  591. msgstr "Kuki"
  592. #: searx/templates/simple/results.html:23
  593. msgid "Answers"
  594. msgstr "Jawaban"
  595. #: searx/templates/simple/results.html:38
  596. msgid "Number of results"
  597. msgstr "Jumlah hasil"
  598. #: searx/templates/simple/results.html:44
  599. msgid "Info"
  600. msgstr "Informasi"
  601. #: searx/templates/simple/results.html:73
  602. msgid "Try searching for:"
  603. msgstr "Coba cari:"
  604. #: searx/templates/simple/results.html:105
  605. msgid "Back to top"
  606. msgstr "Kembali ke atas"
  607. #: searx/templates/simple/results.html:123
  608. msgid "Previous page"
  609. msgstr "Halaman sebelumnya"
  610. #: searx/templates/simple/results.html:141
  611. msgid "Next page"
  612. msgstr "Halaman berikutnya"
  613. #: searx/templates/simple/search.html:3
  614. msgid "Display the front page"
  615. msgstr "Tanpilkan halaman depan"
  616. #: searx/templates/simple/search.html:9
  617. #: searx/templates/simple/simple_search.html:5
  618. msgid "Search for..."
  619. msgstr "Cari..."
  620. #: searx/templates/simple/search.html:10
  621. #: searx/templates/simple/simple_search.html:6
  622. msgid "clear"
  623. msgstr "bersihkan"
  624. #: searx/templates/simple/search.html:11
  625. #: searx/templates/simple/simple_search.html:7
  626. msgid "search"
  627. msgstr "cari"
  628. #: searx/templates/simple/stats.html:21
  629. msgid "There is currently no data available. "
  630. msgstr "Saat ini tidak ada data yang tersedia. "
  631. #: searx/templates/simple/preferences/engines.html:24
  632. #: searx/templates/simple/stats.html:25
  633. msgid "Engine name"
  634. msgstr "Nama mesin"
  635. #: searx/templates/simple/stats.html:26
  636. msgid "Scores"
  637. msgstr "Skor"
  638. #: searx/templates/simple/stats.html:27
  639. msgid "Result count"
  640. msgstr "Jumlah hasil"
  641. #: searx/templates/simple/preferences/engines.html:31
  642. #: searx/templates/simple/stats.html:28
  643. msgid "Response time"
  644. msgstr "Waktu respons"
  645. #: searx/templates/simple/preferences/engines.html:35
  646. #: searx/templates/simple/stats.html:29
  647. msgid "Reliability"
  648. msgstr "Keandalan"
  649. #: searx/templates/simple/stats.html:59
  650. msgid "Total"
  651. msgstr "Total"
  652. #: searx/templates/simple/stats.html:60
  653. msgid "HTTP"
  654. msgstr "HTTP"
  655. #: searx/templates/simple/stats.html:61
  656. msgid "Processing"
  657. msgstr "Memproses"
  658. #: searx/templates/simple/stats.html:99
  659. msgid "Warnings"
  660. msgstr "Peringatan"
  661. #: searx/templates/simple/stats.html:99
  662. msgid "Errors and exceptions"
  663. msgstr "Kesalahan dan pengecualian"
  664. #: searx/templates/simple/stats.html:105
  665. msgid "Exception"
  666. msgstr "Pengecualian"
  667. #: searx/templates/simple/stats.html:107
  668. msgid "Message"
  669. msgstr "Pesan"
  670. #: searx/templates/simple/stats.html:109
  671. msgid "Percentage"
  672. msgstr "Persentase"
  673. #: searx/templates/simple/stats.html:111
  674. msgid "Parameter"
  675. msgstr "Parameter"
  676. #: searx/templates/simple/result_templates/files.html:36
  677. #: searx/templates/simple/stats.html:119
  678. msgid "Filename"
  679. msgstr "Nama berkas"
  680. #: searx/templates/simple/stats.html:120
  681. msgid "Function"
  682. msgstr "Fungsi"
  683. #: searx/templates/simple/stats.html:121
  684. msgid "Code"
  685. msgstr "Kode"
  686. #: searx/templates/simple/stats.html:128
  687. msgid "Checker"
  688. msgstr "Pemeriksa"
  689. #: searx/templates/simple/stats.html:131
  690. msgid "Failed test"
  691. msgstr "Tes gagal"
  692. #: searx/templates/simple/stats.html:132
  693. msgid "Comment(s)"
  694. msgstr "Komentar"
  695. #: searx/templates/simple/elements/apis.html:3
  696. msgid "Download results"
  697. msgstr "Unduh hasil"
  698. #: searx/templates/simple/elements/engines_msg.html:7
  699. msgid "Messages from the search engines"
  700. msgstr "Pesan dari mesin pencarian"
  701. #: searx/templates/simple/elements/engines_msg.html:12
  702. msgid "Error!"
  703. msgstr "Terjadi kesalahan!"
  704. #: searx/templates/simple/elements/engines_msg.html:13
  705. msgid "Engines cannot retrieve results"
  706. msgstr "Mesin-mesin tidak dapat mendapatkan hasil"
  707. #: searx/templates/simple/elements/search_url.html:3
  708. msgid "Search URL"
  709. msgstr "URL pencarian"
  710. #: searx/templates/simple/elements/search_url.html:4
  711. #: searx/templates/simple/preferences/cookies.html:54
  712. msgid "Copied"
  713. msgstr "Salin"
  714. #: searx/templates/simple/elements/search_url.html:4
  715. #: searx/templates/simple/preferences/cookies.html:54
  716. msgid "Copy"
  717. msgstr "Salin"
  718. #: searx/templates/simple/elements/suggestions.html:3
  719. msgid "Suggestions"
  720. msgstr "Saran"
  721. #: searx/templates/simple/filters/languages.html:1
  722. #: searx/templates/simple/preferences/language.html:2
  723. msgid "Search language"
  724. msgstr "Bahasa pencarian"
  725. #: searx/templates/simple/filters/languages.html:2
  726. #: searx/templates/simple/preferences/language.html:7
  727. msgid "Default language"
  728. msgstr "Bahasa bawaan"
  729. #: searx/templates/simple/filters/languages.html:4
  730. #: searx/templates/simple/preferences/language.html:11
  731. msgid "Auto-detect"
  732. msgstr "Deteksi otomatis"
  733. #: searx/templates/simple/filters/safesearch.html:1
  734. #: searx/templates/simple/filters/safesearch.html:2
  735. #: searx/templates/simple/filters/safesearch.html:3
  736. #: searx/templates/simple/filters/safesearch.html:4
  737. #: searx/templates/simple/preferences/engines.html:27
  738. #: searx/templates/simple/preferences/safesearch.html:2
  739. msgid "SafeSearch"
  740. msgstr "Pencarian Aman"
  741. #: searx/templates/simple/filters/safesearch.html:2
  742. #: searx/templates/simple/preferences/safesearch.html:7
  743. msgid "Strict"
  744. msgstr "Ketat"
  745. #: searx/templates/simple/filters/safesearch.html:3
  746. #: searx/templates/simple/preferences/safesearch.html:11
  747. msgid "Moderate"
  748. msgstr "Menengah"
  749. #: searx/templates/simple/filters/safesearch.html:4
  750. #: searx/templates/simple/preferences/safesearch.html:15
  751. msgid "None"
  752. msgstr "Tidak ada"
  753. #: searx/templates/simple/filters/time_range.html:1
  754. #: searx/templates/simple/preferences/engines.html:28
  755. msgid "Time range"
  756. msgstr "Rentang waktu"
  757. #: searx/templates/simple/filters/time_range.html:3
  758. msgid "Anytime"
  759. msgstr "Kapan saja"
  760. #: searx/templates/simple/filters/time_range.html:6
  761. msgid "Last day"
  762. msgstr "Kemarin"
  763. #: searx/templates/simple/filters/time_range.html:9
  764. msgid "Last week"
  765. msgstr "Minggu kemarin"
  766. #: searx/templates/simple/filters/time_range.html:12
  767. msgid "Last month"
  768. msgstr "Bulan kemarin"
  769. #: searx/templates/simple/filters/time_range.html:15
  770. msgid "Last year"
  771. msgstr "Tahun kemarin"
  772. #: searx/templates/simple/messages/no_cookies.html:3
  773. msgid "Information!"
  774. msgstr "Informasi!"
  775. #: searx/templates/simple/messages/no_cookies.html:4
  776. msgid "currently, there are no cookies defined."
  777. msgstr "saat ini, tidak ada kuki yang didefinisikan."
  778. #: searx/templates/simple/messages/no_results.html:6
  779. msgid "Sorry!"
  780. msgstr "Maaf!"
  781. #: searx/templates/simple/messages/no_results.html:12
  782. msgid "No results were found. You can try to:"
  783. msgstr "Tidak ada hasil yang ditemukan. Anda dapat:"
  784. #: searx/templates/simple/messages/no_results.html:14
  785. msgid "There are no more results. You can try to:"
  786. msgstr "Tidak ada hasil lagi. Anda dapat mencoba:"
  787. #: searx/templates/simple/messages/no_results.html:19
  788. msgid "Refresh the page."
  789. msgstr "Muat ulang laman ini."
  790. #: searx/templates/simple/messages/no_results.html:20
  791. msgid "Search for another query or select another category (above)."
  792. msgstr "Telusuri pertanyaan lain atau pilih kategori lain (sebelumnya)."
  793. #: searx/templates/simple/messages/no_results.html:21
  794. msgid "Change the search engine used in the preferences:"
  795. msgstr "Ubah mesin pencari yang digunakan dalam preferensi:"
  796. #: searx/templates/simple/messages/no_results.html:22
  797. msgid "Switch to another instance:"
  798. msgstr "Ganti ke server lain:"
  799. #: searx/templates/simple/messages/no_results.html:24
  800. msgid "Search for another query or select another category."
  801. msgstr "Cari menggunakan kueri lain atau memilih kategori lain."
  802. #: searx/templates/simple/messages/no_results.html:25
  803. msgid "Go back to the previous page using the previous page button."
  804. msgstr "Kembali ke laman sebelumnya menggunakan tombol laman sebelumnya."
  805. #: searx/templates/simple/preferences/answerers.html:4
  806. #: searx/templates/simple/preferences/engines.html:23
  807. msgid "Allow"
  808. msgstr "Izinkan"
  809. #: searx/templates/simple/preferences/answerers.html:5
  810. msgid "Keywords"
  811. msgstr "Kata kunci"
  812. #: searx/templates/simple/preferences/answerers.html:6
  813. #: searx/templates/simple/result_templates/packages.html:7
  814. msgid "Name"
  815. msgstr "Nama"
  816. #: searx/templates/simple/preferences/answerers.html:7
  817. msgid "Description"
  818. msgstr "Deskripsi"
  819. #: searx/templates/simple/preferences/answerers.html:8
  820. msgid "Examples"
  821. msgstr "Contoh"
  822. #: searx/templates/simple/preferences/answerers.html:13
  823. msgid "This is the list of SearXNG's instant answering modules."
  824. msgstr "Ini adalah daftar dari modul penjawab instan SearXNG."
  825. #: searx/templates/simple/preferences/answerers.html:29
  826. msgid "This is the list of plugins."
  827. msgstr "Ini adalah daftar plugin."
  828. #: searx/templates/simple/preferences/autocomplete.html:2
  829. msgid "Autocomplete"
  830. msgstr "Perlengkapan otomatis"
  831. #: searx/templates/simple/preferences/autocomplete.html:15
  832. msgid "Find stuff as you type"
  833. msgstr "Cari hal-hal saat Anda mengetik"
  834. #: searx/templates/simple/preferences/center_alignment.html:2
  835. msgid "Center Alignment"
  836. msgstr "Penjajaran Tengah"
  837. #: searx/templates/simple/preferences/center_alignment.html:14
  838. msgid "Displays results in the center of the page (Oscar layout)."
  839. msgstr "Tampilkan hasil pada bagian tengah halaman (tata letak Oscar)."
  840. #: searx/templates/simple/preferences/cookies.html:2
  841. msgid ""
  842. "This is the list of cookies and their values SearXNG is storing on your "
  843. "computer."
  844. msgstr ""
  845. "Ini adalah daftar kuki dan nilai-nilai mereka yang SearXNG simpan di "
  846. "komputer Anda."
  847. #: searx/templates/simple/preferences/cookies.html:3
  848. msgid "With that list, you can assess SearXNG transparency."
  849. msgstr "Dengan daftar itu, Anda dapat menilai transparansi SearXNG."
  850. #: searx/templates/simple/preferences/cookies.html:9
  851. msgid "Cookie name"
  852. msgstr "Nama kuki"
  853. #: searx/templates/simple/preferences/cookies.html:10
  854. msgid "Value"
  855. msgstr "Nilai"
  856. #: searx/templates/simple/preferences/cookies.html:23
  857. msgid "Search URL of the currently saved preferences"
  858. msgstr "URL pencarian dari pengaturan yang tersimpan saat ini"
  859. #: searx/templates/simple/preferences/cookies.html:32
  860. msgid ""
  861. "Note: specifying custom settings in the search URL can reduce privacy by "
  862. "leaking data to the clicked result sites."
  863. msgstr ""
  864. "Catatan: menampilkan pengaturan khusus pada URL pencarian dapat "
  865. "mengurangi privasi dengan membocorkan data kepada situs hasil yang "
  866. "diklik."
  867. #: searx/templates/simple/preferences/cookies.html:35
  868. msgid "URL to restore your preferences in another browser"
  869. msgstr "URL untuk memulihkan preferensi Anda dalam peramban lain"
  870. #: searx/templates/simple/preferences/cookies.html:43
  871. msgid ""
  872. "Specifying custom settings in the preferences URL can be used to sync "
  873. "preferences across devices."
  874. msgstr ""
  875. "Menyediakan pengaturan kustom dalam URL preferensi dapat digunakan untuk "
  876. "menyinkronkan preferensi pada semua perangkat."
  877. #: searx/templates/simple/preferences/cookies.html:46
  878. msgid "Copy preferences hash"
  879. msgstr "Salin preferensi hash"
  880. #: searx/templates/simple/preferences/cookies.html:57
  881. msgid "Insert copied preferences hash (without URL) to restore"
  882. msgstr "Sisipkan salinan hash preferensi (tanpa URL) untuk memulihkan"
  883. #: searx/templates/simple/preferences/cookies.html:59
  884. msgid "Preferences hash"
  885. msgstr "hash preferensi"
  886. #: searx/templates/simple/preferences/doi_resolver.html:2
  887. msgid "Open Access DOI resolver"
  888. msgstr "Penyelesaian Open Access DOI"
  889. #: searx/templates/simple/preferences/doi_resolver.html:14
  890. msgid "Select service used by DOI rewrite"
  891. msgstr "Pilih layanan yang digunakan oleh penulisan ulang DOI"
  892. #: searx/templates/simple/preferences/engines.html:9
  893. msgid ""
  894. "This tab does not exists in the user interface, but you can search in "
  895. "these engines by its !bangs."
  896. msgstr ""
  897. "Tab ini tidak tersedia dalam antarmuka pengguna, tetapi Anda dapat "
  898. "mencari di mesin ini dengan !bang-nya."
  899. #: searx/templates/simple/preferences/engines.html:15
  900. msgid "Enable all"
  901. msgstr ""
  902. #: searx/templates/simple/preferences/engines.html:16
  903. msgid "Disable all"
  904. msgstr ""
  905. #: searx/templates/simple/preferences/engines.html:25
  906. msgid "!bang"
  907. msgstr "!bang"
  908. #: searx/templates/simple/preferences/engines.html:26
  909. msgid "Supports selected language"
  910. msgstr "Mendukung bahasa yang dipilih"
  911. #: searx/templates/simple/preferences/engines.html:29
  912. msgid "Weight"
  913. msgstr "Berat"
  914. #: searx/templates/simple/preferences/engines.html:33
  915. msgid "Max time"
  916. msgstr "Waktu maksimum"
  917. #: searx/templates/simple/preferences/footer.html:2
  918. msgid ""
  919. "These settings are stored in your cookies, this allows us not to store "
  920. "this data about you."
  921. msgstr ""
  922. "Pengaturan ini disimpan di kuki Anda, ini memungkinkan kami untuk tidak "
  923. "menyimpan data ini tentang Anda."
  924. #: searx/templates/simple/preferences/footer.html:3
  925. msgid ""
  926. "These cookies serve your sole convenience, we don't use these cookies to "
  927. "track you."
  928. msgstr ""
  929. "Kuki ini hanya untuk kenyamanan Anda, kami tidak menggunakan kuki ini "
  930. "untuk melacak Anda."
  931. #: searx/templates/simple/preferences/footer.html:6
  932. msgid "Save"
  933. msgstr "Simpan"
  934. #: searx/templates/simple/preferences/footer.html:9
  935. msgid "Reset defaults"
  936. msgstr "Atur ulang ke bawaan"
  937. #: searx/templates/simple/preferences/footer.html:13
  938. msgid "Back"
  939. msgstr "Kembali"
  940. #: searx/templates/simple/preferences/hotkeys.html:2
  941. msgid "Hotkeys"
  942. msgstr "Pintasan"
  943. #: searx/templates/simple/preferences/hotkeys.html:13
  944. msgid "Vim-like"
  945. msgstr "Mirip Vim"
  946. #: searx/templates/simple/preferences/hotkeys.html:18
  947. msgid ""
  948. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  949. "key on main or result page to get help."
  950. msgstr ""
  951. "Navigasi hasil pencarian dengan pintasan (memerlukan JavaScript). Tekan "
  952. "tombol \"h\" di laman utama atau hasil untuk mendapatkan bantuan."
  953. #: searx/templates/simple/preferences/image_proxy.html:2
  954. msgid "Image proxy"
  955. msgstr "Proksi gambar"
  956. #: searx/templates/simple/preferences/image_proxy.html:14
  957. msgid "Proxying image results through SearXNG"
  958. msgstr "Memproksikan hasil gambar melalui SearXNG"
  959. #: searx/templates/simple/preferences/infinite_scroll.html:2
  960. msgid "Infinite scroll"
  961. msgstr "Gulir tak terbatas"
  962. #: searx/templates/simple/preferences/infinite_scroll.html:14
  963. msgid "Automatically load next page when scrolling to bottom of current page"
  964. msgstr ""
  965. "Secara otomatis memuat halaman selanjutnya saat menggulir ke bawah "
  966. "halaman saat ini"
  967. #: searx/templates/simple/preferences/language.html:24
  968. msgid "What language do you prefer for search?"
  969. msgstr "Bahasa apa yang Anda ingin pakai untuk pencarian?"
  970. #: searx/templates/simple/preferences/language.html:25
  971. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  972. msgstr ""
  973. "Pilih Deteksi otomatis untuk memperbolehkan SearXNG mendeteksi bahasa "
  974. "kueri Anda."
  975. #: searx/templates/simple/preferences/method.html:2
  976. msgid "HTTP Method"
  977. msgstr "Metode HTTP"
  978. #: searx/templates/simple/preferences/method.html:14
  979. msgid "Change how forms are submitted"
  980. msgstr "Ubah bagaimana formulir dikirim"
  981. #: searx/templates/simple/preferences/query_in_title.html:2
  982. msgid "Query in the page's title"
  983. msgstr "Pencarian pada judul halaman"
  984. #: searx/templates/simple/preferences/query_in_title.html:14
  985. msgid ""
  986. "When enabled, the result page's title contains your query. Your browser "
  987. "can record this title"
  988. msgstr ""
  989. "Ketika diaktifkan, judul halaman hasil mengandung pencarian Anda. Browser"
  990. " Anda dapat merekam judul ini"
  991. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  992. msgid "Results on new tabs"
  993. msgstr "Hasil pada tab baru"
  994. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  995. msgid "Open result links on new browser tabs"
  996. msgstr "Buka tautan hasil di tab browser baru"
  997. #: searx/templates/simple/preferences/safesearch.html:20
  998. msgid "Filter content"
  999. msgstr "Saring konten"
  1000. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1001. msgid "Search on category select"
  1002. msgstr "Cari berdasarkan pilihan kategori"
  1003. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1004. msgid ""
  1005. "Perform search immediately if a category selected. Disable to select "
  1006. "multiple categories"
  1007. msgstr ""
  1008. "Lakukan pencarian secara langsung jika sebuah kategori dipilih. "
  1009. "Nonaktifkan untuk memilih beberapa kategori"
  1010. #: searx/templates/simple/preferences/theme.html:2
  1011. msgid "Theme"
  1012. msgstr "Tema"
  1013. #: searx/templates/simple/preferences/theme.html:14
  1014. msgid "Change SearXNG layout"
  1015. msgstr "Ubah tata letak SearXNG"
  1016. #: searx/templates/simple/preferences/theme.html:19
  1017. msgid "Theme style"
  1018. msgstr "Gaya tema"
  1019. #: searx/templates/simple/preferences/theme.html:31
  1020. msgid "Choose auto to follow your browser settings"
  1021. msgstr "Pilih otomatis untuk mengikuti pengaturan browser Anda"
  1022. #: searx/templates/simple/preferences/tokens.html:2
  1023. msgid "Engine tokens"
  1024. msgstr "Token mesin"
  1025. #: searx/templates/simple/preferences/tokens.html:9
  1026. msgid "Access tokens for private engines"
  1027. msgstr "Token akses untuk mesin pribadi"
  1028. #: searx/templates/simple/preferences/ui_locale.html:2
  1029. msgid "Interface language"
  1030. msgstr "Bahasa antarmuka"
  1031. #: searx/templates/simple/preferences/ui_locale.html:14
  1032. msgid "Change the language of the layout"
  1033. msgstr "Ubah bahasa tata letak"
  1034. #: searx/templates/simple/result_templates/code.html:13
  1035. msgid "repo"
  1036. msgstr "repositori"
  1037. #: searx/templates/simple/result_templates/default.html:6
  1038. #: searx/templates/simple/result_templates/files.html:8
  1039. #: searx/templates/simple/result_templates/files.html:11
  1040. msgid "show media"
  1041. msgstr "tampilkan media"
  1042. #: searx/templates/simple/result_templates/default.html:6
  1043. #: searx/templates/simple/result_templates/files.html:8
  1044. msgid "hide media"
  1045. msgstr "sembunyikan media"
  1046. #: searx/templates/simple/result_templates/default.html:14
  1047. #: searx/templates/simple/result_templates/videos.html:14
  1048. msgid "This site did not provide any description."
  1049. msgstr "Situs ini tidak memberikan deskripsi apa pun."
  1050. #: searx/templates/simple/result_templates/files.html:38
  1051. #: searx/templates/simple/result_templates/images.html:22
  1052. #: searx/templates/simple/result_templates/torrent.html:11
  1053. msgid "Filesize"
  1054. msgstr "Ukuran berkas"
  1055. #: searx/templates/simple/result_templates/files.html:39
  1056. #: searx/templates/simple/result_templates/torrent.html:12
  1057. msgid "Bytes"
  1058. msgstr "Bita"
  1059. #: searx/templates/simple/result_templates/files.html:40
  1060. #: searx/templates/simple/result_templates/torrent.html:13
  1061. msgid "kiB"
  1062. msgstr "kiB"
  1063. #: searx/templates/simple/result_templates/files.html:41
  1064. #: searx/templates/simple/result_templates/torrent.html:14
  1065. msgid "MiB"
  1066. msgstr "MiB"
  1067. #: searx/templates/simple/result_templates/files.html:42
  1068. #: searx/templates/simple/result_templates/torrent.html:15
  1069. msgid "GiB"
  1070. msgstr "GiB"
  1071. #: searx/templates/simple/result_templates/files.html:43
  1072. #: searx/templates/simple/result_templates/torrent.html:16
  1073. msgid "TiB"
  1074. msgstr "TiB"
  1075. #: searx/templates/simple/result_templates/files.html:47
  1076. msgid "Date"
  1077. msgstr "Tanggal"
  1078. #: searx/templates/simple/result_templates/files.html:49
  1079. #: searx/templates/simple/result_templates/paper.html:24
  1080. msgid "Type"
  1081. msgstr "Jenis"
  1082. #: searx/templates/simple/result_templates/images.html:20
  1083. msgid "Resolution"
  1084. msgstr "Resolusi"
  1085. #: searx/templates/simple/result_templates/images.html:21
  1086. msgid "Format"
  1087. msgstr "Format"
  1088. #: searx/templates/simple/result_templates/images.html:24
  1089. msgid "Engine"
  1090. msgstr "Mesin"
  1091. #: searx/templates/simple/result_templates/images.html:25
  1092. msgid "View source"
  1093. msgstr "Tampilkan sumber"
  1094. #: searx/templates/simple/result_templates/map.html:12
  1095. msgid "address"
  1096. msgstr "alamat"
  1097. #: searx/templates/simple/result_templates/map.html:43
  1098. msgid "show map"
  1099. msgstr "tampilkan peta"
  1100. #: searx/templates/simple/result_templates/map.html:43
  1101. msgid "hide map"
  1102. msgstr "sembunyikan peta"
  1103. #: searx/templates/simple/result_templates/packages.html:12
  1104. msgid "Version"
  1105. msgstr "Versi"
  1106. #: searx/templates/simple/result_templates/packages.html:18
  1107. msgid "Maintainer"
  1108. msgstr "Pemelihara"
  1109. #: searx/templates/simple/result_templates/packages.html:24
  1110. msgid "Updated at"
  1111. msgstr "Diperbarui pada"
  1112. #: searx/templates/simple/result_templates/packages.html:30
  1113. #: searx/templates/simple/result_templates/paper.html:25
  1114. msgid "Tags"
  1115. msgstr "Tag"
  1116. #: searx/templates/simple/result_templates/packages.html:36
  1117. msgid "Popularity"
  1118. msgstr "Kepopuleran"
  1119. #: searx/templates/simple/result_templates/packages.html:42
  1120. msgid "License"
  1121. msgstr "Lisensi"
  1122. #: searx/templates/simple/result_templates/packages.html:52
  1123. msgid "Project"
  1124. msgstr "Proyek"
  1125. #: searx/templates/simple/result_templates/packages.html:55
  1126. msgid "Project homepage"
  1127. msgstr "Laman beranda proyek"
  1128. #: searx/templates/simple/result_templates/paper.html:5
  1129. msgid "Published date"
  1130. msgstr "Tanggal diterbitkan"
  1131. #: searx/templates/simple/result_templates/paper.html:9
  1132. msgid "Journal"
  1133. msgstr "Jurnal"
  1134. #: searx/templates/simple/result_templates/paper.html:22
  1135. msgid "Editor"
  1136. msgstr "Editor"
  1137. #: searx/templates/simple/result_templates/paper.html:23
  1138. msgid "Publisher"
  1139. msgstr "Penerbit"
  1140. #: searx/templates/simple/result_templates/paper.html:26
  1141. msgid "DOI"
  1142. msgstr "DOI"
  1143. #: searx/templates/simple/result_templates/paper.html:27
  1144. msgid "ISSN"
  1145. msgstr "ISSN"
  1146. #: searx/templates/simple/result_templates/paper.html:28
  1147. msgid "ISBN"
  1148. msgstr "ISBN"
  1149. #: searx/templates/simple/result_templates/paper.html:33
  1150. msgid "PDF"
  1151. msgstr "PDF"
  1152. #: searx/templates/simple/result_templates/paper.html:34
  1153. msgid "HTML"
  1154. msgstr "HTML"
  1155. #: searx/templates/simple/result_templates/torrent.html:6
  1156. msgid "magnet link"
  1157. msgstr "tautan magnet"
  1158. #: searx/templates/simple/result_templates/torrent.html:7
  1159. msgid "torrent file"
  1160. msgstr "berkas torrent"
  1161. #: searx/templates/simple/result_templates/torrent.html:9
  1162. msgid "Seeder"
  1163. msgstr "Seeder"
  1164. #: searx/templates/simple/result_templates/torrent.html:9
  1165. msgid "Leecher"
  1166. msgstr "Leecher"
  1167. #: searx/templates/simple/result_templates/torrent.html:20
  1168. msgid "Number of Files"
  1169. msgstr "Jumlah Berkas"
  1170. #: searx/templates/simple/result_templates/videos.html:6
  1171. msgid "show video"
  1172. msgstr "tampilkan video"
  1173. #: searx/templates/simple/result_templates/videos.html:6
  1174. msgid "hide video"
  1175. msgstr "sembunyikan video"
  1176. #~ msgid "Method"
  1177. #~ msgstr "Metode"
  1178. #~ msgid ""
  1179. #~ "This tab does not show up for "
  1180. #~ "search results but you can search "
  1181. #~ "the engines listed here via bangs."
  1182. #~ msgstr ""
  1183. #~ "Tab ini tidak ditampilkan untuk hasil"
  1184. #~ " pencarian tetapi Anda dapat mencari "
  1185. #~ "di mesin-mesin berikut ini melalui "
  1186. #~ "fitur bangs."
  1187. #~ msgid "Advanced settings"
  1188. #~ msgstr "Pengaturan lanjut"
  1189. #~ msgid "Close"
  1190. #~ msgstr "Tutup"
  1191. #~ msgid "Language"
  1192. #~ msgstr "Bahasa"
  1193. #~ msgid "broken"
  1194. #~ msgstr "rusak"
  1195. #~ msgid "supported"
  1196. #~ msgstr "didukung"
  1197. #~ msgid "not supported"
  1198. #~ msgstr "tidak didukung"
  1199. #~ msgid "about"
  1200. #~ msgstr "tentang"
  1201. #~ msgid "Avg."
  1202. #~ msgstr "Rata-rata"
  1203. #~ msgid "User Interface"
  1204. #~ msgstr "Antarmuka Pengguna"
  1205. #~ msgid "Choose style for this theme"
  1206. #~ msgstr "Pilih gaya untuk tema ini"
  1207. #~ msgid "Style"
  1208. #~ msgstr "Gaya"
  1209. #~ msgid "Show advanced settings"
  1210. #~ msgstr "Tampilkan pengaturan lanjut"
  1211. #~ msgid "Show advanced settings panel in the home page by default"
  1212. #~ msgstr "Tampilkan panel pengaturan lanjut di halaman utama secara default"
  1213. #~ msgid "Allow all"
  1214. #~ msgstr "Izinkan semua"
  1215. #~ msgid "Disable all"
  1216. #~ msgstr "Matikan semua"
  1217. #~ msgid "Selected language"
  1218. #~ msgstr "Bahasa yang dipilih"
  1219. #~ msgid "Query"
  1220. #~ msgstr "Pencarian"
  1221. #~ msgid "save"
  1222. #~ msgstr "simpan"
  1223. #~ msgid "back"
  1224. #~ msgstr "kembali"
  1225. #~ msgid "Links"
  1226. #~ msgstr "Tautan"
  1227. #~ msgid "RSS subscription"
  1228. #~ msgstr "Langganan RSS"
  1229. #~ msgid "Search results"
  1230. #~ msgstr "Hasil pencarian"
  1231. #~ msgid "next page"
  1232. #~ msgstr "halaman selanjutnya"
  1233. #~ msgid "previous page"
  1234. #~ msgstr "halaman sebelumnya"
  1235. #~ msgid "Start search"
  1236. #~ msgstr "Mulai mencari"
  1237. #~ msgid "Clear search"
  1238. #~ msgstr "Bersihkan pencarian"
  1239. #~ msgid "Clear"
  1240. #~ msgstr "Bersihkan"
  1241. #~ msgid "stats"
  1242. #~ msgstr "statistik"
  1243. #~ msgid "Heads up!"
  1244. #~ msgstr "Perhatian!"
  1245. #~ msgid "It look like you are using SearXNG first time."
  1246. #~ msgstr "Sepertinya Anda menggunakan SearXNG untuk pertama kali."
  1247. #~ msgid "Well done!"
  1248. #~ msgstr "Selamat!"
  1249. #~ msgid "Settings saved successfully."
  1250. #~ msgstr "Pengaturan berhasil disimpan."
  1251. #~ msgid "Oh snap!"
  1252. #~ msgstr "Aduh!"
  1253. #~ msgid "Something went wrong."
  1254. #~ msgstr "Ada yang salah."
  1255. #~ msgid "Date"
  1256. #~ msgstr "Tanggal"
  1257. #~ msgid "Type"
  1258. #~ msgstr "Tipe"
  1259. #~ msgid "Get image"
  1260. #~ msgstr "Dapatkan gambar"
  1261. #~ msgid "Center Alignment"
  1262. #~ msgstr ""
  1263. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1264. #~ msgstr ""
  1265. #~ msgid "preferences"
  1266. #~ msgstr "preferensi"
  1267. #~ msgid "Scores per result"
  1268. #~ msgstr "Skor per hasil"
  1269. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1270. #~ msgstr ""
  1271. #~ "sebuah mesin pencari meta yang "
  1272. #~ "menghormati privasi, dan dapat dimodifikasi"
  1273. #~ msgid "No abstract is available for this publication."
  1274. #~ msgstr "Tidak ada abstrak yang tersedia untuk publikasi ini."
  1275. #~ msgid "Self Informations"
  1276. #~ msgstr "Informasi Diri"
  1277. #~ msgid ""
  1278. #~ "Change how forms are submited, <a "
  1279. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1280. #~ " rel=\"external\">learn more about request "
  1281. #~ "methods</a>"
  1282. #~ msgstr ""
  1283. #~ "Ubah bagaimana formulir dikirimkan, <a "
  1284. #~ "href=\"https://id.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Metode_permintaan\""
  1285. #~ " rel=\"external\">pelajari lebih lanjut tentang"
  1286. #~ " metode permintaan</a>"
  1287. #~ msgid ""
  1288. #~ "This plugin checks if the address "
  1289. #~ "of the request is a TOR exit "
  1290. #~ "node, and informs the user if it"
  1291. #~ " is, like check.torproject.org but from "
  1292. #~ "searxng."
  1293. #~ msgstr ""
  1294. #~ "Plugin ini memeriksa jika alamat peminta"
  1295. #~ " adalah node keluaran TOR, dan "
  1296. #~ "memberitahukan pengguna jika iya, seperti "
  1297. #~ "check.torproject.org tetapi dari searxng."
  1298. #~ msgid ""
  1299. #~ "The TOR exit node list "
  1300. #~ "(https://check.torproject.org/exit-addresses) is "
  1301. #~ "unreachable."
  1302. #~ msgstr ""
  1303. #~ "Daftar node keluar TOR "
  1304. #~ "(https://check.torproject.org/exit-addresses) tidak "
  1305. #~ "dapat dijangkau."
  1306. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1307. #~ msgstr "Anda menggunakan TOR. Alamat IP Anda adalah: {ip_address}."
  1308. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1309. #~ msgstr ""
  1310. #~ "Anda tidak menggunakan TOR. Alamat IP"
  1311. #~ " Anda terlihat sebagai: {ip_address}."
  1312. #~ msgid ""
  1313. #~ "The could not download the list of"
  1314. #~ " Tor exit-nodes from "
  1315. #~ "https://check.torproject.org/exit-addresses."
  1316. #~ msgstr ""
  1317. #~ msgid ""
  1318. #~ "You are using Tor. It looks like"
  1319. #~ " you have this external IP address:"
  1320. #~ " {ip_address}."
  1321. #~ msgstr ""
  1322. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1323. #~ msgstr ""
  1324. #~ msgid "Autodetect search language"
  1325. #~ msgstr "Deteksi bahasa pencarian secara otomatis"
  1326. #~ msgid "Automatically detect the query search language and switch to it."
  1327. #~ msgstr "Deteksi bahasa kueri pencarian dan ubah bahasanya secara otomatis."
  1328. #~ msgid "others"
  1329. #~ msgstr "lain-lain"
  1330. #~ msgid ""
  1331. #~ "This tab does not show up for "
  1332. #~ "search results, but you can search "
  1333. #~ "the engines listed here via bangs."
  1334. #~ msgstr ""
  1335. #~ "Tab ini tidak ditampilkan untuk hasil"
  1336. #~ " pencarian, tetapi Anda dapat mencari "
  1337. #~ "di mesin-mesin berikut ini melalui "
  1338. #~ "fitur bangs."
  1339. #~ msgid "Shortcut"
  1340. #~ msgstr "Pintasan"
  1341. #~ msgid "!bang"
  1342. #~ msgstr ""
  1343. #~ msgid ""
  1344. #~ "This tab dues not exists in the"
  1345. #~ " user interface, but you can search"
  1346. #~ " in these engines by its !bangs."
  1347. #~ msgstr ""
  1348. #~ msgid "Engines cannot retrieve results."
  1349. #~ msgstr "Mesin-mesin tidak dapat mendapatkan hasil."
  1350. #~ msgid "Please, try again later or find another SearXNG instance."
  1351. #~ msgstr "Mohon coba lagi nanti atau cari instansi SearXNG yang lain."
  1352. #~ msgid ""
  1353. #~ "Redirect to open-access versions of "
  1354. #~ "publications when available (plugin required)"
  1355. #~ msgstr ""
  1356. #~ "Mengalihkan ke versi terbuka dari "
  1357. #~ "publikasi jika tersedia (plugin dibutuhkan)"
  1358. #~ msgid "Bang"
  1359. #~ msgstr ""
  1360. #~ msgid ""
  1361. #~ "Change how forms are submitted, <a "
  1362. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1363. #~ " rel=\"external\">learn more about request "
  1364. #~ "methods</a>"
  1365. #~ msgstr ""
  1366. #~ "Ubah bagaimana formulir dikirimkan, <a "
  1367. #~ "href=\"https://id.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Metode_permintaan\""
  1368. #~ " rel=\"external\">pelajari lebih lanjut tentang"
  1369. #~ " metode permintaan</a>"
  1370. #~ msgid "On"
  1371. #~ msgstr "Aktif"
  1372. #~ msgid "Off"
  1373. #~ msgstr "Nonaktif"
  1374. #~ msgid "Enabled"
  1375. #~ msgstr "Diaktifkan"
  1376. #~ msgid "Disabled"
  1377. #~ msgstr "Dinonaktifkan"
  1378. #~ msgid ""
  1379. #~ "Perform search immediately if a category"
  1380. #~ " selected. Disable to select multiple "
  1381. #~ "categories. (JavaScript required)"
  1382. #~ msgstr ""
  1383. #~ "Lakukan pencarian langsung apabila sebuah "
  1384. #~ "kategori dipilih. Matikan untuk memilih "
  1385. #~ "banyak kategori. (JavaScript dibutuhkan)"
  1386. #~ msgid "Vim-like hotkeys"
  1387. #~ msgstr "Tombol pintas mirip Vim"
  1388. #~ msgid ""
  1389. #~ "Navigate search results with Vim-like"
  1390. #~ " hotkeys (JavaScript required). Press \"h\""
  1391. #~ " key on main or result page to"
  1392. #~ " get help."
  1393. #~ msgstr ""
  1394. #~ "Navigasikan hasil pencarian dengan tombol "
  1395. #~ "pintas mirip Vim (Membutuhkan JavaScript). "
  1396. #~ "Tekan tombol \"h\" pada halaman utama"
  1397. #~ " atau halaman hasil untuk mendapatkan "
  1398. #~ "bantuan."
  1399. #~ msgid ""
  1400. #~ "we didn't find any results. Please "
  1401. #~ "use another query or search in "
  1402. #~ "more categories."
  1403. #~ msgstr ""
  1404. #~ "kami tidak menemukan hasil apa pun. "
  1405. #~ "Mohon menggunakan pencarian lain atau "
  1406. #~ "cari dalam kategori lain."