| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875 |
- <?xml version="1.0" ?><!DOCTYPE TS><TS language="ja_JP" version="2.0">
- <context>
- <name>CreateAnOwncloudPage</name>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="39"/>
- <source>Create a new ownCloud</source>
- <translation>新しいownCloudを作成</translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="61"/>
- <source>Where do you want to create your ownCloud?</source>
- <translation>どこにownCloudを作成しますか?</translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="73"/>
- <source>create ownCloud on this computer</source>
- <translation>このコンピュータにownCloudを作成する</translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="105"/>
- <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:11pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">installs the ownCloud on this computer. Other people will not be able to access your data by default.</span></p></body></html></source>
- <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:11pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">ownCloudをこのコンピュータにインストールする。デフォルトで他のユーザはあなたのデータにアクセスすることはできません。</span></p></body></html></translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="132"/>
- <source>create ownCloud on my internet domain</source>
- <translation>ownCloudをインターネット上に作成する</translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="155"/>
- <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:11pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">installs ownCloud on a domain you control. You need the FTP credentials for the installation.</span></p>
- <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; color:#585858;"></p>
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">This ownCloud will be accessible from the internet.</span></p></body></html></source>
- <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:11pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">あなたが管理するドメインにownCloudをインストール。インストールにはFTPアクセスの資格情報が必要です。</span></p>
- <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; color:#585858;"></p>
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">このownCloudはインターネットからアクセス可能です。</span></p></body></html></translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="177"/>
- <source>&Domain:</source>
- <translation>ドメイン(&D):</translation>
- </message>
- <message>
- <source>mydomain.org</source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>FolderWizardNetworkPage</name>
- <message>
- <location filename="../src/mirall/folderwizardnetworkpage.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardnetworkpage.ui" line="27"/>
- <source>Network Settings</source>
- <translation>ネットワーク設定</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardnetworkpage.ui" line="34"/>
- <source>Set networking options:</source>
- <translation>ネットワークオプションを設定:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardnetworkpage.ui" line="40"/>
- <source>Only enable if network is available</source>
- <translation>ネットワークが利用可能な場合のみ有効にする</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardnetworkpage.ui" line="47"/>
- <source>restrict to this local network</source>
- <translation>ローカルネットワークに制限する</translation>
- </message>
- </context>
- <context>
- <name>FolderWizardOwncloudPage</name>
- <message>
- <location filename="../src/mirall/folderwizardowncloudpage.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardowncloudpage.ui" line="20"/>
- <source>ownCloud Settings</source>
- <translation>ownCloud設定</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardowncloudpage.ui" line="29"/>
- <source>URL:</source>
- <translation>URL:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardowncloudpage.ui" line="36"/>
- <source>User:</source>
- <translation>ユーザ:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardowncloudpage.ui" line="46"/>
- <source>Password:</source>
- <translation>パスワード:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardowncloudpage.ui" line="63"/>
- <source>Alias:</source>
- <translation>エイリアス:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardowncloudpage.ui" line="93"/>
- <source>ownCloud</source>
- <translation>ownCloud</translation>
- </message>
- </context>
- <context>
- <name>FolderWizardSourcePage</name>
- <message>
- <location filename="../src/mirall/folderwizardsourcepage.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardsourcepage.ui" line="25"/>
- <source>Sync Directory</source>
- <translation>同期ディレクトリ</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardsourcepage.ui" line="32"/>
- <source>Pick a local folder on your computer to sync:</source>
- <translation>同期するあなたのコンピュータ上のローカルフォルダを選択:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardsourcepage.ui" line="43"/>
- <source>&Choose...</source>
- <translation>選択(&C)...</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardsourcepage.ui" line="54"/>
- <source>&Directory alias name:</source>
- <translation>ディレクトリのエイリアス名(&D):</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="45"/>
- <source>/home/local1</source>
- <translation>/home/local1</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="46"/>
- <source>Music</source>
- <translation>ミュージック</translation>
- </message>
- </context>
- <context>
- <name>FolderWizardTargetPage</name>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <source>Express Upload Target</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Pick a place where the data should go to:</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>to your &ownCloud</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="29"/>
- <source>Synchronization Target</source>
- <translation>同期ターゲット</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="51"/>
- <source>Select a destination folder for your data</source>
- <translation>データの転送先フォルダを選択してください</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="88"/>
- <source>on your &ownCloud server</source>
- <translation>&ownCloudサーバ上</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="103"/>
- <source>Folder on ownCloud:</source>
- <translation>ownCloud上のフォルダ:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="152"/>
- <source>to a &local folder</source>
- <translation>ローカルフォルダへ(&L)</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="165"/>
- <source>Folder name:</source>
- <translation>フォルダー名:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="175"/>
- <source>C&hoose..</source>
- <translation>選択(&H)..</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="222"/>
- <source>to a &remote folder (URL)</source>
- <translation>リモートフォルダ(URL)へ(&R)</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="235"/>
- <source>URL:</source>
- <translation>URL:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="365"/>
- <source>TextLabel</source>
- <translation>テキストラベル</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="387"/>
- <source>create</source>
- <translation>作成</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="177"/>
- <source>root</source>
- <translation>root</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="178"/>
- <source>/home/local</source>
- <translation>/home/local</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="179"/>
- <source>scp://john@host.com//myfolder</source>
- <translation>scp://john@host.com//myfolder</translation>
- </message>
- </context>
- <context>
- <name>Mirall::Application</name>
- <message>
- <source>No ownCloud Configuration</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source><p>No ownCloud connection was configured yet.</p><p>Please configure one by clicking on the tray icon!</p></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source><p>The ownCloud at %1 could not be reached.</p></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="237"/>
- <source><p>The detailed error message is<br/><tt>%1</tt></p></source>
- <translation><p>詳細なエラーメッセージ<br/><tt>%1</tt></p></translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="239"/>
- <source><p>Please check your configuration by clicking on the tray icon.</p></source>
- <translation><p>トレイアイコンをクリックして設定をチェックしてください。</p></translation>
- </message>
- <message>
- <source>ownCloud Connection Failed</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>No ownCloud Connection</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source><p>Your ownCloud credentials are not correct.</p><p>Please correct them by starting the configuration dialog from the tray!</p></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source><p>Your ownCloud user name or password is not correct.</p><p>Please correct it by starting the configuration dialog from the tray!</p></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>ownCloud Sync Started</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="341"/>
- <source>Sync started for %1 configured sync folder(s).</source>
- <translation>設定された %1 フォルダの同期を開始しました。</translation>
- </message>
- <message>
- <source>Open ownCloud...</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="393"/>
- <source>Open status...</source>
- <translation>状態を確認...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="395"/>
- <source>Add folder...</source>
- <translation>フォルダを追加...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="397"/>
- <source>Configure...</source>
- <translation>設定...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="399"/>
- <source>Configure proxy...</source>
- <translation>プロキシを設定...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="403"/>
- <source>Quit</source>
- <translation>終了</translation>
- </message>
- <message>
- <source>open folder %1</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="220"/>
- <source>%1 Server Mismatch</source>
- <translation>%1 サーバのミスマッチ</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="221"/>
- <source><p>The configured server for this client is too old.</p><p>Please update to the latest %1 server and restart the client.</p></source>
- <translation><p>このクライアントに設定されたサーバは古すぎます。</p><p>最新の %1 サーバに更新し、クライアントを再起動してください。</p></translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="236"/>
- <source><p>The %1 at %2 could not be reached.</p></source>
- <translation><p>%2 の %1 へ到達できませんでした。</p></translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="241"/>
- <source>%1 Connection Failed</source>
- <translation>%1 の接続に失敗</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="263"/>
- <source>Too many user attempts to enter password.</source>
- <translation>非常に多くのユーザがパスワード入力を試みました。</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="264"/>
- <location filename="../src/mirall/application.cpp" line="281"/>
- <source>Credentials</source>
- <translation>資格情報</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="275"/>
- <source>Error: Could not retrieve the password!</source>
- <translation>エラー: パスワードを取得できませんでした!</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="277"/>
- <source>Password dialog was canceled!</source>
- <translation>パスワードダイアログはキャンセルされました!</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="311"/>
- <location filename="../src/mirall/application.cpp" line="320"/>
- <source>No %1 Connection</source>
- <translation>%1 未接続</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="312"/>
- <source><p>Your %1 credentials are not correct.</p><p>Please correct them by starting the configuration dialog from the tray!</p></source>
- <translation><p>あなたの %1 の資格情報は正しくありません。</p><p>トレイから設定ダイアログを表示して、修正してください。</p></translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="321"/>
- <source><p>Either your user name or your password are not correct.</p><p>Please correct it by starting the configuration dialog from the tray!</p></source>
- <translation><p>ユーザ名もしくはパスワードのいずれかが正しくありません。</p><p>トレイから設定ダイアログを表示して、修正してください。</p></translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="340"/>
- <source>%1 Sync Started</source>
- <translation>%1 同期開始</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="391"/>
- <source>Open %1 in browser...</source>
- <translation>%1 をブラウザーで開く...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="401"/>
- <source>About...</source>
- <translation>ownCloudについて...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="457"/>
- <source>Open %1 folder</source>
- <translation>%1 フォルダを開く</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="470"/>
- <source>Managed Folders:</source>
- <translation>管理フォルダ:</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="704"/>
- <source>About %1</source>
- <translation>%1 について</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="705"/>
- <source>%1 client, version %2
- Copyright 2012, the ownCloud developers.</source>
- <translation>%1 クライアント, バージョン %2
- Copyright 2012, the ownCloud developers.</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="716"/>
- <source>Confirm Folder Remove</source>
- <translation>フォルダの削除を確認</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="717"/>
- <source>Do you really want to remove upload folder <i>%1</i>?</source>
- <translation>本当にアップロードフォルダ <i>%1</i> を削除してよろしいですか?</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="751"/>
- <source>Undefined Folder State</source>
- <translation>未定義のフォルダの状態</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="754"/>
- <source>The folder waits to start syncing.</source>
- <translation>フォルダは同期開始の待機中です。</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="757"/>
- <location filename="../src/mirall/application.cpp" line="927"/>
- <source>Sync is running.</source>
- <translation>同期を実行中です。</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="760"/>
- <location filename="../src/mirall/application.cpp" line="932"/>
- <source>Last Sync was successful.</source>
- <translation>最後の同期は成功しました。</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="763"/>
- <location filename="../src/mirall/application.cpp" line="938"/>
- <source>Syncing Error.</source>
- <translation>同期エラー。</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="766"/>
- <location filename="../src/mirall/application.cpp" line="944"/>
- <source>Setup Error.</source>
- <translation>設定エラー。</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="769"/>
- <location filename="../src/mirall/application.cpp" line="947"/>
- <source>Undefined Error State.</source>
- <translation>未定義のエラー状態。</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="773"/>
- <source>Folder information</source>
- <translation>フォルダー情報</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="788"/>
- <source>Unknown</source>
- <translation>不明</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="790"/>
- <source>Changed files:
- </source>
- <translation>変更されたファイル:
- </translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="792"/>
- <source>Added files:
- </source>
- <translation>追加されたファイル:
- </translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="794"/>
- <source>New files in the server, or files deleted locally:
- </source>
- <translation>サーバー上の新規ファイル、もしくはローカルのファイル削除:
- </translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="820"/>
- <source>Sync Running</source>
- <translation>同期実行中</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="821"/>
- <source>The syncing operation is running.<br/>Do you want to terminate it?</source>
- <translation>同期操作が実行中です。<br/>終了してもよろしいですか?</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="920"/>
- <source>Undefined State.</source>
- <translation>未定義の状態。</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="923"/>
- <source>Waits to start syncing.</source>
- <translation>同期開始を待機中</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="952"/>
- <source> (Sync is paused)</source>
- <translation> (同期を一時停止)</translation>
- </message>
- <message>
- <source>Sync is paused.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="969"/>
- <source>No sync folders configured.</source>
- <translation>同期フォルダが設定されていません。</translation>
- </message>
- </context>
- <context>
- <name>Mirall::CSyncThread</name>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="209"/>
- <source>CSync create failed.</source>
- <translation>CSyncは作成に失敗しました。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="245"/>
- <source>CSync failed to create a lock file.</source>
- <translation>CSyncがロックファイルの作成に失敗しました。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="248"/>
- <source>CSync failed to load the state db.</source>
- <translation>CSyncは状態DBの読み込みに失敗しました。</translation>
- </message>
- <message>
- <source>The system time between the local machine and the server differs too much. Please use a time syncronization service (ntp) on both machines.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="251"/>
- <source>The system time on this client is different than the system time on the server. Please use a time synchronization service (NTP) on the server and client machines so that the times remain the same.</source>
- <translation>このクライアントのシステム時刻はサーバのシステム時刻と異なります。時刻が同じになるように、クライアントとサーバの両方で時刻同期サービス(NTP)を実行してください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="256"/>
- <source>CSync could not detect the filesystem type.</source>
- <translation>CSyncはファイルシステムタイプを検出できませんでした。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="259"/>
- <source>CSync got an error while processing internal trees.</source>
- <translation>CSyncは内部ツリーの処理中にエラーに遭遇しました。</translation>
- </message>
- <message>
- <source><p>The target directory %1 does not exist.</p><p>Please create it and try again.</p></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="262"/>
- <source><p>The target directory %1 does not exist.</p><p>Please check the sync setup.</p></source>
- <translation><p>ターゲットディレクトリ %1 は存在しません。</p><p>同期設定をチェックしてください。</p></translation>
- </message>
- <message>
- <source><p>The ownCloud plugin for csync could not be loaded.<br/>Please verify the installation!</p></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="272"/>
- <source>The local filesystem can not be written. Please check permissions.</source>
- <translation>ローカルファイルシステムは書き込みができません。パーミッションをチェックしてください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="276"/>
- <source>A remote file can not be written. Please check the remote access.</source>
- <translation>リモートファイルは書き込みできません。リモートアクセスをチェックしてください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="279"/>
- <source>An internal error number %1 happend.</source>
- <translation>内部エラー番号 %1 が発生しました。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="295"/>
- <source>CSync failed to reach the host. Either host or proxy settings are not valid.</source>
- <translation>Csyncはホストに接続できませんでした。ホストもしくはプロキシの設定のいずれかが正しくありません。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="298"/>
- <source>CSync Update failed.</source>
- <translation>CSyncは同期に失敗しました。</translation>
- </message>
- <message>
- <source>The local filesystem has directories which are write protected.
- That prevents ownCloud from successful syncing.
- Please make sure that all directories are writeable.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="268"/>
- <source><p>The %1 plugin for csync could not be loaded.<br/>Please verify the installation!</p></source>
- <translation><p>csync 用の %1 プラグインのロードができませんでした。<br/>インストールの確認を行なってください!</p></translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="312"/>
- <source>CSync encountered an error while examining the file system.
- Syncing is not possible.</source>
- <translation>CSyncはファイルシステムの検査中にエラーに遭遇しました。
- 同期はできません。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="315"/>
- <source>CSync update generated a strange instruction.
- Please write a bug report.</source>
- <translation>CSyncの更新はおかしなインストラクションを生成しました。
- バグレポートを投稿してください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="318"/>
- <source>Local filesystem problems. Better disable Syncing and check.</source>
- <translation>ローカルファイルシステムに問題があります。同期を無効にしてチェックすることをおすすめします。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="323"/>
- <source>The local filesystem has %1 write protected directories.That can hinder successful syncing.<p/>Please make sure that all local directories are writeable.</source>
- <translation>ローカルファイルシステムには %1 の書き込み禁止ディレクトリがあります。これは正常な同期の妨げとなります。<p/>すべてのローカルディレクトリが書き込み可能であることを確認してください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="343"/>
- <source>CSync reconcile failed.</source>
- <translation>CSyncは調停に失敗しました。</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="347"/>
- <source>File exchange with ownCloud failed. Sync was stopped.</source>
- <translation>ownCloudとのファイル交換に失敗しました。同期を停止しました。</translation>
- </message>
- <message>
- <source>CSync propagate failed.</source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>Mirall::CreateAnOwncloudPage</name>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="381"/>
- <source>mydomain.org</source>
- <translation>mydomain.org</translation>
- </message>
- </context>
- <context>
- <name>Mirall::Folder</name>
- <message>
- <location filename="../src/mirall/folder.cpp" line="99"/>
- <source>Local folder %1 does not exist.</source>
- <translation>ローカルフォルダ %1 は存在しません。</translation>
- </message>
- <message>
- <location filename="../src/mirall/folder.cpp" line="102"/>
- <source>%1 should be a directory but is not.</source>
- <translation>%1 はディレクトリのはずですが、そうではないようです。</translation>
- </message>
- <message>
- <location filename="../src/mirall/folder.cpp" line="105"/>
- <source>%1 is not readable.</source>
- <translation>%1 は読み込み可能ではありません。</translation>
- </message>
- </context>
- <context>
- <name>Mirall::FolderViewDelegate</name>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="176"/>
- <source>Remote path: %1</source>
- <translation>リモートパス: %1</translation>
- </message>
- </context>
- <context>
- <name>Mirall::FolderWizard</name>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="466"/>
- <source>%1 Folder Wizard</source>
- <translation>%1 フォルダウィザード</translation>
- </message>
- </context>
- <context>
- <name>Mirall::FolderWizardSourcePage</name>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="74"/>
- <source>No local directory selected!</source>
- <translation>ローカルディレクトリが選択されていません!</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="90"/>
- <source>The local path %1 is already an upload folder.<br/>Please pick another one!</source>
- <translation>ローカルパス %1 はすでにアップロードフォルダになっています。<br/>他を選択してください!</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="94"/>
- <source>An already configured folder is contained in the current entry.</source>
- <translation>すでに設定済みのフォルダは現在のエントリー内に含まれています。</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="99"/>
- <source>An already configured folder contains the currently entered directory.</source>
- <translation>すでに設定済みのフォルダは、現在入力されたディレクトリを含んでいます。</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="109"/>
- <source>The alias can not be empty. Please provide a descriptive alias word.</source>
- <translation>エイリアスは空白にすることはできません。適切な単語をエイリアスとして提供してください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="120"/>
- <source><br/>The alias <i>%1</i> is already in use. Please pick another alias.</source>
- <translation><br/>エイリアス <i>%1</i> はすでに使用中です。他のエイリアスを選択してください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="141"/>
- <source>Select the source folder</source>
- <translation>ソースフォルダを選択</translation>
- </message>
- </context>
- <context>
- <name>Mirall::FolderWizardTargetPage</name>
- <message>
- <source>The folder is not available on your ownCloud.<br/>Click to let mirall create it.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Folder on ownCloud was successfully created.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Failed to create the folder on ownCloud.<br/>Please check manually.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="211"/>
- <source>The folder is not available on your %1.<br/>Click to create it.</source>
- <translation>あなたの %1 ではフォルダを利用できません。<br/>クリックして作成して下さい。</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="237"/>
- <source>Folder was successfully created on %1.</source>
- <translation>%1 にフォルダーが作成されました。</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="240"/>
- <source>Failed to create the folder on %1.<br/>Please check manually.</source>
- <translation>%1 へのフォルダ作成に失敗しました。<br/>手動で確認して下さい。</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="260"/>
- <source>Better do not use the remote root directory.<br/>If you do, you can <b>not</b> mirror another local folder.</source>
- <translation>リモートパスのルート直下ディレクトリを指定することはおすすめしません。<br/>もし使用する場合は、他のローカルフォルダと同期することは<b>できません</b>。</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="315"/>
- <source>to your <a href="%1">%2</a> (version %3)</source>
- <translation>あなたの <a href="%1">%2</a> へ(バージョン %3)</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="326"/>
- <source>no configured %1 found!</source>
- <translation>設定されていない %1 が見つかりました!</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="327"/>
- <source>%1 could not be reached:<br/><tt>%2</tt></source>
- <translation>%1 へ到達できませんでした:<br/><tt>%2</tt></translation>
- </message>
- <message>
- <source>to your <a href="%1">ownCloud</a> (version %2)</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>no configured ownCloud found!</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Your ownCloud could not be reached:<br/><tt>%1</tt></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="395"/>
- <source>Select the target folder</source>
- <translation>ターゲットフォルダを選択</translation>
- </message>
- </context>
- <context>
- <name>Mirall::LogBrowser</name>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="122"/>
- <source>Log Output</source>
- <translation>ログ出力</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="134"/>
- <source>&Search: </source>
- <translation>検索(&S):</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="142"/>
- <source>&Find</source>
- <translation>検索(&F)</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="160"/>
- <source>Clear</source>
- <translation>クリア</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="161"/>
- <source>Clear the log display.</source>
- <translation>ログの表示をクリアする。</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="167"/>
- <source>S&ave</source>
- <translation>保存(&A)</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="168"/>
- <source>Save the log file to a file on disk for debugging.</source>
- <translation>デバッグ目的でディスクにログファイルを保存する</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="206"/>
- <location filename="../src/mirall/logbrowser.cpp" line="263"/>
- <source>Error</source>
- <translation>エラー</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="207"/>
- <source><nobr>File '%1'<br/>cannot be opened for writing.<br/><br/>The log output can <b>not</b> be saved!</nobr></source>
- <translation><nobr>ファイル '%1'<br/>を書き込み用で開けませんでした。<br/><br/>ログ出力を<b>保存できません</b>でした!</nobr></translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="253"/>
- <source>Save log file</source>
- <translation>ログファイルを保存</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="263"/>
- <source>Could not write to log file </source>
- <translation>ログファイルに書き込めませんでした</translation>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudCredentialsPage</name>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="291"/>
- <source>john</source>
- <translation>ジョン</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="292"/>
- <source>secret</source>
- <translation>秘密</translation>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudFTPAccessPage</name>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="337"/>
- <source>ftp.mydomain.org</source>
- <translation>ftp.mydomain.org</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="338"/>
- <source>john</source>
- <translation>ジョン</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="339"/>
- <source>secret</source>
- <translation>秘密</translation>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudSetupPage</name>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="80"/>
- <source>Create the %1 Connection</source>
- <translation>%1 接続を作成</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="81"/>
- <source>Enter Server Name and Credentials</source>
- <translation>サーバ名と資格情報を入力してください</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="103"/>
- <source>john</source>
- <translation>ジョン</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="104"/>
- <source>secret</source>
- <translation>秘密</translation>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudSetupWizard</name>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="70"/>
- <source>%1 Connection Wizard</source>
- <translation>%1 接続ウィザード</translation>
- </message>
- <message>
- <source>Trying to connect to ownCloud at %1...</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source><font color="green">Successfully connected to %1: ownCloud version %2 (%3)</font><br/><br/></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source><font color="red">Failed to connect to ownCloud!</font></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="130"/>
- <source>Trying to connect to %1 at %2...</source>
- <translation>%2 の %1 へ接続を試みています...</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="164"/>
- <source><font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/></source>
- <translation><font color="green">正常に %1 へ接続されました:%2 バージョン %3 (%4)</font><br/><br/></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="176"/>
- <source><font color="red">Failed to connect to %1!</font></source>
- <translation><font color="red">%1 への接続に失敗!</font></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="178"/>
- <source>Error: <tt>%1</tt></source>
- <translation>エラー: <tt>%1</tt></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="263"/>
- <source>Starting script owncloud-admin...</source>
- <translation>owncloud-adminスクリプトを開始...</translation>
- </message>
- <message>
- <source><font color="red">Installation of ownCloud failed!</font></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source><font color="green">Installation of ownCloud succeeded!</font></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="314"/>
- <source><font color="red">Installation of %1 failed!</font></source>
- <translation><font color="red">%1 のインストールに失敗しました!</font></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="319"/>
- <source><font color="green">Installation of %1 succeeded!</font></source>
- <translation><font color="green">%1 のインストールに成功しました!</font></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="358"/>
- <source>The owncloud admin script can not be found.
- Setup can not be done.</source>
- <translation>owncloudの管理者用スクリプトが見つかりません。
- セットアップを完了できません。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="399"/>
- <source>Creation of remote folder %1 could not be started.</source>
- <translation>リモートフォルダ %1 の生成を開始できませんでした。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="423"/>
- <source>Remote folder %1 created successfully.</source>
- <translation>リモートフォルダ %1 は正常に生成されました。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="425"/>
- <source>The remote folder %1 already exists. Connecting it for syncing.</source>
- <translation>リモートフォルダ %1 は既に存在します。同期のために接続しています。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="427"/>
- <source>The folder creation resulted in HTTP error code %1</source>
- <translation>フォルダの作成はHTTPのエラーコード %1 で終了しました</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="448"/>
- <source>A sync connection from %1 to remote directory %2 was set up.</source>
- <translation>%1 からリモートディレクトリ %2 への同期接続を設定しました。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="453"/>
- <source>Succesfully connected to %1!</source>
- <translation>正常に %1 に接続されました!</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="459"/>
- <source>Connection to %1 could not be established. Please check again.</source>
- <translation>%1 への接続を確立できませんでした。もう一度確認して下さい。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="456"/>
- <source>Press Finish to permanently accept this connection.</source>
- <translation>この接続を常に許可する場合は完了を押してください。</translation>
- </message>
- <message>
- <source>Skipping automatic setup of sync folders as there are already sync folders.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Checking local sync folder %1</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="378"/>
- <source>Local sync folder %1 already exists, setting it up for sync.<br/><br/></source>
- <translation>ローカルの同期フォルダ %1 はすでに存在しています、同期のために設定してください。<br/><br/></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="380"/>
- <source>Creating local sync folder %1... </source>
- <translation>ローカルの同期フォルダ %1 を作成中... </translation>
- </message>
- <message>
- <source>Creating local sync folder %1</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="383"/>
- <source>ok</source>
- <translation>OK</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="385"/>
- <source>failed.</source>
- <translation>失敗。</translation>
- </message>
- <message>
- <source>Start Creation of remote folder %1 failed.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Remote folder %1 created sucessfully.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="101"/>
- <source><font color="green"><b>Local sync folder %1 successfully created!</b></font></source>
- <translation><font color="green"><b>ローカルの同期フォルダ %1 は正常に作成されました!</b></font></translation>
- </message>
- <message>
- <source>The remote folder %1 already exists. Automatic sync setup is skipped for security reasons. Please configure your sync folder manually.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="429"/>
- <source><p><font color="red">Remote folder creation failed probably because the provided credentials are wrong.</font><br/>Please go back and check your credentials.</p></source>
- <translation><p><font color="red">おそらく資格情報が間違っているため、リモートフォルダの作成に失敗しました。</font><br/>前に戻り、資格情報をチェックしてください。</p></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="435"/>
- <source>Remote folder %1 creation failed with error <tt>%2</tt>.</source>
- <translation>リモートフォルダ %1 の作成がエラーで失敗しました。<tt>%2</tt>.</translation>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudWelcomePage</name>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="60"/>
- <source>Welcome to %1</source>
- <translation>%1 へようこそ</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="61"/>
- <source>Set up your server connection</source>
- <translation>サーバ接続を設定</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="69"/>
- <source><p>In order to connect to your %1 server, you need to provide the server address as well as your credentials.</p><p>This wizard will guide you through the process.<p><p>If you have not received this information, please contact your %1 hosting provider.</p></source>
- <translation><p>%1 サーバに接続するために、サーバのアドレスと資格情報を入力する必要があります。</p><p>このウィザードはその手順をガイドします。<p><p>もしこの情報を受け取れないなら、%1 ホストプロバイダにコンタクトをしてください。</p></translation>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudWizardResultPage</name>
- <message>
- <source>Congratulations! Your <a href="%1" title="%1">new ownCloud</a> is now up and running!</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="462"/>
- <source>Congratulations! Your <a href="%1" title="%1">new %2</a> is now up and running!</source>
- <translation>おめでとうございます!あなたの <a href="%1" title="%1">新しい %2</a> の設定は完了し、実行中です!</translation>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudWizardSelectTypePage</name>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="236"/>
- <source>http://owncloud.mydomain.org</source>
- <translation>http://owncloud.mydomain.org</translation>
- </message>
- </context>
- <context>
- <name>Mirall::ProxyDialog</name>
- <message>
- <location filename="../src/mirall/proxydialog.cpp" line="31"/>
- <source>Hostname of proxy server</source>
- <translation>プロキシサーバのホスト名</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.cpp" line="32"/>
- <source>Username for proxy server</source>
- <translation>プロキシサーバ用のユーザ名</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.cpp" line="33"/>
- <source>Password for proxy server</source>
- <translation>プロキシサーバ用のパスワード</translation>
- </message>
- </context>
- <context>
- <name>Mirall::SslErrorDialog</name>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="28"/>
- <source>SSL Connection</source>
- <translation>SSL接続</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="97"/>
- <source>Warnings about current SSL Connection:</source>
- <translation>現在のSSL接続に対する警告:</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="145"/>
- <source>with Certificate %1</source>
- <translation>証明書 %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="153"/>
- <location filename="../src/mirall/sslerrordialog.cpp" line="154"/>
- <location filename="../src/mirall/sslerrordialog.cpp" line="155"/>
- <source>&lt;not specified&gt;</source>
- <translation>&lt;指定されていませんd&gt;</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="156"/>
- <location filename="../src/mirall/sslerrordialog.cpp" line="176"/>
- <source>Organization: %1</source>
- <translation>組織名: %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="157"/>
- <location filename="../src/mirall/sslerrordialog.cpp" line="177"/>
- <source>Unit: %1</source>
- <translation>部門名: %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="158"/>
- <location filename="../src/mirall/sslerrordialog.cpp" line="178"/>
- <source>Country: %1</source>
- <translation>国: %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="165"/>
- <source>Fingerprint (MD5): <tt>%1</tt></source>
- <translation>Fingerprint (MD5): <tt>%1</tt></translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="166"/>
- <source>Fingerprint (SHA1): <tt>%1</tt></source>
- <translation>Fingerprint (SHA1): <tt>%1</tt></translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="168"/>
- <source>Effective Date: %1</source>
- <translation>発効日: %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="169"/>
- <source>Expiry Date: %1</source>
- <translation>有効期限: %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="173"/>
- <source>Issuer: %1</source>
- <translation>発行者: %1</translation>
- </message>
- </context>
- <context>
- <name>Mirall::StatusDialog</name>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="272"/>
- <source>Pause</source>
- <translation>一時停止</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="274"/>
- <source>Resume</source>
- <translation>再開</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="473"/>
- <source>Checking %1 connection...</source>
- <translation>%1 の接続を確認中...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="478"/>
- <source>No %1 connection configured.</source>
- <translation>%1 の接続は設定されていません。</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="501"/>
- <source>Connected to <a href="%1">%1</a> as <i>%2</i>.</source>
- <translation><a href="%1">%1</a> へ <i>%2</i> として接続しました。</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="503"/>
- <source>Version: %1 (%2)</source>
- <translation>バージョン: %1 (%2)</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="519"/>
- <source><p>Failed to connect to %1: <tt>%2</tt></p></source>
- <translation><p>%1 への接続に失敗: <tt>%2</tt></p></translation>
- </message>
- <message>
- <source>Checking ownCloud connection...</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>No ownCloud connection configured.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Connected to <a href="%1">%2</a>, ownCloud %3</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Version: %1</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="516"/>
- <source>unknown problem.</source>
- <translation>未知の問題。</translation>
- </message>
- <message>
- <source><p>Failed to connect to ownCloud: <tt>%1</tt></p></source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>Mirall::Theme</name>
- <message>
- <source>Status undefined</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Waiting to start sync</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Sync is running</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Sync Success</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Sync Error - Click info button for details.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Setup Error</source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>Mirall::UpdateDetector</name>
- <message>
- <location filename="../src/mirall/updatedetector.cpp" line="114"/>
- <source>Client Version Check</source>
- <translation>クライアントのバージョンをチェック</translation>
- </message>
- <message>
- <location filename="../src/mirall/updatedetector.cpp" line="116"/>
- <source><p>A new version of the %1 client is available.</source>
- <translation><p>%1 クライアントの新しいバージョンが利用可能です。</translation>
- </message>
- <message>
- <source><p>A new version of the ownCloud Client is available.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/updatedetector.cpp" line="117"/>
- <source>%1 is available. The installed version is %3.<p/><p>For more information see <a href="%2">%2</a></p></source>
- <translation>%1 が利用可能です。インストールされているバージョンは %3 です。<p/><p>より詳細な情報は <a href="%2">%2</a> を確認してください。</p></translation>
- </message>
- </context>
- <context>
- <name>Mirall::ownCloudFolder</name>
- <message>
- <location filename="../src/mirall/owncloudfolder.cpp" line="280"/>
- <source>The CSync thread terminated.</source>
- <translation>CSyncのスレッドが終了しました。</translation>
- </message>
- </context>
- <context>
- <name>MirallConfigFile</name>
- <message>
- <source>ownCloud Password Required</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Please enter your ownCloud password:</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/credentialstore.cpp" line="75"/>
- <source>Password Required</source>
- <translation>パスワードが必要</translation>
- </message>
- <message>
- <location filename="../src/mirall/credentialstore.cpp" line="76"/>
- <source>Please enter your %1 password:</source>
- <translation>%1 のパスワードを入力してください:</translation>
- </message>
- </context>
- <context>
- <name>OwncloudCredentialsPage</name>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="29"/>
- <source>ownCloud Credentials</source>
- <translation>ownCloudの資格情報</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="51"/>
- <source>Provide ownCloud Credentials</source>
- <translation>ownCloudの資格情報を提供</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="57"/>
- <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt; color:#585858;">Please enter the username and password for your ownCloud Instance. </span></p>
- <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt; color:#585858;"><br /></p>
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt; color:#585858;">If you do not wish to store the credentials on your local machine, check the box. ownCloud will prompt you for your password every time the client starts.</span></p></body></html></source>
- <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt; color:#585858;">ownCloudのユーザとパスワードを入力してください。</span></p>
- <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt; color:#585858;"><br /></p>
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt; color:#585858;">ローカルに認証情報を保存したくない場合は、チェックボックスにチェックしてください。ownCloudはクライアント開始時に毎回パスワードの入力を求めます。</span></p></body></html></translation>
- </message>
- <message>
- <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt; color:#585858;">Provide username and password to connect your ownCloud Instance. </span></p>
- <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt; color:#585858;"><br /></p>
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt; color:#585858;">If you do not want to store the credentials on your local machine, check the button. ownCloud will ask you for the passwort on every start than.</span></p></body></html></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="84"/>
- <source>ownCloud-User:</source>
- <translation>ownCloudユーザ:</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="98"/>
- <source>Password:</source>
- <translation>パスワード:</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="115"/>
- <source>Do not store password on local machine.</source>
- <translation>ローカルマシンにパスワードを保存しない。</translation>
- </message>
- <message>
- <source>john</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>secret</source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>OwncloudFTPAccessPage</name>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="29"/>
- <source>FTP Access to your Webaccount:</source>
- <translation>あなたのウェブアカウントへのFTPアクセス:</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="51"/>
- <source>FTP Details and Credentials</source>
- <translation>FTPの詳細と資格情報</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="57"/>
- <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:11pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">The details here are used to install the owncloud data on your web space which is accessible over ftp. </span></p></body></html></source>
- <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:11pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">この詳細情報は、FTP経由でアクセス可能なウェブスペース上のowncloudデータのインストールに利用できます。</span></p></body></html></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="79"/>
- <source>FTP-URL:</source>
- <translation>FTP-URL:</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="93"/>
- <source>FTP-User:</source>
- <translation>FTP-User:</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="107"/>
- <source>Password:</source>
- <translation>パスワード:</translation>
- </message>
- <message>
- <source>ftp.mydomain.org</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>john</source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>OwncloudSetupPage</name>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="20"/>
- <source>Server &address:</source>
- <translation>サーバアドレス(&A):</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="140"/>
- <source>https://</source>
- <translation>https://</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="147"/>
- <source>Enter the url of the ownCloud you want to connect to (without http or https).</source>
- <translation>接続するownCloudのURL(httpやhttpsを含めない)を入力してください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="47"/>
- <source>Use &secure connection</source>
- <translation>暗号化通信を利用(&S)</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="60"/>
- <source>CheckBox</source>
- <translation>チェックボックス</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="75"/>
- <source>&Username:</source>
- <translation>ユーザ名(&U)</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="85"/>
- <source>Enter the ownCloud username.</source>
- <translation>ownCloudのユーザ名を入力してください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="92"/>
- <source>&Password:</source>
- <translation>パスワード(&P)</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="102"/>
- <source>Enter the ownCloud password.</source>
- <translation>ownCloudのパスワードを入力してください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="117"/>
- <source>Do not allow the local storage of the password.</source>
- <translation>パスワードのローカルストレージへの保存を許可しない。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="120"/>
- <source>&Do not store password on local machine.</source>
- <translation>ローカルマシンにパスワードを保存しない(&D)。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="36"/>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="129"/>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="156"/>
- <source>TextLabel</source>
- <translation>テキストラベル</translation>
- </message>
- </context>
- <context>
- <name>OwncloudWizardResultPage</name>
- <message>
- <location filename="../src/mirall/owncloudwizardresultpage.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardresultpage.ui" line="43"/>
- <source>Result</source>
- <translation>結果</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardresultpage.ui" line="65"/>
- <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:11pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">This page shows the status of the connection.</span></p></body></html></source>
- <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:11pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">このページは接続の状態を表示します。</span></p></body></html></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardresultpage.ui" line="27"/>
- <location filename="../src/mirall/owncloudwizardresultpage.ui" line="85"/>
- <source>TextLabel</source>
- <translation>テキストラベル</translation>
- </message>
- </context>
- <context>
- <name>OwncloudWizardSelectTypePage</name>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="29"/>
- <source>Create an ownCloud Connection</source>
- <translation>ownCloud接続を作成</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="51"/>
- <source>Select the ownCloud you want to connect to</source>
- <translation>接続したいownCloudを選択</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="63"/>
- <source>connect my ownCloud</source>
- <translation>ownCloudへ接続</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="89"/>
- <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt; color:#585858;">Specify the ownCloud you want to connect to.</span></p>
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt; color:#585858;">Enter the web address of your ownCloud server below.</span></p></body></html></source>
- <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt; color:#585858;">接続したいownCloudを指定してください。</span></p>
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt; color:#585858;">ownCloudサーバのWEBアドレスを入力してください。</span></p></body></html></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="110"/>
- <source>ownCloud-Link:</source>
- <translation>ownCloudリンク:</translation>
- </message>
- <message>
- <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:11pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">Select this option if you have an ownCloud instance running on a server.</span></p>
- <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; color:#585858;"></p>
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">Enter the web address of your ownCloud below.</span></p></body></html></source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>ownCloud-URL:</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="120"/>
- <source>Note: To specify an SSL secured connection, start the url with https.</source>
- <translation>注意: SSL暗号化通信を指定するためには、httpsから始まるURLを指定してください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="133"/>
- <source>create a new ownCloud</source>
- <translation>新しいownCloudを作成</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="156"/>
- <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:11pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">Select if you want to create a new ownCloud either on the local machine or on your server. </span></p>
- <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; color:#585858;"></p>
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">This wizard will guide you through all neccessary steps.</span></p></body></html></source>
- <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
- <html><head><meta name="qrichtext" content="1" /><style type="text/css">
- p, li { white-space: pre-wrap; }
- </style></head><body style=" font-family:'Sans Serif'; font-size:11pt; font-weight:400; font-style:normal;">
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">ローカルマシンもしくはサーバー上に新しいownCloudを作成したいなら選択してください。</span></p>
- <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; color:#585858;"></p>
- <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#585858;">このウィザードは必要な全てのステップをガイドします。</span></p></body></html></translation>
- </message>
- <message>
- <source>http://owncloud.mydomain.org</source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>QObject</name>
- <message>
- <source>ownCloud Password Required</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Please enter your ownCloud password:</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/theme.cpp" line="42"/>
- <location filename="../src/mirall/theme.cpp" line="60"/>
- <source>Status undefined</source>
- <translation>未定義の状態</translation>
- </message>
- <message>
- <location filename="../src/mirall/theme.cpp" line="45"/>
- <source>Waiting to start sync</source>
- <translation>同期開始を待っています</translation>
- </message>
- <message>
- <location filename="../src/mirall/theme.cpp" line="48"/>
- <source>Sync is running</source>
- <translation>同期を実行中</translation>
- </message>
- <message>
- <location filename="../src/mirall/theme.cpp" line="51"/>
- <source>Sync Success</source>
- <translation>同期成功</translation>
- </message>
- <message>
- <location filename="../src/mirall/theme.cpp" line="54"/>
- <source>Sync Error - Click info button for details.</source>
- <translation>同期エラー: ボタンを押して詳細を確認してください。</translation>
- </message>
- <message>
- <location filename="../src/mirall/theme.cpp" line="57"/>
- <source>Setup Error</source>
- <translation>設定エラー</translation>
- </message>
- </context>
- <context>
- <name>appname</name>
- <message>
- <source>ownCloud</source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>proxyDialog</name>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="14"/>
- <source>Proxy Settings</source>
- <translation>プロキシ設定</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="26"/>
- <source>Configure Proxies</source>
- <translation>プロキシを設定</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="43"/>
- <source>No Proxy</source>
- <translation>プロキシを利用しない</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="53"/>
- <source>Use system proxy</source>
- <translation>システムのプロキシを利用</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="60"/>
- <source>Manual proxy configuration</source>
- <translation>マニュアルでプロキシを設定</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="90"/>
- <source>User</source>
- <translation>ユーザ</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="116"/>
- <source>Password</source>
- <translation>パスワード</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="142"/>
- <source>Port</source>
- <translation>ポート</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="149"/>
- <source>Host</source>
- <translation>ホスト</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="172"/>
- <source>Proxy server requires password</source>
- <translation>プロキシサーバにはパスワードが必要</translation>
- </message>
- </context>
- <context>
- <name>sslErrorDialog</name>
- <message>
- <location filename="../src/mirall/sslerrordialog.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.ui" line="25"/>
- <source>Trust this certificate anyway</source>
- <translation>この証明書を信用する</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.ui" line="44"/>
- <source>SSL Connection</source>
- <translation>SSL接続</translation>
- </message>
- </context>
- <context>
- <name>sslErrorsDialog</name>
- <message>
- <source>Form</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>Check if you want t continue via SSL and trust the shown certificates.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>SSL Connection</source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>statusDialog</name>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="14"/>
- <source>Form</source>
- <translation>フォーム</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="25"/>
- <source>Sync Directory Status</source>
- <translation>同期ディレクトリの状態</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="41"/>
- <source>Add Sync...</source>
- <translation>同期を追加...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="48"/>
- <source>Remove...</source>
- <translation>削除...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="58"/>
- <source>Fetch...</source>
- <translation>取得...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="65"/>
- <source>Push...</source>
- <translation>送信...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="72"/>
- <source>Pause</source>
- <translation>一時停止</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="79"/>
- <source>Info...</source>
- <translation>情報...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="103"/>
- <source>TextLabel</source>
- <translation>テキストラベル</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="132"/>
- <source>Close</source>
- <translation>閉じる</translation>
- </message>
- </context>
- </TS>
|