messages.po 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884
  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-06-17 12:15+0000\n"
  29. "PO-Revision-Date: 2024-06-11 21:30+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.15.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:121 searx/searxng.msg
  270. msgid "open"
  271. msgstr "オープン"
  272. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  273. #: searx/engines/discourse.py:121 searx/searxng.msg
  274. msgid "closed"
  275. msgstr "クローズ"
  276. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  277. #: searx/engines/discourse.py:132 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:887
  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:75
  348. msgid "Random value generator"
  349. msgstr "ランダムな値を生成"
  350. #: searx/answerers/random/answerer.py:76
  351. msgid "Generate different random values"
  352. msgstr "異なるランダムな値を生成する"
  353. #: searx/answerers/statistics/answerer.py:48
  354. msgid "Statistics functions"
  355. msgstr "統計機能"
  356. #: searx/answerers/statistics/answerer.py:49
  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:128
  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:39
  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:45
  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:51
  403. msgid "The image could not be downloaded."
  404. msgstr "この画像はダウンロードはできません。"
  405. #: searx/engines/zlibrary.py:129
  406. msgid "Book rating"
  407. msgstr "書籍評価点数"
  408. #: searx/engines/zlibrary.py:130
  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/hostname_replace.py:7
  421. msgid "Hostname replace"
  422. msgstr "ホストネーム入れ替え"
  423. #: searx/plugins/hostnames.py:68
  424. msgid "Hostnames plugin"
  425. msgstr "ホスト名プラグイン"
  426. #: searx/plugins/hostnames.py:69
  427. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  428. msgstr "検索結果からこのホスト名を基に削除もしくは優先的に書き換えを行う"
  429. #: searx/plugins/oa_doi_rewrite.py:12
  430. msgid "Open Access DOI rewrite"
  431. msgstr "オープンアクセス DOI の書き換え"
  432. #: searx/plugins/oa_doi_rewrite.py:13
  433. msgid ""
  434. "Avoid paywalls by redirecting to open-access versions of publications "
  435. "when available"
  436. msgstr "可能ならば オープンアクセス版の出版物へリダイレクトし、有料出版物を回避する"
  437. #: searx/plugins/self_info.py:9
  438. msgid "Self Information"
  439. msgstr "自分の情報"
  440. #: searx/plugins/self_info.py:10
  441. msgid ""
  442. "Displays your IP if the query is \"ip\" and your user agent if the query "
  443. "contains \"user agent\"."
  444. msgstr "クエリが \"ip\" の場合にあなたのIPを、クエリに \"user agent\" が含まれる場合にあなたのユーザーエージェントを表示します。"
  445. #: searx/plugins/self_info.py:28
  446. msgid "Your IP is: "
  447. msgstr ""
  448. #: searx/plugins/self_info.py:31
  449. msgid "Your user-agent is: "
  450. msgstr ""
  451. #: searx/plugins/tor_check.py:24
  452. msgid "Tor check plugin"
  453. msgstr "Tor 確認プラグイン"
  454. #: searx/plugins/tor_check.py:27
  455. msgid ""
  456. "This plugin checks if the address of the request is a Tor exit-node, and "
  457. "informs the user if it is; like check.torproject.org, but from SearXNG."
  458. msgstr "このプラグインではcheck.torprogject.orgのようにTor 出口ノードのIPアドレスをSearXNGからチェックする。"
  459. #: searx/plugins/tor_check.py:61
  460. msgid ""
  461. "Could not download the list of Tor exit-nodes from: "
  462. "https://check.torproject.org/exit-addresses"
  463. msgstr "「https://check.torproject.org/exit-addresses」からTor 出口ノードの一覧をダウンロードできません"
  464. #: searx/plugins/tor_check.py:77
  465. msgid ""
  466. "You are using Tor and it looks like you have this external IP address: "
  467. "{ip_address}"
  468. msgstr "あなたの利用しているTorの外部IPアドレスは次のようになっている : {ip_address}"
  469. #: searx/plugins/tor_check.py:85
  470. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  471. msgstr "あなたはTorを利用しておらず外部IPアドレスは次のようになっている : {ip_address}"
  472. #: searx/plugins/tracker_url_remover.py:16
  473. msgid "Tracker URL remover"
  474. msgstr "トラッカー URL リムーバー"
  475. #: searx/plugins/tracker_url_remover.py:17
  476. msgid "Remove trackers arguments from the returned URL"
  477. msgstr "返された URL からトラッカー引数を消去する"
  478. #: searx/plugins/unit_converter.py:29
  479. msgid "Convert between units"
  480. msgstr "単位を変換"
  481. #: searx/templates/simple/404.html:4
  482. msgid "Page not found"
  483. msgstr "ページが見つかりません"
  484. #: searx/templates/simple/404.html:6
  485. #, python-format
  486. msgid "Go to %(search_page)s."
  487. msgstr "%(search_page)s へ行く。"
  488. #: searx/templates/simple/404.html:6
  489. msgid "search page"
  490. msgstr "検索ページ"
  491. #: searx/templates/simple/base.html:54
  492. msgid "Donate"
  493. msgstr "寄付"
  494. #: searx/templates/simple/base.html:58
  495. #: searx/templates/simple/preferences.html:156
  496. msgid "Preferences"
  497. msgstr "設定"
  498. #: searx/templates/simple/base.html:68
  499. msgid "Powered by"
  500. msgstr "Powered by"
  501. #: searx/templates/simple/base.html:68
  502. msgid "a privacy-respecting, open metasearch engine"
  503. msgstr "プライバシーを尊重する、オープンメタ検索エンジン"
  504. #: searx/templates/simple/base.html:69
  505. #: searx/templates/simple/result_templates/packages.html:59
  506. msgid "Source code"
  507. msgstr "ソースコード"
  508. #: searx/templates/simple/base.html:70
  509. msgid "Issue tracker"
  510. msgstr "課題報告"
  511. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  512. msgid "Engine stats"
  513. msgstr "検索エンジンの状態"
  514. #: searx/templates/simple/base.html:73
  515. msgid "Public instances"
  516. msgstr "パブリック インスタンス"
  517. #: searx/templates/simple/base.html:76
  518. msgid "Privacy policy"
  519. msgstr "プライバシーポリシー"
  520. #: searx/templates/simple/base.html:79
  521. msgid "Contact instance maintainer"
  522. msgstr "インスタンスメンテナと連絡を取る"
  523. #: searx/templates/simple/categories.html:26
  524. msgid "Click on the magnifier to perform search"
  525. msgstr "虫めがねをクリックして検索します"
  526. #: searx/templates/simple/macros.html:35
  527. msgid "Length"
  528. msgstr "長さ"
  529. #: searx/templates/simple/macros.html:36
  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:44
  536. msgid "cached"
  537. msgstr "キャッシュ"
  538. #: searx/templates/simple/macros.html:44
  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:18
  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:77
  622. msgid "Try searching for:"
  623. msgstr "検索のオススメ:"
  624. #: searx/templates/simple/results.html:109
  625. msgid "Back to top"
  626. msgstr "トップに戻る"
  627. #: searx/templates/simple/results.html:127
  628. msgid "Previous page"
  629. msgstr "前のページ"
  630. #: searx/templates/simple/results.html:145
  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/preferences/engines.html:31
  662. #: searx/templates/simple/stats.html:28
  663. msgid "Response time"
  664. msgstr "応答時間"
  665. #: searx/templates/simple/preferences/engines.html:35
  666. #: searx/templates/simple/stats.html:29
  667. msgid "Reliability"
  668. msgstr "信頼性"
  669. #: searx/templates/simple/stats.html:59
  670. msgid "Total"
  671. msgstr "合計"
  672. #: searx/templates/simple/stats.html:60
  673. msgid "HTTP"
  674. msgstr "HTTP"
  675. #: searx/templates/simple/stats.html:61
  676. msgid "Processing"
  677. msgstr "処理"
  678. #: searx/templates/simple/stats.html:99
  679. msgid "Warnings"
  680. msgstr "注意"
  681. #: searx/templates/simple/stats.html:99
  682. msgid "Errors and exceptions"
  683. msgstr "エラーと例外"
  684. #: searx/templates/simple/stats.html:105
  685. msgid "Exception"
  686. msgstr "例外"
  687. #: searx/templates/simple/stats.html:107
  688. msgid "Message"
  689. msgstr "メッセージ"
  690. #: searx/templates/simple/stats.html:109
  691. msgid "Percentage"
  692. msgstr "確率"
  693. #: searx/templates/simple/stats.html:111
  694. msgid "Parameter"
  695. msgstr "パラメータ"
  696. #: searx/templates/simple/result_templates/files.html:36
  697. #: searx/templates/simple/stats.html:119
  698. msgid "Filename"
  699. msgstr "ファイル名"
  700. #: searx/templates/simple/stats.html:120
  701. msgid "Function"
  702. msgstr "ファンクション"
  703. #: searx/templates/simple/stats.html:121
  704. msgid "Code"
  705. msgstr "コード"
  706. #: searx/templates/simple/stats.html:128
  707. msgid "Checker"
  708. msgstr "チェッカー"
  709. #: searx/templates/simple/stats.html:131
  710. msgid "Failed test"
  711. msgstr "テストに失敗しました"
  712. #: searx/templates/simple/stats.html:132
  713. msgid "Comment(s)"
  714. msgstr "コメント"
  715. #: searx/templates/simple/elements/apis.html:3
  716. msgid "Download results"
  717. msgstr "ダウンロードするファイル形式"
  718. #: searx/templates/simple/elements/engines_msg.html:7
  719. msgid "Messages from the search engines"
  720. msgstr "検索エンジンからのメッセージ"
  721. #: searx/templates/simple/elements/engines_msg.html:12
  722. msgid "Error!"
  723. msgstr "エラー!"
  724. #: searx/templates/simple/elements/engines_msg.html:13
  725. msgid "Engines cannot retrieve results"
  726. msgstr "エンジンは結果を取得できません"
  727. #: searx/templates/simple/elements/search_url.html:3
  728. msgid "Search URL"
  729. msgstr "この検索結果の URL"
  730. #: searx/templates/simple/elements/search_url.html:4
  731. #: searx/templates/simple/preferences/cookies.html:54
  732. msgid "Copied"
  733. msgstr "コピーしました"
  734. #: searx/templates/simple/elements/search_url.html:4
  735. #: searx/templates/simple/preferences/cookies.html:54
  736. msgid "Copy"
  737. msgstr "コピー"
  738. #: searx/templates/simple/elements/suggestions.html:3
  739. msgid "Suggestions"
  740. msgstr "提案"
  741. #: searx/templates/simple/filters/languages.html:1
  742. #: searx/templates/simple/preferences/language.html:2
  743. msgid "Search language"
  744. msgstr "検索の言語"
  745. #: searx/templates/simple/filters/languages.html:2
  746. #: searx/templates/simple/preferences/language.html:7
  747. msgid "Default language"
  748. msgstr "デフォルトの言語"
  749. #: searx/templates/simple/filters/languages.html:4
  750. #: searx/templates/simple/preferences/language.html:11
  751. msgid "Auto-detect"
  752. msgstr "自動検出"
  753. #: searx/templates/simple/filters/safesearch.html:1
  754. #: searx/templates/simple/filters/safesearch.html:2
  755. #: searx/templates/simple/filters/safesearch.html:3
  756. #: searx/templates/simple/filters/safesearch.html:4
  757. #: searx/templates/simple/preferences/engines.html:27
  758. #: searx/templates/simple/preferences/safesearch.html:2
  759. msgid "SafeSearch"
  760. msgstr "セーフサーチ"
  761. #: searx/templates/simple/filters/safesearch.html:2
  762. #: searx/templates/simple/preferences/safesearch.html:7
  763. msgid "Strict"
  764. msgstr "厳重"
  765. #: searx/templates/simple/filters/safesearch.html:3
  766. #: searx/templates/simple/preferences/safesearch.html:11
  767. msgid "Moderate"
  768. msgstr "標準"
  769. #: searx/templates/simple/filters/safesearch.html:4
  770. #: searx/templates/simple/preferences/safesearch.html:15
  771. msgid "None"
  772. msgstr "オフ"
  773. #: searx/templates/simple/filters/time_range.html:1
  774. #: searx/templates/simple/preferences/engines.html:28
  775. msgid "Time range"
  776. msgstr "時間範囲"
  777. #: searx/templates/simple/filters/time_range.html:3
  778. msgid "Anytime"
  779. msgstr "期間指定なし"
  780. #: searx/templates/simple/filters/time_range.html:6
  781. msgid "Last day"
  782. msgstr "24 時間以内"
  783. #: searx/templates/simple/filters/time_range.html:9
  784. msgid "Last week"
  785. msgstr "1 週間以内"
  786. #: searx/templates/simple/filters/time_range.html:12
  787. msgid "Last month"
  788. msgstr "1 か月以内"
  789. #: searx/templates/simple/filters/time_range.html:15
  790. msgid "Last year"
  791. msgstr "1 年以内"
  792. #: searx/templates/simple/messages/no_cookies.html:3
  793. msgid "Information!"
  794. msgstr "お知らせ!"
  795. #: searx/templates/simple/messages/no_cookies.html:4
  796. msgid "currently, there are no cookies defined."
  797. msgstr "現在、クッキーは定義されていません。"
  798. #: searx/templates/simple/messages/no_results.html:6
  799. msgid "Sorry!"
  800. msgstr "すみません!"
  801. #: searx/templates/simple/messages/no_results.html:12
  802. msgid "No results were found. You can try to:"
  803. msgstr "結果見つかりませんでした。再度行うなら :"
  804. #: searx/templates/simple/messages/no_results.html:14
  805. msgid "There are no more results. You can try to:"
  806. msgstr "これ以上の検索結果はありません。試すことができるのは :"
  807. #: searx/templates/simple/messages/no_results.html:19
  808. msgid "Refresh the page."
  809. msgstr "ページを更新します。"
  810. #: searx/templates/simple/messages/no_results.html:20
  811. msgid "Search for another query or select another category (above)."
  812. msgstr "違うクエリか違う(上記の)カテゴリを選んで検索。"
  813. #: searx/templates/simple/messages/no_results.html:21
  814. msgid "Change the search engine used in the preferences:"
  815. msgstr "検索エンジンに使う設定を変更する:"
  816. #: searx/templates/simple/messages/no_results.html:22
  817. msgid "Switch to another instance:"
  818. msgstr "別のインスタンスに切り替える:"
  819. #: searx/templates/simple/messages/no_results.html:24
  820. msgid "Search for another query or select another category."
  821. msgstr "違うのクエリか違うカテゴリで検索を選択できます。"
  822. #: searx/templates/simple/messages/no_results.html:25
  823. msgid "Go back to the previous page using the previous page button."
  824. msgstr "前ページボタンを使うと、前のページに戻ることができます。"
  825. #: searx/templates/simple/preferences/answerers.html:4
  826. #: searx/templates/simple/preferences/engines.html:23
  827. msgid "Allow"
  828. msgstr "許可する"
  829. #: searx/templates/simple/preferences/answerers.html:5
  830. msgid "Keywords"
  831. msgstr "キーワード"
  832. #: searx/templates/simple/preferences/answerers.html:6
  833. #: searx/templates/simple/result_templates/packages.html:7
  834. msgid "Name"
  835. msgstr "名前"
  836. #: searx/templates/simple/preferences/answerers.html:7
  837. msgid "Description"
  838. msgstr "説明"
  839. #: searx/templates/simple/preferences/answerers.html:8
  840. msgid "Examples"
  841. msgstr "例"
  842. #: searx/templates/simple/preferences/answerers.html:13
  843. msgid "This is the list of SearXNG's instant answering modules."
  844. msgstr "これは SearXNG の即席回答モジュールのリストです。"
  845. #: searx/templates/simple/preferences/answerers.html:29
  846. msgid "This is the list of plugins."
  847. msgstr "これはプラグインのリストです。"
  848. #: searx/templates/simple/preferences/autocomplete.html:2
  849. msgid "Autocomplete"
  850. msgstr "自動補完"
  851. #: searx/templates/simple/preferences/autocomplete.html:15
  852. msgid "Find stuff as you type"
  853. msgstr "自動補完に使う検索エンジン"
  854. #: searx/templates/simple/preferences/center_alignment.html:2
  855. msgid "Center Alignment"
  856. msgstr "中央揃え"
  857. #: searx/templates/simple/preferences/center_alignment.html:14
  858. msgid "Displays results in the center of the page (Oscar layout)."
  859. msgstr "中央揃えでページに結果表示(Oscar レイアウト)."
  860. #: searx/templates/simple/preferences/cookies.html:2
  861. msgid ""
  862. "This is the list of cookies and their values SearXNG is storing on your "
  863. "computer."
  864. msgstr "これはクッキーのリストで、これらの値はあなたのコンピュータに保存されています。"
  865. #: searx/templates/simple/preferences/cookies.html:3
  866. msgid "With that list, you can assess SearXNG transparency."
  867. msgstr "このリストによって、あなたは SearXNG の透明性を評価できます。"
  868. #: searx/templates/simple/preferences/cookies.html:9
  869. msgid "Cookie name"
  870. msgstr "クッキー名"
  871. #: searx/templates/simple/preferences/cookies.html:10
  872. msgid "Value"
  873. msgstr "値"
  874. #: searx/templates/simple/preferences/cookies.html:23
  875. msgid "Search URL of the currently saved preferences"
  876. msgstr "現在保存されている設定の検索 URL"
  877. #: searx/templates/simple/preferences/cookies.html:32
  878. msgid ""
  879. "Note: specifying custom settings in the search URL can reduce privacy by "
  880. "leaking data to the clicked result sites."
  881. msgstr "注意: 検索 URL にカスタム設定を指定すると、クリックした結果サイトにデータが漏洩し、プライバシーが低下する恐れがあります。"
  882. #: searx/templates/simple/preferences/cookies.html:35
  883. msgid "URL to restore your preferences in another browser"
  884. msgstr "このURLで違うブラウザに設定を復活"
  885. #: searx/templates/simple/preferences/cookies.html:43
  886. msgid ""
  887. "Specifying custom settings in the preferences URL can be used to sync "
  888. "preferences across devices."
  889. msgstr "初期設定URLを使うことで、特別な設定をデバイスをまたいで同期できる。"
  890. #: searx/templates/simple/preferences/cookies.html:46
  891. msgid "Copy preferences hash"
  892. msgstr "設定のハッシュをコピーする"
  893. #: searx/templates/simple/preferences/cookies.html:57
  894. msgid "Insert copied preferences hash (without URL) to restore"
  895. msgstr "設定を復元するために(URLなしでの)ハッシュをコピーして挿入する"
  896. #: searx/templates/simple/preferences/cookies.html:59
  897. msgid "Preferences hash"
  898. msgstr "設定ハッシュ"
  899. #: searx/templates/simple/preferences/doi_resolver.html:2
  900. msgid "Open Access DOI resolver"
  901. msgstr "オープンアクセス DOI リゾルバー"
  902. #: searx/templates/simple/preferences/doi_resolver.html:14
  903. msgid "Select service used by DOI rewrite"
  904. msgstr "DOI書き換えにて使用するサービスを選択"
  905. #: searx/templates/simple/preferences/engines.html:9
  906. msgid ""
  907. "This tab does not exists in the user interface, but you can search in "
  908. "these engines by its !bangs."
  909. msgstr "インタフェースやタブの中にはないが、!bangを使うことでこれらのエンジンで検索できる。"
  910. #: searx/templates/simple/preferences/engines.html:15
  911. msgid "Enable all"
  912. msgstr "すべて有効"
  913. #: searx/templates/simple/preferences/engines.html:16
  914. msgid "Disable all"
  915. msgstr "すべて無効"
  916. #: searx/templates/simple/preferences/engines.html:25
  917. msgid "!bang"
  918. msgstr "!bang"
  919. #: searx/templates/simple/preferences/engines.html:26
  920. msgid "Supports selected language"
  921. msgstr "選択された言語のサポート"
  922. #: searx/templates/simple/preferences/engines.html:29
  923. msgid "Weight"
  924. msgstr "比重"
  925. #: searx/templates/simple/preferences/engines.html:33
  926. msgid "Max time"
  927. msgstr "最大時間"
  928. #: searx/templates/simple/preferences/footer.html:2
  929. msgid ""
  930. "These settings are stored in your cookies, this allows us not to store "
  931. "this data about you."
  932. msgstr "これらの設定はあなたのクッキーに保存されますが、これはサーバーがあなたの情報の保存するわけではありません。"
  933. #: searx/templates/simple/preferences/footer.html:3
  934. msgid ""
  935. "These cookies serve your sole convenience, we don't use these cookies to "
  936. "track you."
  937. msgstr "クッキーはあなたが便利に使えるようにするために使うのであって、サーバーはあなたを追跡するためにクッキーを使うことはありません。"
  938. #: searx/templates/simple/preferences/footer.html:6
  939. msgid "Save"
  940. msgstr "保存"
  941. #: searx/templates/simple/preferences/footer.html:9
  942. msgid "Reset defaults"
  943. msgstr "デフォルト設定に戻す"
  944. #: searx/templates/simple/preferences/footer.html:13
  945. msgid "Back"
  946. msgstr "戻る"
  947. #: searx/templates/simple/preferences/hotkeys.html:2
  948. msgid "Hotkeys"
  949. msgstr "ショートカットキー"
  950. #: searx/templates/simple/preferences/hotkeys.html:13
  951. msgid "Vim-like"
  952. msgstr "Vim風"
  953. #: searx/templates/simple/preferences/hotkeys.html:18
  954. msgid ""
  955. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  956. "key on main or result page to get help."
  957. msgstr "(Javascriptが必要)ショートカットキーで検索の結果を得ることができます。「h」キーを押して、主な使い方や検索結果の方法を知ることができます。"
  958. #: searx/templates/simple/preferences/image_proxy.html:2
  959. msgid "Image proxy"
  960. msgstr "画像プロキシ"
  961. #: searx/templates/simple/preferences/image_proxy.html:14
  962. msgid "Proxying image results through SearXNG"
  963. msgstr "画像の結果をSearXNG経由でプロキシする"
  964. #: searx/templates/simple/preferences/infinite_scroll.html:2
  965. msgid "Infinite scroll"
  966. msgstr "無限スクロール"
  967. #: searx/templates/simple/preferences/infinite_scroll.html:14
  968. msgid "Automatically load next page when scrolling to bottom of current page"
  969. msgstr "現在のページの下端でスクロールすると自動的に次のページを読み込む"
  970. #: searx/templates/simple/preferences/language.html:24
  971. msgid "What language do you prefer for search?"
  972. msgstr "どの言語で検索しますか?"
  973. #: searx/templates/simple/preferences/language.html:25
  974. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  975. msgstr "自動検出を選択すると、あなたのクエリの言語をSearXNGに検出させるようになります。"
  976. #: searx/templates/simple/preferences/method.html:2
  977. msgid "HTTP Method"
  978. msgstr "HTTPメソッド"
  979. #: searx/templates/simple/preferences/method.html:14
  980. msgid "Change how forms are submitted"
  981. msgstr "フォームの送信の仕方を変更する"
  982. #: searx/templates/simple/preferences/query_in_title.html:2
  983. msgid "Query in the page's title"
  984. msgstr "ページのタイトルでクエリを実行する"
  985. #: searx/templates/simple/preferences/query_in_title.html:14
  986. msgid ""
  987. "When enabled, the result page's title contains your query. Your browser "
  988. "can record this title"
  989. msgstr "有効にすると、検索結果ページのタイトルにクエリが含まれます。お使いのブラウザはこのタイトルを記録できます"
  990. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  991. msgid "Results on new tabs"
  992. msgstr "新しいタブに結果を表示"
  993. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  994. msgid "Open result links on new browser tabs"
  995. msgstr "検索結果のリンクを新しいタブで開く"
  996. #: searx/templates/simple/preferences/safesearch.html:20
  997. msgid "Filter content"
  998. msgstr "コンテンツをフィルタリングする"
  999. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1000. msgid "Search on category select"
  1001. msgstr "カテゴリ選択したら検索を実行"
  1002. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1003. msgid ""
  1004. "Perform search immediately if a category selected. Disable to select "
  1005. "multiple categories"
  1006. msgstr "カテゴリが選択されている場合はすぐに検索を行います。複数のカテゴリが選択されている場合は無効です"
  1007. #: searx/templates/simple/preferences/theme.html:2
  1008. msgid "Theme"
  1009. msgstr "テーマ"
  1010. #: searx/templates/simple/preferences/theme.html:14
  1011. msgid "Change SearXNG layout"
  1012. msgstr "SearXNGレイアウトの変更"
  1013. #: searx/templates/simple/preferences/theme.html:19
  1014. msgid "Theme style"
  1015. msgstr "テーマスタイル"
  1016. #: searx/templates/simple/preferences/theme.html:31
  1017. msgid "Choose auto to follow your browser settings"
  1018. msgstr "「自動」を選択すると、ブラウザの設定に従います"
  1019. #: searx/templates/simple/preferences/tokens.html:2
  1020. msgid "Engine tokens"
  1021. msgstr "エンジントークン"
  1022. #: searx/templates/simple/preferences/tokens.html:9
  1023. msgid "Access tokens for private engines"
  1024. msgstr "ブライベートエンジンのアクセストークン"
  1025. #: searx/templates/simple/preferences/ui_locale.html:2
  1026. msgid "Interface language"
  1027. msgstr "インターフェースの言語"
  1028. #: searx/templates/simple/preferences/ui_locale.html:14
  1029. msgid "Change the language of the layout"
  1030. msgstr "表示する言語を変更"
  1031. #: searx/templates/simple/result_templates/code.html:13
  1032. msgid "repo"
  1033. msgstr "リポジトリ"
  1034. #: searx/templates/simple/result_templates/default.html:6
  1035. #: searx/templates/simple/result_templates/files.html:8
  1036. #: searx/templates/simple/result_templates/files.html:11
  1037. msgid "show media"
  1038. msgstr "メディアを表示する"
  1039. #: searx/templates/simple/result_templates/default.html:6
  1040. #: searx/templates/simple/result_templates/files.html:8
  1041. msgid "hide media"
  1042. msgstr "メディアを隠す"
  1043. #: searx/templates/simple/result_templates/default.html:14
  1044. #: searx/templates/simple/result_templates/videos.html:14
  1045. msgid "This site did not provide any description."
  1046. msgstr "このサイトは説明を提供しませんでした。"
  1047. #: searx/templates/simple/result_templates/files.html:38
  1048. #: searx/templates/simple/result_templates/images.html:22
  1049. #: searx/templates/simple/result_templates/torrent.html:11
  1050. msgid "Filesize"
  1051. msgstr "ファイルサイズ"
  1052. #: searx/templates/simple/result_templates/files.html:40
  1053. msgid "Date"
  1054. msgstr "日"
  1055. #: searx/templates/simple/result_templates/files.html:42
  1056. #: searx/templates/simple/result_templates/paper.html:24
  1057. msgid "Type"
  1058. msgstr "分類"
  1059. #: searx/templates/simple/result_templates/images.html:20
  1060. msgid "Resolution"
  1061. msgstr "解像度"
  1062. #: searx/templates/simple/result_templates/images.html:21
  1063. msgid "Format"
  1064. msgstr "フォーマット"
  1065. #: searx/templates/simple/result_templates/images.html:24
  1066. msgid "Engine"
  1067. msgstr "エンジン"
  1068. #: searx/templates/simple/result_templates/images.html:25
  1069. msgid "View source"
  1070. msgstr "ソースを閲覧する"
  1071. #: searx/templates/simple/result_templates/map.html:12
  1072. msgid "address"
  1073. msgstr "アドレス"
  1074. #: searx/templates/simple/result_templates/map.html:43
  1075. msgid "show map"
  1076. msgstr "地図を表示する"
  1077. #: searx/templates/simple/result_templates/map.html:43
  1078. msgid "hide map"
  1079. msgstr "地図を隠す"
  1080. #: searx/templates/simple/result_templates/packages.html:12
  1081. msgid "Version"
  1082. msgstr "バージョン"
  1083. #: searx/templates/simple/result_templates/packages.html:18
  1084. msgid "Maintainer"
  1085. msgstr "メインテイナー"
  1086. #: searx/templates/simple/result_templates/packages.html:24
  1087. msgid "Updated at"
  1088. msgstr "更新される"
  1089. #: searx/templates/simple/result_templates/packages.html:30
  1090. #: searx/templates/simple/result_templates/paper.html:25
  1091. msgid "Tags"
  1092. msgstr "タグ"
  1093. #: searx/templates/simple/result_templates/packages.html:36
  1094. msgid "Popularity"
  1095. msgstr "人気度"
  1096. #: searx/templates/simple/result_templates/packages.html:42
  1097. msgid "License"
  1098. msgstr "ライセンス"
  1099. #: searx/templates/simple/result_templates/packages.html:52
  1100. msgid "Project"
  1101. msgstr "プロジェクト"
  1102. #: searx/templates/simple/result_templates/packages.html:55
  1103. msgid "Project homepage"
  1104. msgstr "プロジェクトホームページ"
  1105. #: searx/templates/simple/result_templates/paper.html:5
  1106. msgid "Published date"
  1107. msgstr "公開日"
  1108. #: searx/templates/simple/result_templates/paper.html:9
  1109. msgid "Journal"
  1110. msgstr "刊行物"
  1111. #: searx/templates/simple/result_templates/paper.html:22
  1112. msgid "Editor"
  1113. msgstr "編集者"
  1114. #: searx/templates/simple/result_templates/paper.html:23
  1115. msgid "Publisher"
  1116. msgstr "発行者"
  1117. #: searx/templates/simple/result_templates/paper.html:26
  1118. msgid "DOI"
  1119. msgstr "DOI"
  1120. #: searx/templates/simple/result_templates/paper.html:27
  1121. msgid "ISSN"
  1122. msgstr "ISSN"
  1123. #: searx/templates/simple/result_templates/paper.html:28
  1124. msgid "ISBN"
  1125. msgstr "ISBN"
  1126. #: searx/templates/simple/result_templates/paper.html:33
  1127. msgid "PDF"
  1128. msgstr "PDF"
  1129. #: searx/templates/simple/result_templates/paper.html:34
  1130. msgid "HTML"
  1131. msgstr "HTML"
  1132. #: searx/templates/simple/result_templates/torrent.html:6
  1133. msgid "magnet link"
  1134. msgstr "マグネットリンク"
  1135. #: searx/templates/simple/result_templates/torrent.html:7
  1136. msgid "torrent file"
  1137. msgstr "トレントファイル"
  1138. #: searx/templates/simple/result_templates/torrent.html:9
  1139. msgid "Seeder"
  1140. msgstr "シーダー"
  1141. #: searx/templates/simple/result_templates/torrent.html:9
  1142. msgid "Leecher"
  1143. msgstr "リーチャー"
  1144. #: searx/templates/simple/result_templates/torrent.html:13
  1145. msgid "Number of Files"
  1146. msgstr "ファイル数"
  1147. #: searx/templates/simple/result_templates/videos.html:6
  1148. msgid "show video"
  1149. msgstr "動画を表示する"
  1150. #: searx/templates/simple/result_templates/videos.html:6
  1151. msgid "hide video"
  1152. msgstr "動画を隠す"
  1153. #~ msgid "Engine time (sec)"
  1154. #~ msgstr "検索時間 (秒)"
  1155. #~ msgid "Page loads (sec)"
  1156. #~ msgstr "ページ読み込み時間 (秒)"
  1157. #~ msgid "Errors"
  1158. #~ msgstr "エラー"
  1159. #~ msgid "CAPTCHA required"
  1160. #~ msgstr ""
  1161. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1162. #~ msgstr "可能ならば HTTP リンクを HTTPS リンクに書き換える"
  1163. #~ msgid ""
  1164. #~ "Results are opened in the same "
  1165. #~ "window by default. This plugin "
  1166. #~ "overwrites the default behaviour to open"
  1167. #~ " links on new tabs/windows. (JavaScript "
  1168. #~ "required)"
  1169. #~ msgstr ""
  1170. #~ "デフォルトでは結果は同じウィンドウで開きます。このプラグインはデフォルトの動作を書き換えて新しいタブ/ウィンドウで開くようにします。(JavaScript"
  1171. #~ " が必要です)"
  1172. #~ msgid "Color"
  1173. #~ msgstr "色"
  1174. #~ msgid "Blue (default)"
  1175. #~ msgstr "青 (初期設定)"
  1176. #~ msgid "Violet"
  1177. #~ msgstr "紫"
  1178. #~ msgid "Green"
  1179. #~ msgstr "緑"
  1180. #~ msgid "Cyan"
  1181. #~ msgstr "シアン"
  1182. #~ msgid "Orange"
  1183. #~ msgstr "オレンジ"
  1184. #~ msgid "Red"
  1185. #~ msgstr "赤"
  1186. #~ msgid "Category"
  1187. #~ msgstr "カテゴリー"
  1188. #~ msgid "Block"
  1189. #~ msgstr "禁止する"
  1190. #~ msgid "original context"
  1191. #~ msgstr "元の文脈"
  1192. #~ msgid "Plugins"
  1193. #~ msgstr "プラグイン"
  1194. #~ msgid "Answerers"
  1195. #~ msgstr "回答者"
  1196. #~ msgid "Avg. time"
  1197. #~ msgstr "平均時間"
  1198. #~ msgid "show details"
  1199. #~ msgstr "詳細を表示する"
  1200. #~ msgid "hide details"
  1201. #~ msgstr "詳細を隠す"
  1202. #~ msgid "Load more..."
  1203. #~ msgstr "もっと見る…"
  1204. #~ msgid "Loading..."
  1205. #~ msgstr ""
  1206. #~ msgid "Change searx layout"
  1207. #~ msgstr "Searx のレイアウトの変更"
  1208. #~ msgid "Proxying image results through searx"
  1209. #~ msgstr "画像検索結果を searx でプロキシする"
  1210. #~ msgid "This is the list of searx's instant answering modules."
  1211. #~ msgstr "これは searx の即席回答モジュールのリストです。"
  1212. #~ msgid ""
  1213. #~ "This is the list of cookies and"
  1214. #~ " their values searx is storing on "
  1215. #~ "your computer."
  1216. #~ msgstr "これはクッキーのリストで、これらの値はあなたのコンピュータに保存されています。"
  1217. #~ msgid "With that list, you can assess searx transparency."
  1218. #~ msgstr "このリストによって、あなたは searx の透明性を評価できます。"
  1219. #~ msgid "It look like you are using searx first time."
  1220. #~ msgstr "Searxを使うのは初めてようですね。"
  1221. #~ msgid "Please, try again later or find another searx instance."
  1222. #~ msgstr "後でやり直すか、別の searx インスタンスを探して下さい。"
  1223. #~ msgid "Themes"
  1224. #~ msgstr "テーマ"
  1225. #~ msgid "Reliablity"
  1226. #~ msgstr ""
  1227. #~ msgid ""
  1228. #~ "When enabled, the result page's title"
  1229. #~ " contains your query. Your browser "
  1230. #~ "can record this title."
  1231. #~ msgstr ""
  1232. #~ msgid "Method"
  1233. #~ msgstr "方法"
  1234. #~ msgid ""
  1235. #~ "This tab does not show up for "
  1236. #~ "search results but you can search "
  1237. #~ "the engines listed here via bangs."
  1238. #~ msgstr ""
  1239. #~ msgid "Advanced settings"
  1240. #~ msgstr "詳細設定"
  1241. #~ msgid "Close"
  1242. #~ msgstr "閉じる"
  1243. #~ msgid "Language"
  1244. #~ msgstr "言語"
  1245. #~ msgid "broken"
  1246. #~ msgstr "起動不可"
  1247. #~ msgid "supported"
  1248. #~ msgstr "サポート"
  1249. #~ msgid "not supported"
  1250. #~ msgstr "未サポート"
  1251. #~ msgid "about"
  1252. #~ msgstr "このサイトについて"
  1253. #~ msgid "Avg."
  1254. #~ msgstr "平均"
  1255. #~ msgid "User Interface"
  1256. #~ msgstr "ユーザーインタフェース"
  1257. #~ msgid "Choose style for this theme"
  1258. #~ msgstr "このテーマのスタイルを選択"
  1259. #~ msgid "Style"
  1260. #~ msgstr "スタイル"
  1261. #~ msgid "Show advanced settings"
  1262. #~ msgstr "詳細設定を表示"
  1263. #~ msgid "Show advanced settings panel in the home page by default"
  1264. #~ msgstr "デフォルトでホームページで詳細設定を表示する"
  1265. #~ msgid "Allow all"
  1266. #~ msgstr "すべて許可"
  1267. #~ msgid "Disable all"
  1268. #~ msgstr "すべて無効"
  1269. #~ msgid "Selected language"
  1270. #~ msgstr "選択された言語"
  1271. #~ msgid "Query"
  1272. #~ msgstr "クエリ"
  1273. #~ msgid "save"
  1274. #~ msgstr "保存"
  1275. #~ msgid "back"
  1276. #~ msgstr "戻る"
  1277. #~ msgid "Links"
  1278. #~ msgstr "リンク"
  1279. #~ msgid "RSS subscription"
  1280. #~ msgstr "RSS登録"
  1281. #~ msgid "Search results"
  1282. #~ msgstr "検索結果"
  1283. #~ msgid "next page"
  1284. #~ msgstr "次のページ"
  1285. #~ msgid "previous page"
  1286. #~ msgstr "前のページ"
  1287. #~ msgid "Start search"
  1288. #~ msgstr "検索を開始"
  1289. #~ msgid "Clear search"
  1290. #~ msgstr "探索を消す"
  1291. #~ msgid "Clear"
  1292. #~ msgstr "消す"
  1293. #~ msgid "stats"
  1294. #~ msgstr "統計"
  1295. #~ msgid "Heads up!"
  1296. #~ msgstr "気をつけて!"
  1297. #~ msgid "It look like you are using SearXNG first time."
  1298. #~ msgstr "SearXNG を初めてお使いになるようですね。"
  1299. #~ msgid "Well done!"
  1300. #~ msgstr "あっぱれ!"
  1301. #~ msgid "Settings saved successfully."
  1302. #~ msgstr "設定の保存に成功しました。"
  1303. #~ msgid "Oh snap!"
  1304. #~ msgstr "おっと!"
  1305. #~ msgid "Something went wrong."
  1306. #~ msgstr "なにか問題が起こっているようです。"
  1307. #~ msgid "Date"
  1308. #~ msgstr "日付"
  1309. #~ msgid "Type"
  1310. #~ msgstr "タイプ"
  1311. #~ msgid "Get image"
  1312. #~ msgstr "画像を取得する"
  1313. #~ msgid "Center Alignment"
  1314. #~ msgstr ""
  1315. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1316. #~ msgstr ""
  1317. #~ msgid "preferences"
  1318. #~ msgstr "設定"
  1319. #~ msgid "Scores per result"
  1320. #~ msgstr "検索結果当たりスコア"
  1321. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1322. #~ msgstr "プライバシー保護を重視した、ハッカブルなメタ検索エンジン"
  1323. #~ msgid "No abstract is available for this publication."
  1324. #~ msgstr "この出版物には要約がありません。"
  1325. #~ msgid "Self Informations"
  1326. #~ msgstr "自分の情報"
  1327. #~ msgid ""
  1328. #~ "Change how forms are submited, <a "
  1329. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1330. #~ " rel=\"external\">learn more about request "
  1331. #~ "methods</a>"
  1332. #~ msgstr ""
  1333. #~ "フォームの送信方法を変更します。<a "
  1334. #~ "href=\"https://ja.wikipedia.org/wiki/Hypertext_Transfer_Protocol#リクエストメソッド\""
  1335. #~ " rel=\"external\">リクエストメソッドってなに?</a>"
  1336. #~ msgid ""
  1337. #~ "This plugin checks if the address "
  1338. #~ "of the request is a TOR exit "
  1339. #~ "node, and informs the user if it"
  1340. #~ " is, like check.torproject.org but from "
  1341. #~ "searxng."
  1342. #~ msgstr ""
  1343. #~ "このプラグインはsearxngからTOR exit node "
  1344. #~ "にアドレスを要求したとき、check.torproject.orgサイトのように、ユーザーに通知します。"
  1345. #~ msgid ""
  1346. #~ "The TOR exit node list "
  1347. #~ "(https://check.torproject.org/exit-addresses) is "
  1348. #~ "unreachable."
  1349. #~ msgstr ""
  1350. #~ "TOR exit node のリスト(https://check.torproject.org"
  1351. #~ "/exit-addresses)に到達できません。"
  1352. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1353. #~ msgstr "TORを利用しています。あなたのIPアドレスはここから来ていると思われます : {ip_address}."
  1354. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1355. #~ msgstr "TORを利用していません。あなたのIPアドレスはここから来ていると思われます: {ip_address}."
  1356. #~ msgid ""
  1357. #~ "The could not download the list of"
  1358. #~ " Tor exit-nodes from "
  1359. #~ "https://check.torproject.org/exit-addresses."
  1360. #~ msgstr ""
  1361. #~ msgid ""
  1362. #~ "You are using Tor. It looks like"
  1363. #~ " you have this external IP address:"
  1364. #~ " {ip_address}."
  1365. #~ msgstr ""
  1366. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1367. #~ msgstr ""
  1368. #~ msgid "Autodetect search language"
  1369. #~ msgstr "検索言語自動検出"
  1370. #~ msgid "Automatically detect the query search language and switch to it."
  1371. #~ msgstr "検索言語の自動検出と切り替えを実施。"
  1372. #~ msgid "others"
  1373. #~ msgstr "その他"
  1374. #~ msgid ""
  1375. #~ "This tab does not show up for "
  1376. #~ "search results, but you can search "
  1377. #~ "the engines listed here via bangs."
  1378. #~ msgstr "このタブは検索結果には表示されませんが、ここにリストされているエンジンをbangで検索できます。"
  1379. #~ msgid "Shortcut"
  1380. #~ msgstr "ショートカット"
  1381. #~ msgid "!bang"
  1382. #~ msgstr ""
  1383. #~ msgid ""
  1384. #~ "This tab dues not exists in the"
  1385. #~ " user interface, but you can search"
  1386. #~ " in these engines by its !bangs."
  1387. #~ msgstr "インタフェースやタブの中にはないが、!bangを使うことで検索エンジンとして利用できる。"
  1388. #~ msgid "Engines cannot retrieve results."
  1389. #~ msgstr "エンジンは結果を取得できません。"
  1390. #~ msgid "Please, try again later or find another SearXNG instance."
  1391. #~ msgstr "後でやり直すか、別の SearXNG インスタンスを試してみて下さい。"
  1392. #~ msgid ""
  1393. #~ "Redirect to open-access versions of "
  1394. #~ "publications when available (plugin required)"
  1395. #~ msgstr "利用可能な場合(プラグインが必要)、オープンアクセス版の出版物にリダイレクトする"
  1396. #~ msgid "Bang"
  1397. #~ msgstr "Bang"
  1398. #~ msgid ""
  1399. #~ "Change how forms are submitted, <a "
  1400. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1401. #~ " rel=\"external\">learn more about request "
  1402. #~ "methods</a>"
  1403. #~ msgstr ""
  1404. #~ "フォームの送信方法を変更します。<a "
  1405. #~ "href=\"https://ja.wikipedia.org/wiki/Hypertext_Transfer_Protocol#リクエストメソッド\""
  1406. #~ " rel=\"external\">リクエストメソッドってなに?</a>"
  1407. #~ msgid "On"
  1408. #~ msgstr "有効"
  1409. #~ msgid "Off"
  1410. #~ msgstr "無効"
  1411. #~ msgid "Enabled"
  1412. #~ msgstr "有効"
  1413. #~ msgid "Disabled"
  1414. #~ msgstr "無効"
  1415. #~ msgid ""
  1416. #~ "Perform search immediately if a category"
  1417. #~ " selected. Disable to select multiple "
  1418. #~ "categories. (JavaScript required)"
  1419. #~ msgstr "カテゴリが選択されたときに検索を実行します。複数のカテゴリを選択する場合は無効にします。(JavaScript が必要です)"
  1420. #~ msgid "Vim-like hotkeys"
  1421. #~ msgstr "Vim 風のホットキー"
  1422. #~ msgid ""
  1423. #~ "Navigate search results with Vim-like"
  1424. #~ " hotkeys (JavaScript required). Press \"h\""
  1425. #~ " key on main or result page to"
  1426. #~ " get help."
  1427. #~ msgstr ""
  1428. #~ "検索結果をVim 風のホットキーで操作します(JavaScript が必要)。メインページまたは検索結果ページで"
  1429. #~ " \"h\" キーを押してヘルプを表示します。"
  1430. #~ msgid ""
  1431. #~ "we didn't find any results. Please "
  1432. #~ "use another query or search in "
  1433. #~ "more categories."
  1434. #~ msgstr "検索結果はありませんでした。別のカテゴリ、または他のクエリで検索してください。"
  1435. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1436. #~ msgstr "結果のホスト名を書き換えるか、ホスト名に基づいて結果を削除します"
  1437. #~ msgid "Bytes"
  1438. #~ msgstr "バイト"
  1439. #~ msgid "kiB"
  1440. #~ msgstr "キロバイト"
  1441. #~ msgid "MiB"
  1442. #~ msgstr "メガバイト"
  1443. #~ msgid "GiB"
  1444. #~ msgstr "ギガバイト"
  1445. #~ msgid "TiB"
  1446. #~ msgstr "テラバイト"