| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854 |
- <?xml version="1.0" ?><!DOCTYPE TS><TS language="pl" version="2.0">
- <context>
- <name>CreateAnOwncloudPage</name>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="14"/>
- <source>Form</source>
- <translation>Formularz</translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="39"/>
- <source>Create a new ownCloud</source>
- <translation>Utwórz nową własną chmurę</translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="61"/>
- <source>Where do you want to create your ownCloud?</source>
- <translation>Gdzie chcesz utworzyć własna chmurę?</translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="73"/>
- <source>create ownCloud on this computer</source>
- <translation>utwórz własna chmurę na tym komputerze</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;">instaluje ownCloud na tym komputerze. Inni użytkownicy nie będą mieli domyślnie dostępu do twoich danych.</span></p></body></html></translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="132"/>
- <source>create ownCloud on my internet domain</source>
- <translation>utwórz własna chmurę na mojej domenie internetowej</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;">instaluje ownCloud w twojej domenie, do której masz uprawnienia. Aby zainstalować musisz mieć dostęp do 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;">Ten ownCloud będzie dostępny z Internetu.</span></p></body></html></translation>
- </message>
- <message>
- <location filename="../src/mirall/createanowncloudpage.ui" line="177"/>
- <source>&Domain:</source>
- <translation>&Domena:</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>Formularz</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardnetworkpage.ui" line="27"/>
- <source>Network Settings</source>
- <translation>Ustawienia Sieciowe</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardnetworkpage.ui" line="34"/>
- <source>Set networking options:</source>
- <translation>Ustaw opcje sieciowe:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardnetworkpage.ui" line="40"/>
- <source>Only enable if network is available</source>
- <translation>Włącz tylko jeśli połączenie sieciowe jest dostępne</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardnetworkpage.ui" line="47"/>
- <source>restrict to this local network</source>
- <translation>Ogranicz do sieci lokalnej</translation>
- </message>
- </context>
- <context>
- <name>FolderWizardOwncloudPage</name>
- <message>
- <location filename="../src/mirall/folderwizardowncloudpage.ui" line="14"/>
- <source>Form</source>
- <translation>Formularz</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardowncloudpage.ui" line="20"/>
- <source>ownCloud Settings</source>
- <translation>Konfiguracja 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>Użytkownik:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardowncloudpage.ui" line="46"/>
- <source>Password:</source>
- <translation>Hasło:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardowncloudpage.ui" line="63"/>
- <source>Alias:</source>
- <translation>Alias:</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>Formularz</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardsourcepage.ui" line="25"/>
- <source>Sync Directory</source>
- <translation>Katalog synchronizacji</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardsourcepage.ui" line="32"/>
- <source>Pick a local folder on your computer to sync:</source>
- <translation>Wybierz folder lokalny na komputerze do synchronizacji:</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardsourcepage.ui" line="43"/>
- <source>&Choose...</source>
- <translation>&Wybierz...</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardsourcepage.ui" line="54"/>
- <source>&Directory alias name:</source>
- <translation>&Nazwa aliasu katalogu:</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>Muzyka</translation>
- </message>
- </context>
- <context>
- <name>FolderWizardTargetPage</name>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="14"/>
- <source>Form</source>
- <translation>Formularz</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>Synchronizacja docelowa</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="51"/>
- <source>Select a destination folder for your data</source>
- <translation>Wybierz folder docelowy dla danych</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="88"/>
- <source>on your &ownCloud server</source>
- <translation>na twoim serwerze &ownCloud</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="103"/>
- <source>Folder on ownCloud:</source>
- <translation>Folder na ownCloud</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="152"/>
- <source>to a &local folder</source>
- <translation>do &lokalnego folderu</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="165"/>
- <source>Folder name:</source>
- <translation>Nazwa Folderu</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="175"/>
- <source>C&hoose..</source>
- <translation>&Wybierz...</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="222"/>
- <source>to a &remote folder (URL)</source>
- <translation>do &zdalnego folderu (URL)</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>Etykieta tekstu</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizardtargetpage.ui" line="387"/>
- <source>create</source>
- <translation>utwórz</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://jan@host.pl//mojfolder</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="241"/>
- <source><p>The detailed error message is<br/><tt>%1</tt></p></source>
- <translation><p>Szczegółowy komunikat to<br/><tt>%1</tt></p></translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="243"/>
- <source><p>Please check your configuration by clicking on the tray icon.</p></source>
- <translation><p>Sprawdź konfigurację, klikając ikonę w zasobniku.</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="345"/>
- <source>Sync started for %1 configured sync folder(s).</source>
- <translation>Synchronizacja rozpoczęta dla %1 folderu(ów).</translation>
- </message>
- <message>
- <source>Open ownCloud...</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="397"/>
- <source>Open status...</source>
- <translation>Otwieranie statusów...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="399"/>
- <source>Add folder...</source>
- <translation>Dodaj katalog...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="401"/>
- <source>Configure...</source>
- <translation>Konfiguruj...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="403"/>
- <source>Configure proxy...</source>
- <translation>Konfiguruj serwer proxy...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="407"/>
- <source>Quit</source>
- <translation>Wyjdź</translation>
- </message>
- <message>
- <source>open folder %1</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="224"/>
- <source>%1 Server Mismatch</source>
- <translation>Niezgodność serwera %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="225"/>
- <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>Skonfigurowany serwer dla tego klienta jest za stary.</p><p>Uaktualnij do ostatniej %1 serwer i uruchom ponowniej klienta.</p></translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="240"/>
- <source><p>The %1 at %2 could not be reached.</p></source>
- <translation><p>%1 w %2 nie jest osiągalny.</p></translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="245"/>
- <source>%1 Connection Failed</source>
- <translation>%1 Połączenie nie powiodło się</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="267"/>
- <source>Too many user attempts to enter password.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="268"/>
- <location filename="../src/mirall/application.cpp" line="285"/>
- <source>Credentials</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="279"/>
- <source>Error: Could not retrieve the password!</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="281"/>
- <source>Password dialog was canceled!</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="315"/>
- <location filename="../src/mirall/application.cpp" line="324"/>
- <source>No %1 Connection</source>
- <translation>%1 Nie ma połączenia</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="316"/>
- <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>Twoje %1 dane nie są poprawne.</p><p>Prosze popraw je, startując okno dialogowe konfiguracji w zasobniku!</p></translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="325"/>
- <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>Błędna nazwa użytkownika lub hasło.</p><p>Prosze popraw to, startując okno dialogowe konfiguracji w zasobniku!</p></translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="344"/>
- <source>%1 Sync Started</source>
- <translation>%1 Synchronizacja Rozpoczęta</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="395"/>
- <source>Open %1 in browser...</source>
- <translation>Otwórz %1 w przeglądarce...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="405"/>
- <source>About...</source>
- <translation>O...</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="461"/>
- <source>Open %1 folder</source>
- <translation>Otwórz folder %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="474"/>
- <source>Managed Folders:</source>
- <translation>Zarządzane foldery:</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="708"/>
- <source>About %1</source>
- <translation>O %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="709"/>
- <source>%1 client, version %2
- Copyright 2012, the ownCloud developers.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="720"/>
- <source>Confirm Folder Remove</source>
- <translation>Potwierdź usunięcie katalogu</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="721"/>
- <source>Do you really want to remove upload folder <i>%1</i>?</source>
- <translation>Czy na pewno chcesz usunąć wczytany folder <i>%1</i>?</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="755"/>
- <source>Undefined Folder State</source>
- <translation>Niezdefiniowany stan folderu</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="758"/>
- <source>The folder waits to start syncing.</source>
- <translation>Folder czeka na uruchamianie synchronizacji</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="761"/>
- <location filename="../src/mirall/application.cpp" line="931"/>
- <source>Sync is running.</source>
- <translation>Synchronizacja w toku</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="764"/>
- <location filename="../src/mirall/application.cpp" line="936"/>
- <source>Last Sync was successful.</source>
- <translation>Ostatnia synchronizacja zakończona powodzeniem.</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="767"/>
- <location filename="../src/mirall/application.cpp" line="942"/>
- <source>Syncing Error.</source>
- <translation>Błąd synchronizacji</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="770"/>
- <location filename="../src/mirall/application.cpp" line="948"/>
- <source>Setup Error.</source>
- <translation>Błąd ustawień.</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="773"/>
- <location filename="../src/mirall/application.cpp" line="951"/>
- <source>Undefined Error State.</source>
- <translation>Niezdefiniowany błąd stanu.</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="777"/>
- <source>Folder information</source>
- <translation>Informacje o folderze</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="792"/>
- <source>Unknown</source>
- <translation>Nieznany</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="794"/>
- <source>Changed files:
- </source>
- <translation>Zmień plik:</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="796"/>
- <source>Added files:
- </source>
- <translation>Dodaj plik:</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="798"/>
- <source>New files in the server, or files deleted locally:
- </source>
- <translation>Nowe pliki na serwerze lub pliki usunięte lokalnie:</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="824"/>
- <source>Sync Running</source>
- <translation>Synchronizacja uruchomiona</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="825"/>
- <source>The syncing operation is running.<br/>Do you want to terminate it?</source>
- <translation>Operacja synchronizacji jest uruchomiona.<br>Czy chcesz ją zakończyć?</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="924"/>
- <source>Undefined State.</source>
- <translation>Niezdefiniowany stan</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="927"/>
- <source>Waits to start syncing.</source>
- <translation>Czekają na uruchomienie synchronizacji.</translation>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="956"/>
- <source> (Sync is paused)</source>
- <translation> (Synchronizacja jest zatrzymana)</translation>
- </message>
- <message>
- <source>Sync is paused.</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/application.cpp" line="973"/>
- <source>No sync folders configured.</source>
- <translation>Nie skonfigurowano synchronizacji folderów.</translation>
- </message>
- </context>
- <context>
- <name>Mirall::CSyncThread</name>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="209"/>
- <source>CSync create failed.</source>
- <translation>Nie można utworzyć CSync.</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="245"/>
- <source>CSync failed to create a lock file.</source>
- <translation>CSync - nie udało się utworzyć pliku blokady.</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="248"/>
- <source>CSync failed to load the state db.</source>
- <translation>CSync - nie udało się wczytać stanu bd.</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>Czas systemowy na tym kliencie różni się od czasu systemowego na serwerze. Użyj usługi synchronizacji czasu (NTP) na serwerze i kliencie, aby czas na obu urządzeniach był taki sam.</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="256"/>
- <source>CSync could not detect the filesystem type.</source>
- <translation>CSync nie może wykryć systemu plików.</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="259"/>
- <source>CSync got an error while processing internal trees.</source>
- <translation>CSync napotkał błąd podczas przetwarzania wewnętrznego drzewa.</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>Katalog docelowy %1 nie istnieje.</p><p>Sprawdź ustawienia synchronizacji.</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>Nie można zapisywać na lokalnym systemie plików. Sprawdź uprawnienia.</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>Zdalny plik nie może zostać zapisany. Sprawdź uprawnienia.</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="279"/>
- <source>An internal error number %1 happend.</source>
- <translation>Wystąpił błąd wewnętrzny numer %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>Błąd CSync: nie udało się połączyć z hostem. Ustawienia hosta lub serwera proxy nie są prawidłowe.</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="298"/>
- <source>CSync Update failed.</source>
- <translation>CSync - Aktualizacja nie powiodła się.</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>Wtyczka %1 do csync nie może być załadowana.<br/>Prosze zweryfikuj instalację!</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 napotkał błąd podczas rozpatrywania systemu plików.
- Synchronizacja nie jest możliwa.</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>Aktualizacja CSync generuje dziwne instrukcje.
- Proszę napisz raport o błędzie.</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="318"/>
- <source>Local filesystem problems. Better disable Syncing and check.</source>
- <translation>Problemy z lokalnym systemem plików. Lepiej wyłączyć Synchronizację i to sprawdzić.</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>Lokalny system plików %1 ma chroniony zapis katalogów. Mogą wystąpić utrudnienia, synchronizacji. <p/>Upewnij się, że wszystkie katalogi lokalne są zapisywalne.</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="343"/>
- <source>CSync reconcile failed.</source>
- <translation>Uzgadnianie CSync nie powiodło się.</translation>
- </message>
- <message>
- <location filename="../src/mirall/csyncthread.cpp" line="347"/>
- <source>File exchange with ownCloud failed. Sync was stopped.</source>
- <translation type="unfinished"/>
- </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="363"/>
- <source>mydomain.org</source>
- <translation>mojadomena.pl</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>Folder lokalny %1 nie istnieje.</translation>
- </message>
- <message>
- <location filename="../src/mirall/folder.cpp" line="102"/>
- <source>%1 should be a directory but is not.</source>
- <translation>%1 powinien być katalogiem ale nie jest.</translation>
- </message>
- <message>
- <location filename="../src/mirall/folder.cpp" line="105"/>
- <source>%1 is not readable.</source>
- <translation>%1 jest nie do odczytu.</translation>
- </message>
- </context>
- <context>
- <name>Mirall::FolderViewDelegate</name>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="176"/>
- <source>Remote path: %1</source>
- <translation>Zdalna ścieżka: %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 Kreator folderów</translation>
- </message>
- </context>
- <context>
- <name>Mirall::FolderWizardSourcePage</name>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="74"/>
- <source>No local directory selected!</source>
- <translation>Nie wybrano lokalnego katalogu</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>Ścieżka lokalna %1 już istnieje w zdalnym folderze.<br>Proszę wybrać inną!</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="94"/>
- <source>An already configured folder is contained in the current entry.</source>
- <translation>Folder jest już skonfigurowany w bieżącym wpisie.</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="99"/>
- <source>An already configured folder contains the currently entered directory.</source>
- <translation>Folder już skonfigurowany zawiera katalogi aktualnie wprowadzone.</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>Alias nie może być pusty. Proszę wprowadzić alias.</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/>Alias <i>%1</i> jest już używany. Proszę wprowadź inny alias.</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="141"/>
- <source>Select the source folder</source>
- <translation>Wybierz katalog źródłowy</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>Folder nie jest dostępny na twoim %1.<br/>Kliknij, aby go utworzyć.</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="237"/>
- <source>Folder was successfully created on %1.</source>
- <translation>Folder został utworzony pomyślnie na %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>Nie udało się utworzyć folderu na %1.<br/>Proszę sprawdzić ręcznie.</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>Lepiej nie używać zdalnego katalogu.<br/>Jeśli możesz <b>nie</b> dubluj innego lokalnego folderu.</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="315"/>
- <source>to your <a href="%1">%2</a> (version %3)</source>
- <translation>do twojego <a href="%1">%2</a> (wersja %3)</translation>
- </message>
- <message>
- <location filename="../src/mirall/folderwizard.cpp" line="326"/>
- <source>no configured %1 found!</source>
- <translation>Znaleznono brak konfiguracji %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 nie jest osiągalny:<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>Wybierz docelowy folder</translation>
- </message>
- </context>
- <context>
- <name>Mirall::LogBrowser</name>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="122"/>
- <source>Log Output</source>
- <translation>Logi wyjściowe</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="134"/>
- <source>&Search: </source>
- <translation>&Szukaj: </translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="142"/>
- <source>&Find</source>
- <translation>&Znajdź</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="160"/>
- <source>Clear</source>
- <translation>Czyść</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="161"/>
- <source>Clear the log display.</source>
- <translation>Wyczyść wyświetlane logi</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="167"/>
- <source>S&ave</source>
- <translation>Z&apisz</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>Zapisz plik dziennika do pliku na dysku w celu debugowania.</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="206"/>
- <location filename="../src/mirall/logbrowser.cpp" line="263"/>
- <source>Error</source>
- <translation>Błąd</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>Plik '%1'<br>nie można otworzyć do zapisu.<br/><br/>Dane wyjściowe dziennika <b>nie</b> mogą być zapisywane!</nobr></translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="253"/>
- <source>Save log file</source>
- <translation>Zapisz plik dziennika</translation>
- </message>
- <message>
- <location filename="../src/mirall/logbrowser.cpp" line="263"/>
- <source>Could not write to log file </source>
- <translation>Nie można zapisać w pliku dziennika</translation>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudCredentialsPage</name>
- <message>
- <source>john</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>secret</source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudFTPAccessPage</name>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="321"/>
- <source>ftp.mydomain.org</source>
- <translation>ftp.mojadomena.pl</translation>
- </message>
- <message>
- <source>john</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>secret</source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudSetupPage</name>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="79"/>
- <source>Create the %1 Connection</source>
- <translation>Utwórz połączenie %1</translation>
- </message>
- <message>
- <source>john</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <source>secret</source>
- <translation type="unfinished"/>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudSetupWizard</name>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="70"/>
- <source>%1 Connection Wizard</source>
- <translation>%1 Kreator połączeń</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>Prubuje połączyć się z %1 w %2...</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">Udane połączenie %1: %2 wersja %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">Błąd połączenia do %1!</font></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="178"/>
- <source>Error: <tt>%1</tt></source>
- <translation>Błąd: <tt>%1</tt></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="263"/>
- <source>Starting script owncloud-admin...</source>
- <translation>Uruchamianie skryptu 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">Instalacja %1 nie powiodła się!</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">Instalacja %1 powiodła się!</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>Nie można odnaleźć skryptu owncloud-admin.
- Instalacja nie może być wykonywana.</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="399"/>
- <source>Creation of remote folder %1 could not be started.</source>
- <translation>Tworzenie folderu zdalnego %1 nie może zostać uruchomione.</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="423"/>
- <source>Remote folder %1 created successfully.</source>
- <translation>Zdalny folder %1 został utworzony pomyślnie.</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="425"/>
- <source>The remote folder %1 already exists. Connecting it for syncing.</source>
- <translation>Zdalny folder %1 już istnieje. Podłączyć go do synchronizowania.</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="427"/>
- <source>The folder creation resulted in HTTP error code %1</source>
- <translation>Tworzenie folderu spowodowało kod błędu 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>Połączenie synchronizacji z %1 do zdalnego katalogu %2 zostało skonfigurowane.</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="453"/>
- <source>Succesfully connected to %1!</source>
- <translation>Udane połączenie z %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>Połączenie z %1 nie może być nawiązane. Prosze sprawdź ponownie.</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="456"/>
- <source>Press Finish to permanently accept this connection.</source>
- <translation>Naciśnij przycisk Zakończ, aby zaakceptować to połączenie.</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>Lokalna synchronizacja folderu %1 już istnieje, ustawienie go do synchronizacji.</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetupwizard.cpp" line="380"/>
- <source>Creating local sync folder %1... </source>
- <translation>Tworzenie synchronizacji folderu lokalnego %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>Błąd.</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>Utworzenie folderu lokalnego %1 powiodło się!</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">Tworzenie folderu zdalnego nie udane, prawdopodobnie dostarczone poświadczenia są błędne.</font><br/>Proszę wróć i sprawdź poświadczenia.</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>Tworzenie folderu zdalnego %1 nie powiodło się z powodu błędu <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>Witamy w %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="68"/>
- <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>Aby połączyć się do serwera %1, musisz podać adres serwera i swoje dane do logowania.</p><p>Ten czarodziej poprowadzi cię przez cały proces.<p><p>Jeżeli nie otrzymałeś tej informacji, proszę skontaktuj się %1 ze swoim dostawcą.</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="444"/>
- <source>Congratulations! Your <a href="%1" title="%1">new %2</a> is now up and running!</source>
- <translation>Gratulacje! Twoje <a href="%1" title="%1">nowe %2</a> w pełni działa!</translation>
- </message>
- </context>
- <context>
- <name>Mirall::OwncloudWizardSelectTypePage</name>
- <message>
- <location filename="../src/mirall/owncloudwizard.cpp" line="227"/>
- <source>http://owncloud.mydomain.org</source>
- <translation>http://owncloud.mojadomena.pl</translation>
- </message>
- </context>
- <context>
- <name>Mirall::ProxyDialog</name>
- <message>
- <location filename="../src/mirall/proxydialog.cpp" line="31"/>
- <source>Hostname of proxy server</source>
- <translation>Nazwa hosta serwera proxy</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.cpp" line="32"/>
- <source>Username for proxy server</source>
- <translation>Nazwa użytkownika serwera proxy</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.cpp" line="33"/>
- <source>Password for proxy server</source>
- <translation>Hasło użytkownika serwera proxy</translation>
- </message>
- </context>
- <context>
- <name>Mirall::SslErrorDialog</name>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="28"/>
- <source>SSL Connection</source>
- <translation>Połączenie szyfrowane</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="97"/>
- <source>Warnings about current SSL Connection:</source>
- <translation>Ostrzeżenia dotyczące bieżącego połączenia SSL:</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="145"/>
- <source>with Certificate %1</source>
- <translation>z certyfikatem %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;nie określono&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>Organizacja: %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>Jednostka: %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>Państwo: %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="165"/>
- <source>Fingerprint (MD5): <tt>%1</tt></source>
- <translation>Skrót (MD5): <tt>%1</tt></translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="166"/>
- <source>Fingerprint (SHA1): <tt>%1</tt></source>
- <translation>Skrót (SHA1): <tt>%1</tt></translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="168"/>
- <source>Effective Date: %1</source>
- <translation>Data wejścia w życie: %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="169"/>
- <source>Expiry Date: %1</source>
- <translation>Data ważności: %1</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.cpp" line="173"/>
- <source>Issuer: %1</source>
- <translation>Emitent: %1</translation>
- </message>
- </context>
- <context>
- <name>Mirall::StatusDialog</name>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="272"/>
- <source>Pause</source>
- <translation>Wstrzymaj</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="274"/>
- <source>Resume</source>
- <translation>Wznów</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="473"/>
- <source>Checking %1 connection...</source>
- <translation>Sprawdzam %1 połączenie...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="478"/>
- <source>No %1 connection configured.</source>
- <translation>Połączenie %1 nie skonfigurowane.</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>Podłączony do <a href="%1">%1</a> as <i>%2</i>.</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.cpp" line="503"/>
- <source>Version: %1 (%2)</source>
- <translation>Wersja: %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>Błąd połączenia do %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>nieznany problem.</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>Sprawdź wersję klienta</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>Nowa wersja klienta %1 jest dostępna.</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 jest dostępna. Zainstalowana wersja to %3.<p/><p>Aby uzyskać więcej informacji, zobacz <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>Wątek CSync zakończony.</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>Hasło wymagane</translation>
- </message>
- <message>
- <location filename="../src/mirall/credentialstore.cpp" line="76"/>
- <source>Please enter your %1 password:</source>
- <translation>Proszę podać twoje %1 hasło:</translation>
- </message>
- </context>
- <context>
- <name>OwncloudCredentialsPage</name>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="14"/>
- <source>Form</source>
- <translation>Formularz</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="29"/>
- <source>ownCloud Credentials</source>
- <translation>Poświadczenia ownCloud</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="51"/>
- <source>Provide ownCloud Credentials</source>
- <translation>Zapewnione poświadczenia 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;">Wprowadź nazwę użytkownika i hasło dla użytkownika 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;">Jeśli nie chcesz przechowywać poświadczenia na lokalnym komputerze, zaznacz pole wyboru. ownCloud będzie monitować o hasło przy każdym uruchomieniu klienta.</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>Użytkownik ownCloud:</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="98"/>
- <source>Password:</source>
- <translation>Hasło:</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudcredentialspage.ui" line="115"/>
- <source>Do not store password on local machine.</source>
- <translation>Nie przechowuj haseł na lokalnej maszynie.</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>Formularz</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="29"/>
- <source>FTP Access to your Webaccount:</source>
- <translation>Dostęp do serwera FTP z kontem w sieci Web:</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="51"/>
- <source>FTP Details and Credentials</source>
- <translation>Szczegóły FTP i poświadczenia</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;">Te szczegóły są używane do instalowania danych owncloud na Twoim obszarze sieci web, która jest dostępna przez protokół ftp. </span></p></body></html></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="79"/>
- <source>FTP-URL:</source>
- <translation>Adres FTP:</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="93"/>
- <source>FTP-User:</source>
- <translation>Użytkownik FTP:</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudftpaccesspage.ui" line="107"/>
- <source>Password:</source>
- <translation>Hasło:</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>Formularz</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="20"/>
- <source>Server &address:</source>
- <translation>Adres &serwera</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>Wprowadź adres url ownCloud, które chcesz połączyć (bez http lub https).</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="47"/>
- <source>Use &secure connection</source>
- <translation>Użyj &szyfrowane połączenie</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="60"/>
- <source>CheckBox</source>
- <translation>Pole wyboru</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="75"/>
- <source>&Username:</source>
- <translation>&Nazwa użytkownika:</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="85"/>
- <source>Enter the ownCloud username.</source>
- <translation>Wpisz nazwę użytkownika ownCloud</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="92"/>
- <source>&Password:</source>
- <translation>&Hasło</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="102"/>
- <source>Enter the ownCloud password.</source>
- <translation>Wpisz hasło ownCloud</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="117"/>
- <source>Do not allow the local storage of the password.</source>
- <translation>Nie zezwalaj na lokalne magazynowanie haseł.</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudsetuppage.ui" line="120"/>
- <source>&Do not store password on local machine.</source>
- <translation>Nie &przechowuj hasła na lokalniej maszynie</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>Etykieta</translation>
- </message>
- </context>
- <context>
- <name>OwncloudWizardResultPage</name>
- <message>
- <location filename="../src/mirall/owncloudwizardresultpage.ui" line="14"/>
- <source>Form</source>
- <translation>Formularz</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardresultpage.ui" line="43"/>
- <source>Result</source>
- <translation>Wynik</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;">Ta strona pokazuje stan połączenia.</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>Etykieta tekstu</translation>
- </message>
- </context>
- <context>
- <name>OwncloudWizardSelectTypePage</name>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="14"/>
- <source>Form</source>
- <translation>Formularz</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="29"/>
- <source>Create an ownCloud Connection</source>
- <translation>Utwórz połączenie z ownCloud</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="51"/>
- <source>Select the ownCloud you want to connect to</source>
- <translation>Wybierz ownCloud którym chcesz się połączyć</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="63"/>
- <source>connect my ownCloud</source>
- <translation>połącz z moim 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;">Określ ownCloud, który chcesz połączyć.</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;">Wprowadź adres sieci web serwera ownCloud poniżej.</span></p></body></html></translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="110"/>
- <source>ownCloud-Link:</source>
- <translation>Link 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>Uwaga: Aby określić połączenia zabezpieczone SSL, zaczynać adres url https.</translation>
- </message>
- <message>
- <location filename="../src/mirall/owncloudwizardselecttypepage.ui" line="133"/>
- <source>create a new ownCloud</source>
- <translation>utwórz nowy 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;">Zaznacz, jeśli chcesz utworzyć nowy ownCloud na komputerze lokalnym lub na serwerze. </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;">Ten kreator poprowadzi Cię przez wszystkie niezbędne kroki.</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>Stan niezdefiniowany</translation>
- </message>
- <message>
- <location filename="../src/mirall/theme.cpp" line="45"/>
- <source>Waiting to start sync</source>
- <translation>Trwa oczekiwanie na uruchomienie synchronizacji</translation>
- </message>
- <message>
- <location filename="../src/mirall/theme.cpp" line="48"/>
- <source>Sync is running</source>
- <translation>Synchronizacja uruchomiona</translation>
- </message>
- <message>
- <location filename="../src/mirall/theme.cpp" line="51"/>
- <source>Sync Success</source>
- <translation>Udana synchronizacja</translation>
- </message>
- <message>
- <location filename="../src/mirall/theme.cpp" line="54"/>
- <source>Sync Error - Click info button for details.</source>
- <translation>Błąd synchronizacji - kliknij przycisk Info aby uzyskać szczegółowe informacje.</translation>
- </message>
- <message>
- <location filename="../src/mirall/theme.cpp" line="57"/>
- <source>Setup Error</source>
- <translation>Błąd ustawień</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>Ustawienia proxy</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="26"/>
- <source>Configure Proxies</source>
- <translation type="unfinished"/>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="43"/>
- <source>No Proxy</source>
- <translation>bez proxy</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="53"/>
- <source>Use system proxy</source>
- <translation>Użyj proxy</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="60"/>
- <source>Manual proxy configuration</source>
- <translation>Własne ustawienia proxy</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="90"/>
- <source>User</source>
- <translation>Użytkownik</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="116"/>
- <source>Password</source>
- <translation>Hasło</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="142"/>
- <source>Port</source>
- <translation>Port</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="149"/>
- <source>Host</source>
- <translation>Host</translation>
- </message>
- <message>
- <location filename="../src/mirall/proxydialog.ui" line="172"/>
- <source>Proxy server requires password</source>
- <translation>Serwer proxy wymaga hasła</translation>
- </message>
- </context>
- <context>
- <name>sslErrorDialog</name>
- <message>
- <location filename="../src/mirall/sslerrordialog.ui" line="14"/>
- <source>Form</source>
- <translation>Formularz</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.ui" line="25"/>
- <source>Trust this certificate anyway</source>
- <translation>Zaufaj temu zaświadczeniu mimo wszystko.</translation>
- </message>
- <message>
- <location filename="../src/mirall/sslerrordialog.ui" line="44"/>
- <source>SSL Connection</source>
- <translation>Połączenie szyfrowane</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>Formularz</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="25"/>
- <source>Sync Directory Status</source>
- <translation>Stan synchronizacji katalogów</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="41"/>
- <source>Add Sync...</source>
- <translation>Dodaj synchronizację...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="48"/>
- <source>Remove...</source>
- <translation>Usuń...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="58"/>
- <source>Fetch...</source>
- <translation>Pobierz...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="65"/>
- <source>Push...</source>
- <translation>Wyślij...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="72"/>
- <source>Pause</source>
- <translation>Wstrzymaj</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="79"/>
- <source>Info...</source>
- <translation>Informacje...</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="103"/>
- <source>TextLabel</source>
- <translation>Etykieta</translation>
- </message>
- <message>
- <location filename="../src/mirall/statusdialog.ui" line="132"/>
- <source>Close</source>
- <translation>Zamknij</translation>
- </message>
- </context>
- </TS>
|