messages.po 51 KB

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