messages.po 53 KB

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