messages.po 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046
  1. # Italian translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Adam Tauber <asciimoo@gmail.com>, 2018
  7. # caoswave, 2016
  8. # caoswave, 2016-2018
  9. # dp <d.pitrolo@gmx.com>, 2014
  10. # dp <d.pitrolo@gmx.com>, 2014,2017
  11. # Federico <fedett@gmail.com>, 2018
  12. # Luca C <mybusiness@yopmail.com>, 2017
  13. # Luc <luc.absil2@gmail.com>, 2015
  14. # Random_R, 2018-2020
  15. # carlonigiulio <giuliocarloni20@gmail.com>, 2022.
  16. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  17. # Content Card <weblate-bubu1@gabg.email>, 2022.
  18. # Robert Bridda <briddarobert@icloud.com>, 2022.
  19. # random <thrizem+wnd43@gmail.com>, 2022.
  20. # Franco Longo <longofrancoale@gmail.com>, 2022.
  21. # VaiTon <eyadlorenzo@gmail.com>, 2023.
  22. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  23. # SonoAX <giovanniilgiovo@gmail.com>, 2023.
  24. # nicfab <nicfab@icloud.com>, 2023.
  25. # pietro395 <me@pietro.in>, 2024.
  26. # feather1 <verdimario2015@gmail.com>, 2024.
  27. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  28. # unoyoa <unoyoa@users.noreply.translate.codeberg.org>, 2024.
  29. # tiziodcaio <tiziodcaio@users.noreply.translate.codeberg.org>, 2024.
  30. # Fabio_Perri <Fabio_Perri@users.noreply.translate.codeberg.org>, 2024.
  31. # lrnz2 <lrnz2@users.noreply.translate.codeberg.org>, 2024, 2025.
  32. # OpenCode <OpenCode@users.noreply.translate.codeberg.org>, 2024.
  33. # xawos <xawos@users.noreply.translate.codeberg.org>, 2024.
  34. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  35. # feather1 <feather1@users.noreply.translate.codeberg.org>, 2025.
  36. # VaiTon <vaiton@users.noreply.translate.codeberg.org>, 2025.
  37. # Fabio_Perri <fabio_perri@users.noreply.translate.codeberg.org>, 2025.
  38. # nicfab <nicfab@users.noreply.translate.codeberg.org>, 2025.
  39. # SonoAX <sonoax@users.noreply.translate.codeberg.org>, 2025.
  40. msgid ""
  41. msgstr ""
  42. "Project-Id-Version: searx\n"
  43. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  44. "POT-Creation-Date: 2025-01-06 15:28+0000\n"
  45. "PO-Revision-Date: 2025-01-06 15:53+0000\n"
  46. "Last-Translator: SonoAX <sonoax@users.noreply.translate.codeberg.org>\n"
  47. "Language-Team: Italian <https://translate.codeberg.org/projects/searxng/"
  48. "searxng/it/>\n"
  49. "Language: it\n"
  50. "MIME-Version: 1.0\n"
  51. "Content-Type: text/plain; charset=utf-8\n"
  52. "Content-Transfer-Encoding: 8bit\n"
  53. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  54. "X-Generator: Weblate 5.9.2\n"
  55. "Generated-By: Babel 2.16.0\n"
  56. #. CONSTANT_NAMES['NO_SUBGROUPING']
  57. #: searx/searxng.msg
  58. msgid "without further subgrouping"
  59. msgstr "senza altri sottogruppi"
  60. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  61. #: searx/searxng.msg
  62. msgid "other"
  63. msgstr "altro"
  64. #. CATEGORY_NAMES['FILES']
  65. #: searx/searxng.msg
  66. msgid "files"
  67. msgstr "documenti"
  68. #. CATEGORY_NAMES['GENERAL']
  69. #: searx/searxng.msg
  70. msgid "general"
  71. msgstr "generale"
  72. #. CATEGORY_NAMES['MUSIC']
  73. #: searx/searxng.msg
  74. msgid "music"
  75. msgstr "musica"
  76. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  77. #: searx/searxng.msg
  78. msgid "social media"
  79. msgstr "social media"
  80. #. CATEGORY_NAMES['IMAGES']
  81. #: searx/searxng.msg
  82. msgid "images"
  83. msgstr "immagini"
  84. #. CATEGORY_NAMES['VIDEOS']
  85. #: searx/searxng.msg
  86. msgid "videos"
  87. msgstr "video"
  88. #. CATEGORY_NAMES['RADIO']
  89. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  90. msgid "radio"
  91. msgstr "radio"
  92. #. CATEGORY_NAMES['TV']
  93. #: searx/searxng.msg
  94. msgid "tv"
  95. msgstr "tv"
  96. #. CATEGORY_NAMES['IT']
  97. #: searx/searxng.msg
  98. msgid "it"
  99. msgstr "IT"
  100. #. CATEGORY_NAMES['NEWS']
  101. #: searx/searxng.msg
  102. msgid "news"
  103. msgstr "notizie"
  104. #. CATEGORY_NAMES['MAP']
  105. #: searx/searxng.msg
  106. msgid "map"
  107. msgstr "mappa"
  108. #. CATEGORY_NAMES['ONIONS']
  109. #: searx/searxng.msg
  110. msgid "onions"
  111. msgstr "cipolle"
  112. #. CATEGORY_NAMES['SCIENCE']
  113. #: searx/searxng.msg
  114. msgid "science"
  115. msgstr "scienza"
  116. #. CATEGORY_GROUPS['APPS']
  117. #: searx/searxng.msg
  118. msgid "apps"
  119. msgstr "applicazioni"
  120. #. CATEGORY_GROUPS['DICTIONARIES']
  121. #: searx/searxng.msg
  122. msgid "dictionaries"
  123. msgstr "dizionari"
  124. #. CATEGORY_GROUPS['LYRICS']
  125. #: searx/searxng.msg
  126. msgid "lyrics"
  127. msgstr "testo musicale"
  128. #. CATEGORY_GROUPS['PACKAGES']
  129. #: searx/searxng.msg
  130. msgid "packages"
  131. msgstr "pacchetti"
  132. #. CATEGORY_GROUPS['Q_A']
  133. #: searx/searxng.msg
  134. msgid "q&a"
  135. msgstr "d&r"
  136. #. CATEGORY_GROUPS['REPOS']
  137. #: searx/searxng.msg
  138. msgid "repos"
  139. msgstr "reposs"
  140. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  141. #: searx/searxng.msg
  142. msgid "software wikis"
  143. msgstr "wiki del software"
  144. #. CATEGORY_GROUPS['WEB']
  145. #: searx/searxng.msg
  146. msgid "web"
  147. msgstr "web"
  148. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  149. #: searx/searxng.msg
  150. msgid "scientific publications"
  151. msgstr "pubblicazioni scientifiche"
  152. #. STYLE_NAMES['AUTO']
  153. #: searx/searxng.msg
  154. msgid "auto"
  155. msgstr "automatico"
  156. #. STYLE_NAMES['LIGHT']
  157. #: searx/searxng.msg
  158. msgid "light"
  159. msgstr "chiaro"
  160. #. STYLE_NAMES['DARK']
  161. #: searx/searxng.msg
  162. msgid "dark"
  163. msgstr "scuro"
  164. #. STYLE_NAMES['BLACK']
  165. #: searx/searxng.msg
  166. msgid "black"
  167. msgstr "nero"
  168. #. BRAND_CUSTOM_LINKS['UPTIME']
  169. #: searx/searxng.msg
  170. msgid "Uptime"
  171. msgstr "Tempo di attività"
  172. #. BRAND_CUSTOM_LINKS['ABOUT']
  173. #: searx/searxng.msg searx/templates/simple/base.html:50
  174. msgid "About"
  175. msgstr "Al riguardo"
  176. #. WEATHER_TERMS['AVERAGE TEMP.']
  177. #: searx/engines/wttr.py:32 searx/searxng.msg
  178. msgid "Average temp."
  179. msgstr "Temp. media"
  180. #. WEATHER_TERMS['CLOUD COVER']
  181. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  182. msgid "Cloud cover"
  183. msgstr "Nuvolosità"
  184. #. WEATHER_TERMS['CONDITION']
  185. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  186. #: searx/searxng.msg
  187. msgid "Condition"
  188. msgstr "Condizione"
  189. #. WEATHER_TERMS['CURRENT CONDITION']
  190. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  191. #: searx/searxng.msg
  192. msgid "Current condition"
  193. msgstr "Condizione attuale"
  194. #. WEATHER_TERMS['EVENING']
  195. #: searx/engines/wttr.py:100 searx/searxng.msg
  196. msgid "Evening"
  197. msgstr "Sera"
  198. #. WEATHER_TERMS['FEELS LIKE']
  199. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  200. #: searx/engines/wttr.py:59 searx/searxng.msg
  201. msgid "Feels like"
  202. msgstr "Percepita come"
  203. #. WEATHER_TERMS['HUMIDITY']
  204. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  205. #: searx/engines/wttr.py:68 searx/searxng.msg
  206. msgid "Humidity"
  207. msgstr "Umidità"
  208. #. WEATHER_TERMS['MAX TEMP.']
  209. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  210. #: searx/searxng.msg
  211. msgid "Max temp."
  212. msgstr "Temp. massima"
  213. #. WEATHER_TERMS['MIN TEMP.']
  214. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  215. #: searx/searxng.msg
  216. msgid "Min temp."
  217. msgstr "Temp. min"
  218. #. WEATHER_TERMS['MORNING']
  219. #: searx/engines/wttr.py:100 searx/searxng.msg
  220. msgid "Morning"
  221. msgstr "Mattina"
  222. #. WEATHER_TERMS['NIGHT']
  223. #: searx/engines/wttr.py:100 searx/searxng.msg
  224. msgid "Night"
  225. msgstr "Notte"
  226. #. WEATHER_TERMS['NOON']
  227. #: searx/engines/wttr.py:100 searx/searxng.msg
  228. msgid "Noon"
  229. msgstr "Mezzogiorno"
  230. #. WEATHER_TERMS['PRESSURE']
  231. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  232. msgid "Pressure"
  233. msgstr "Pressione"
  234. #. WEATHER_TERMS['SUNRISE']
  235. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  236. #: searx/searxng.msg
  237. msgid "Sunrise"
  238. msgstr "Alba"
  239. #. WEATHER_TERMS['SUNSET']
  240. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  241. #: searx/searxng.msg
  242. msgid "Sunset"
  243. msgstr "Tramonto"
  244. #. WEATHER_TERMS['TEMPERATURE']
  245. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  246. #: searx/engines/wttr.py:55 searx/searxng.msg
  247. msgid "Temperature"
  248. msgstr "Temperatura"
  249. #. WEATHER_TERMS['UV INDEX']
  250. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  251. #: searx/searxng.msg
  252. msgid "UV index"
  253. msgstr "Indice UV"
  254. #. WEATHER_TERMS['VISIBILITY']
  255. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  256. #: searx/searxng.msg
  257. msgid "Visibility"
  258. msgstr "Visibilità"
  259. #. WEATHER_TERMS['WIND']
  260. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  261. #: searx/engines/wttr.py:62 searx/searxng.msg
  262. msgid "Wind"
  263. msgstr "Vento"
  264. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  265. #: searx/engines/lemmy.py:85 searx/searxng.msg
  266. msgid "subscribers"
  267. msgstr "iscritti"
  268. #. SOCIAL_MEDIA_TERMS['POSTS']
  269. #: searx/engines/lemmy.py:86 searx/searxng.msg
  270. msgid "posts"
  271. msgstr "messaggi"
  272. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  273. #: searx/engines/lemmy.py:87 searx/searxng.msg
  274. msgid "active users"
  275. msgstr "utenti attivi"
  276. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  277. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  278. #: searx/engines/lemmy.py:130 searx/searxng.msg
  279. msgid "comments"
  280. msgstr "commenti"
  281. #. SOCIAL_MEDIA_TERMS['USER']
  282. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  283. msgid "user"
  284. msgstr "utente"
  285. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  286. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  287. msgid "community"
  288. msgstr "comunità"
  289. #. SOCIAL_MEDIA_TERMS['POINTS']
  290. #: searx/engines/hackernews.py:82 searx/searxng.msg
  291. msgid "points"
  292. msgstr "punti"
  293. #. SOCIAL_MEDIA_TERMS['TITLE']
  294. #: searx/searxng.msg
  295. msgid "title"
  296. msgstr "titolo"
  297. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  298. #: searx/engines/hackernews.py:85 searx/searxng.msg
  299. msgid "author"
  300. msgstr "autore"
  301. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  302. #: searx/engines/discourse.py:149 searx/searxng.msg
  303. msgid "open"
  304. msgstr "aperto"
  305. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  306. #: searx/engines/discourse.py:149 searx/searxng.msg
  307. msgid "closed"
  308. msgstr "chiuso"
  309. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  310. #: searx/engines/discourse.py:160 searx/searxng.msg
  311. msgid "answered"
  312. msgstr "risposto"
  313. #: searx/webapp.py:323
  314. msgid "No item found"
  315. msgstr "Nessun oggetto trovato"
  316. #: searx/engines/qwant.py:288
  317. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  318. msgid "Source"
  319. msgstr "Sorgente"
  320. #: searx/webapp.py:327
  321. msgid "Error loading the next page"
  322. msgstr "Errore di caricamento della pagina successiva"
  323. #: searx/webapp.py:492 searx/webapp.py:900
  324. msgid "Invalid settings, please edit your preferences"
  325. msgstr "Impostazioni non valide, modifica le tue preferenze"
  326. #: searx/webapp.py:508
  327. msgid "Invalid settings"
  328. msgstr "Impostazioni non valide"
  329. #: searx/webapp.py:585 searx/webapp.py:675
  330. msgid "search error"
  331. msgstr "errore di ricerca"
  332. #: searx/webutils.py:36
  333. msgid "timeout"
  334. msgstr "tempo scaduto"
  335. #: searx/webutils.py:37
  336. msgid "parsing error"
  337. msgstr "errore di analisi"
  338. #: searx/webutils.py:38
  339. msgid "HTTP protocol error"
  340. msgstr "errore protocollo HTTP"
  341. #: searx/webutils.py:39
  342. msgid "network error"
  343. msgstr "errore di rete"
  344. #: searx/webutils.py:40
  345. msgid "SSL error: certificate validation has failed"
  346. msgstr "Errore SSL: La verifica del certificato è fallita"
  347. #: searx/webutils.py:42
  348. msgid "unexpected crash"
  349. msgstr "crash inaspettato"
  350. #: searx/webutils.py:49
  351. msgid "HTTP error"
  352. msgstr "errore HTTP"
  353. #: searx/webutils.py:50
  354. msgid "HTTP connection error"
  355. msgstr "errore di connessione HTTP"
  356. #: searx/webutils.py:56
  357. msgid "proxy error"
  358. msgstr "errore proxy"
  359. #: searx/webutils.py:57
  360. msgid "CAPTCHA"
  361. msgstr "CAPTCHA"
  362. #: searx/webutils.py:58
  363. msgid "too many requests"
  364. msgstr "troppe richieste"
  365. #: searx/webutils.py:59
  366. msgid "access denied"
  367. msgstr "accesso negato"
  368. #: searx/webutils.py:60
  369. msgid "server API error"
  370. msgstr "errore server API"
  371. #: searx/webutils.py:79
  372. msgid "Suspended"
  373. msgstr "Sospeso"
  374. #: searx/webutils.py:314
  375. msgid "{minutes} minute(s) ago"
  376. msgstr "di {minutes} minuto(i) fa"
  377. #: searx/webutils.py:315
  378. msgid "{hours} hour(s), {minutes} minute(s) ago"
  379. msgstr "di {hours} ora(e) e {minutes} minuto(i) fa"
  380. #: searx/answerers/random/answerer.py:76
  381. msgid "Random value generator"
  382. msgstr "Generatore di numeri casuali"
  383. #: searx/answerers/random/answerer.py:77
  384. msgid "Generate different random values"
  385. msgstr "Genera più numeri casuali"
  386. #: searx/answerers/statistics/answerer.py:50
  387. msgid "Statistics functions"
  388. msgstr "Funzioni statistiche"
  389. #: searx/answerers/statistics/answerer.py:51
  390. msgid "Compute {functions} of the arguments"
  391. msgstr "Calcola {functions} degli argomenti"
  392. #: searx/engines/mozhi.py:57
  393. msgid "Synonyms"
  394. msgstr "Sinonimi"
  395. #: searx/engines/openstreetmap.py:159
  396. msgid "Get directions"
  397. msgstr "Ricevi direzioni"
  398. #: searx/engines/pdbe.py:96
  399. msgid "{title} (OBSOLETE)"
  400. msgstr "{title} (OBSOLETO)"
  401. #: searx/engines/pdbe.py:103
  402. msgid "This entry has been superseded by"
  403. msgstr "Questa voce è stata sostituita da"
  404. #: searx/engines/qwant.py:290
  405. msgid "Channel"
  406. msgstr "Canale"
  407. #: searx/engines/radio_browser.py:105
  408. msgid "bitrate"
  409. msgstr "velocità in bit"
  410. #: searx/engines/radio_browser.py:106
  411. msgid "votes"
  412. msgstr "voti"
  413. #: searx/engines/radio_browser.py:107
  414. msgid "clicks"
  415. msgstr "clic"
  416. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  417. #: searx/engines/zlibrary.py:137
  418. msgid "Language"
  419. msgstr "Lingua"
  420. #: searx/engines/semantic_scholar.py:78
  421. msgid ""
  422. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  423. "{lastCitationVelocityYear}"
  424. msgstr ""
  425. "{numCitations} citazioni dall anno {firstCitationVelocityYear} fino al "
  426. "{lastCitationVelocityYear}"
  427. #: searx/engines/tineye.py:45
  428. msgid ""
  429. "Could not read that image url. This may be due to an unsupported file "
  430. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  431. " WebP."
  432. msgstr ""
  433. "Impossibile leggere l'URL dell'immagine. Ciò potrebbe essere dovuto a un "
  434. "formato del file non supportato. TinEye supporta solo immagini JPEG, PNG, "
  435. "GIF, BMP, TIFF o Web."
  436. #: searx/engines/tineye.py:51
  437. msgid ""
  438. "The image is too simple to find matches. TinEye requires a basic level of"
  439. " visual detail to successfully identify matches."
  440. msgstr ""
  441. "L'immagine è troppo semplice per trovare corrispondenze. TinEye richiede un "
  442. "maggiore livello di dettagli visivi per identificare corrispondenze con "
  443. "successo."
  444. #: searx/engines/tineye.py:57
  445. msgid "The image could not be downloaded."
  446. msgstr "L'immagine non può essere scaricata."
  447. #: searx/engines/zlibrary.py:138
  448. msgid "Book rating"
  449. msgstr "Valutazione del libro"
  450. #: searx/engines/zlibrary.py:139
  451. msgid "File quality"
  452. msgstr "Qualità del file"
  453. #: searx/plugins/calculator.py:18
  454. msgid "Calculate mathematical expressions via the search bar"
  455. msgstr "Calcola espressioni matematiche nella barra di ricerca"
  456. #: searx/plugins/hash_plugin.py:10
  457. msgid "Converts strings to different hash digests."
  458. msgstr "Converte le stringhe in diversi digest di hash."
  459. #: searx/plugins/hash_plugin.py:38
  460. msgid "hash digest"
  461. msgstr "digest dell'hash"
  462. #: searx/plugins/hostnames.py:103
  463. msgid "Hostnames plugin"
  464. msgstr "Plugin dell'hostname"
  465. #: searx/plugins/hostnames.py:104
  466. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  467. msgstr ""
  468. "Riscrive gli hostname, rimuove i risultati o gli da priorità in base "
  469. "all'hostname"
  470. #: searx/plugins/oa_doi_rewrite.py:12
  471. msgid "Open Access DOI rewrite"
  472. msgstr "Reindirizzamento Open Access DOI"
  473. #: searx/plugins/oa_doi_rewrite.py:13
  474. msgid ""
  475. "Avoid paywalls by redirecting to open-access versions of publications "
  476. "when available"
  477. msgstr ""
  478. "Se possibile, evita il paywall di una pubblicazione reindirizzando ad una "
  479. "versione ad accesso libero"
  480. #: searx/plugins/self_info.py:9
  481. msgid "Self Information"
  482. msgstr "Informazioni su di sé"
  483. #: searx/plugins/self_info.py:10
  484. msgid ""
  485. "Displays your IP if the query is \"ip\" and your user agent if the query "
  486. "contains \"user agent\"."
  487. msgstr ""
  488. "Mostra il tuo IP se hai cercato \"ip\" ed il tuo user agent se hai cercato "
  489. "\"user agent\"."
  490. #: searx/plugins/self_info.py:28
  491. msgid "Your IP is: "
  492. msgstr "Il tuo IP è: "
  493. #: searx/plugins/self_info.py:31
  494. msgid "Your user-agent is: "
  495. msgstr "Il tuo interprete è: "
  496. #: searx/plugins/tor_check.py:24
  497. msgid "Tor check plugin"
  498. msgstr "Plugin di verifica tor"
  499. #: searx/plugins/tor_check.py:27
  500. msgid ""
  501. "This plugin checks if the address of the request is a Tor exit-node, and "
  502. "informs the user if it is; like check.torproject.org, but from SearXNG."
  503. msgstr ""
  504. "Questo plugin controlla se l'indirizzo richiesto è un nodo di uscita di Tor "
  505. "e informa l'utente se lo è; come check.torproject.org, ma da SearXNG."
  506. #: searx/plugins/tor_check.py:61
  507. msgid ""
  508. "Could not download the list of Tor exit-nodes from: "
  509. "https://check.torproject.org/exit-addresses"
  510. msgstr ""
  511. "Non ho potuto scaricare la lista dei nodi di uscita di Tor da: "
  512. "https://check.torproject.org?exit-addresses"
  513. #: searx/plugins/tor_check.py:77
  514. msgid ""
  515. "You are using Tor and it looks like you have this external IP address: "
  516. "{ip_address}"
  517. msgstr ""
  518. "Stai usando Tor e sembra che tu abbia il seguente indirizzo IP: {ip_address}"
  519. #: searx/plugins/tor_check.py:85
  520. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  521. msgstr "Non stai usando Tor e il tuo indirizzo IP esterno è: {ip_address}"
  522. #: searx/plugins/tracker_url_remover.py:16
  523. msgid "Tracker URL remover"
  524. msgstr "Rimuovi URL traccianti"
  525. #: searx/plugins/tracker_url_remover.py:17
  526. msgid "Remove trackers arguments from the returned URL"
  527. msgstr "Rimuovi gli elementi traccianti dall'indirizzo URL riportato"
  528. #: searx/plugins/unit_converter.py:29
  529. msgid "Convert between units"
  530. msgstr "Converti tra le unità"
  531. #: searx/templates/simple/404.html:4
  532. msgid "Page not found"
  533. msgstr "Pagina non trovata"
  534. #: searx/templates/simple/404.html:6
  535. #, python-format
  536. msgid "Go to %(search_page)s."
  537. msgstr "Vai a %(search_page)s."
  538. #: searx/templates/simple/404.html:6
  539. msgid "search page"
  540. msgstr "cerca nella pagina"
  541. #: searx/templates/simple/base.html:54
  542. msgid "Donate"
  543. msgstr "Dona"
  544. #: searx/templates/simple/base.html:58
  545. #: searx/templates/simple/preferences.html:156
  546. msgid "Preferences"
  547. msgstr "Preferenze"
  548. #: searx/templates/simple/base.html:68
  549. msgid "Powered by"
  550. msgstr "Offerto da"
  551. #: searx/templates/simple/base.html:68
  552. msgid "a privacy-respecting, open metasearch engine"
  553. msgstr "un meta-motore di ricerca web, open source e rispettoso della privacy"
  554. #: searx/templates/simple/base.html:69
  555. #: searx/templates/simple/result_templates/packages.html:59
  556. msgid "Source code"
  557. msgstr "Codice sorgente"
  558. #: searx/templates/simple/base.html:70
  559. msgid "Issue tracker"
  560. msgstr "Registratore dei problemi"
  561. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  562. msgid "Engine stats"
  563. msgstr "Statistiche dei motori"
  564. #: searx/templates/simple/base.html:73
  565. msgid "Public instances"
  566. msgstr "Istanze pubbliche"
  567. #: searx/templates/simple/base.html:76
  568. msgid "Privacy policy"
  569. msgstr "Politica sulla riservatezza"
  570. #: searx/templates/simple/base.html:79
  571. msgid "Contact instance maintainer"
  572. msgstr "Contatta il manutentore dell'istanza"
  573. #: searx/templates/simple/categories.html:26
  574. msgid "Click on the magnifier to perform search"
  575. msgstr "Premi sull'icona della lente per avviare la ricerca"
  576. #: searx/templates/simple/macros.html:40
  577. msgid "Length"
  578. msgstr "Lunghezza"
  579. #: searx/templates/simple/macros.html:41
  580. msgid "Views"
  581. msgstr "Visualizzazioni"
  582. #: searx/templates/simple/macros.html:42
  583. #: searx/templates/simple/result_templates/files.html:34
  584. #: searx/templates/simple/result_templates/images.html:19
  585. #: searx/templates/simple/result_templates/paper.html:6
  586. msgid "Author"
  587. msgstr "Autore"
  588. #: searx/templates/simple/macros.html:50
  589. msgid "cached"
  590. msgstr "in cache"
  591. #: searx/templates/simple/macros.html:50
  592. msgid "proxied"
  593. msgstr "proxy"
  594. #: searx/templates/simple/new_issue.html:64
  595. msgid "Start submitting a new issue on GitHub"
  596. msgstr "Inizia segnalando un nuovo problema su GitHub"
  597. #: searx/templates/simple/new_issue.html:66
  598. msgid "Please check for existing bugs about this engine on GitHub"
  599. msgstr "Cerca bug esistenti riguardo questo motore su GitHub"
  600. #: searx/templates/simple/new_issue.html:69
  601. msgid "I confirm there is no existing bug about the issue I encounter"
  602. msgstr ""
  603. "Confermo che non ci sono bug esistenti riguardo il problema che ho "
  604. "riscontrato"
  605. #: searx/templates/simple/new_issue.html:71
  606. msgid "If this is a public instance, please specify the URL in the bug report"
  607. msgstr ""
  608. "Se questa è un'istanza pubblica, per favore specifica l'URL nella "
  609. "segnalazione del bug"
  610. #: searx/templates/simple/new_issue.html:72
  611. msgid "Submit a new issue on Github including the above information"
  612. msgstr ""
  613. "Segnala un nuovo problema su Github, includendo le informazioni sopra citate"
  614. #: searx/templates/simple/preferences.html:65
  615. msgid "No HTTPS"
  616. msgstr "Nessun HTTPS"
  617. #: searx/templates/simple/elements/engines_msg.html:14
  618. #: searx/templates/simple/preferences.html:69
  619. #: searx/templates/simple/preferences.html:70
  620. msgid "View error logs and submit a bug report"
  621. msgstr "Visualizza i registri degli errori e invia una segnalazione di bug"
  622. #: searx/templates/simple/preferences.html:74
  623. msgid "!bang for this engine"
  624. msgstr "esegui un !bang per questo motore"
  625. #: searx/templates/simple/preferences.html:80
  626. msgid "!bang for its categories"
  627. msgstr "esegui un !bang per le sue categorie"
  628. #: searx/templates/simple/preferences.html:102
  629. #: searx/templates/simple/stats.html:64
  630. msgid "Median"
  631. msgstr "Mediano"
  632. #: searx/templates/simple/preferences.html:103
  633. #: searx/templates/simple/stats.html:70
  634. msgid "P80"
  635. msgstr "P80"
  636. #: searx/templates/simple/preferences.html:104
  637. #: searx/templates/simple/stats.html:76
  638. msgid "P95"
  639. msgstr "P95"
  640. #: searx/templates/simple/preferences.html:136
  641. msgid "Failed checker test(s): "
  642. msgstr "Test di controllo fallito(i): "
  643. #: searx/templates/simple/preferences.html:138
  644. msgid "Errors:"
  645. msgstr "Errori:"
  646. #: searx/templates/simple/preferences.html:162
  647. msgid "General"
  648. msgstr "Generale"
  649. #: searx/templates/simple/preferences.html:165
  650. msgid "Default categories"
  651. msgstr "Categorie predefinite"
  652. #: searx/templates/simple/preferences.html:190
  653. msgid "User interface"
  654. msgstr "Interfaccia utente"
  655. #: searx/templates/simple/preferences.html:212
  656. msgid "Privacy"
  657. msgstr "Privacy"
  658. #: searx/templates/simple/preferences.html:225
  659. msgid "Engines"
  660. msgstr "Motori"
  661. #: searx/templates/simple/preferences.html:227
  662. msgid "Currently used search engines"
  663. msgstr "Motori di ricerca attualmente in uso"
  664. #: searx/templates/simple/preferences.html:235
  665. msgid "Special Queries"
  666. msgstr "Richieste speciali"
  667. #: searx/templates/simple/preferences.html:241
  668. msgid "Cookies"
  669. msgstr "Cookie"
  670. #: searx/templates/simple/results.html:23
  671. msgid "Answers"
  672. msgstr "Risposte"
  673. #: searx/templates/simple/results.html:42
  674. msgid "Number of results"
  675. msgstr "Numero di risultati"
  676. #: searx/templates/simple/results.html:48
  677. msgid "Info"
  678. msgstr "Informazioni"
  679. #: searx/templates/simple/results.html:75
  680. msgid "Try searching for:"
  681. msgstr "Prova a cercare:"
  682. #: searx/templates/simple/results.html:107
  683. msgid "Back to top"
  684. msgstr "Torna in cima"
  685. #: searx/templates/simple/results.html:125
  686. msgid "Previous page"
  687. msgstr "Pagina precedente"
  688. #: searx/templates/simple/results.html:143
  689. msgid "Next page"
  690. msgstr "Pagina successiva"
  691. #: searx/templates/simple/search.html:3
  692. msgid "Display the front page"
  693. msgstr "Visualizza la pagina principale"
  694. #: searx/templates/simple/search.html:9
  695. #: searx/templates/simple/simple_search.html:5
  696. msgid "Search for..."
  697. msgstr "Cerca..."
  698. #: searx/templates/simple/search.html:10
  699. #: searx/templates/simple/simple_search.html:6
  700. msgid "clear"
  701. msgstr "pulisci"
  702. #: searx/templates/simple/search.html:11
  703. #: searx/templates/simple/simple_search.html:7
  704. msgid "search"
  705. msgstr "cerca"
  706. #: searx/templates/simple/stats.html:21
  707. msgid "There is currently no data available. "
  708. msgstr "Non ci sono dati attualmente disponibili. "
  709. #: searx/templates/simple/preferences/engines.html:24
  710. #: searx/templates/simple/stats.html:25
  711. msgid "Engine name"
  712. msgstr "Nome del motore"
  713. #: searx/templates/simple/stats.html:26
  714. msgid "Scores"
  715. msgstr "Punteggi"
  716. #: searx/templates/simple/stats.html:27
  717. msgid "Result count"
  718. msgstr "Conteggio dei risultati"
  719. #: searx/templates/simple/elements/engines_msg.html:7
  720. #: searx/templates/simple/preferences/engines.html:31
  721. #: searx/templates/simple/stats.html:28
  722. msgid "Response time"
  723. msgstr "Tempo di risposta"
  724. #: searx/templates/simple/preferences/engines.html:35
  725. #: searx/templates/simple/stats.html:29
  726. msgid "Reliability"
  727. msgstr "Affidabilità"
  728. #: searx/templates/simple/stats.html:59
  729. msgid "Total"
  730. msgstr "Totale"
  731. #: searx/templates/simple/stats.html:60
  732. msgid "HTTP"
  733. msgstr "HTTP"
  734. #: searx/templates/simple/stats.html:61
  735. msgid "Processing"
  736. msgstr "Elaborazione"
  737. #: searx/templates/simple/stats.html:99
  738. msgid "Warnings"
  739. msgstr "Avvisi"
  740. #: searx/templates/simple/stats.html:99
  741. msgid "Errors and exceptions"
  742. msgstr "Errori ed eccezioni"
  743. #: searx/templates/simple/stats.html:105
  744. msgid "Exception"
  745. msgstr "Eccezione"
  746. #: searx/templates/simple/stats.html:107
  747. msgid "Message"
  748. msgstr "Messaggio"
  749. #: searx/templates/simple/stats.html:109
  750. msgid "Percentage"
  751. msgstr "Percentuale"
  752. #: searx/templates/simple/stats.html:111
  753. msgid "Parameter"
  754. msgstr "Parametro"
  755. #: searx/templates/simple/result_templates/files.html:36
  756. #: searx/templates/simple/stats.html:119
  757. msgid "Filename"
  758. msgstr "Nome del file"
  759. #: searx/templates/simple/stats.html:120
  760. msgid "Function"
  761. msgstr "Funzione"
  762. #: searx/templates/simple/stats.html:121
  763. msgid "Code"
  764. msgstr "Codice"
  765. #: searx/templates/simple/stats.html:128
  766. msgid "Checker"
  767. msgstr "Controllore"
  768. #: searx/templates/simple/stats.html:131
  769. msgid "Failed test"
  770. msgstr "Test fallito"
  771. #: searx/templates/simple/stats.html:132
  772. msgid "Comment(s)"
  773. msgstr "Commento(i)"
  774. #: searx/templates/simple/elements/apis.html:3
  775. msgid "Download results"
  776. msgstr "Scarica i risultati"
  777. #: searx/templates/simple/elements/engines_msg.html:4
  778. msgid "Messages from the search engines"
  779. msgstr "Messaggi dai motori di ricerca"
  780. #: searx/templates/simple/elements/engines_msg.html:7
  781. msgid "seconds"
  782. msgstr "s"
  783. #: searx/templates/simple/elements/search_url.html:3
  784. msgid "Search URL"
  785. msgstr "URL della ricerca"
  786. #: searx/templates/simple/elements/search_url.html:4
  787. #: searx/templates/simple/preferences/cookies.html:54
  788. msgid "Copied"
  789. msgstr "Copiato"
  790. #: searx/templates/simple/elements/search_url.html:4
  791. #: searx/templates/simple/preferences/cookies.html:54
  792. msgid "Copy"
  793. msgstr "Copia"
  794. #: searx/templates/simple/elements/suggestions.html:3
  795. msgid "Suggestions"
  796. msgstr "Suggerimenti"
  797. #: searx/templates/simple/filters/languages.html:1
  798. #: searx/templates/simple/preferences/language.html:2
  799. msgid "Search language"
  800. msgstr "Lingua di ricerca"
  801. #: searx/templates/simple/filters/languages.html:4
  802. #: searx/templates/simple/preferences/language.html:7
  803. msgid "Default language"
  804. msgstr "Lingua predefinita"
  805. #: searx/templates/simple/filters/languages.html:8
  806. #: searx/templates/simple/preferences/language.html:11
  807. msgid "Auto-detect"
  808. msgstr "Rilevamento automatico"
  809. #: searx/templates/simple/filters/safesearch.html:1
  810. #: searx/templates/simple/filters/safesearch.html:2
  811. #: searx/templates/simple/filters/safesearch.html:3
  812. #: searx/templates/simple/filters/safesearch.html:4
  813. #: searx/templates/simple/preferences/engines.html:27
  814. #: searx/templates/simple/preferences/safesearch.html:2
  815. msgid "SafeSearch"
  816. msgstr "Ricerca Sicura"
  817. #: searx/templates/simple/filters/safesearch.html:2
  818. #: searx/templates/simple/preferences/safesearch.html:7
  819. msgid "Strict"
  820. msgstr "Severo"
  821. #: searx/templates/simple/filters/safesearch.html:3
  822. #: searx/templates/simple/preferences/safesearch.html:11
  823. msgid "Moderate"
  824. msgstr "Moderata"
  825. #: searx/templates/simple/filters/safesearch.html:4
  826. #: searx/templates/simple/preferences/safesearch.html:15
  827. msgid "None"
  828. msgstr "Nessuna"
  829. #: searx/templates/simple/filters/time_range.html:1
  830. #: searx/templates/simple/preferences/engines.html:28
  831. msgid "Time range"
  832. msgstr "Intervallo di tempo"
  833. #: searx/templates/simple/filters/time_range.html:3
  834. msgid "Anytime"
  835. msgstr "Qualsiasi data"
  836. #: searx/templates/simple/filters/time_range.html:6
  837. msgid "Last day"
  838. msgstr "Ultimo giorno"
  839. #: searx/templates/simple/filters/time_range.html:9
  840. msgid "Last week"
  841. msgstr "Ultima settimana"
  842. #: searx/templates/simple/filters/time_range.html:12
  843. msgid "Last month"
  844. msgstr "Ultimo mese"
  845. #: searx/templates/simple/filters/time_range.html:15
  846. msgid "Last year"
  847. msgstr "Ultimo anno"
  848. #: searx/templates/simple/messages/no_cookies.html:3
  849. msgid "Information!"
  850. msgstr "Informazione!"
  851. #: searx/templates/simple/messages/no_cookies.html:4
  852. msgid "currently, there are no cookies defined."
  853. msgstr "Attualmente non ci sono cookie definiti."
  854. #: searx/templates/simple/messages/no_results.html:6
  855. msgid "Sorry!"
  856. msgstr "Scusa!"
  857. #: searx/templates/simple/messages/no_results.html:12
  858. msgid "No results were found. You can try to:"
  859. msgstr "Non sono stati trovati risultati. Puoi provare a:"
  860. #: searx/templates/simple/messages/no_results.html:14
  861. msgid "There are no more results. You can try to:"
  862. msgstr "Non ci sono più risultati. Puoi provare a:"
  863. #: searx/templates/simple/messages/no_results.html:19
  864. msgid "Refresh the page."
  865. msgstr "Aggiorna la pagina."
  866. #: searx/templates/simple/messages/no_results.html:20
  867. msgid "Search for another query or select another category (above)."
  868. msgstr "Cerca un'altra query o seleziona un'altra categoria (sopra)."
  869. #: searx/templates/simple/messages/no_results.html:21
  870. msgid "Change the search engine used in the preferences:"
  871. msgstr "Modifica il motore di ricerca utilizzato nelle preferenze:"
  872. #: searx/templates/simple/messages/no_results.html:22
  873. msgid "Switch to another instance:"
  874. msgstr "Passa ad un'altra istanza:"
  875. #: searx/templates/simple/messages/no_results.html:24
  876. msgid "Search for another query or select another category."
  877. msgstr "Prova con un’altra ricerca o seleziona un’altra categoria."
  878. #: searx/templates/simple/messages/no_results.html:25
  879. msgid "Go back to the previous page using the previous page button."
  880. msgstr ""
  881. "Torna alla pagina precedente utilizzando il pulsante della pagina precedente."
  882. #: searx/templates/simple/preferences/answerers.html:4
  883. #: searx/templates/simple/preferences/engines.html:23
  884. msgid "Allow"
  885. msgstr "Autorizza"
  886. #: searx/templates/simple/preferences/answerers.html:5
  887. msgid "Keywords"
  888. msgstr "Parole chiave"
  889. #: searx/templates/simple/preferences/answerers.html:6
  890. #: searx/templates/simple/result_templates/packages.html:7
  891. msgid "Name"
  892. msgstr "Nome"
  893. #: searx/templates/simple/preferences/answerers.html:7
  894. msgid "Description"
  895. msgstr "Descrizione"
  896. #: searx/templates/simple/preferences/answerers.html:8
  897. msgid "Examples"
  898. msgstr "Esempi"
  899. #: searx/templates/simple/preferences/answerers.html:13
  900. msgid "This is the list of SearXNG's instant answering modules."
  901. msgstr "Questa è la lista dei moduli di risposta istantanea di SearXNG."
  902. #: searx/templates/simple/preferences/answerers.html:29
  903. msgid "This is the list of plugins."
  904. msgstr "Questa è la lista dei plugin."
  905. #: searx/templates/simple/preferences/autocomplete.html:2
  906. msgid "Autocomplete"
  907. msgstr "Completamento automatico"
  908. #: searx/templates/simple/preferences/autocomplete.html:15
  909. msgid "Find stuff as you type"
  910. msgstr "Visualizza risultati mentre digiti"
  911. #: searx/templates/simple/preferences/center_alignment.html:2
  912. msgid "Center Alignment"
  913. msgstr "Allinea al centro"
  914. #: searx/templates/simple/preferences/center_alignment.html:14
  915. msgid "Displays results in the center of the page (Oscar layout)."
  916. msgstr "Mostra i risultati al centro della pagina (Oscar layout)."
  917. #: searx/templates/simple/preferences/cookies.html:2
  918. msgid ""
  919. "This is the list of cookies and their values SearXNG is storing on your "
  920. "computer."
  921. msgstr ""
  922. "Questa è la lista di cookies e i loro valori che SearXNG sta salvando sul "
  923. "tuo computer."
  924. #: searx/templates/simple/preferences/cookies.html:3
  925. msgid "With that list, you can assess SearXNG transparency."
  926. msgstr "Con questa lista, puoi valutare la trasparenza di SearXNG."
  927. #: searx/templates/simple/preferences/cookies.html:9
  928. msgid "Cookie name"
  929. msgstr "Nome del cookie"
  930. #: searx/templates/simple/preferences/cookies.html:10
  931. msgid "Value"
  932. msgstr "Valore"
  933. #: searx/templates/simple/preferences/cookies.html:23
  934. msgid "Search URL of the currently saved preferences"
  935. msgstr "URL di ricerca delle preferenze attualmente salvate"
  936. #: searx/templates/simple/preferences/cookies.html:32
  937. msgid ""
  938. "Note: specifying custom settings in the search URL can reduce privacy by "
  939. "leaking data to the clicked result sites."
  940. msgstr ""
  941. "Nota: specificando le impostazioni personalizzate nell'URL di ricerca si può "
  942. "ridurre la privacy facendo trapelare dati ai siti cliccati."
  943. #: searx/templates/simple/preferences/cookies.html:35
  944. msgid "URL to restore your preferences in another browser"
  945. msgstr "URL per ripristinare le tue preferenze in un altro browser"
  946. #: searx/templates/simple/preferences/cookies.html:43
  947. msgid ""
  948. "Specifying custom settings in the preferences URL can be used to sync "
  949. "preferences across devices."
  950. msgstr ""
  951. "Specificando le impostazioni personalizzate nell'URL delle preferenze è "
  952. "possibile sincronizzare le preferenze tra i vari dispositivi."
  953. #: searx/templates/simple/preferences/cookies.html:46
  954. msgid "Copy preferences hash"
  955. msgstr "Copia l’hash delle preferenze"
  956. #: searx/templates/simple/preferences/cookies.html:57
  957. msgid "Insert copied preferences hash (without URL) to restore"
  958. msgstr "Inserisci l’hash delle preferenze copiate (senza URL) da ripristinare"
  959. #: searx/templates/simple/preferences/cookies.html:59
  960. msgid "Preferences hash"
  961. msgstr "Hash delle preferenze"
  962. #: searx/templates/simple/preferences/doi_resolver.html:2
  963. msgid "Open Access DOI resolver"
  964. msgstr "Resolver Open Access DOI"
  965. #: searx/templates/simple/preferences/doi_resolver.html:14
  966. msgid "Select service used by DOI rewrite"
  967. msgstr "Seleziona il servizio usato dalla riscrittura DOI"
  968. #: searx/templates/simple/preferences/engines.html:9
  969. msgid ""
  970. "This tab does not exists in the user interface, but you can search in "
  971. "these engines by its !bangs."
  972. msgstr ""
  973. "Questa scheda non esiste nell’interfaccia utente, ma puoi effettuare "
  974. "ricerche in questi motori tramite i suoi !bang."
  975. #: searx/templates/simple/preferences/engines.html:15
  976. msgid "Enable all"
  977. msgstr "Attiva tutto"
  978. #: searx/templates/simple/preferences/engines.html:16
  979. msgid "Disable all"
  980. msgstr "Disattiva tutto"
  981. #: searx/templates/simple/preferences/engines.html:25
  982. msgid "!bang"
  983. msgstr "!bang"
  984. #: searx/templates/simple/preferences/engines.html:26
  985. msgid "Supports selected language"
  986. msgstr "La lingua selezionata è supportata"
  987. #: searx/templates/simple/preferences/engines.html:29
  988. msgid "Weight"
  989. msgstr "Peso"
  990. #: searx/templates/simple/preferences/engines.html:33
  991. msgid "Max time"
  992. msgstr "Tempo massimo"
  993. #: searx/templates/simple/preferences/favicon.html:2
  994. msgid "Favicon Resolver"
  995. msgstr "Risolutore Favicon"
  996. #: searx/templates/simple/preferences/favicon.html:15
  997. msgid "Display favicons near search results"
  998. msgstr "Mostra le favicon vicino ai risultati della ricerca"
  999. #: searx/templates/simple/preferences/footer.html:2
  1000. msgid ""
  1001. "These settings are stored in your cookies, this allows us not to store "
  1002. "this data about you."
  1003. msgstr ""
  1004. "Le impostazioni vengono salvate nei tuoi cookie, consentendoci di non "
  1005. "conservare dati su di te."
  1006. #: searx/templates/simple/preferences/footer.html:3
  1007. msgid ""
  1008. "These cookies serve your sole convenience, we don't use these cookies to "
  1009. "track you."
  1010. msgstr ""
  1011. "Questi cookie servono solo ad offrirti un servizio migliore. Non li usiamo "
  1012. "per tracciarti."
  1013. #: searx/templates/simple/preferences/footer.html:6
  1014. msgid "Save"
  1015. msgstr "Salva"
  1016. #: searx/templates/simple/preferences/footer.html:9
  1017. msgid "Reset defaults"
  1018. msgstr "Ripristina i valori predefiniti"
  1019. #: searx/templates/simple/preferences/footer.html:13
  1020. msgid "Back"
  1021. msgstr "Indietro"
  1022. #: searx/templates/simple/preferences/hotkeys.html:2
  1023. msgid "Hotkeys"
  1024. msgstr "Tasti di scelta rapida"
  1025. #: searx/templates/simple/preferences/hotkeys.html:13
  1026. msgid "Vim-like"
  1027. msgstr "Simile a Vim"
  1028. #: searx/templates/simple/preferences/hotkeys.html:18
  1029. msgid ""
  1030. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1031. "key on main or result page to get help."
  1032. msgstr ""
  1033. "Naviga tra i risultati della ricerca con i tasti di scelta rapida (è "
  1034. "necessario JavaScript). Premi il tasto \"h\" nella pagina principale o in "
  1035. "quella dei risultati per ottenere aiuto."
  1036. #: searx/templates/simple/preferences/image_proxy.html:2
  1037. msgid "Image proxy"
  1038. msgstr "Proxy immagini"
  1039. #: searx/templates/simple/preferences/image_proxy.html:14
  1040. msgid "Proxying image results through SearXNG"
  1041. msgstr "Proxy dei risultati delle immagini attraverso SearXNG"
  1042. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1043. msgid "Infinite scroll"
  1044. msgstr "Scorrimento infinito"
  1045. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1046. msgid "Automatically load next page when scrolling to bottom of current page"
  1047. msgstr ""
  1048. "Carica automaticamente la pagina successiva quando si scorre sino alla fine "
  1049. "della pagina attuale"
  1050. #: searx/templates/simple/preferences/language.html:24
  1051. msgid "What language do you prefer for search?"
  1052. msgstr "Che lingua preferisci per eseguire la ricerca?"
  1053. #: searx/templates/simple/preferences/language.html:25
  1054. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1055. msgstr ""
  1056. "Scegli la funzione di Auto-rilevamento per far scegliere a SearXNG la lingua "
  1057. "da usare nella tua ricerca."
  1058. #: searx/templates/simple/preferences/method.html:2
  1059. msgid "HTTP Method"
  1060. msgstr "Metodo HTTP"
  1061. #: searx/templates/simple/preferences/method.html:14
  1062. msgid "Change how forms are submitted"
  1063. msgstr "Modifica come vengono inviati i moduli"
  1064. #: searx/templates/simple/preferences/query_in_title.html:2
  1065. msgid "Query in the page's title"
  1066. msgstr "Query nel titolo della pagina"
  1067. #: searx/templates/simple/preferences/query_in_title.html:14
  1068. msgid ""
  1069. "When enabled, the result page's title contains your query. Your browser "
  1070. "can record this title"
  1071. msgstr ""
  1072. "Quando è abilitato, il titolo della pagina dei risultati contiene la tua "
  1073. "ricerca. Il tuo browser può registrare questo titolo"
  1074. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1075. msgid "Results on new tabs"
  1076. msgstr "Risultati in una nuova scheda"
  1077. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1078. msgid "Open result links on new browser tabs"
  1079. msgstr "Apri i risultati in nuove schede del browser"
  1080. #: searx/templates/simple/preferences/safesearch.html:20
  1081. msgid "Filter content"
  1082. msgstr "Filtra il contenuto"
  1083. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1084. msgid "Search on category select"
  1085. msgstr "Cerca nella categoria selezionata"
  1086. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1087. msgid ""
  1088. "Perform search immediately if a category selected. Disable to select "
  1089. "multiple categories"
  1090. msgstr ""
  1091. "Esegue immediatamente la ricerca se è stata selezionata una categoria. "
  1092. "Disabilita la selezione di più categorie"
  1093. #: searx/templates/simple/preferences/theme.html:2
  1094. msgid "Theme"
  1095. msgstr "Tema"
  1096. #: searx/templates/simple/preferences/theme.html:14
  1097. msgid "Change SearXNG layout"
  1098. msgstr "Cambia la disposizione di SearXNG"
  1099. #: searx/templates/simple/preferences/theme.html:19
  1100. msgid "Theme style"
  1101. msgstr "Stile tema"
  1102. #: searx/templates/simple/preferences/theme.html:31
  1103. msgid "Choose auto to follow your browser settings"
  1104. msgstr "Seleziona automatico per seguire le impostazioni del tuo browser"
  1105. #: searx/templates/simple/preferences/tokens.html:2
  1106. msgid "Engine tokens"
  1107. msgstr "Tokens del motore"
  1108. #: searx/templates/simple/preferences/tokens.html:9
  1109. msgid "Access tokens for private engines"
  1110. msgstr "Tokens di accesso per motori privati"
  1111. #: searx/templates/simple/preferences/ui_locale.html:2
  1112. msgid "Interface language"
  1113. msgstr "Lingua dell'interfaccia"
  1114. #: searx/templates/simple/preferences/ui_locale.html:14
  1115. msgid "Change the language of the layout"
  1116. msgstr "Cambia la lingua dell'interfaccia"
  1117. #: searx/templates/simple/preferences/urlformatting.html:2
  1118. msgid "URL formatting"
  1119. msgstr "Formattazione URL"
  1120. #: searx/templates/simple/preferences/urlformatting.html:8
  1121. msgid "Pretty"
  1122. msgstr "Figo"
  1123. #: searx/templates/simple/preferences/urlformatting.html:13
  1124. msgid "Full"
  1125. msgstr "Pieno"
  1126. #: searx/templates/simple/preferences/urlformatting.html:18
  1127. msgid "Host"
  1128. msgstr "Oste"
  1129. #: searx/templates/simple/preferences/urlformatting.html:23
  1130. msgid "Change result URL formatting"
  1131. msgstr "Modifica formattazione URL del risultato"
  1132. #: searx/templates/simple/result_templates/code.html:13
  1133. msgid "repo"
  1134. msgstr "ripostiglo"
  1135. #: searx/templates/simple/result_templates/default.html:6
  1136. #: searx/templates/simple/result_templates/files.html:8
  1137. #: searx/templates/simple/result_templates/files.html:11
  1138. msgid "show media"
  1139. msgstr "mostra media"
  1140. #: searx/templates/simple/result_templates/default.html:6
  1141. #: searx/templates/simple/result_templates/files.html:8
  1142. msgid "hide media"
  1143. msgstr "nascondi media"
  1144. #: searx/templates/simple/result_templates/default.html:14
  1145. #: searx/templates/simple/result_templates/videos.html:14
  1146. msgid "This site did not provide any description."
  1147. msgstr "Questo sito non fornisce nessuna descrizione."
  1148. #: searx/templates/simple/result_templates/files.html:38
  1149. #: searx/templates/simple/result_templates/images.html:22
  1150. #: searx/templates/simple/result_templates/torrent.html:11
  1151. msgid "Filesize"
  1152. msgstr "Dimensioni file"
  1153. #: searx/templates/simple/result_templates/files.html:40
  1154. msgid "Date"
  1155. msgstr "Data"
  1156. #: searx/templates/simple/result_templates/files.html:42
  1157. #: searx/templates/simple/result_templates/paper.html:24
  1158. msgid "Type"
  1159. msgstr "Tipo"
  1160. #: searx/templates/simple/result_templates/images.html:20
  1161. msgid "Resolution"
  1162. msgstr "Risoluzione"
  1163. #: searx/templates/simple/result_templates/images.html:21
  1164. msgid "Format"
  1165. msgstr "Formato"
  1166. #: searx/templates/simple/result_templates/images.html:24
  1167. msgid "Engine"
  1168. msgstr "Motore"
  1169. #: searx/templates/simple/result_templates/images.html:25
  1170. msgid "View source"
  1171. msgstr "Guarda la fonte"
  1172. #: searx/templates/simple/result_templates/map.html:12
  1173. msgid "address"
  1174. msgstr "indirizzo"
  1175. #: searx/templates/simple/result_templates/map.html:43
  1176. msgid "show map"
  1177. msgstr "mostra mappa"
  1178. #: searx/templates/simple/result_templates/map.html:43
  1179. msgid "hide map"
  1180. msgstr "nascondi mappa"
  1181. #: searx/templates/simple/result_templates/packages.html:12
  1182. msgid "Version"
  1183. msgstr "Versione"
  1184. #: searx/templates/simple/result_templates/packages.html:18
  1185. msgid "Maintainer"
  1186. msgstr "Manutentore"
  1187. #: searx/templates/simple/result_templates/packages.html:24
  1188. msgid "Updated at"
  1189. msgstr "Aggiornato alle"
  1190. #: searx/templates/simple/result_templates/packages.html:30
  1191. #: searx/templates/simple/result_templates/paper.html:25
  1192. msgid "Tags"
  1193. msgstr "Etichette"
  1194. #: searx/templates/simple/result_templates/packages.html:36
  1195. msgid "Popularity"
  1196. msgstr "Popolarità"
  1197. #: searx/templates/simple/result_templates/packages.html:42
  1198. msgid "License"
  1199. msgstr "Licenza"
  1200. #: searx/templates/simple/result_templates/packages.html:52
  1201. msgid "Project"
  1202. msgstr "Progetto"
  1203. #: searx/templates/simple/result_templates/packages.html:55
  1204. msgid "Project homepage"
  1205. msgstr "Pagina iniziale del progetto"
  1206. #: searx/templates/simple/result_templates/paper.html:5
  1207. msgid "Published date"
  1208. msgstr "Data di pubblicazione"
  1209. #: searx/templates/simple/result_templates/paper.html:9
  1210. msgid "Journal"
  1211. msgstr "Giornale"
  1212. #: searx/templates/simple/result_templates/paper.html:22
  1213. msgid "Editor"
  1214. msgstr "Redattore"
  1215. #: searx/templates/simple/result_templates/paper.html:23
  1216. msgid "Publisher"
  1217. msgstr "Editore"
  1218. #: searx/templates/simple/result_templates/paper.html:26
  1219. msgid "DOI"
  1220. msgstr "DOI"
  1221. #: searx/templates/simple/result_templates/paper.html:27
  1222. msgid "ISSN"
  1223. msgstr "ISSN"
  1224. #: searx/templates/simple/result_templates/paper.html:28
  1225. msgid "ISBN"
  1226. msgstr "ISBN"
  1227. #: searx/templates/simple/result_templates/paper.html:33
  1228. msgid "PDF"
  1229. msgstr "PDF"
  1230. #: searx/templates/simple/result_templates/paper.html:34
  1231. msgid "HTML"
  1232. msgstr "HTML"
  1233. #: searx/templates/simple/result_templates/torrent.html:6
  1234. msgid "magnet link"
  1235. msgstr "link magnet"
  1236. #: searx/templates/simple/result_templates/torrent.html:7
  1237. msgid "torrent file"
  1238. msgstr "file torrent"
  1239. #: searx/templates/simple/result_templates/torrent.html:9
  1240. msgid "Seeder"
  1241. msgstr "Seeder"
  1242. #: searx/templates/simple/result_templates/torrent.html:9
  1243. msgid "Leecher"
  1244. msgstr "Leecher"
  1245. #: searx/templates/simple/result_templates/torrent.html:13
  1246. msgid "Number of Files"
  1247. msgstr "Numero di file"
  1248. #: searx/templates/simple/result_templates/videos.html:6
  1249. msgid "show video"
  1250. msgstr "mostra video"
  1251. #: searx/templates/simple/result_templates/videos.html:6
  1252. msgid "hide video"
  1253. msgstr "nascondi video"
  1254. #~ msgid "Engine time (sec)"
  1255. #~ msgstr "Tempo del motore (secondi)"
  1256. #~ msgid "Page loads (sec)"
  1257. #~ msgstr " Caricamento della pagina (secondi)"
  1258. #~ msgid "Errors"
  1259. #~ msgstr "Errori"
  1260. #~ msgid "CAPTCHA required"
  1261. #~ msgstr "CAPTCHA richiesto"
  1262. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1263. #~ msgstr "Se possible, converti gli indirizzi HTTP in HTTPS"
  1264. #~ msgid ""
  1265. #~ "Results are opened in the same "
  1266. #~ "window by default. This plugin "
  1267. #~ "overwrites the default behaviour to open"
  1268. #~ " links on new tabs/windows. (JavaScript "
  1269. #~ "required)"
  1270. #~ msgstr ""
  1271. #~ "Di base i risultati sono aperti "
  1272. #~ "nella stessa finestra. Questa estensione "
  1273. #~ "fa sì invece che vengano mostrati "
  1274. #~ "in nuove schede/finestre. (Javascript "
  1275. #~ "necessario)"
  1276. #~ msgid "Color"
  1277. #~ msgstr "Colore"
  1278. #~ msgid "Blue (default)"
  1279. #~ msgstr "Blu (predefinito)"
  1280. #~ msgid "Violet"
  1281. #~ msgstr "Viola"
  1282. #~ msgid "Green"
  1283. #~ msgstr "Verde"
  1284. #~ msgid "Cyan"
  1285. #~ msgstr "Ciano"
  1286. #~ msgid "Orange"
  1287. #~ msgstr "Arancione"
  1288. #~ msgid "Red"
  1289. #~ msgstr "Rosso"
  1290. #~ msgid "Category"
  1291. #~ msgstr "Categoria"
  1292. #~ msgid "Block"
  1293. #~ msgstr "Blocca"
  1294. #~ msgid "original context"
  1295. #~ msgstr "contesto originale"
  1296. #~ msgid "Plugins"
  1297. #~ msgstr "Plugin"
  1298. #~ msgid "Answerers"
  1299. #~ msgstr "Risponditori"
  1300. #~ msgid "Avg. time"
  1301. #~ msgstr "Tempo medio"
  1302. #~ msgid "show details"
  1303. #~ msgstr "mostra dettagli"
  1304. #~ msgid "hide details"
  1305. #~ msgstr "nascondi dettagli"
  1306. #~ msgid "Load more..."
  1307. #~ msgstr "Carica altro..."
  1308. #~ msgid "Loading..."
  1309. #~ msgstr "Caricamento..."
  1310. #~ msgid "Change searx layout"
  1311. #~ msgstr "Cambia l'aspetto di searx"
  1312. #~ msgid "Proxying image results through searx"
  1313. #~ msgstr "Usa un proxy per le immagini ottenute attraverso searx"
  1314. #~ msgid "This is the list of searx's instant answering modules."
  1315. #~ msgstr "Questa è la lista dei moduli searx con risposta immediata"
  1316. #~ msgid ""
  1317. #~ "This is the list of cookies and"
  1318. #~ " their values searx is storing on "
  1319. #~ "your computer."
  1320. #~ msgstr "Qui puoi vedere i cookie che vengono conservati sul tuo computer."
  1321. #~ msgid "With that list, you can assess searx transparency."
  1322. #~ msgstr "In questo modo, puoi constatare la trasparenza di searx."
  1323. #~ msgid "It look like you are using searx first time."
  1324. #~ msgstr "Sembra che tu stia utilizzando searx per la prima volta."
  1325. #~ msgid "Please, try again later or find another searx instance."
  1326. #~ msgstr "Riprova nuovamente o cerca un'altra istanza di searx."
  1327. #~ msgid "Themes"
  1328. #~ msgstr "Temi"
  1329. #~ msgid "Reliablity"
  1330. #~ msgstr ""
  1331. #~ msgid ""
  1332. #~ "When enabled, the result page's title"
  1333. #~ " contains your query. Your browser "
  1334. #~ "can record this title."
  1335. #~ msgstr ""
  1336. #~ msgid "Method"
  1337. #~ msgstr "Metodo"
  1338. #~ msgid ""
  1339. #~ "This tab does not show up for "
  1340. #~ "search results but you can search "
  1341. #~ "the engines listed here via bangs."
  1342. #~ msgstr ""
  1343. #~ msgid "Advanced settings"
  1344. #~ msgstr "Impostazioni avanzate"
  1345. #~ msgid "Close"
  1346. #~ msgstr "Chiudi"
  1347. #~ msgid "Language"
  1348. #~ msgstr "Lingua"
  1349. #~ msgid "broken"
  1350. #~ msgstr "rotto"
  1351. #~ msgid "supported"
  1352. #~ msgstr "supportato"
  1353. #~ msgid "not supported"
  1354. #~ msgstr "non supportato"
  1355. #~ msgid "about"
  1356. #~ msgstr "informazioni"
  1357. #~ msgid "Avg."
  1358. #~ msgstr "Avg."
  1359. #~ msgid "User Interface"
  1360. #~ msgstr "Interfaccia utente"
  1361. #~ msgid "Choose style for this theme"
  1362. #~ msgstr "Scegli lo stile per questo tema"
  1363. #~ msgid "Style"
  1364. #~ msgstr "Stile"
  1365. #~ msgid "Show advanced settings"
  1366. #~ msgstr "Mostra le impostazioni avanzate"
  1367. #~ msgid "Show advanced settings panel in the home page by default"
  1368. #~ msgstr ""
  1369. #~ "Mostra il pannello delle impostazioni "
  1370. #~ "avanzate nella pagina iniziale per "
  1371. #~ "impostazione predefinita"
  1372. #~ msgid "Allow all"
  1373. #~ msgstr "Permetti tutto"
  1374. #~ msgid "Disable all"
  1375. #~ msgstr "Disattiva tutto"
  1376. #~ msgid "Selected language"
  1377. #~ msgstr "Lingua selezionata"
  1378. #~ msgid "Query"
  1379. #~ msgstr "Richiesta"
  1380. #~ msgid "save"
  1381. #~ msgstr "salva"
  1382. #~ msgid "back"
  1383. #~ msgstr "indietro"
  1384. #~ msgid "Links"
  1385. #~ msgstr "Collegamenti"
  1386. #~ msgid "RSS subscription"
  1387. #~ msgstr "Abbonamento RSS"
  1388. #~ msgid "Search results"
  1389. #~ msgstr "Risultati della ricerca"
  1390. #~ msgid "next page"
  1391. #~ msgstr "pagina successiva"
  1392. #~ msgid "previous page"
  1393. #~ msgstr "pagina precedente"
  1394. #~ msgid "Start search"
  1395. #~ msgstr "Cerca"
  1396. #~ msgid "Clear search"
  1397. #~ msgstr "Svuota ricerca"
  1398. #~ msgid "Clear"
  1399. #~ msgstr "Svuota"
  1400. #~ msgid "stats"
  1401. #~ msgstr "statistiche"
  1402. #~ msgid "Heads up!"
  1403. #~ msgstr "Avviso!"
  1404. #~ msgid "It look like you are using SearXNG first time."
  1405. #~ msgstr "Sembra che sia la prima volta che usi SearXNG."
  1406. #~ msgid "Well done!"
  1407. #~ msgstr "Ottimo!"
  1408. #~ msgid "Settings saved successfully."
  1409. #~ msgstr "Impostazioni salvate con successo."
  1410. #~ msgid "Oh snap!"
  1411. #~ msgstr "Mannaggia!"
  1412. #~ msgid "Something went wrong."
  1413. #~ msgstr "Qualcosa è andato storto."
  1414. #~ msgid "Date"
  1415. #~ msgstr "Data"
  1416. #~ msgid "Type"
  1417. #~ msgstr "Tipo"
  1418. #~ msgid "Get image"
  1419. #~ msgstr "Visualizza immagine"
  1420. #~ msgid "Center Alignment"
  1421. #~ msgstr ""
  1422. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1423. #~ msgstr ""
  1424. #~ msgid "preferences"
  1425. #~ msgstr "preferenze"
  1426. #~ msgid "Scores per result"
  1427. #~ msgstr "Punteggio per risultato"
  1428. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1429. #~ msgstr "un metamotore di ricerca personalizzabile e rispettoso della privacy"
  1430. #~ msgid "No abstract is available for this publication."
  1431. #~ msgstr "Nessun sommario disponibile per questa pubblicazione."
  1432. #~ msgid "Self Informations"
  1433. #~ msgstr "Informazioni su di sé"
  1434. #~ msgid ""
  1435. #~ "Change how forms are submited, <a "
  1436. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1437. #~ " rel=\"external\">learn more about request "
  1438. #~ "methods</a>"
  1439. #~ msgstr ""
  1440. #~ "Seleziona il metodo di richiesta HTTP"
  1441. #~ " (<a "
  1442. #~ "href=\"https://it.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Messaggio_di_richiesta\""
  1443. #~ " rel=\"external\">Cos'è un metodo di "
  1444. #~ "richiesta?</a>)"
  1445. #~ msgid ""
  1446. #~ "This plugin checks if the address "
  1447. #~ "of the request is a TOR exit "
  1448. #~ "node, and informs the user if it"
  1449. #~ " is, like check.torproject.org but from "
  1450. #~ "searxng."
  1451. #~ msgstr ""
  1452. #~ "Questo plugin controlla se l'indirizzo "
  1453. #~ "della richiesta è un nodo di "
  1454. #~ "uscita di TOR e informa l'utente "
  1455. #~ "se lo è. Simile a check.torproject.org"
  1456. #~ " ma fornito da searxng."
  1457. #~ msgid ""
  1458. #~ "The TOR exit node list "
  1459. #~ "(https://check.torproject.org/exit-addresses) is "
  1460. #~ "unreachable."
  1461. #~ msgstr ""
  1462. #~ "La lista dei nodi d'uscita TOR non"
  1463. #~ " è raggiungibile (https://check.torproject.org/exit-"
  1464. #~ "addresses)."
  1465. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1466. #~ msgstr "Stai usando TOR. Il tuo indirizzo IP risulta essere : {ip_address}."
  1467. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1468. #~ msgstr "Non stai usando TOR. Il tuo indirizzo IP sembra essere: {ip_address}."
  1469. #~ msgid ""
  1470. #~ "The could not download the list of"
  1471. #~ " Tor exit-nodes from "
  1472. #~ "https://check.torproject.org/exit-addresses."
  1473. #~ msgstr ""
  1474. #~ msgid ""
  1475. #~ "You are using Tor. It looks like"
  1476. #~ " you have this external IP address:"
  1477. #~ " {ip_address}."
  1478. #~ msgstr ""
  1479. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1480. #~ msgstr ""
  1481. #~ msgid "Autodetect search language"
  1482. #~ msgstr "Rileva automaticamente la lingua di ricerca"
  1483. #~ msgid "Automatically detect the query search language and switch to it."
  1484. #~ msgstr ""
  1485. #~ "Rileva automaticamente la lingua di "
  1486. #~ "ricerca della query e passa ad "
  1487. #~ "essa."
  1488. #~ msgid "others"
  1489. #~ msgstr "altri"
  1490. #~ msgid ""
  1491. #~ "This tab does not show up for "
  1492. #~ "search results, but you can search "
  1493. #~ "the engines listed here via bangs."
  1494. #~ msgstr ""
  1495. #~ "Questa scheda non viene mostrata per "
  1496. #~ "i risultati di ricerca, ma puoi "
  1497. #~ "cercare i motori elencati qui usando "
  1498. #~ "i bang."
  1499. #~ msgid "Shortcut"
  1500. #~ msgstr "Scorciatoia"
  1501. #~ msgid "!bang"
  1502. #~ msgstr ""
  1503. #~ msgid ""
  1504. #~ "This tab dues not exists in the"
  1505. #~ " user interface, but you can search"
  1506. #~ " in these engines by its !bangs."
  1507. #~ msgstr ""
  1508. #~ "Questa scheda non esiste nell’interfaccia "
  1509. #~ "utente, ma puoi effettuare ricerche in"
  1510. #~ " questi motori tramite i suoi !bang."
  1511. #~ msgid "Engines cannot retrieve results."
  1512. #~ msgstr "I motori di ricerca non riescono a recuperare risultati."
  1513. #~ msgid "Please, try again later or find another SearXNG instance."
  1514. #~ msgstr "Riprova più tardi o trova un'altra istanza SearXNG."
  1515. #~ msgid ""
  1516. #~ "Redirect to open-access versions of "
  1517. #~ "publications when available (plugin required)"
  1518. #~ msgstr ""
  1519. #~ "Indirizza a versioni open-access delle"
  1520. #~ " pubblicazioni quando disponibili (plugin "
  1521. #~ "richiesto)"
  1522. #~ msgid "Bang"
  1523. #~ msgstr "!bang"
  1524. #~ msgid ""
  1525. #~ "Change how forms are submitted, <a "
  1526. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1527. #~ " rel=\"external\">learn more about request "
  1528. #~ "methods</a>"
  1529. #~ msgstr ""
  1530. #~ "Seleziona il metodo di richiesta HTTP"
  1531. #~ " (<a "
  1532. #~ "href=\"https://it.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Messaggio_di_richiesta\""
  1533. #~ " rel=\"external\">Cos'è un metodo di "
  1534. #~ "richiesta?</a>)"
  1535. #~ msgid "On"
  1536. #~ msgstr "Attivo"
  1537. #~ msgid "Off"
  1538. #~ msgstr "Spento"
  1539. #~ msgid "Enabled"
  1540. #~ msgstr "Attivo"
  1541. #~ msgid "Disabled"
  1542. #~ msgstr "Disabilitato"
  1543. #~ msgid ""
  1544. #~ "Perform search immediately if a category"
  1545. #~ " selected. Disable to select multiple "
  1546. #~ "categories. (JavaScript required)"
  1547. #~ msgstr ""
  1548. #~ "Esegui la ricerca immediatamente se una"
  1549. #~ " categoria è selezionata. Disabilita questa"
  1550. #~ " opzione se vuoi selezionare più "
  1551. #~ "categorie. (Javascript necessario)"
  1552. #~ msgid "Vim-like hotkeys"
  1553. #~ msgstr "Scorciatoie in stile Vim"
  1554. #~ msgid ""
  1555. #~ "Navigate search results with Vim-like"
  1556. #~ " hotkeys (JavaScript required). Press \"h\""
  1557. #~ " key on main or result page to"
  1558. #~ " get help."
  1559. #~ msgstr ""
  1560. #~ "Usa comandi in stile Vim per "
  1561. #~ "navigare tra i risultati (JavaScript "
  1562. #~ "necessario). Premi il tasto \"h\" per"
  1563. #~ " visualizzare la finestra d'aiuto."
  1564. #~ msgid ""
  1565. #~ "we didn't find any results. Please "
  1566. #~ "use another query or search in "
  1567. #~ "more categories."
  1568. #~ msgstr ""
  1569. #~ "non abbiamo trovato alcun risultato. "
  1570. #~ "Prova una nuova ricerca, o cerca "
  1571. #~ "in più categorie."
  1572. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1573. #~ msgstr ""
  1574. #~ "Riscrivere gli hostname dei risultati o"
  1575. #~ " rimuovere i risultati in base "
  1576. #~ "all'hostname"
  1577. #~ msgid "Bytes"
  1578. #~ msgstr "Bytes"
  1579. #~ msgid "kiB"
  1580. #~ msgstr "kiB"
  1581. #~ msgid "MiB"
  1582. #~ msgstr "MiB"
  1583. #~ msgid "GiB"
  1584. #~ msgstr "GiB"
  1585. #~ msgid "TiB"
  1586. #~ msgstr "TiB"
  1587. #~ msgid "Hostname replace"
  1588. #~ msgstr "Sostituzione del nome host"
  1589. #~ msgid "Error!"
  1590. #~ msgstr "Errore!"
  1591. #~ msgid "Engines cannot retrieve results"
  1592. #~ msgstr "I motori di ricerca non riescono a recuperare risultati"
  1593. #~ msgid "Start submiting a new issue on GitHub"
  1594. #~ msgstr "Segnala un nuovo problema su GitHub"
  1595. #~ msgid "dummy"
  1596. #~ msgstr ""