messages.po 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968
  1. # Japanese translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Akio Nishimura <akionux@gmail.com>, 2016-2018
  7. # Thomas Pointhuber, 2014-2015
  8. # FIRST AUTHOR <EMAIL@ADDRESS>, 2014,2016
  9. # KAWASAKI ICHIRO, 2020
  10. # Lucas Phillips <mail@lep.pw>, 2015
  11. # Max <theshirinzu@gmail.com>, 2015
  12. # Nobuhiro Iwamatsu <iwamatsu@nigauri.org>, 2018
  13. # pointhi, 2014
  14. # Thomas Pointhuber, 2015-2016
  15. # tents <remendne@pentrens.jp>, 2022.
  16. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  17. # tentsbet <remendne@pentrens.jp>, 2023, 2024.
  18. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  19. # nogb <u8cn71wq@yogibo.anonaddy.me>, 2023.
  20. # eownerdead <wlpx0yii@anonaddy.me>, 2024.
  21. # syobon <syobon@syobon.net>, 2024.
  22. # tentsbet <tentsbet@users.noreply.translate.codeberg.org>, 2024, 2025.
  23. # return42 <return42@users.noreply.translate.codeberg.org>, 2024.
  24. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  25. # EOWNERDEAD <eownerdead@disroot.org>, 2025.
  26. # nogb <nogb@users.noreply.translate.codeberg.org>, 2025.
  27. # syobon <syobon@users.noreply.translate.codeberg.org>, 2025.
  28. msgid ""
  29. msgstr ""
  30. "Project-Id-Version: searx\n"
  31. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  32. "POT-Creation-Date: 2025-01-06 15:28+0000\n"
  33. "PO-Revision-Date: 2025-01-06 15:53+0000\n"
  34. "Last-Translator: syobon <syobon@users.noreply.translate.codeberg.org>\n"
  35. "Language-Team: Japanese <https://translate.codeberg.org/projects/searxng/"
  36. "searxng/ja/>\n"
  37. "Language: ja\n"
  38. "MIME-Version: 1.0\n"
  39. "Content-Type: text/plain; charset=utf-8\n"
  40. "Content-Transfer-Encoding: 8bit\n"
  41. "Plural-Forms: nplurals=1; plural=0;\n"
  42. "X-Generator: Weblate 5.9.2\n"
  43. "Generated-By: Babel 2.16.0\n"
  44. #. CONSTANT_NAMES['NO_SUBGROUPING']
  45. #: searx/searxng.msg
  46. msgid "without further subgrouping"
  47. msgstr "未グループ"
  48. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  49. #: searx/searxng.msg
  50. msgid "other"
  51. msgstr "その他"
  52. #. CATEGORY_NAMES['FILES']
  53. #: searx/searxng.msg
  54. msgid "files"
  55. msgstr "ファイル"
  56. #. CATEGORY_NAMES['GENERAL']
  57. #: searx/searxng.msg
  58. msgid "general"
  59. msgstr "一般"
  60. #. CATEGORY_NAMES['MUSIC']
  61. #: searx/searxng.msg
  62. msgid "music"
  63. msgstr "音楽"
  64. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  65. #: searx/searxng.msg
  66. msgid "social media"
  67. msgstr "ソーシャルメディア"
  68. #. CATEGORY_NAMES['IMAGES']
  69. #: searx/searxng.msg
  70. msgid "images"
  71. msgstr "画像"
  72. #. CATEGORY_NAMES['VIDEOS']
  73. #: searx/searxng.msg
  74. msgid "videos"
  75. msgstr "動画"
  76. #. CATEGORY_NAMES['RADIO']
  77. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  78. msgid "radio"
  79. msgstr "ラジオ"
  80. #. CATEGORY_NAMES['TV']
  81. #: searx/searxng.msg
  82. msgid "tv"
  83. msgstr "テレビ"
  84. #. CATEGORY_NAMES['IT']
  85. #: searx/searxng.msg
  86. msgid "it"
  87. msgstr "情報技術"
  88. #. CATEGORY_NAMES['NEWS']
  89. #: searx/searxng.msg
  90. msgid "news"
  91. msgstr "ニュース"
  92. #. CATEGORY_NAMES['MAP']
  93. #: searx/searxng.msg
  94. msgid "map"
  95. msgstr "地図"
  96. #. CATEGORY_NAMES['ONIONS']
  97. #: searx/searxng.msg
  98. msgid "onions"
  99. msgstr "Tor"
  100. #. CATEGORY_NAMES['SCIENCE']
  101. #: searx/searxng.msg
  102. msgid "science"
  103. msgstr "科学"
  104. #. CATEGORY_GROUPS['APPS']
  105. #: searx/searxng.msg
  106. msgid "apps"
  107. msgstr "アプリ"
  108. #. CATEGORY_GROUPS['DICTIONARIES']
  109. #: searx/searxng.msg
  110. msgid "dictionaries"
  111. msgstr "辞書"
  112. #. CATEGORY_GROUPS['LYRICS']
  113. #: searx/searxng.msg
  114. msgid "lyrics"
  115. msgstr "歌詞"
  116. #. CATEGORY_GROUPS['PACKAGES']
  117. #: searx/searxng.msg
  118. msgid "packages"
  119. msgstr "パッケージ"
  120. #. CATEGORY_GROUPS['Q_A']
  121. #: searx/searxng.msg
  122. msgid "q&a"
  123. msgstr "Q&A"
  124. #. CATEGORY_GROUPS['REPOS']
  125. #: searx/searxng.msg
  126. msgid "repos"
  127. msgstr "リポジトリ"
  128. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  129. #: searx/searxng.msg
  130. msgid "software wikis"
  131. msgstr "ソフトウェアWiki"
  132. #. CATEGORY_GROUPS['WEB']
  133. #: searx/searxng.msg
  134. msgid "web"
  135. msgstr "ウェブ"
  136. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  137. #: searx/searxng.msg
  138. msgid "scientific publications"
  139. msgstr "科学的な出版物"
  140. #. STYLE_NAMES['AUTO']
  141. #: searx/searxng.msg
  142. msgid "auto"
  143. msgstr "自動"
  144. #. STYLE_NAMES['LIGHT']
  145. #: searx/searxng.msg
  146. msgid "light"
  147. msgstr "ライト"
  148. #. STYLE_NAMES['DARK']
  149. #: searx/searxng.msg
  150. msgid "dark"
  151. msgstr "ダーク"
  152. #. STYLE_NAMES['BLACK']
  153. #: searx/searxng.msg
  154. msgid "black"
  155. msgstr "ブラック"
  156. #. BRAND_CUSTOM_LINKS['UPTIME']
  157. #: searx/searxng.msg
  158. msgid "Uptime"
  159. msgstr "稼働時間"
  160. #. BRAND_CUSTOM_LINKS['ABOUT']
  161. #: searx/searxng.msg searx/templates/simple/base.html:50
  162. msgid "About"
  163. msgstr "関連情報"
  164. #. WEATHER_TERMS['AVERAGE TEMP.']
  165. #: searx/engines/wttr.py:32 searx/searxng.msg
  166. msgid "Average temp."
  167. msgstr "平均気温."
  168. #. WEATHER_TERMS['CLOUD COVER']
  169. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  170. msgid "Cloud cover"
  171. msgstr "曇り"
  172. #. WEATHER_TERMS['CONDITION']
  173. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  174. #: searx/searxng.msg
  175. msgid "Condition"
  176. msgstr "天気"
  177. #. WEATHER_TERMS['CURRENT CONDITION']
  178. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  179. #: searx/searxng.msg
  180. msgid "Current condition"
  181. msgstr "現在の天気"
  182. #. WEATHER_TERMS['EVENING']
  183. #: searx/engines/wttr.py:100 searx/searxng.msg
  184. msgid "Evening"
  185. msgstr "夕方"
  186. #. WEATHER_TERMS['FEELS LIKE']
  187. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  188. #: searx/engines/wttr.py:59 searx/searxng.msg
  189. msgid "Feels like"
  190. msgstr "体感"
  191. #. WEATHER_TERMS['HUMIDITY']
  192. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  193. #: searx/engines/wttr.py:68 searx/searxng.msg
  194. msgid "Humidity"
  195. msgstr "湿度"
  196. #. WEATHER_TERMS['MAX TEMP.']
  197. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  198. #: searx/searxng.msg
  199. msgid "Max temp."
  200. msgstr "最高気温."
  201. #. WEATHER_TERMS['MIN TEMP.']
  202. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  203. #: searx/searxng.msg
  204. msgid "Min temp."
  205. msgstr "最低気温."
  206. #. WEATHER_TERMS['MORNING']
  207. #: searx/engines/wttr.py:100 searx/searxng.msg
  208. msgid "Morning"
  209. msgstr "朝"
  210. #. WEATHER_TERMS['NIGHT']
  211. #: searx/engines/wttr.py:100 searx/searxng.msg
  212. msgid "Night"
  213. msgstr "夜間"
  214. #. WEATHER_TERMS['NOON']
  215. #: searx/engines/wttr.py:100 searx/searxng.msg
  216. msgid "Noon"
  217. msgstr "昼"
  218. #. WEATHER_TERMS['PRESSURE']
  219. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  220. msgid "Pressure"
  221. msgstr "気圧"
  222. #. WEATHER_TERMS['SUNRISE']
  223. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  224. #: searx/searxng.msg
  225. msgid "Sunrise"
  226. msgstr "日の出"
  227. #. WEATHER_TERMS['SUNSET']
  228. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  229. #: searx/searxng.msg
  230. msgid "Sunset"
  231. msgstr "日の入り"
  232. #. WEATHER_TERMS['TEMPERATURE']
  233. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  234. #: searx/engines/wttr.py:55 searx/searxng.msg
  235. msgid "Temperature"
  236. msgstr "気温"
  237. #. WEATHER_TERMS['UV INDEX']
  238. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  239. #: searx/searxng.msg
  240. msgid "UV index"
  241. msgstr "UV指数"
  242. #. WEATHER_TERMS['VISIBILITY']
  243. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  244. #: searx/searxng.msg
  245. msgid "Visibility"
  246. msgstr "視界"
  247. #. WEATHER_TERMS['WIND']
  248. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  249. #: searx/engines/wttr.py:62 searx/searxng.msg
  250. msgid "Wind"
  251. msgstr "風速"
  252. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  253. #: searx/engines/lemmy.py:85 searx/searxng.msg
  254. msgid "subscribers"
  255. msgstr "サブスクライバー"
  256. #. SOCIAL_MEDIA_TERMS['POSTS']
  257. #: searx/engines/lemmy.py:86 searx/searxng.msg
  258. msgid "posts"
  259. msgstr "投稿"
  260. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  261. #: searx/engines/lemmy.py:87 searx/searxng.msg
  262. msgid "active users"
  263. msgstr "アクティブユーザー"
  264. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  265. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  266. #: searx/engines/lemmy.py:130 searx/searxng.msg
  267. msgid "comments"
  268. msgstr "コメント"
  269. #. SOCIAL_MEDIA_TERMS['USER']
  270. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  271. msgid "user"
  272. msgstr "ユーザー"
  273. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  274. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  275. msgid "community"
  276. msgstr "コミュニティ"
  277. #. SOCIAL_MEDIA_TERMS['POINTS']
  278. #: searx/engines/hackernews.py:82 searx/searxng.msg
  279. msgid "points"
  280. msgstr "ポイント"
  281. #. SOCIAL_MEDIA_TERMS['TITLE']
  282. #: searx/searxng.msg
  283. msgid "title"
  284. msgstr "タイトル"
  285. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  286. #: searx/engines/hackernews.py:85 searx/searxng.msg
  287. msgid "author"
  288. msgstr "作"
  289. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  290. #: searx/engines/discourse.py:149 searx/searxng.msg
  291. msgid "open"
  292. msgstr "オープン"
  293. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  294. #: searx/engines/discourse.py:149 searx/searxng.msg
  295. msgid "closed"
  296. msgstr "クローズ"
  297. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  298. #: searx/engines/discourse.py:160 searx/searxng.msg
  299. msgid "answered"
  300. msgstr "回答"
  301. #: searx/webapp.py:323
  302. msgid "No item found"
  303. msgstr "アイテムが見つかりません"
  304. #: searx/engines/qwant.py:288
  305. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  306. msgid "Source"
  307. msgstr "ソース"
  308. #: searx/webapp.py:327
  309. msgid "Error loading the next page"
  310. msgstr "次のページの読み込み中にエラーが発生しました"
  311. #: searx/webapp.py:492 searx/webapp.py:900
  312. msgid "Invalid settings, please edit your preferences"
  313. msgstr "設定が無効です、設定を変更してください"
  314. #: searx/webapp.py:508
  315. msgid "Invalid settings"
  316. msgstr "無効な設定です"
  317. #: searx/webapp.py:585 searx/webapp.py:675
  318. msgid "search error"
  319. msgstr "検索エラー"
  320. #: searx/webutils.py:36
  321. msgid "timeout"
  322. msgstr "タイムアウト"
  323. #: searx/webutils.py:37
  324. msgid "parsing error"
  325. msgstr "解析エラー"
  326. #: searx/webutils.py:38
  327. msgid "HTTP protocol error"
  328. msgstr "HTTP プロトコルエラー"
  329. #: searx/webutils.py:39
  330. msgid "network error"
  331. msgstr "ネットワークエラー"
  332. #: searx/webutils.py:40
  333. msgid "SSL error: certificate validation has failed"
  334. msgstr "SSL エラー: 証明書の検証に失敗しました"
  335. #: searx/webutils.py:42
  336. msgid "unexpected crash"
  337. msgstr "予期しないクラッシュ"
  338. #: searx/webutils.py:49
  339. msgid "HTTP error"
  340. msgstr "HTTP エラー"
  341. #: searx/webutils.py:50
  342. msgid "HTTP connection error"
  343. msgstr "HTTP 接続エラー"
  344. #: searx/webutils.py:56
  345. msgid "proxy error"
  346. msgstr "プロキシエラー"
  347. #: searx/webutils.py:57
  348. msgid "CAPTCHA"
  349. msgstr "CAPTCHA"
  350. #: searx/webutils.py:58
  351. msgid "too many requests"
  352. msgstr "リクエストが多すぎます"
  353. #: searx/webutils.py:59
  354. msgid "access denied"
  355. msgstr "アクセスが拒否されました"
  356. #: searx/webutils.py:60
  357. msgid "server API error"
  358. msgstr "サーバー API エラー"
  359. #: searx/webutils.py:79
  360. msgid "Suspended"
  361. msgstr "一時停止"
  362. #: searx/webutils.py:314
  363. msgid "{minutes} minute(s) ago"
  364. msgstr "{minutes} 分前"
  365. #: searx/webutils.py:315
  366. msgid "{hours} hour(s), {minutes} minute(s) ago"
  367. msgstr "{hours} 時間と{minutes} 分前"
  368. #: searx/answerers/random/answerer.py:76
  369. msgid "Random value generator"
  370. msgstr "ランダムな値を生成"
  371. #: searx/answerers/random/answerer.py:77
  372. msgid "Generate different random values"
  373. msgstr "異なるランダムな値を生成する"
  374. #: searx/answerers/statistics/answerer.py:50
  375. msgid "Statistics functions"
  376. msgstr "統計機能"
  377. #: searx/answerers/statistics/answerer.py:51
  378. msgid "Compute {functions} of the arguments"
  379. msgstr "変数の {functions} を計算する"
  380. #: searx/engines/mozhi.py:57
  381. msgid "Synonyms"
  382. msgstr "類義語"
  383. #: searx/engines/openstreetmap.py:159
  384. msgid "Get directions"
  385. msgstr "経路を取得する"
  386. #: searx/engines/pdbe.py:96
  387. msgid "{title} (OBSOLETE)"
  388. msgstr "{title} (廃止)"
  389. #: searx/engines/pdbe.py:103
  390. msgid "This entry has been superseded by"
  391. msgstr "このエントリは、置き換えられました:"
  392. #: searx/engines/qwant.py:290
  393. msgid "Channel"
  394. msgstr "チャンネル"
  395. #: searx/engines/radio_browser.py:105
  396. msgid "bitrate"
  397. msgstr "ビットレート"
  398. #: searx/engines/radio_browser.py:106
  399. msgid "votes"
  400. msgstr "票数"
  401. #: searx/engines/radio_browser.py:107
  402. msgid "clicks"
  403. msgstr "クリック"
  404. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  405. #: searx/engines/zlibrary.py:137
  406. msgid "Language"
  407. msgstr "言語"
  408. #: searx/engines/semantic_scholar.py:78
  409. msgid ""
  410. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  411. "{lastCitationVelocityYear}"
  412. msgstr ""
  413. "{firstCitationVelocityYear} 年から "
  414. "{lastCitationVelocityYear}年まで{numCitations} が引用文献として"
  415. #: searx/engines/tineye.py:45
  416. msgid ""
  417. "Could not read that image url. This may be due to an unsupported file "
  418. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  419. " WebP."
  420. msgstr ""
  421. "この画像URLは読み取ることができません。サポートされていないフォーマットだと考"
  422. "えられます。TinEyeはJPEG、PNG、GIF、BMP、TIFF、WebPの画像のみサポートしていま"
  423. "す。"
  424. #: searx/engines/tineye.py:51
  425. msgid ""
  426. "The image is too simple to find matches. TinEye requires a basic level of"
  427. " visual detail to successfully identify matches."
  428. msgstr "画像が単純すぎます。TinEyeが正しく照合を行うにはある程度詳細な視覚情報が必要"
  429. "です。"
  430. #: searx/engines/tineye.py:57
  431. msgid "The image could not be downloaded."
  432. msgstr "この画像はダウンロードはできません。"
  433. #: searx/engines/zlibrary.py:138
  434. msgid "Book rating"
  435. msgstr "書籍評価点数"
  436. #: searx/engines/zlibrary.py:139
  437. msgid "File quality"
  438. msgstr "ファイル品質"
  439. #: searx/plugins/calculator.py:18
  440. msgid "Calculate mathematical expressions via the search bar"
  441. msgstr "検索バーで数式を計算"
  442. #: searx/plugins/hash_plugin.py:10
  443. msgid "Converts strings to different hash digests."
  444. msgstr "文字列を異なるハッシュダイジェストに変換。"
  445. #: searx/plugins/hash_plugin.py:38
  446. msgid "hash digest"
  447. msgstr "ハッシュダイジェスト"
  448. #: searx/plugins/hostnames.py:103
  449. msgid "Hostnames plugin"
  450. msgstr "ホスト名プラグイン"
  451. #: searx/plugins/hostnames.py:104
  452. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  453. msgstr "検索結果からこのホスト名を基に削除もしくは優先的に書き換えを行う"
  454. #: searx/plugins/oa_doi_rewrite.py:12
  455. msgid "Open Access DOI rewrite"
  456. msgstr "オープンアクセス DOI の書き換え"
  457. #: searx/plugins/oa_doi_rewrite.py:13
  458. msgid ""
  459. "Avoid paywalls by redirecting to open-access versions of publications "
  460. "when available"
  461. msgstr "可能ならば オープンアクセス版の出版物へリダイレクトし、有料出版物を回避する"
  462. #: searx/plugins/self_info.py:9
  463. msgid "Self Information"
  464. msgstr "自分の情報"
  465. #: searx/plugins/self_info.py:10
  466. msgid ""
  467. "Displays your IP if the query is \"ip\" and your user agent if the query "
  468. "contains \"user agent\"."
  469. msgstr ""
  470. "クエリが \"ip\" の場合にあなたのIPを、クエリに \"user agent\" "
  471. "が含まれる場合にあなたのユーザーエージェントを表示します。"
  472. #: searx/plugins/self_info.py:28
  473. msgid "Your IP is: "
  474. msgstr "あなたのIPは: "
  475. #: searx/plugins/self_info.py:31
  476. msgid "Your user-agent is: "
  477. msgstr "あなたのユーザーエージェントは: "
  478. #: searx/plugins/tor_check.py:24
  479. msgid "Tor check plugin"
  480. msgstr "Tor 確認プラグイン"
  481. #: searx/plugins/tor_check.py:27
  482. msgid ""
  483. "This plugin checks if the address of the request is a Tor exit-node, and "
  484. "informs the user if it is; like check.torproject.org, but from SearXNG."
  485. msgstr "このプラグインではcheck.torprogject.orgのようにTor "
  486. "出口ノードのIPアドレスをSearXNGからチェックする。"
  487. #: searx/plugins/tor_check.py:61
  488. msgid ""
  489. "Could not download the list of Tor exit-nodes from: "
  490. "https://check.torproject.org/exit-addresses"
  491. msgstr "「https://check.torproject.org/exit-addresses」からTor "
  492. "出口ノードの一覧をダウンロードできません"
  493. #: searx/plugins/tor_check.py:77
  494. msgid ""
  495. "You are using Tor and it looks like you have this external IP address: "
  496. "{ip_address}"
  497. msgstr "あなたの利用しているTorの外部IPアドレスは次のようになっている : {ip_address}"
  498. #: searx/plugins/tor_check.py:85
  499. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  500. msgstr "あなたはTorを利用しておらず外部IPアドレスは次のようになっている : "
  501. "{ip_address}"
  502. #: searx/plugins/tracker_url_remover.py:16
  503. msgid "Tracker URL remover"
  504. msgstr "トラッカー URL リムーバー"
  505. #: searx/plugins/tracker_url_remover.py:17
  506. msgid "Remove trackers arguments from the returned URL"
  507. msgstr "返された URL からトラッカー引数を消去する"
  508. #: searx/plugins/unit_converter.py:29
  509. msgid "Convert between units"
  510. msgstr "単位を変換"
  511. #: searx/templates/simple/404.html:4
  512. msgid "Page not found"
  513. msgstr "ページが見つかりません"
  514. #: searx/templates/simple/404.html:6
  515. #, python-format
  516. msgid "Go to %(search_page)s."
  517. msgstr "%(search_page)s へ行く。"
  518. #: searx/templates/simple/404.html:6
  519. msgid "search page"
  520. msgstr "検索ページ"
  521. #: searx/templates/simple/base.html:54
  522. msgid "Donate"
  523. msgstr "寄付"
  524. #: searx/templates/simple/base.html:58
  525. #: searx/templates/simple/preferences.html:156
  526. msgid "Preferences"
  527. msgstr "設定"
  528. #: searx/templates/simple/base.html:68
  529. msgid "Powered by"
  530. msgstr "Powered by"
  531. #: searx/templates/simple/base.html:68
  532. msgid "a privacy-respecting, open metasearch engine"
  533. msgstr "プライバシーを尊重する、オープンメタ検索エンジン"
  534. #: searx/templates/simple/base.html:69
  535. #: searx/templates/simple/result_templates/packages.html:59
  536. msgid "Source code"
  537. msgstr "ソースコード"
  538. #: searx/templates/simple/base.html:70
  539. msgid "Issue tracker"
  540. msgstr "課題報告"
  541. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  542. msgid "Engine stats"
  543. msgstr "検索エンジンの状態"
  544. #: searx/templates/simple/base.html:73
  545. msgid "Public instances"
  546. msgstr "パブリック インスタンス"
  547. #: searx/templates/simple/base.html:76
  548. msgid "Privacy policy"
  549. msgstr "プライバシーポリシー"
  550. #: searx/templates/simple/base.html:79
  551. msgid "Contact instance maintainer"
  552. msgstr "インスタンスメンテナと連絡を取る"
  553. #: searx/templates/simple/categories.html:26
  554. msgid "Click on the magnifier to perform search"
  555. msgstr "虫めがねをクリックして検索します"
  556. #: searx/templates/simple/macros.html:40
  557. msgid "Length"
  558. msgstr "長さ"
  559. #: searx/templates/simple/macros.html:41
  560. msgid "Views"
  561. msgstr "閲覧数"
  562. #: searx/templates/simple/macros.html:42
  563. #: searx/templates/simple/result_templates/files.html:34
  564. #: searx/templates/simple/result_templates/images.html:19
  565. #: searx/templates/simple/result_templates/paper.html:6
  566. msgid "Author"
  567. msgstr "作者"
  568. #: searx/templates/simple/macros.html:50
  569. msgid "cached"
  570. msgstr "キャッシュ"
  571. #: searx/templates/simple/macros.html:50
  572. msgid "proxied"
  573. msgstr "プロキシ"
  574. #: searx/templates/simple/new_issue.html:64
  575. msgid "Start submitting a new issue on GitHub"
  576. msgstr "Start submiting a new issue on GitHub"
  577. #: searx/templates/simple/new_issue.html:66
  578. msgid "Please check for existing bugs about this engine on GitHub"
  579. msgstr "Githubで、すでにこの件が出ていないか確認をしてください"
  580. #: searx/templates/simple/new_issue.html:69
  581. msgid "I confirm there is no existing bug about the issue I encounter"
  582. msgstr "発生している問題がすでに提出済みのバグ出ないことを確認してください"
  583. #: searx/templates/simple/new_issue.html:71
  584. msgid "If this is a public instance, please specify the URL in the bug report"
  585. msgstr "パブリックインスタンスなら、このURLにバグの報告をしてください"
  586. #: searx/templates/simple/new_issue.html:72
  587. msgid "Submit a new issue on Github including the above information"
  588. msgstr "Githubで情報を含めて新たな問題を提起"
  589. #: searx/templates/simple/preferences.html:65
  590. msgid "No HTTPS"
  591. msgstr "No HTTPS"
  592. #: searx/templates/simple/elements/engines_msg.html:14
  593. #: searx/templates/simple/preferences.html:69
  594. #: searx/templates/simple/preferences.html:70
  595. msgid "View error logs and submit a bug report"
  596. msgstr "エラーログを表示し、バグレポートを送信します"
  597. #: searx/templates/simple/preferences.html:74
  598. msgid "!bang for this engine"
  599. msgstr "当検索エンジンの!bang"
  600. #: searx/templates/simple/preferences.html:80
  601. msgid "!bang for its categories"
  602. msgstr "そのカテゴリの!bang"
  603. #: searx/templates/simple/preferences.html:102
  604. #: searx/templates/simple/stats.html:64
  605. msgid "Median"
  606. msgstr "中央値"
  607. #: searx/templates/simple/preferences.html:103
  608. #: searx/templates/simple/stats.html:70
  609. msgid "P80"
  610. msgstr "P80"
  611. #: searx/templates/simple/preferences.html:104
  612. #: searx/templates/simple/stats.html:76
  613. msgid "P95"
  614. msgstr "P95"
  615. #: searx/templates/simple/preferences.html:136
  616. msgid "Failed checker test(s): "
  617. msgstr "失敗したチェッカーテスト: "
  618. #: searx/templates/simple/preferences.html:138
  619. msgid "Errors:"
  620. msgstr "エラー:"
  621. #: searx/templates/simple/preferences.html:162
  622. msgid "General"
  623. msgstr "一般"
  624. #: searx/templates/simple/preferences.html:165
  625. msgid "Default categories"
  626. msgstr "デフォルトのカテゴリ"
  627. #: searx/templates/simple/preferences.html:190
  628. msgid "User interface"
  629. msgstr "ユーザーインターフェース"
  630. #: searx/templates/simple/preferences.html:212
  631. msgid "Privacy"
  632. msgstr "プライバシー"
  633. #: searx/templates/simple/preferences.html:225
  634. msgid "Engines"
  635. msgstr "検索エンジン"
  636. #: searx/templates/simple/preferences.html:227
  637. msgid "Currently used search engines"
  638. msgstr "現在使用中の検索エンジン"
  639. #: searx/templates/simple/preferences.html:235
  640. msgid "Special Queries"
  641. msgstr "特殊クエリー"
  642. #: searx/templates/simple/preferences.html:241
  643. msgid "Cookies"
  644. msgstr "クッキー"
  645. #: searx/templates/simple/results.html:23
  646. msgid "Answers"
  647. msgstr "回答"
  648. #: searx/templates/simple/results.html:42
  649. msgid "Number of results"
  650. msgstr "通知の数"
  651. #: searx/templates/simple/results.html:48
  652. msgid "Info"
  653. msgstr "インフォ"
  654. #: searx/templates/simple/results.html:75
  655. msgid "Try searching for:"
  656. msgstr "検索のオススメ:"
  657. #: searx/templates/simple/results.html:107
  658. msgid "Back to top"
  659. msgstr "トップに戻る"
  660. #: searx/templates/simple/results.html:125
  661. msgid "Previous page"
  662. msgstr "前のページ"
  663. #: searx/templates/simple/results.html:143
  664. msgid "Next page"
  665. msgstr "次のページ"
  666. #: searx/templates/simple/search.html:3
  667. msgid "Display the front page"
  668. msgstr "フロントページを表示する"
  669. #: searx/templates/simple/search.html:9
  670. #: searx/templates/simple/simple_search.html:5
  671. msgid "Search for..."
  672. msgstr "検索する..."
  673. #: searx/templates/simple/search.html:10
  674. #: searx/templates/simple/simple_search.html:6
  675. msgid "clear"
  676. msgstr "消す"
  677. #: searx/templates/simple/search.html:11
  678. #: searx/templates/simple/simple_search.html:7
  679. msgid "search"
  680. msgstr "検索"
  681. #: searx/templates/simple/stats.html:21
  682. msgid "There is currently no data available. "
  683. msgstr "現在データがありません。 "
  684. #: searx/templates/simple/preferences/engines.html:24
  685. #: searx/templates/simple/stats.html:25
  686. msgid "Engine name"
  687. msgstr "検索エンジン名"
  688. #: searx/templates/simple/stats.html:26
  689. msgid "Scores"
  690. msgstr "スコア"
  691. #: searx/templates/simple/stats.html:27
  692. msgid "Result count"
  693. msgstr "結果カウント"
  694. #: searx/templates/simple/elements/engines_msg.html:7
  695. #: searx/templates/simple/preferences/engines.html:31
  696. #: searx/templates/simple/stats.html:28
  697. msgid "Response time"
  698. msgstr "応答時間"
  699. #: searx/templates/simple/preferences/engines.html:35
  700. #: searx/templates/simple/stats.html:29
  701. msgid "Reliability"
  702. msgstr "信頼性"
  703. #: searx/templates/simple/stats.html:59
  704. msgid "Total"
  705. msgstr "合計"
  706. #: searx/templates/simple/stats.html:60
  707. msgid "HTTP"
  708. msgstr "HTTP"
  709. #: searx/templates/simple/stats.html:61
  710. msgid "Processing"
  711. msgstr "処理"
  712. #: searx/templates/simple/stats.html:99
  713. msgid "Warnings"
  714. msgstr "注意"
  715. #: searx/templates/simple/stats.html:99
  716. msgid "Errors and exceptions"
  717. msgstr "エラーと例外"
  718. #: searx/templates/simple/stats.html:105
  719. msgid "Exception"
  720. msgstr "例外"
  721. #: searx/templates/simple/stats.html:107
  722. msgid "Message"
  723. msgstr "メッセージ"
  724. #: searx/templates/simple/stats.html:109
  725. msgid "Percentage"
  726. msgstr "確率"
  727. #: searx/templates/simple/stats.html:111
  728. msgid "Parameter"
  729. msgstr "パラメータ"
  730. #: searx/templates/simple/result_templates/files.html:36
  731. #: searx/templates/simple/stats.html:119
  732. msgid "Filename"
  733. msgstr "ファイル名"
  734. #: searx/templates/simple/stats.html:120
  735. msgid "Function"
  736. msgstr "ファンクション"
  737. #: searx/templates/simple/stats.html:121
  738. msgid "Code"
  739. msgstr "コード"
  740. #: searx/templates/simple/stats.html:128
  741. msgid "Checker"
  742. msgstr "チェッカー"
  743. #: searx/templates/simple/stats.html:131
  744. msgid "Failed test"
  745. msgstr "テストに失敗しました"
  746. #: searx/templates/simple/stats.html:132
  747. msgid "Comment(s)"
  748. msgstr "コメント"
  749. #: searx/templates/simple/elements/apis.html:3
  750. msgid "Download results"
  751. msgstr "ダウンロードするファイル形式"
  752. #: searx/templates/simple/elements/engines_msg.html:4
  753. msgid "Messages from the search engines"
  754. msgstr "検索エンジンからのメッセージ"
  755. #: searx/templates/simple/elements/engines_msg.html:7
  756. msgid "seconds"
  757. msgstr "秒"
  758. #: searx/templates/simple/elements/search_url.html:3
  759. msgid "Search URL"
  760. msgstr "この検索結果の URL"
  761. #: searx/templates/simple/elements/search_url.html:4
  762. #: searx/templates/simple/preferences/cookies.html:54
  763. msgid "Copied"
  764. msgstr "コピーしました"
  765. #: searx/templates/simple/elements/search_url.html:4
  766. #: searx/templates/simple/preferences/cookies.html:54
  767. msgid "Copy"
  768. msgstr "コピー"
  769. #: searx/templates/simple/elements/suggestions.html:3
  770. msgid "Suggestions"
  771. msgstr "提案"
  772. #: searx/templates/simple/filters/languages.html:1
  773. #: searx/templates/simple/preferences/language.html:2
  774. msgid "Search language"
  775. msgstr "検索の言語"
  776. #: searx/templates/simple/filters/languages.html:4
  777. #: searx/templates/simple/preferences/language.html:7
  778. msgid "Default language"
  779. msgstr "デフォルトの言語"
  780. #: searx/templates/simple/filters/languages.html:8
  781. #: searx/templates/simple/preferences/language.html:11
  782. msgid "Auto-detect"
  783. msgstr "自動検出"
  784. #: searx/templates/simple/filters/safesearch.html:1
  785. #: searx/templates/simple/filters/safesearch.html:2
  786. #: searx/templates/simple/filters/safesearch.html:3
  787. #: searx/templates/simple/filters/safesearch.html:4
  788. #: searx/templates/simple/preferences/engines.html:27
  789. #: searx/templates/simple/preferences/safesearch.html:2
  790. msgid "SafeSearch"
  791. msgstr "セーフサーチ"
  792. #: searx/templates/simple/filters/safesearch.html:2
  793. #: searx/templates/simple/preferences/safesearch.html:7
  794. msgid "Strict"
  795. msgstr "厳重"
  796. #: searx/templates/simple/filters/safesearch.html:3
  797. #: searx/templates/simple/preferences/safesearch.html:11
  798. msgid "Moderate"
  799. msgstr "標準"
  800. #: searx/templates/simple/filters/safesearch.html:4
  801. #: searx/templates/simple/preferences/safesearch.html:15
  802. msgid "None"
  803. msgstr "オフ"
  804. #: searx/templates/simple/filters/time_range.html:1
  805. #: searx/templates/simple/preferences/engines.html:28
  806. msgid "Time range"
  807. msgstr "時間範囲"
  808. #: searx/templates/simple/filters/time_range.html:3
  809. msgid "Anytime"
  810. msgstr "期間指定なし"
  811. #: searx/templates/simple/filters/time_range.html:6
  812. msgid "Last day"
  813. msgstr "24 時間以内"
  814. #: searx/templates/simple/filters/time_range.html:9
  815. msgid "Last week"
  816. msgstr "1 週間以内"
  817. #: searx/templates/simple/filters/time_range.html:12
  818. msgid "Last month"
  819. msgstr "1 か月以内"
  820. #: searx/templates/simple/filters/time_range.html:15
  821. msgid "Last year"
  822. msgstr "1 年以内"
  823. #: searx/templates/simple/messages/no_cookies.html:3
  824. msgid "Information!"
  825. msgstr "お知らせ!"
  826. #: searx/templates/simple/messages/no_cookies.html:4
  827. msgid "currently, there are no cookies defined."
  828. msgstr "現在、クッキーは定義されていません。"
  829. #: searx/templates/simple/messages/no_results.html:6
  830. msgid "Sorry!"
  831. msgstr "すみません!"
  832. #: searx/templates/simple/messages/no_results.html:12
  833. msgid "No results were found. You can try to:"
  834. msgstr "結果見つかりませんでした。再度行うなら :"
  835. #: searx/templates/simple/messages/no_results.html:14
  836. msgid "There are no more results. You can try to:"
  837. msgstr "これ以上の検索結果はありません。試すことができるのは :"
  838. #: searx/templates/simple/messages/no_results.html:19
  839. msgid "Refresh the page."
  840. msgstr "ページを更新します。"
  841. #: searx/templates/simple/messages/no_results.html:20
  842. msgid "Search for another query or select another category (above)."
  843. msgstr "違うクエリか違う(上記の)カテゴリを選んで検索。"
  844. #: searx/templates/simple/messages/no_results.html:21
  845. msgid "Change the search engine used in the preferences:"
  846. msgstr "検索エンジンに使う設定を変更する:"
  847. #: searx/templates/simple/messages/no_results.html:22
  848. msgid "Switch to another instance:"
  849. msgstr "別のインスタンスに切り替える:"
  850. #: searx/templates/simple/messages/no_results.html:24
  851. msgid "Search for another query or select another category."
  852. msgstr "違うのクエリか違うカテゴリで検索を選択できます。"
  853. #: searx/templates/simple/messages/no_results.html:25
  854. msgid "Go back to the previous page using the previous page button."
  855. msgstr "前ページボタンを使うと、前のページに戻ることができます。"
  856. #: searx/templates/simple/preferences/answerers.html:4
  857. #: searx/templates/simple/preferences/engines.html:23
  858. msgid "Allow"
  859. msgstr "許可する"
  860. #: searx/templates/simple/preferences/answerers.html:5
  861. msgid "Keywords"
  862. msgstr "キーワード"
  863. #: searx/templates/simple/preferences/answerers.html:6
  864. #: searx/templates/simple/result_templates/packages.html:7
  865. msgid "Name"
  866. msgstr "名前"
  867. #: searx/templates/simple/preferences/answerers.html:7
  868. msgid "Description"
  869. msgstr "説明"
  870. #: searx/templates/simple/preferences/answerers.html:8
  871. msgid "Examples"
  872. msgstr "例"
  873. #: searx/templates/simple/preferences/answerers.html:13
  874. msgid "This is the list of SearXNG's instant answering modules."
  875. msgstr "これは SearXNG の即席回答モジュールのリストです。"
  876. #: searx/templates/simple/preferences/answerers.html:29
  877. msgid "This is the list of plugins."
  878. msgstr "これはプラグインのリストです。"
  879. #: searx/templates/simple/preferences/autocomplete.html:2
  880. msgid "Autocomplete"
  881. msgstr "自動補完"
  882. #: searx/templates/simple/preferences/autocomplete.html:15
  883. msgid "Find stuff as you type"
  884. msgstr "自動補完に使う検索エンジン"
  885. #: searx/templates/simple/preferences/center_alignment.html:2
  886. msgid "Center Alignment"
  887. msgstr "中央揃え"
  888. #: searx/templates/simple/preferences/center_alignment.html:14
  889. msgid "Displays results in the center of the page (Oscar layout)."
  890. msgstr "中央揃えでページに結果表示(Oscar レイアウト)."
  891. #: searx/templates/simple/preferences/cookies.html:2
  892. msgid ""
  893. "This is the list of cookies and their values SearXNG is storing on your "
  894. "computer."
  895. msgstr "これはクッキーのリストで、これらの値はあなたのコンピュータに保存されています"
  896. "。"
  897. #: searx/templates/simple/preferences/cookies.html:3
  898. msgid "With that list, you can assess SearXNG transparency."
  899. msgstr "このリストによって、あなたは SearXNG の透明性を評価できます。"
  900. #: searx/templates/simple/preferences/cookies.html:9
  901. msgid "Cookie name"
  902. msgstr "クッキー名"
  903. #: searx/templates/simple/preferences/cookies.html:10
  904. msgid "Value"
  905. msgstr "値"
  906. #: searx/templates/simple/preferences/cookies.html:23
  907. msgid "Search URL of the currently saved preferences"
  908. msgstr "現在保存されている設定の検索 URL"
  909. #: searx/templates/simple/preferences/cookies.html:32
  910. msgid ""
  911. "Note: specifying custom settings in the search URL can reduce privacy by "
  912. "leaking data to the clicked result sites."
  913. msgstr "注意: 検索 URL "
  914. "にカスタム設定を指定すると、クリックした結果サイトにデータが漏洩し、プライバ"
  915. "シーが低下する恐れがあります。"
  916. #: searx/templates/simple/preferences/cookies.html:35
  917. msgid "URL to restore your preferences in another browser"
  918. msgstr "このURLで違うブラウザに設定を復活"
  919. #: searx/templates/simple/preferences/cookies.html:43
  920. msgid ""
  921. "Specifying custom settings in the preferences URL can be used to sync "
  922. "preferences across devices."
  923. msgstr "初期設定URLを使うことで、特別な設定をデバイスをまたいで同期できる。"
  924. #: searx/templates/simple/preferences/cookies.html:46
  925. msgid "Copy preferences hash"
  926. msgstr "設定のハッシュをコピーする"
  927. #: searx/templates/simple/preferences/cookies.html:57
  928. msgid "Insert copied preferences hash (without URL) to restore"
  929. msgstr "設定を復元するために(URLなしでの)ハッシュをコピーして挿入する"
  930. #: searx/templates/simple/preferences/cookies.html:59
  931. msgid "Preferences hash"
  932. msgstr "設定ハッシュ"
  933. #: searx/templates/simple/preferences/doi_resolver.html:2
  934. msgid "Open Access DOI resolver"
  935. msgstr "オープンアクセス DOI リゾルバー"
  936. #: searx/templates/simple/preferences/doi_resolver.html:14
  937. msgid "Select service used by DOI rewrite"
  938. msgstr "DOI書き換えにて使用するサービスを選択"
  939. #: searx/templates/simple/preferences/engines.html:9
  940. msgid ""
  941. "This tab does not exists in the user interface, but you can search in "
  942. "these engines by its !bangs."
  943. msgstr "インタフェースやタブの中にはないが、!bangを使うことでこれらのエンジンで検索できる。"
  944. #: searx/templates/simple/preferences/engines.html:15
  945. msgid "Enable all"
  946. msgstr "すべて有効"
  947. #: searx/templates/simple/preferences/engines.html:16
  948. msgid "Disable all"
  949. msgstr "すべて無効"
  950. #: searx/templates/simple/preferences/engines.html:25
  951. msgid "!bang"
  952. msgstr "!bang"
  953. #: searx/templates/simple/preferences/engines.html:26
  954. msgid "Supports selected language"
  955. msgstr "選択された言語のサポート"
  956. #: searx/templates/simple/preferences/engines.html:29
  957. msgid "Weight"
  958. msgstr "比重"
  959. #: searx/templates/simple/preferences/engines.html:33
  960. msgid "Max time"
  961. msgstr "最大時間"
  962. #: searx/templates/simple/preferences/favicon.html:2
  963. msgid "Favicon Resolver"
  964. msgstr "Favicon Resolver"
  965. #: searx/templates/simple/preferences/favicon.html:15
  966. msgid "Display favicons near search results"
  967. msgstr "検索結果でfaviconに合いそうなものを表示する"
  968. #: searx/templates/simple/preferences/footer.html:2
  969. msgid ""
  970. "These settings are stored in your cookies, this allows us not to store "
  971. "this data about you."
  972. msgstr "これらの設定はあなたのクッキーに保存されますが、これはサーバーがあなたの情報"
  973. "の保存するわけではありません。"
  974. #: searx/templates/simple/preferences/footer.html:3
  975. msgid ""
  976. "These cookies serve your sole convenience, we don't use these cookies to "
  977. "track you."
  978. msgstr "クッキーはあなたが便利に使えるようにするために使うのであって、サーバーはあな"
  979. "たを追跡するためにクッキーを使うことはありません。"
  980. #: searx/templates/simple/preferences/footer.html:6
  981. msgid "Save"
  982. msgstr "保存"
  983. #: searx/templates/simple/preferences/footer.html:9
  984. msgid "Reset defaults"
  985. msgstr "デフォルト設定に戻す"
  986. #: searx/templates/simple/preferences/footer.html:13
  987. msgid "Back"
  988. msgstr "戻る"
  989. #: searx/templates/simple/preferences/hotkeys.html:2
  990. msgid "Hotkeys"
  991. msgstr "ショートカットキー"
  992. #: searx/templates/simple/preferences/hotkeys.html:13
  993. msgid "Vim-like"
  994. msgstr "Vim風"
  995. #: searx/templates/simple/preferences/hotkeys.html:18
  996. msgid ""
  997. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  998. "key on main or result page to get help."
  999. msgstr ""
  1000. "(Javascriptが必要)ショートカットキーで検索の結果を得ることができます。「h」キ"
  1001. "ーを押して、主な使い方や検索結果の方法を知ることができます。"
  1002. #: searx/templates/simple/preferences/image_proxy.html:2
  1003. msgid "Image proxy"
  1004. msgstr "画像プロキシ"
  1005. #: searx/templates/simple/preferences/image_proxy.html:14
  1006. msgid "Proxying image results through SearXNG"
  1007. msgstr "画像の結果をSearXNG経由でプロキシする"
  1008. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1009. msgid "Infinite scroll"
  1010. msgstr "無限スクロール"
  1011. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1012. msgid "Automatically load next page when scrolling to bottom of current page"
  1013. msgstr "現在のページの下端でスクロールすると自動的に次のページを読み込む"
  1014. #: searx/templates/simple/preferences/language.html:24
  1015. msgid "What language do you prefer for search?"
  1016. msgstr "どの言語で検索しますか?"
  1017. #: searx/templates/simple/preferences/language.html:25
  1018. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1019. msgstr "自動検出を選択すると、あなたのクエリの言語をSearXNGに検出させるようになります"
  1020. "。"
  1021. #: searx/templates/simple/preferences/method.html:2
  1022. msgid "HTTP Method"
  1023. msgstr "HTTPメソッド"
  1024. #: searx/templates/simple/preferences/method.html:14
  1025. msgid "Change how forms are submitted"
  1026. msgstr "フォームの送信の仕方を変更する"
  1027. #: searx/templates/simple/preferences/query_in_title.html:2
  1028. msgid "Query in the page's title"
  1029. msgstr "ページのタイトルでクエリを実行する"
  1030. #: searx/templates/simple/preferences/query_in_title.html:14
  1031. msgid ""
  1032. "When enabled, the result page's title contains your query. Your browser "
  1033. "can record this title"
  1034. msgstr "有効にすると、検索結果ページのタイトルにクエリが含まれます。お使いのブラウザ"
  1035. "はこのタイトルを記録できます"
  1036. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1037. msgid "Results on new tabs"
  1038. msgstr "新しいタブに結果を表示"
  1039. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1040. msgid "Open result links on new browser tabs"
  1041. msgstr "検索結果のリンクを新しいタブで開く"
  1042. #: searx/templates/simple/preferences/safesearch.html:20
  1043. msgid "Filter content"
  1044. msgstr "コンテンツをフィルタリングする"
  1045. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1046. msgid "Search on category select"
  1047. msgstr "カテゴリ選択したら検索を実行"
  1048. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1049. msgid ""
  1050. "Perform search immediately if a category selected. Disable to select "
  1051. "multiple categories"
  1052. msgstr "カテゴリが選択されている場合はすぐに検索を行います。複数のカテゴリが選択され"
  1053. "ている場合は無効です"
  1054. #: searx/templates/simple/preferences/theme.html:2
  1055. msgid "Theme"
  1056. msgstr "テーマ"
  1057. #: searx/templates/simple/preferences/theme.html:14
  1058. msgid "Change SearXNG layout"
  1059. msgstr "SearXNGレイアウトの変更"
  1060. #: searx/templates/simple/preferences/theme.html:19
  1061. msgid "Theme style"
  1062. msgstr "テーマスタイル"
  1063. #: searx/templates/simple/preferences/theme.html:31
  1064. msgid "Choose auto to follow your browser settings"
  1065. msgstr "「自動」を選択すると、ブラウザの設定に従います"
  1066. #: searx/templates/simple/preferences/tokens.html:2
  1067. msgid "Engine tokens"
  1068. msgstr "エンジントークン"
  1069. #: searx/templates/simple/preferences/tokens.html:9
  1070. msgid "Access tokens for private engines"
  1071. msgstr "ブライベートエンジンのアクセストークン"
  1072. #: searx/templates/simple/preferences/ui_locale.html:2
  1073. msgid "Interface language"
  1074. msgstr "インターフェースの言語"
  1075. #: searx/templates/simple/preferences/ui_locale.html:14
  1076. msgid "Change the language of the layout"
  1077. msgstr "表示する言語を変更"
  1078. #: searx/templates/simple/preferences/urlformatting.html:2
  1079. msgid "URL formatting"
  1080. msgstr ""
  1081. #: searx/templates/simple/preferences/urlformatting.html:8
  1082. msgid "Pretty"
  1083. msgstr ""
  1084. #: searx/templates/simple/preferences/urlformatting.html:13
  1085. msgid "Full"
  1086. msgstr ""
  1087. #: searx/templates/simple/preferences/urlformatting.html:18
  1088. msgid "Host"
  1089. msgstr ""
  1090. #: searx/templates/simple/preferences/urlformatting.html:23
  1091. msgid "Change result URL formatting"
  1092. msgstr ""
  1093. #: searx/templates/simple/result_templates/code.html:13
  1094. msgid "repo"
  1095. msgstr "リポジトリ"
  1096. #: searx/templates/simple/result_templates/default.html:6
  1097. #: searx/templates/simple/result_templates/files.html:8
  1098. #: searx/templates/simple/result_templates/files.html:11
  1099. msgid "show media"
  1100. msgstr "メディアを表示する"
  1101. #: searx/templates/simple/result_templates/default.html:6
  1102. #: searx/templates/simple/result_templates/files.html:8
  1103. msgid "hide media"
  1104. msgstr "メディアを隠す"
  1105. #: searx/templates/simple/result_templates/default.html:14
  1106. #: searx/templates/simple/result_templates/videos.html:14
  1107. msgid "This site did not provide any description."
  1108. msgstr "このサイトは説明を提供しませんでした。"
  1109. #: searx/templates/simple/result_templates/files.html:38
  1110. #: searx/templates/simple/result_templates/images.html:22
  1111. #: searx/templates/simple/result_templates/torrent.html:11
  1112. msgid "Filesize"
  1113. msgstr "ファイルサイズ"
  1114. #: searx/templates/simple/result_templates/files.html:40
  1115. msgid "Date"
  1116. msgstr "日"
  1117. #: searx/templates/simple/result_templates/files.html:42
  1118. #: searx/templates/simple/result_templates/paper.html:24
  1119. msgid "Type"
  1120. msgstr "分類"
  1121. #: searx/templates/simple/result_templates/images.html:20
  1122. msgid "Resolution"
  1123. msgstr "解像度"
  1124. #: searx/templates/simple/result_templates/images.html:21
  1125. msgid "Format"
  1126. msgstr "フォーマット"
  1127. #: searx/templates/simple/result_templates/images.html:24
  1128. msgid "Engine"
  1129. msgstr "エンジン"
  1130. #: searx/templates/simple/result_templates/images.html:25
  1131. msgid "View source"
  1132. msgstr "ソースを閲覧する"
  1133. #: searx/templates/simple/result_templates/map.html:12
  1134. msgid "address"
  1135. msgstr "アドレス"
  1136. #: searx/templates/simple/result_templates/map.html:43
  1137. msgid "show map"
  1138. msgstr "地図を表示する"
  1139. #: searx/templates/simple/result_templates/map.html:43
  1140. msgid "hide map"
  1141. msgstr "地図を隠す"
  1142. #: searx/templates/simple/result_templates/packages.html:12
  1143. msgid "Version"
  1144. msgstr "バージョン"
  1145. #: searx/templates/simple/result_templates/packages.html:18
  1146. msgid "Maintainer"
  1147. msgstr "メインテイナー"
  1148. #: searx/templates/simple/result_templates/packages.html:24
  1149. msgid "Updated at"
  1150. msgstr "更新される"
  1151. #: searx/templates/simple/result_templates/packages.html:30
  1152. #: searx/templates/simple/result_templates/paper.html:25
  1153. msgid "Tags"
  1154. msgstr "タグ"
  1155. #: searx/templates/simple/result_templates/packages.html:36
  1156. msgid "Popularity"
  1157. msgstr "人気度"
  1158. #: searx/templates/simple/result_templates/packages.html:42
  1159. msgid "License"
  1160. msgstr "ライセンス"
  1161. #: searx/templates/simple/result_templates/packages.html:52
  1162. msgid "Project"
  1163. msgstr "プロジェクト"
  1164. #: searx/templates/simple/result_templates/packages.html:55
  1165. msgid "Project homepage"
  1166. msgstr "プロジェクトホームページ"
  1167. #: searx/templates/simple/result_templates/paper.html:5
  1168. msgid "Published date"
  1169. msgstr "公開日"
  1170. #: searx/templates/simple/result_templates/paper.html:9
  1171. msgid "Journal"
  1172. msgstr "刊行物"
  1173. #: searx/templates/simple/result_templates/paper.html:22
  1174. msgid "Editor"
  1175. msgstr "編集者"
  1176. #: searx/templates/simple/result_templates/paper.html:23
  1177. msgid "Publisher"
  1178. msgstr "発行者"
  1179. #: searx/templates/simple/result_templates/paper.html:26
  1180. msgid "DOI"
  1181. msgstr "DOI"
  1182. #: searx/templates/simple/result_templates/paper.html:27
  1183. msgid "ISSN"
  1184. msgstr "ISSN"
  1185. #: searx/templates/simple/result_templates/paper.html:28
  1186. msgid "ISBN"
  1187. msgstr "ISBN"
  1188. #: searx/templates/simple/result_templates/paper.html:33
  1189. msgid "PDF"
  1190. msgstr "PDF"
  1191. #: searx/templates/simple/result_templates/paper.html:34
  1192. msgid "HTML"
  1193. msgstr "HTML"
  1194. #: searx/templates/simple/result_templates/torrent.html:6
  1195. msgid "magnet link"
  1196. msgstr "マグネットリンク"
  1197. #: searx/templates/simple/result_templates/torrent.html:7
  1198. msgid "torrent file"
  1199. msgstr "トレントファイル"
  1200. #: searx/templates/simple/result_templates/torrent.html:9
  1201. msgid "Seeder"
  1202. msgstr "シーダー"
  1203. #: searx/templates/simple/result_templates/torrent.html:9
  1204. msgid "Leecher"
  1205. msgstr "リーチャー"
  1206. #: searx/templates/simple/result_templates/torrent.html:13
  1207. msgid "Number of Files"
  1208. msgstr "ファイル数"
  1209. #: searx/templates/simple/result_templates/videos.html:6
  1210. msgid "show video"
  1211. msgstr "動画を表示する"
  1212. #: searx/templates/simple/result_templates/videos.html:6
  1213. msgid "hide video"
  1214. msgstr "動画を隠す"
  1215. #~ msgid "Engine time (sec)"
  1216. #~ msgstr "検索時間 (秒)"
  1217. #~ msgid "Page loads (sec)"
  1218. #~ msgstr "ページ読み込み時間 (秒)"
  1219. #~ msgid "Errors"
  1220. #~ msgstr "エラー"
  1221. #~ msgid "CAPTCHA required"
  1222. #~ msgstr ""
  1223. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1224. #~ msgstr "可能ならば HTTP リンクを HTTPS リンクに書き換える"
  1225. #~ msgid ""
  1226. #~ "Results are opened in the same "
  1227. #~ "window by default. This plugin "
  1228. #~ "overwrites the default behaviour to open"
  1229. #~ " links on new tabs/windows. (JavaScript "
  1230. #~ "required)"
  1231. #~ msgstr ""
  1232. #~ "デフォルトでは結果は同じウィンドウで開きます。このプラグインはデフォルトの動作を書き換えて新しいタブ/ウィンドウで開くようにします。(JavaScript"
  1233. #~ " が必要です)"
  1234. #~ msgid "Color"
  1235. #~ msgstr "色"
  1236. #~ msgid "Blue (default)"
  1237. #~ msgstr "青 (初期設定)"
  1238. #~ msgid "Violet"
  1239. #~ msgstr "紫"
  1240. #~ msgid "Green"
  1241. #~ msgstr "緑"
  1242. #~ msgid "Cyan"
  1243. #~ msgstr "シアン"
  1244. #~ msgid "Orange"
  1245. #~ msgstr "オレンジ"
  1246. #~ msgid "Red"
  1247. #~ msgstr "赤"
  1248. #~ msgid "Category"
  1249. #~ msgstr "カテゴリー"
  1250. #~ msgid "Block"
  1251. #~ msgstr "禁止する"
  1252. #~ msgid "original context"
  1253. #~ msgstr "元の文脈"
  1254. #~ msgid "Plugins"
  1255. #~ msgstr "プラグイン"
  1256. #~ msgid "Answerers"
  1257. #~ msgstr "回答者"
  1258. #~ msgid "Avg. time"
  1259. #~ msgstr "平均時間"
  1260. #~ msgid "show details"
  1261. #~ msgstr "詳細を表示する"
  1262. #~ msgid "hide details"
  1263. #~ msgstr "詳細を隠す"
  1264. #~ msgid "Load more..."
  1265. #~ msgstr "もっと見る…"
  1266. #~ msgid "Loading..."
  1267. #~ msgstr ""
  1268. #~ msgid "Change searx layout"
  1269. #~ msgstr "Searx のレイアウトの変更"
  1270. #~ msgid "Proxying image results through searx"
  1271. #~ msgstr "画像検索結果を searx でプロキシする"
  1272. #~ msgid "This is the list of searx's instant answering modules."
  1273. #~ msgstr "これは searx の即席回答モジュールのリストです。"
  1274. #~ msgid ""
  1275. #~ "This is the list of cookies and"
  1276. #~ " their values searx is storing on "
  1277. #~ "your computer."
  1278. #~ msgstr "これはクッキーのリストで、これらの値はあなたのコンピュータに保存されています。"
  1279. #~ msgid "With that list, you can assess searx transparency."
  1280. #~ msgstr "このリストによって、あなたは searx の透明性を評価できます。"
  1281. #~ msgid "It look like you are using searx first time."
  1282. #~ msgstr "Searxを使うのは初めてようですね。"
  1283. #~ msgid "Please, try again later or find another searx instance."
  1284. #~ msgstr "後でやり直すか、別の searx インスタンスを探して下さい。"
  1285. #~ msgid "Themes"
  1286. #~ msgstr "テーマ"
  1287. #~ msgid "Reliablity"
  1288. #~ msgstr ""
  1289. #~ msgid ""
  1290. #~ "When enabled, the result page's title"
  1291. #~ " contains your query. Your browser "
  1292. #~ "can record this title."
  1293. #~ msgstr ""
  1294. #~ msgid "Method"
  1295. #~ msgstr "方法"
  1296. #~ msgid ""
  1297. #~ "This tab does not show up for "
  1298. #~ "search results but you can search "
  1299. #~ "the engines listed here via bangs."
  1300. #~ msgstr ""
  1301. #~ msgid "Advanced settings"
  1302. #~ msgstr "詳細設定"
  1303. #~ msgid "Close"
  1304. #~ msgstr "閉じる"
  1305. #~ msgid "Language"
  1306. #~ msgstr "言語"
  1307. #~ msgid "broken"
  1308. #~ msgstr "起動不可"
  1309. #~ msgid "supported"
  1310. #~ msgstr "サポート"
  1311. #~ msgid "not supported"
  1312. #~ msgstr "未サポート"
  1313. #~ msgid "about"
  1314. #~ msgstr "このサイトについて"
  1315. #~ msgid "Avg."
  1316. #~ msgstr "平均"
  1317. #~ msgid "User Interface"
  1318. #~ msgstr "ユーザーインタフェース"
  1319. #~ msgid "Choose style for this theme"
  1320. #~ msgstr "このテーマのスタイルを選択"
  1321. #~ msgid "Style"
  1322. #~ msgstr "スタイル"
  1323. #~ msgid "Show advanced settings"
  1324. #~ msgstr "詳細設定を表示"
  1325. #~ msgid "Show advanced settings panel in the home page by default"
  1326. #~ msgstr "デフォルトでホームページで詳細設定を表示する"
  1327. #~ msgid "Allow all"
  1328. #~ msgstr "すべて許可"
  1329. #~ msgid "Disable all"
  1330. #~ msgstr "すべて無効"
  1331. #~ msgid "Selected language"
  1332. #~ msgstr "選択された言語"
  1333. #~ msgid "Query"
  1334. #~ msgstr "クエリ"
  1335. #~ msgid "save"
  1336. #~ msgstr "保存"
  1337. #~ msgid "back"
  1338. #~ msgstr "戻る"
  1339. #~ msgid "Links"
  1340. #~ msgstr "リンク"
  1341. #~ msgid "RSS subscription"
  1342. #~ msgstr "RSS登録"
  1343. #~ msgid "Search results"
  1344. #~ msgstr "検索結果"
  1345. #~ msgid "next page"
  1346. #~ msgstr "次のページ"
  1347. #~ msgid "previous page"
  1348. #~ msgstr "前のページ"
  1349. #~ msgid "Start search"
  1350. #~ msgstr "検索を開始"
  1351. #~ msgid "Clear search"
  1352. #~ msgstr "探索を消す"
  1353. #~ msgid "Clear"
  1354. #~ msgstr "消す"
  1355. #~ msgid "stats"
  1356. #~ msgstr "統計"
  1357. #~ msgid "Heads up!"
  1358. #~ msgstr "気をつけて!"
  1359. #~ msgid "It look like you are using SearXNG first time."
  1360. #~ msgstr "SearXNG を初めてお使いになるようですね。"
  1361. #~ msgid "Well done!"
  1362. #~ msgstr "あっぱれ!"
  1363. #~ msgid "Settings saved successfully."
  1364. #~ msgstr "設定の保存に成功しました。"
  1365. #~ msgid "Oh snap!"
  1366. #~ msgstr "おっと!"
  1367. #~ msgid "Something went wrong."
  1368. #~ msgstr "なにか問題が起こっているようです。"
  1369. #~ msgid "Date"
  1370. #~ msgstr "日付"
  1371. #~ msgid "Type"
  1372. #~ msgstr "タイプ"
  1373. #~ msgid "Get image"
  1374. #~ msgstr "画像を取得する"
  1375. #~ msgid "Center Alignment"
  1376. #~ msgstr ""
  1377. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1378. #~ msgstr ""
  1379. #~ msgid "preferences"
  1380. #~ msgstr "設定"
  1381. #~ msgid "Scores per result"
  1382. #~ msgstr "検索結果当たりスコア"
  1383. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1384. #~ msgstr "プライバシー保護を重視した、ハッカブルなメタ検索エンジン"
  1385. #~ msgid "No abstract is available for this publication."
  1386. #~ msgstr "この出版物には要約がありません。"
  1387. #~ msgid "Self Informations"
  1388. #~ msgstr "自分の情報"
  1389. #~ msgid ""
  1390. #~ "Change how forms are submited, <a "
  1391. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1392. #~ " rel=\"external\">learn more about request "
  1393. #~ "methods</a>"
  1394. #~ msgstr ""
  1395. #~ "フォームの送信方法を変更します。<a "
  1396. #~ "href=\"https://ja.wikipedia.org/wiki/Hypertext_Transfer_Protocol#リクエストメソッド\""
  1397. #~ " rel=\"external\">リクエストメソッドってなに?</a>"
  1398. #~ msgid ""
  1399. #~ "This plugin checks if the address "
  1400. #~ "of the request is a TOR exit "
  1401. #~ "node, and informs the user if it"
  1402. #~ " is, like check.torproject.org but from "
  1403. #~ "searxng."
  1404. #~ msgstr ""
  1405. #~ "このプラグインはsearxngからTOR exit node "
  1406. #~ "にアドレスを要求したとき、check.torproject.orgサイトのように、ユーザーに通知します。"
  1407. #~ msgid ""
  1408. #~ "The TOR exit node list "
  1409. #~ "(https://check.torproject.org/exit-addresses) is "
  1410. #~ "unreachable."
  1411. #~ msgstr ""
  1412. #~ "TOR exit node のリスト(https://check.torproject.org"
  1413. #~ "/exit-addresses)に到達できません。"
  1414. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1415. #~ msgstr "TORを利用しています。あなたのIPアドレスはここから来ていると思われます : {ip_address}."
  1416. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1417. #~ msgstr "TORを利用していません。あなたのIPアドレスはここから来ていると思われます: {ip_address}."
  1418. #~ msgid ""
  1419. #~ "The could not download the list of"
  1420. #~ " Tor exit-nodes from "
  1421. #~ "https://check.torproject.org/exit-addresses."
  1422. #~ msgstr ""
  1423. #~ msgid ""
  1424. #~ "You are using Tor. It looks like"
  1425. #~ " you have this external IP address:"
  1426. #~ " {ip_address}."
  1427. #~ msgstr ""
  1428. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1429. #~ msgstr ""
  1430. #~ msgid "Autodetect search language"
  1431. #~ msgstr "検索言語自動検出"
  1432. #~ msgid "Automatically detect the query search language and switch to it."
  1433. #~ msgstr "検索言語の自動検出と切り替えを実施。"
  1434. #~ msgid "others"
  1435. #~ msgstr "その他"
  1436. #~ msgid ""
  1437. #~ "This tab does not show up for "
  1438. #~ "search results, but you can search "
  1439. #~ "the engines listed here via bangs."
  1440. #~ msgstr "このタブは検索結果には表示されませんが、ここにリストされているエンジンをbangで検索できます。"
  1441. #~ msgid "Shortcut"
  1442. #~ msgstr "ショートカット"
  1443. #~ msgid "!bang"
  1444. #~ msgstr ""
  1445. #~ msgid ""
  1446. #~ "This tab dues not exists in the"
  1447. #~ " user interface, but you can search"
  1448. #~ " in these engines by its !bangs."
  1449. #~ msgstr "インタフェースやタブの中にはないが、!bangを使うことで検索エンジンとして利用できる。"
  1450. #~ msgid "Engines cannot retrieve results."
  1451. #~ msgstr "エンジンは結果を取得できません。"
  1452. #~ msgid "Please, try again later or find another SearXNG instance."
  1453. #~ msgstr "後でやり直すか、別の SearXNG インスタンスを試してみて下さい。"
  1454. #~ msgid ""
  1455. #~ "Redirect to open-access versions of "
  1456. #~ "publications when available (plugin required)"
  1457. #~ msgstr "利用可能な場合(プラグインが必要)、オープンアクセス版の出版物にリダイレクトする"
  1458. #~ msgid "Bang"
  1459. #~ msgstr "Bang"
  1460. #~ msgid ""
  1461. #~ "Change how forms are submitted, <a "
  1462. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1463. #~ " rel=\"external\">learn more about request "
  1464. #~ "methods</a>"
  1465. #~ msgstr ""
  1466. #~ "フォームの送信方法を変更します。<a "
  1467. #~ "href=\"https://ja.wikipedia.org/wiki/Hypertext_Transfer_Protocol#リクエストメソッド\""
  1468. #~ " rel=\"external\">リクエストメソッドってなに?</a>"
  1469. #~ msgid "On"
  1470. #~ msgstr "有効"
  1471. #~ msgid "Off"
  1472. #~ msgstr "無効"
  1473. #~ msgid "Enabled"
  1474. #~ msgstr "有効"
  1475. #~ msgid "Disabled"
  1476. #~ msgstr "無効"
  1477. #~ msgid ""
  1478. #~ "Perform search immediately if a category"
  1479. #~ " selected. Disable to select multiple "
  1480. #~ "categories. (JavaScript required)"
  1481. #~ msgstr "カテゴリが選択されたときに検索を実行します。複数のカテゴリを選択する場合は無効にします。(JavaScript が必要です)"
  1482. #~ msgid "Vim-like hotkeys"
  1483. #~ msgstr "Vim 風のホットキー"
  1484. #~ msgid ""
  1485. #~ "Navigate search results with Vim-like"
  1486. #~ " hotkeys (JavaScript required). Press \"h\""
  1487. #~ " key on main or result page to"
  1488. #~ " get help."
  1489. #~ msgstr ""
  1490. #~ "検索結果をVim 風のホットキーで操作します(JavaScript が必要)。メインページまたは検索結果ページで"
  1491. #~ " \"h\" キーを押してヘルプを表示します。"
  1492. #~ msgid ""
  1493. #~ "we didn't find any results. Please "
  1494. #~ "use another query or search in "
  1495. #~ "more categories."
  1496. #~ msgstr "検索結果はありませんでした。別のカテゴリ、または他のクエリで検索してください。"
  1497. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1498. #~ msgstr "結果のホスト名を書き換えるか、ホスト名に基づいて結果を削除します"
  1499. #~ msgid "Bytes"
  1500. #~ msgstr "バイト"
  1501. #~ msgid "kiB"
  1502. #~ msgstr "キロバイト"
  1503. #~ msgid "MiB"
  1504. #~ msgstr "メガバイト"
  1505. #~ msgid "GiB"
  1506. #~ msgstr "ギガバイト"
  1507. #~ msgid "TiB"
  1508. #~ msgstr "テラバイト"
  1509. #~ msgid "Hostname replace"
  1510. #~ msgstr "ホストネーム入れ替え"
  1511. #~ msgid "Error!"
  1512. #~ msgstr "エラー!"
  1513. #~ msgid "Engines cannot retrieve results"
  1514. #~ msgstr "エンジンは結果を取得できません"
  1515. #~ msgid "Start submiting a new issue on GitHub"
  1516. #~ msgstr "Githubへ新しい課題の提出をする"
  1517. #~ msgid "dummy"
  1518. #~ msgstr ""