| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920 | # Japanese translations for .# Copyright (C) 2020 ORGANIZATION# This file is distributed under the same license as the  project.## Translators:# Akio Nishimura <akionux@gmail.com>, 2016-2018# Thomas Pointhuber, 2014-2015# FIRST AUTHOR <EMAIL@ADDRESS>, 2014,2016# KAWASAKI ICHIRO, 2020# Lucas Phillips <mail@lep.pw>, 2015# Max <theshirinzu@gmail.com>, 2015# Nobuhiro Iwamatsu <iwamatsu@nigauri.org>, 2018# pointhi, 2014# Thomas Pointhuber, 2015-2016# tents <remendne@pentrens.jp>, 2022.# Markus Heiser <markus.heiser@darmarit.de>, 2022.# tentsbet <remendne@pentrens.jp>, 2023, 2024.# return42 <markus.heiser@darmarit.de>, 2023, 2024.# nogb <u8cn71wq@yogibo.anonaddy.me>, 2023.# eownerdead <wlpx0yii@anonaddy.me>, 2024.# syobon <syobon@syobon.net>, 2024.# tentsbet <tentsbet@users.noreply.translate.codeberg.org>, 2024.# return42 <return42@users.noreply.translate.codeberg.org>, 2024.msgid ""msgstr """Project-Id-Version:  searx\n""Report-Msgid-Bugs-To: EMAIL@ADDRESS\n""POT-Creation-Date: 2024-10-05 06:24+0000\n""PO-Revision-Date: 2024-09-23 01:18+0000\n""Last-Translator: tentsbet <tentsbet@users.noreply.translate.codeberg.org>""\n""Language: ja\n""Language-Team: Japanese ""<https://translate.codeberg.org/projects/searxng/searxng/ja/>\n""Plural-Forms: nplurals=1; plural=0;\n""MIME-Version: 1.0\n""Content-Type: text/plain; charset=utf-8\n""Content-Transfer-Encoding: 8bit\n""Generated-By: Babel 2.16.0\n"#. CONSTANT_NAMES['NO_SUBGROUPING']#: searx/searxng.msgmsgid "without further subgrouping"msgstr "未グループ"#. CONSTANT_NAMES['DEFAULT_CATEGORY']#: searx/searxng.msgmsgid "other"msgstr "その他"#. CATEGORY_NAMES['FILES']#: searx/searxng.msgmsgid "files"msgstr "ファイル"#. CATEGORY_NAMES['GENERAL']#: searx/searxng.msgmsgid "general"msgstr "一般"#. CATEGORY_NAMES['MUSIC']#: searx/searxng.msgmsgid "music"msgstr "音楽"#. CATEGORY_NAMES['SOCIAL_MEDIA']#: searx/searxng.msgmsgid "social media"msgstr "ソーシャルメディア"#. CATEGORY_NAMES['IMAGES']#: searx/searxng.msgmsgid "images"msgstr "画像"#. CATEGORY_NAMES['VIDEOS']#: searx/searxng.msgmsgid "videos"msgstr "動画"#. CATEGORY_NAMES['RADIO']#: searx/engines/radio_browser.py:103 searx/searxng.msgmsgid "radio"msgstr "ラジオ"#. CATEGORY_NAMES['TV']#: searx/searxng.msgmsgid "tv"msgstr "テレビ"#. CATEGORY_NAMES['IT']#: searx/searxng.msgmsgid "it"msgstr "情報技術"#. CATEGORY_NAMES['NEWS']#: searx/searxng.msgmsgid "news"msgstr "ニュース"#. CATEGORY_NAMES['MAP']#: searx/searxng.msgmsgid "map"msgstr "地図"#. CATEGORY_NAMES['ONIONS']#: searx/searxng.msgmsgid "onions"msgstr "Tor"#. CATEGORY_NAMES['SCIENCE']#: searx/searxng.msgmsgid "science"msgstr "科学"#. CATEGORY_GROUPS['APPS']#: searx/searxng.msgmsgid "apps"msgstr "アプリ"#. CATEGORY_GROUPS['DICTIONARIES']#: searx/searxng.msgmsgid "dictionaries"msgstr "辞書"#. CATEGORY_GROUPS['LYRICS']#: searx/searxng.msgmsgid "lyrics"msgstr "歌詞"#. CATEGORY_GROUPS['PACKAGES']#: searx/searxng.msgmsgid "packages"msgstr "パッケージ"#. CATEGORY_GROUPS['Q_A']#: searx/searxng.msgmsgid "q&a"msgstr "Q&A"#. CATEGORY_GROUPS['REPOS']#: searx/searxng.msgmsgid "repos"msgstr "リポジトリ"#. CATEGORY_GROUPS['SOFTWARE_WIKIS']#: searx/searxng.msgmsgid "software wikis"msgstr "ソフトウェアWiki"#. CATEGORY_GROUPS['WEB']#: searx/searxng.msgmsgid "web"msgstr "ウェブ"#. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']#: searx/searxng.msgmsgid "scientific publications"msgstr "科学的な出版物"#. STYLE_NAMES['AUTO']#: searx/searxng.msgmsgid "auto"msgstr "自動"#. STYLE_NAMES['LIGHT']#: searx/searxng.msgmsgid "light"msgstr "ライト"#. STYLE_NAMES['DARK']#: searx/searxng.msgmsgid "dark"msgstr "ダーク"#. STYLE_NAMES['BLACK']#: searx/searxng.msgmsgid "black"msgstr ""#. BRAND_CUSTOM_LINKS['UPTIME']#: searx/searxng.msgmsgid "Uptime"msgstr "稼働時間"#. BRAND_CUSTOM_LINKS['ABOUT']#: searx/searxng.msg searx/templates/simple/base.html:50msgid "About"msgstr "関連情報"#. WEATHER_TERMS['AVERAGE TEMP.']#: searx/engines/wttr.py:32 searx/searxng.msgmsgid "Average temp."msgstr "平均気温."#. WEATHER_TERMS['CLOUD COVER']#: searx/engines/open_meteo.py:91 searx/searxng.msgmsgid "Cloud cover"msgstr "曇り"#. WEATHER_TERMS['CONDITION']#: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51#: searx/searxng.msgmsgid "Condition"msgstr "天気"#. WEATHER_TERMS['CURRENT CONDITION']#: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104#: searx/searxng.msgmsgid "Current condition"msgstr "現在の天気"#. WEATHER_TERMS['EVENING']#: searx/engines/wttr.py:100 searx/searxng.msgmsgid "Evening"msgstr "夕方"#. WEATHER_TERMS['FEELS LIKE']#: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81#: searx/engines/wttr.py:59 searx/searxng.msgmsgid "Feels like"msgstr "体感"#. WEATHER_TERMS['HUMIDITY']#: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93#: searx/engines/wttr.py:68 searx/searxng.msgmsgid "Humidity"msgstr "湿度"#. WEATHER_TERMS['MAX TEMP.']#: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34#: searx/searxng.msgmsgid "Max temp."msgstr "最高気温."#. WEATHER_TERMS['MIN TEMP.']#: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33#: searx/searxng.msgmsgid "Min temp."msgstr "最低気温."#. WEATHER_TERMS['MORNING']#: searx/engines/wttr.py:100 searx/searxng.msgmsgid "Morning"msgstr "朝"#. WEATHER_TERMS['NIGHT']#: searx/engines/wttr.py:100 searx/searxng.msgmsgid "Night"msgstr "夜間"#. WEATHER_TERMS['NOON']#: searx/engines/wttr.py:100 searx/searxng.msgmsgid "Noon"msgstr "昼"#. WEATHER_TERMS['PRESSURE']#: searx/engines/open_meteo.py:95 searx/searxng.msgmsgid "Pressure"msgstr "気圧"#. WEATHER_TERMS['SUNRISE']#: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36#: searx/searxng.msgmsgid "Sunrise"msgstr "日の出"#. WEATHER_TERMS['SUNSET']#: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37#: searx/searxng.msgmsgid "Sunset"msgstr "日の入り"#. WEATHER_TERMS['TEMPERATURE']#: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76#: searx/engines/wttr.py:55 searx/searxng.msgmsgid "Temperature"msgstr "気温"#. WEATHER_TERMS['UV INDEX']#: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35#: searx/searxng.msgmsgid "UV index"msgstr "UV指数"#. WEATHER_TERMS['VISIBILITY']#: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66#: searx/searxng.msgmsgid "Visibility"msgstr "視界"#. WEATHER_TERMS['WIND']#: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86#: searx/engines/wttr.py:62 searx/searxng.msgmsgid "Wind"msgstr "風速"#. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']#: searx/engines/lemmy.py:85 searx/searxng.msgmsgid "subscribers"msgstr "サブスクライバー"#. SOCIAL_MEDIA_TERMS['POSTS']#: searx/engines/lemmy.py:86 searx/searxng.msgmsgid "posts"msgstr "投稿"#. SOCIAL_MEDIA_TERMS['ACTIVE USERS']#: searx/engines/lemmy.py:87 searx/searxng.msgmsgid "active users"msgstr "アクティブユーザー"#. SOCIAL_MEDIA_TERMS['COMMENTS']#: searx/engines/discourse.py:157 searx/engines/hackernews.py:78#: searx/engines/lemmy.py:130 searx/searxng.msgmsgid "comments"msgstr "コメント"#. SOCIAL_MEDIA_TERMS['USER']#: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msgmsgid "user"msgstr "ユーザー"#. SOCIAL_MEDIA_TERMS['COMMUNITY']#: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msgmsgid "community"msgstr "コミュニティ"#. SOCIAL_MEDIA_TERMS['POINTS']#: searx/engines/hackernews.py:78 searx/searxng.msgmsgid "points"msgstr "ポイント"#. SOCIAL_MEDIA_TERMS['TITLE']#: searx/searxng.msgmsgid "title"msgstr "タイトル"#. SOCIAL_MEDIA_TERMS['AUTHOR']#: searx/engines/hackernews.py:81 searx/searxng.msgmsgid "author"msgstr "作"#. SOCIAL_MEDIA_TERMS['THREAD OPEN']#: searx/engines/discourse.py:149 searx/searxng.msgmsgid "open"msgstr "オープン"#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']#: searx/engines/discourse.py:149 searx/searxng.msgmsgid "closed"msgstr "クローズ"#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']#: searx/engines/discourse.py:160 searx/searxng.msgmsgid "answered"msgstr "回答"#: searx/webapp.py:332msgid "No item found"msgstr "アイテムが見つかりません"#: searx/engines/qwant.py:288#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334msgid "Source"msgstr "ソース"#: searx/webapp.py:336msgid "Error loading the next page"msgstr "次のページの読み込み中にエラーが発生しました"#: searx/webapp.py:495 searx/webapp.py:898msgid "Invalid settings, please edit your preferences"msgstr "設定が無効です、設定を変更してください"#: searx/webapp.py:511msgid "Invalid settings"msgstr "無効な設定です"#: searx/webapp.py:588 searx/webapp.py:670msgid "search error"msgstr "検索エラー"#: searx/webutils.py:36msgid "timeout"msgstr "タイムアウト"#: searx/webutils.py:37msgid "parsing error"msgstr "解析エラー"#: searx/webutils.py:38msgid "HTTP protocol error"msgstr "HTTP プロトコルエラー"#: searx/webutils.py:39msgid "network error"msgstr "ネットワークエラー"#: searx/webutils.py:40msgid "SSL error: certificate validation has failed"msgstr "SSL エラー: 証明書の検証に失敗しました"#: searx/webutils.py:42msgid "unexpected crash"msgstr "予期しないクラッシュ"#: searx/webutils.py:49msgid "HTTP error"msgstr "HTTP エラー"#: searx/webutils.py:50msgid "HTTP connection error"msgstr "HTTP 接続エラー"#: searx/webutils.py:56msgid "proxy error"msgstr "プロキシエラー"#: searx/webutils.py:57msgid "CAPTCHA"msgstr "CAPTCHA"#: searx/webutils.py:58msgid "too many requests"msgstr "リクエストが多すぎます"#: searx/webutils.py:59msgid "access denied"msgstr "アクセスが拒否されました"#: searx/webutils.py:60msgid "server API error"msgstr "サーバー API エラー"#: searx/webutils.py:79msgid "Suspended"msgstr "一時停止"#: searx/webutils.py:314msgid "{minutes} minute(s) ago"msgstr "{minutes} 分前"#: searx/webutils.py:315msgid "{hours} hour(s), {minutes} minute(s) ago"msgstr "{hours} 時間と{minutes} 分前"#: searx/answerers/random/answerer.py:76msgid "Random value generator"msgstr "ランダムな値を生成"#: searx/answerers/random/answerer.py:77msgid "Generate different random values"msgstr "異なるランダムな値を生成する"#: searx/answerers/statistics/answerer.py:50msgid "Statistics functions"msgstr "統計機能"#: searx/answerers/statistics/answerer.py:51msgid "Compute {functions} of the arguments"msgstr "変数の {functions} を計算する"#: searx/engines/mozhi.py:57msgid "Synonyms"msgstr ""#: searx/engines/openstreetmap.py:159msgid "Get directions"msgstr "経路を取得する"#: searx/engines/pdbe.py:96msgid "{title} (OBSOLETE)"msgstr "{title} (廃止)"#: searx/engines/pdbe.py:103msgid "This entry has been superseded by"msgstr "このエントリは、置き換えられました:"#: searx/engines/qwant.py:290msgid "Channel"msgstr "チャンネル"#: searx/engines/radio_browser.py:105msgid "bitrate"msgstr "ビットレート"#: searx/engines/radio_browser.py:106msgid "votes"msgstr "票数"#: searx/engines/radio_browser.py:107msgid "clicks"msgstr "クリック"#: searx/engines/seekr.py:193 searx/engines/yummly.py:71#: searx/engines/zlibrary.py:137msgid "Language"msgstr "言語"#: searx/engines/semantic_scholar.py:78msgid """{numCitations} citations from the year {firstCitationVelocityYear} to ""{lastCitationVelocityYear}"msgstr """{firstCitationVelocityYear} 年から ""{lastCitationVelocityYear}年まで{numCitations} が引用文献として"#: searx/engines/tineye.py:45msgid """Could not read that image url. This may be due to an unsupported file ""format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"" WebP."msgstr "この画像URLは読み取ることができません。サポートされていないフォーマットだと考えられます。TinEyeはJPEG、PNG、GIF、BMP、TIFF、WebPの画像のみサポートしています。"#: searx/engines/tineye.py:51msgid """The image is too simple to find matches. TinEye requires a basic level of"" visual detail to successfully identify matches."msgstr "画像が単純すぎます。TinEyeが正しく照合を行うにはある程度詳細な視覚情報が必要です。"#: searx/engines/tineye.py:57msgid "The image could not be downloaded."msgstr "この画像はダウンロードはできません。"#: searx/engines/zlibrary.py:138msgid "Book rating"msgstr "書籍評価点数"#: searx/engines/zlibrary.py:139msgid "File quality"msgstr "ファイル品質"#: searx/plugins/calculator.py:14msgid "Calculate mathematical expressions via the search bar"msgstr "検索バーで数式を計算"#: searx/plugins/hash_plugin.py:10msgid "Converts strings to different hash digests."msgstr "文字列を異なるハッシュダイジェストに変換。"#: searx/plugins/hash_plugin.py:38msgid "hash digest"msgstr "ハッシュダイジェスト"#: searx/plugins/hostnames.py:103msgid "Hostnames plugin"msgstr "ホスト名プラグイン"#: searx/plugins/hostnames.py:104msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"msgstr "検索結果からこのホスト名を基に削除もしくは優先的に書き換えを行う"#: searx/plugins/oa_doi_rewrite.py:12msgid "Open Access DOI rewrite"msgstr "オープンアクセス DOI の書き換え"#: searx/plugins/oa_doi_rewrite.py:13msgid """Avoid paywalls by redirecting to open-access versions of publications ""when available"msgstr "可能ならば オープンアクセス版の出版物へリダイレクトし、有料出版物を回避する"#: searx/plugins/self_info.py:9msgid "Self Information"msgstr "自分の情報"#: searx/plugins/self_info.py:10msgid """Displays your IP if the query is \"ip\" and your user agent if the query ""contains \"user agent\"."msgstr "クエリが \"ip\" の場合にあなたのIPを、クエリに \"user agent\" が含まれる場合にあなたのユーザーエージェントを表示します。"#: searx/plugins/self_info.py:28msgid "Your IP is: "msgstr "あなたのIPは: "#: searx/plugins/self_info.py:31msgid "Your user-agent is: "msgstr "あなたのユーザーエージェントは: "#: searx/plugins/tor_check.py:24msgid "Tor check plugin"msgstr "Tor 確認プラグイン"#: searx/plugins/tor_check.py:27msgid """This plugin checks if the address of the request is a Tor exit-node, and ""informs the user if it is; like check.torproject.org, but from SearXNG."msgstr "このプラグインではcheck.torprogject.orgのようにTor 出口ノードのIPアドレスをSearXNGからチェックする。"#: searx/plugins/tor_check.py:61msgid """Could not download the list of Tor exit-nodes from: ""https://check.torproject.org/exit-addresses"msgstr "「https://check.torproject.org/exit-addresses」からTor 出口ノードの一覧をダウンロードできません"#: searx/plugins/tor_check.py:77msgid """You are using Tor and it looks like you have this external IP address: ""{ip_address}"msgstr "あなたの利用しているTorの外部IPアドレスは次のようになっている : {ip_address}"#: searx/plugins/tor_check.py:85msgid "You are not using Tor and you have this external IP address: {ip_address}"msgstr "あなたはTorを利用しておらず外部IPアドレスは次のようになっている : {ip_address}"#: searx/plugins/tracker_url_remover.py:16msgid "Tracker URL remover"msgstr "トラッカー URL リムーバー"#: searx/plugins/tracker_url_remover.py:17msgid "Remove trackers arguments from the returned URL"msgstr "返された URL からトラッカー引数を消去する"#: searx/plugins/unit_converter.py:29msgid "Convert between units"msgstr "単位を変換"#: searx/templates/simple/404.html:4msgid "Page not found"msgstr "ページが見つかりません"#: searx/templates/simple/404.html:6#, python-formatmsgid "Go to %(search_page)s."msgstr "%(search_page)s へ行く。"#: searx/templates/simple/404.html:6msgid "search page"msgstr "検索ページ"#: searx/templates/simple/base.html:54msgid "Donate"msgstr "寄付"#: searx/templates/simple/base.html:58#: searx/templates/simple/preferences.html:156msgid "Preferences"msgstr "設定"#: searx/templates/simple/base.html:68msgid "Powered by"msgstr "Powered by"#: searx/templates/simple/base.html:68msgid "a privacy-respecting, open metasearch engine"msgstr "プライバシーを尊重する、オープンメタ検索エンジン"#: searx/templates/simple/base.html:69#: searx/templates/simple/result_templates/packages.html:59msgid "Source code"msgstr "ソースコード"#: searx/templates/simple/base.html:70msgid "Issue tracker"msgstr "課題報告"#: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18msgid "Engine stats"msgstr "検索エンジンの状態"#: searx/templates/simple/base.html:73msgid "Public instances"msgstr "パブリック インスタンス"#: searx/templates/simple/base.html:76msgid "Privacy policy"msgstr "プライバシーポリシー"#: searx/templates/simple/base.html:79msgid "Contact instance maintainer"msgstr "インスタンスメンテナと連絡を取る"#: searx/templates/simple/categories.html:26msgid "Click on the magnifier to perform search"msgstr "虫めがねをクリックして検索します"#: searx/templates/simple/macros.html:40msgid "Length"msgstr "長さ"#: searx/templates/simple/macros.html:41msgid "Views"msgstr "閲覧数"#: searx/templates/simple/macros.html:42#: searx/templates/simple/result_templates/files.html:34#: searx/templates/simple/result_templates/images.html:19#: searx/templates/simple/result_templates/paper.html:6msgid "Author"msgstr "作者"#: searx/templates/simple/macros.html:50msgid "cached"msgstr "キャッシュ"#: searx/templates/simple/macros.html:50msgid "proxied"msgstr "プロキシ"#: searx/templates/simple/new_issue.html:64msgid "Start submiting a new issue on GitHub"msgstr "Githubへ新しい課題の提出をする"#: searx/templates/simple/new_issue.html:66msgid "Please check for existing bugs about this engine on GitHub"msgstr "Githubで、すでにこの件が出ていないか確認をしてください"#: searx/templates/simple/new_issue.html:69msgid "I confirm there is no existing bug about the issue I encounter"msgstr "発生している問題がすでに提出済みのバグ出ないことを確認してください"#: searx/templates/simple/new_issue.html:71msgid "If this is a public instance, please specify the URL in the bug report"msgstr "パブリックインスタンスなら、このURLにバグの報告をしてください"#: searx/templates/simple/new_issue.html:72msgid "Submit a new issue on Github including the above information"msgstr "Githubで情報を含めて新たな問題を提起"#: searx/templates/simple/preferences.html:65msgid "No HTTPS"msgstr "No HTTPS"#: searx/templates/simple/elements/engines_msg.html:14#: searx/templates/simple/preferences.html:69#: searx/templates/simple/preferences.html:70msgid "View error logs and submit a bug report"msgstr "エラーログを表示し、バグレポートを送信します"#: searx/templates/simple/preferences.html:74msgid "!bang for this engine"msgstr "当検索エンジンの!bang"#: searx/templates/simple/preferences.html:80msgid "!bang for its categories"msgstr "そのカテゴリの!bang"#: searx/templates/simple/preferences.html:102#: searx/templates/simple/stats.html:64msgid "Median"msgstr "中央値"#: searx/templates/simple/preferences.html:103#: searx/templates/simple/stats.html:70msgid "P80"msgstr "P80"#: searx/templates/simple/preferences.html:104#: searx/templates/simple/stats.html:76msgid "P95"msgstr "P95"#: searx/templates/simple/preferences.html:136msgid "Failed checker test(s): "msgstr "失敗したチェッカーテスト: "#: searx/templates/simple/preferences.html:138msgid "Errors:"msgstr "エラー:"#: searx/templates/simple/preferences.html:162msgid "General"msgstr "一般"#: searx/templates/simple/preferences.html:165msgid "Default categories"msgstr "デフォルトのカテゴリ"#: searx/templates/simple/preferences.html:190msgid "User interface"msgstr "ユーザーインターフェース"#: searx/templates/simple/preferences.html:211msgid "Privacy"msgstr "プライバシー"#: searx/templates/simple/preferences.html:224msgid "Engines"msgstr "検索エンジン"#: searx/templates/simple/preferences.html:226msgid "Currently used search engines"msgstr "現在使用中の検索エンジン"#: searx/templates/simple/preferences.html:234msgid "Special Queries"msgstr "特殊クエリー"#: searx/templates/simple/preferences.html:240msgid "Cookies"msgstr "クッキー"#: searx/templates/simple/results.html:23msgid "Answers"msgstr "回答"#: searx/templates/simple/results.html:42msgid "Number of results"msgstr "通知の数"#: searx/templates/simple/results.html:48msgid "Info"msgstr "インフォ"#: searx/templates/simple/results.html:75msgid "Try searching for:"msgstr "検索のオススメ:"#: searx/templates/simple/results.html:107msgid "Back to top"msgstr "トップに戻る"#: searx/templates/simple/results.html:125msgid "Previous page"msgstr "前のページ"#: searx/templates/simple/results.html:143msgid "Next page"msgstr "次のページ"#: searx/templates/simple/search.html:3msgid "Display the front page"msgstr "フロントページを表示する"#: searx/templates/simple/search.html:9#: searx/templates/simple/simple_search.html:5msgid "Search for..."msgstr "検索する..."#: searx/templates/simple/search.html:10#: searx/templates/simple/simple_search.html:6msgid "clear"msgstr "消す"#: searx/templates/simple/search.html:11#: searx/templates/simple/simple_search.html:7msgid "search"msgstr "検索"#: searx/templates/simple/stats.html:21msgid "There is currently no data available. "msgstr "現在データがありません。 "#: searx/templates/simple/preferences/engines.html:24#: searx/templates/simple/stats.html:25msgid "Engine name"msgstr "検索エンジン名"#: searx/templates/simple/stats.html:26msgid "Scores"msgstr "スコア"#: searx/templates/simple/stats.html:27msgid "Result count"msgstr "結果カウント"#: searx/templates/simple/elements/engines_msg.html:7#: searx/templates/simple/preferences/engines.html:31#: searx/templates/simple/stats.html:28msgid "Response time"msgstr "応答時間"#: searx/templates/simple/preferences/engines.html:35#: searx/templates/simple/stats.html:29msgid "Reliability"msgstr "信頼性"#: searx/templates/simple/stats.html:59msgid "Total"msgstr "合計"#: searx/templates/simple/stats.html:60msgid "HTTP"msgstr "HTTP"#: searx/templates/simple/stats.html:61msgid "Processing"msgstr "処理"#: searx/templates/simple/stats.html:99msgid "Warnings"msgstr "注意"#: searx/templates/simple/stats.html:99msgid "Errors and exceptions"msgstr "エラーと例外"#: searx/templates/simple/stats.html:105msgid "Exception"msgstr "例外"#: searx/templates/simple/stats.html:107msgid "Message"msgstr "メッセージ"#: searx/templates/simple/stats.html:109msgid "Percentage"msgstr "確率"#: searx/templates/simple/stats.html:111msgid "Parameter"msgstr "パラメータ"#: searx/templates/simple/result_templates/files.html:36#: searx/templates/simple/stats.html:119msgid "Filename"msgstr "ファイル名"#: searx/templates/simple/stats.html:120msgid "Function"msgstr "ファンクション"#: searx/templates/simple/stats.html:121msgid "Code"msgstr "コード"#: searx/templates/simple/stats.html:128msgid "Checker"msgstr "チェッカー"#: searx/templates/simple/stats.html:131msgid "Failed test"msgstr "テストに失敗しました"#: searx/templates/simple/stats.html:132msgid "Comment(s)"msgstr "コメント"#: searx/templates/simple/elements/apis.html:3msgid "Download results"msgstr "ダウンロードするファイル形式"#: searx/templates/simple/elements/engines_msg.html:4msgid "Messages from the search engines"msgstr "検索エンジンからのメッセージ"#: searx/templates/simple/elements/engines_msg.html:7msgid "seconds"msgstr "秒"#: searx/templates/simple/elements/search_url.html:3msgid "Search URL"msgstr "この検索結果の URL"#: searx/templates/simple/elements/search_url.html:4#: searx/templates/simple/preferences/cookies.html:54msgid "Copied"msgstr "コピーしました"#: searx/templates/simple/elements/search_url.html:4#: searx/templates/simple/preferences/cookies.html:54msgid "Copy"msgstr "コピー"#: searx/templates/simple/elements/suggestions.html:3msgid "Suggestions"msgstr "提案"#: searx/templates/simple/filters/languages.html:1#: searx/templates/simple/preferences/language.html:2msgid "Search language"msgstr "検索の言語"#: searx/templates/simple/filters/languages.html:4#: searx/templates/simple/preferences/language.html:7msgid "Default language"msgstr "デフォルトの言語"#: searx/templates/simple/filters/languages.html:8#: searx/templates/simple/preferences/language.html:11msgid "Auto-detect"msgstr "自動検出"#: searx/templates/simple/filters/safesearch.html:1#: searx/templates/simple/filters/safesearch.html:2#: searx/templates/simple/filters/safesearch.html:3#: searx/templates/simple/filters/safesearch.html:4#: searx/templates/simple/preferences/engines.html:27#: searx/templates/simple/preferences/safesearch.html:2msgid "SafeSearch"msgstr "セーフサーチ"#: searx/templates/simple/filters/safesearch.html:2#: searx/templates/simple/preferences/safesearch.html:7msgid "Strict"msgstr "厳重"#: searx/templates/simple/filters/safesearch.html:3#: searx/templates/simple/preferences/safesearch.html:11msgid "Moderate"msgstr "標準"#: searx/templates/simple/filters/safesearch.html:4#: searx/templates/simple/preferences/safesearch.html:15msgid "None"msgstr "オフ"#: searx/templates/simple/filters/time_range.html:1#: searx/templates/simple/preferences/engines.html:28msgid "Time range"msgstr "時間範囲"#: searx/templates/simple/filters/time_range.html:3msgid "Anytime"msgstr "期間指定なし"#: searx/templates/simple/filters/time_range.html:6msgid "Last day"msgstr "24 時間以内"#: searx/templates/simple/filters/time_range.html:9msgid "Last week"msgstr "1 週間以内"#: searx/templates/simple/filters/time_range.html:12msgid "Last month"msgstr "1 か月以内"#: searx/templates/simple/filters/time_range.html:15msgid "Last year"msgstr "1 年以内"#: searx/templates/simple/messages/no_cookies.html:3msgid "Information!"msgstr "お知らせ!"#: searx/templates/simple/messages/no_cookies.html:4msgid "currently, there are no cookies defined."msgstr "現在、クッキーは定義されていません。"#: searx/templates/simple/messages/no_results.html:6msgid "Sorry!"msgstr "すみません!"#: searx/templates/simple/messages/no_results.html:12msgid "No results were found. You can try to:"msgstr "結果見つかりませんでした。再度行うなら :"#: searx/templates/simple/messages/no_results.html:14msgid "There are no more results. You can try to:"msgstr "これ以上の検索結果はありません。試すことができるのは :"#: searx/templates/simple/messages/no_results.html:19msgid "Refresh the page."msgstr "ページを更新します。"#: searx/templates/simple/messages/no_results.html:20msgid "Search for another query or select another category (above)."msgstr "違うクエリか違う(上記の)カテゴリを選んで検索。"#: searx/templates/simple/messages/no_results.html:21msgid "Change the search engine used in the preferences:"msgstr "検索エンジンに使う設定を変更する:"#: searx/templates/simple/messages/no_results.html:22msgid "Switch to another instance:"msgstr "別のインスタンスに切り替える:"#: searx/templates/simple/messages/no_results.html:24msgid "Search for another query or select another category."msgstr "違うのクエリか違うカテゴリで検索を選択できます。"#: searx/templates/simple/messages/no_results.html:25msgid "Go back to the previous page using the previous page button."msgstr "前ページボタンを使うと、前のページに戻ることができます。"#: searx/templates/simple/preferences/answerers.html:4#: searx/templates/simple/preferences/engines.html:23msgid "Allow"msgstr "許可する"#: searx/templates/simple/preferences/answerers.html:5msgid "Keywords"msgstr "キーワード"#: searx/templates/simple/preferences/answerers.html:6#: searx/templates/simple/result_templates/packages.html:7msgid "Name"msgstr "名前"#: searx/templates/simple/preferences/answerers.html:7msgid "Description"msgstr "説明"#: searx/templates/simple/preferences/answerers.html:8msgid "Examples"msgstr "例"#: searx/templates/simple/preferences/answerers.html:13msgid "This is the list of SearXNG's instant answering modules."msgstr "これは SearXNG の即席回答モジュールのリストです。"#: searx/templates/simple/preferences/answerers.html:29msgid "This is the list of plugins."msgstr "これはプラグインのリストです。"#: searx/templates/simple/preferences/autocomplete.html:2msgid "Autocomplete"msgstr "自動補完"#: searx/templates/simple/preferences/autocomplete.html:15msgid "Find stuff as you type"msgstr "自動補完に使う検索エンジン"#: searx/templates/simple/preferences/center_alignment.html:2msgid "Center Alignment"msgstr "中央揃え"#: searx/templates/simple/preferences/center_alignment.html:14msgid "Displays results in the center of the page (Oscar layout)."msgstr "中央揃えでページに結果表示(Oscar レイアウト)."#: searx/templates/simple/preferences/cookies.html:2msgid """This is the list of cookies and their values SearXNG is storing on your ""computer."msgstr "これはクッキーのリストで、これらの値はあなたのコンピュータに保存されています。"#: searx/templates/simple/preferences/cookies.html:3msgid "With that list, you can assess SearXNG transparency."msgstr "このリストによって、あなたは SearXNG の透明性を評価できます。"#: searx/templates/simple/preferences/cookies.html:9msgid "Cookie name"msgstr "クッキー名"#: searx/templates/simple/preferences/cookies.html:10msgid "Value"msgstr "値"#: searx/templates/simple/preferences/cookies.html:23msgid "Search URL of the currently saved preferences"msgstr "現在保存されている設定の検索 URL"#: searx/templates/simple/preferences/cookies.html:32msgid """Note: specifying custom settings in the search URL can reduce privacy by ""leaking data to the clicked result sites."msgstr "注意: 検索 URL にカスタム設定を指定すると、クリックした結果サイトにデータが漏洩し、プライバシーが低下する恐れがあります。"#: searx/templates/simple/preferences/cookies.html:35msgid "URL to restore your preferences in another browser"msgstr "このURLで違うブラウザに設定を復活"#: searx/templates/simple/preferences/cookies.html:43msgid """Specifying custom settings in the preferences URL can be used to sync ""preferences across devices."msgstr "初期設定URLを使うことで、特別な設定をデバイスをまたいで同期できる。"#: searx/templates/simple/preferences/cookies.html:46msgid "Copy preferences hash"msgstr "設定のハッシュをコピーする"#: searx/templates/simple/preferences/cookies.html:57msgid "Insert copied preferences hash (without URL) to restore"msgstr "設定を復元するために(URLなしでの)ハッシュをコピーして挿入する"#: searx/templates/simple/preferences/cookies.html:59msgid "Preferences hash"msgstr "設定ハッシュ"#: searx/templates/simple/preferences/doi_resolver.html:2msgid "Open Access DOI resolver"msgstr "オープンアクセス DOI リゾルバー"#: searx/templates/simple/preferences/doi_resolver.html:14msgid "Select service used by DOI rewrite"msgstr "DOI書き換えにて使用するサービスを選択"#: searx/templates/simple/preferences/engines.html:9msgid """This tab does not exists in the user interface, but you can search in ""these engines by its !bangs."msgstr "インタフェースやタブの中にはないが、!bangを使うことでこれらのエンジンで検索できる。"#: searx/templates/simple/preferences/engines.html:15msgid "Enable all"msgstr "すべて有効"#: searx/templates/simple/preferences/engines.html:16msgid "Disable all"msgstr "すべて無効"#: searx/templates/simple/preferences/engines.html:25msgid "!bang"msgstr "!bang"#: searx/templates/simple/preferences/engines.html:26msgid "Supports selected language"msgstr "選択された言語のサポート"#: searx/templates/simple/preferences/engines.html:29msgid "Weight"msgstr "比重"#: searx/templates/simple/preferences/engines.html:33msgid "Max time"msgstr "最大時間"#: searx/templates/simple/preferences/favicon.html:2msgid "Favicon Resolver"msgstr ""#: searx/templates/simple/preferences/favicon.html:15msgid "Display favicons near search results"msgstr ""#: searx/templates/simple/preferences/footer.html:2msgid """These settings are stored in your cookies, this allows us not to store ""this data about you."msgstr "これらの設定はあなたのクッキーに保存されますが、これはサーバーがあなたの情報の保存するわけではありません。"#: searx/templates/simple/preferences/footer.html:3msgid """These cookies serve your sole convenience, we don't use these cookies to ""track you."msgstr "クッキーはあなたが便利に使えるようにするために使うのであって、サーバーはあなたを追跡するためにクッキーを使うことはありません。"#: searx/templates/simple/preferences/footer.html:6msgid "Save"msgstr "保存"#: searx/templates/simple/preferences/footer.html:9msgid "Reset defaults"msgstr "デフォルト設定に戻す"#: searx/templates/simple/preferences/footer.html:13msgid "Back"msgstr "戻る"#: searx/templates/simple/preferences/hotkeys.html:2msgid "Hotkeys"msgstr "ショートカットキー"#: searx/templates/simple/preferences/hotkeys.html:13msgid "Vim-like"msgstr "Vim風"#: searx/templates/simple/preferences/hotkeys.html:18msgid """Navigate search results with hotkeys (JavaScript required). Press \"h\" ""key on main or result page to get help."msgstr "(Javascriptが必要)ショートカットキーで検索の結果を得ることができます。「h」キーを押して、主な使い方や検索結果の方法を知ることができます。"#: searx/templates/simple/preferences/image_proxy.html:2msgid "Image proxy"msgstr "画像プロキシ"#: searx/templates/simple/preferences/image_proxy.html:14msgid "Proxying image results through SearXNG"msgstr "画像の結果をSearXNG経由でプロキシする"#: searx/templates/simple/preferences/infinite_scroll.html:2msgid "Infinite scroll"msgstr "無限スクロール"#: searx/templates/simple/preferences/infinite_scroll.html:14msgid "Automatically load next page when scrolling to bottom of current page"msgstr "現在のページの下端でスクロールすると自動的に次のページを読み込む"#: searx/templates/simple/preferences/language.html:24msgid "What language do you prefer for search?"msgstr "どの言語で検索しますか?"#: searx/templates/simple/preferences/language.html:25msgid "Choose Auto-detect to let SearXNG detect the language of your query."msgstr "自動検出を選択すると、あなたのクエリの言語をSearXNGに検出させるようになります。"#: searx/templates/simple/preferences/method.html:2msgid "HTTP Method"msgstr "HTTPメソッド"#: searx/templates/simple/preferences/method.html:14msgid "Change how forms are submitted"msgstr "フォームの送信の仕方を変更する"#: searx/templates/simple/preferences/query_in_title.html:2msgid "Query in the page's title"msgstr "ページのタイトルでクエリを実行する"#: searx/templates/simple/preferences/query_in_title.html:14msgid """When enabled, the result page's title contains your query. Your browser ""can record this title"msgstr "有効にすると、検索結果ページのタイトルにクエリが含まれます。お使いのブラウザはこのタイトルを記録できます"#: searx/templates/simple/preferences/results_on_new_tab.html:2msgid "Results on new tabs"msgstr "新しいタブに結果を表示"#: searx/templates/simple/preferences/results_on_new_tab.html:14msgid "Open result links on new browser tabs"msgstr "検索結果のリンクを新しいタブで開く"#: searx/templates/simple/preferences/safesearch.html:20msgid "Filter content"msgstr "コンテンツをフィルタリングする"#: searx/templates/simple/preferences/search_on_category_select.html:2msgid "Search on category select"msgstr "カテゴリ選択したら検索を実行"#: searx/templates/simple/preferences/search_on_category_select.html:14msgid """Perform search immediately if a category selected. Disable to select ""multiple categories"msgstr "カテゴリが選択されている場合はすぐに検索を行います。複数のカテゴリが選択されている場合は無効です"#: searx/templates/simple/preferences/theme.html:2msgid "Theme"msgstr "テーマ"#: searx/templates/simple/preferences/theme.html:14msgid "Change SearXNG layout"msgstr "SearXNGレイアウトの変更"#: searx/templates/simple/preferences/theme.html:19msgid "Theme style"msgstr "テーマスタイル"#: searx/templates/simple/preferences/theme.html:31msgid "Choose auto to follow your browser settings"msgstr "「自動」を選択すると、ブラウザの設定に従います"#: searx/templates/simple/preferences/tokens.html:2msgid "Engine tokens"msgstr "エンジントークン"#: searx/templates/simple/preferences/tokens.html:9msgid "Access tokens for private engines"msgstr "ブライベートエンジンのアクセストークン"#: searx/templates/simple/preferences/ui_locale.html:2msgid "Interface language"msgstr "インターフェースの言語"#: searx/templates/simple/preferences/ui_locale.html:14msgid "Change the language of the layout"msgstr "表示する言語を変更"#: searx/templates/simple/result_templates/code.html:13msgid "repo"msgstr "リポジトリ"#: searx/templates/simple/result_templates/default.html:6#: searx/templates/simple/result_templates/files.html:8#: searx/templates/simple/result_templates/files.html:11msgid "show media"msgstr "メディアを表示する"#: searx/templates/simple/result_templates/default.html:6#: searx/templates/simple/result_templates/files.html:8msgid "hide media"msgstr "メディアを隠す"#: searx/templates/simple/result_templates/default.html:14#: searx/templates/simple/result_templates/videos.html:14msgid "This site did not provide any description."msgstr "このサイトは説明を提供しませんでした。"#: searx/templates/simple/result_templates/files.html:38#: searx/templates/simple/result_templates/images.html:22#: searx/templates/simple/result_templates/torrent.html:11msgid "Filesize"msgstr "ファイルサイズ"#: searx/templates/simple/result_templates/files.html:40msgid "Date"msgstr "日"#: searx/templates/simple/result_templates/files.html:42#: searx/templates/simple/result_templates/paper.html:24msgid "Type"msgstr "分類"#: searx/templates/simple/result_templates/images.html:20msgid "Resolution"msgstr "解像度"#: searx/templates/simple/result_templates/images.html:21msgid "Format"msgstr "フォーマット"#: searx/templates/simple/result_templates/images.html:24msgid "Engine"msgstr "エンジン"#: searx/templates/simple/result_templates/images.html:25msgid "View source"msgstr "ソースを閲覧する"#: searx/templates/simple/result_templates/map.html:12msgid "address"msgstr "アドレス"#: searx/templates/simple/result_templates/map.html:43msgid "show map"msgstr "地図を表示する"#: searx/templates/simple/result_templates/map.html:43msgid "hide map"msgstr "地図を隠す"#: searx/templates/simple/result_templates/packages.html:12msgid "Version"msgstr "バージョン"#: searx/templates/simple/result_templates/packages.html:18msgid "Maintainer"msgstr "メインテイナー"#: searx/templates/simple/result_templates/packages.html:24msgid "Updated at"msgstr "更新される"#: searx/templates/simple/result_templates/packages.html:30#: searx/templates/simple/result_templates/paper.html:25msgid "Tags"msgstr "タグ"#: searx/templates/simple/result_templates/packages.html:36msgid "Popularity"msgstr "人気度"#: searx/templates/simple/result_templates/packages.html:42msgid "License"msgstr "ライセンス"#: searx/templates/simple/result_templates/packages.html:52msgid "Project"msgstr "プロジェクト"#: searx/templates/simple/result_templates/packages.html:55msgid "Project homepage"msgstr "プロジェクトホームページ"#: searx/templates/simple/result_templates/paper.html:5msgid "Published date"msgstr "公開日"#: searx/templates/simple/result_templates/paper.html:9msgid "Journal"msgstr "刊行物"#: searx/templates/simple/result_templates/paper.html:22msgid "Editor"msgstr "編集者"#: searx/templates/simple/result_templates/paper.html:23msgid "Publisher"msgstr "発行者"#: searx/templates/simple/result_templates/paper.html:26msgid "DOI"msgstr "DOI"#: searx/templates/simple/result_templates/paper.html:27msgid "ISSN"msgstr "ISSN"#: searx/templates/simple/result_templates/paper.html:28msgid "ISBN"msgstr "ISBN"#: searx/templates/simple/result_templates/paper.html:33msgid "PDF"msgstr "PDF"#: searx/templates/simple/result_templates/paper.html:34msgid "HTML"msgstr "HTML"#: searx/templates/simple/result_templates/torrent.html:6msgid "magnet link"msgstr "マグネットリンク"#: searx/templates/simple/result_templates/torrent.html:7msgid "torrent file"msgstr "トレントファイル"#: searx/templates/simple/result_templates/torrent.html:9msgid "Seeder"msgstr "シーダー"#: searx/templates/simple/result_templates/torrent.html:9msgid "Leecher"msgstr "リーチャー"#: searx/templates/simple/result_templates/torrent.html:13msgid "Number of Files"msgstr "ファイル数"#: searx/templates/simple/result_templates/videos.html:6msgid "show video"msgstr "動画を表示する"#: searx/templates/simple/result_templates/videos.html:6msgid "hide video"msgstr "動画を隠す"#~ msgid "Engine time (sec)"#~ msgstr "検索時間 (秒)"#~ msgid "Page loads (sec)"#~ msgstr "ページ読み込み時間 (秒)"#~ msgid "Errors"#~ msgstr "エラー"#~ msgid "CAPTCHA required"#~ msgstr ""#~ msgid "Rewrite HTTP links to HTTPS if possible"#~ msgstr "可能ならば HTTP リンクを HTTPS リンクに書き換える"#~ msgid ""#~ "Results are opened in the same "#~ "window by default. This plugin "#~ "overwrites the default behaviour to open"#~ " links on new tabs/windows. (JavaScript "#~ "required)"#~ msgstr ""#~ "デフォルトでは結果は同じウィンドウで開きます。このプラグインはデフォルトの動作を書き換えて新しいタブ/ウィンドウで開くようにします。(JavaScript"#~ " が必要です)"#~ msgid "Color"#~ msgstr "色"#~ msgid "Blue (default)"#~ msgstr "青 (初期設定)"#~ msgid "Violet"#~ msgstr "紫"#~ msgid "Green"#~ msgstr "緑"#~ msgid "Cyan"#~ msgstr "シアン"#~ msgid "Orange"#~ msgstr "オレンジ"#~ msgid "Red"#~ msgstr "赤"#~ msgid "Category"#~ msgstr "カテゴリー"#~ msgid "Block"#~ msgstr "禁止する"#~ msgid "original context"#~ msgstr "元の文脈"#~ msgid "Plugins"#~ msgstr "プラグイン"#~ msgid "Answerers"#~ msgstr "回答者"#~ msgid "Avg. time"#~ msgstr "平均時間"#~ msgid "show details"#~ msgstr "詳細を表示する"#~ msgid "hide details"#~ msgstr "詳細を隠す"#~ msgid "Load more..."#~ msgstr "もっと見る…"#~ msgid "Loading..."#~ msgstr ""#~ msgid "Change searx layout"#~ msgstr "Searx のレイアウトの変更"#~ msgid "Proxying image results through searx"#~ msgstr "画像検索結果を searx でプロキシする"#~ msgid "This is the list of searx's instant answering modules."#~ msgstr "これは searx の即席回答モジュールのリストです。"#~ msgid ""#~ "This is the list of cookies and"#~ " their values searx is storing on "#~ "your computer."#~ msgstr "これはクッキーのリストで、これらの値はあなたのコンピュータに保存されています。"#~ msgid "With that list, you can assess searx transparency."#~ msgstr "このリストによって、あなたは searx の透明性を評価できます。"#~ msgid "It look like you are using searx first time."#~ msgstr "Searxを使うのは初めてようですね。"#~ msgid "Please, try again later or find another searx instance."#~ msgstr "後でやり直すか、別の searx インスタンスを探して下さい。"#~ msgid "Themes"#~ msgstr "テーマ"#~ msgid "Reliablity"#~ msgstr ""#~ msgid ""#~ "When enabled, the result page's title"#~ " contains your query. Your browser "#~ "can record this title."#~ msgstr ""#~ msgid "Method"#~ msgstr "方法"#~ msgid ""#~ "This tab does not show up for "#~ "search results but you can search "#~ "the engines listed here via bangs."#~ msgstr ""#~ msgid "Advanced settings"#~ msgstr "詳細設定"#~ msgid "Close"#~ msgstr "閉じる"#~ msgid "Language"#~ msgstr "言語"#~ msgid "broken"#~ msgstr "起動不可"#~ msgid "supported"#~ msgstr "サポート"#~ msgid "not supported"#~ msgstr "未サポート"#~ msgid "about"#~ msgstr "このサイトについて"#~ msgid "Avg."#~ msgstr "平均"#~ msgid "User Interface"#~ msgstr "ユーザーインタフェース"#~ msgid "Choose style for this theme"#~ msgstr "このテーマのスタイルを選択"#~ msgid "Style"#~ msgstr "スタイル"#~ msgid "Show advanced settings"#~ msgstr "詳細設定を表示"#~ msgid "Show advanced settings panel in the home page by default"#~ msgstr "デフォルトでホームページで詳細設定を表示する"#~ msgid "Allow all"#~ msgstr "すべて許可"#~ msgid "Disable all"#~ msgstr "すべて無効"#~ msgid "Selected language"#~ msgstr "選択された言語"#~ msgid "Query"#~ msgstr "クエリ"#~ msgid "save"#~ msgstr "保存"#~ msgid "back"#~ msgstr "戻る"#~ msgid "Links"#~ msgstr "リンク"#~ msgid "RSS subscription"#~ msgstr "RSS登録"#~ msgid "Search results"#~ msgstr "検索結果"#~ msgid "next page"#~ msgstr "次のページ"#~ msgid "previous page"#~ msgstr "前のページ"#~ msgid "Start search"#~ msgstr "検索を開始"#~ msgid "Clear search"#~ msgstr "探索を消す"#~ msgid "Clear"#~ msgstr "消す"#~ msgid "stats"#~ msgstr "統計"#~ msgid "Heads up!"#~ msgstr "気をつけて!"#~ msgid "It look like you are using SearXNG first time."#~ msgstr "SearXNG を初めてお使いになるようですね。"#~ msgid "Well done!"#~ msgstr "あっぱれ!"#~ msgid "Settings saved successfully."#~ msgstr "設定の保存に成功しました。"#~ msgid "Oh snap!"#~ msgstr "おっと!"#~ msgid "Something went wrong."#~ msgstr "なにか問題が起こっているようです。"#~ msgid "Date"#~ msgstr "日付"#~ msgid "Type"#~ msgstr "タイプ"#~ msgid "Get image"#~ msgstr "画像を取得する"#~ msgid "Center Alignment"#~ msgstr ""#~ msgid "Displays results in the center of the page (Oscar layout)."#~ msgstr ""#~ msgid "preferences"#~ msgstr "設定"#~ msgid "Scores per result"#~ msgstr "検索結果当たりスコア"#~ msgid "a privacy-respecting, hackable metasearch engine"#~ msgstr "プライバシー保護を重視した、ハッカブルなメタ検索エンジン"#~ msgid "No abstract is available for this publication."#~ msgstr "この出版物には要約がありません。"#~ msgid "Self Informations"#~ msgstr "自分の情報"#~ msgid ""#~ "Change how forms are submited, <a "#~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""#~ " rel=\"external\">learn more about request "#~ "methods</a>"#~ msgstr ""#~ "フォームの送信方法を変更します。<a "#~ "href=\"https://ja.wikipedia.org/wiki/Hypertext_Transfer_Protocol#リクエストメソッド\""#~ " rel=\"external\">リクエストメソッドってなに?</a>"#~ msgid ""#~ "This plugin checks if the address "#~ "of the request is a TOR exit "#~ "node, and informs the user if it"#~ " is, like check.torproject.org but from "#~ "searxng."#~ msgstr ""#~ "このプラグインはsearxngからTOR exit node "#~ "にアドレスを要求したとき、check.torproject.orgサイトのように、ユーザーに通知します。"#~ msgid ""#~ "The TOR exit node list "#~ "(https://check.torproject.org/exit-addresses) is "#~ "unreachable."#~ msgstr ""#~ "TOR exit node のリスト(https://check.torproject.org"#~ "/exit-addresses)に到達できません。"#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."#~ msgstr "TORを利用しています。あなたのIPアドレスはここから来ていると思われます : {ip_address}."#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."#~ msgstr "TORを利用していません。あなたのIPアドレスはここから来ていると思われます: {ip_address}."#~ msgid ""#~ "The could not download the list of"#~ " Tor exit-nodes from "#~ "https://check.torproject.org/exit-addresses."#~ msgstr ""#~ msgid ""#~ "You are using Tor. It looks like"#~ " you have this external IP address:"#~ " {ip_address}."#~ msgstr ""#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."#~ msgstr ""#~ msgid "Autodetect search language"#~ msgstr "検索言語自動検出"#~ msgid "Automatically detect the query search language and switch to it."#~ msgstr "検索言語の自動検出と切り替えを実施。"#~ msgid "others"#~ msgstr "その他"#~ msgid ""#~ "This tab does not show up for "#~ "search results, but you can search "#~ "the engines listed here via bangs."#~ msgstr "このタブは検索結果には表示されませんが、ここにリストされているエンジンをbangで検索できます。"#~ msgid "Shortcut"#~ msgstr "ショートカット"#~ msgid "!bang"#~ msgstr ""#~ msgid ""#~ "This tab dues not exists in the"#~ " user interface, but you can search"#~ " in these engines by its !bangs."#~ msgstr "インタフェースやタブの中にはないが、!bangを使うことで検索エンジンとして利用できる。"#~ msgid "Engines cannot retrieve results."#~ msgstr "エンジンは結果を取得できません。"#~ msgid "Please, try again later or find another SearXNG instance."#~ msgstr "後でやり直すか、別の SearXNG インスタンスを試してみて下さい。"#~ msgid ""#~ "Redirect to open-access versions of "#~ "publications when available (plugin required)"#~ msgstr "利用可能な場合(プラグインが必要)、オープンアクセス版の出版物にリダイレクトする"#~ msgid "Bang"#~ msgstr "Bang"#~ msgid ""#~ "Change how forms are submitted, <a "#~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""#~ " rel=\"external\">learn more about request "#~ "methods</a>"#~ msgstr ""#~ "フォームの送信方法を変更します。<a "#~ "href=\"https://ja.wikipedia.org/wiki/Hypertext_Transfer_Protocol#リクエストメソッド\""#~ " rel=\"external\">リクエストメソッドってなに?</a>"#~ msgid "On"#~ msgstr "有効"#~ msgid "Off"#~ msgstr "無効"#~ msgid "Enabled"#~ msgstr "有効"#~ msgid "Disabled"#~ msgstr "無効"#~ msgid ""#~ "Perform search immediately if a category"#~ " selected. Disable to select multiple "#~ "categories. (JavaScript required)"#~ msgstr "カテゴリが選択されたときに検索を実行します。複数のカテゴリを選択する場合は無効にします。(JavaScript が必要です)"#~ msgid "Vim-like hotkeys"#~ msgstr "Vim 風のホットキー"#~ msgid ""#~ "Navigate search results with Vim-like"#~ " hotkeys (JavaScript required). Press \"h\""#~ " key on main or result page to"#~ " get help."#~ msgstr ""#~ "検索結果をVim 風のホットキーで操作します(JavaScript が必要)。メインページまたは検索結果ページで"#~ " \"h\" キーを押してヘルプを表示します。"#~ msgid ""#~ "we didn't find any results. Please "#~ "use another query or search in "#~ "more categories."#~ msgstr "検索結果はありませんでした。別のカテゴリ、または他のクエリで検索してください。"#~ msgid "Rewrite result hostnames or remove results based on the hostname"#~ msgstr "結果のホスト名を書き換えるか、ホスト名に基づいて結果を削除します"#~ msgid "Bytes"#~ msgstr "バイト"#~ msgid "kiB"#~ msgstr "キロバイト"#~ msgid "MiB"#~ msgstr "メガバイト"#~ msgid "GiB"#~ msgstr "ギガバイト"#~ msgid "TiB"#~ msgstr "テラバイト"#~ msgid "Hostname replace"#~ msgstr "ホストネーム入れ替え"#~ msgid "Error!"#~ msgstr "エラー!"#~ msgid "Engines cannot retrieve results"#~ msgstr "エンジンは結果を取得できません"
 |