messages.po 52 KB

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