From eca4c3b63d4f969e25d568d0f247785c805380d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=BCsken?= Date: Wed, 16 Sep 2015 08:54:43 +0200 Subject: [PATCH] Merged changes from Pro and added translation --- inc/class-create-archive.php | 75 +- inc/class-jobtype-file.php | 8 +- inc/class-page-settings.php | 2 +- languages/backwpup-de_DE.mo | Bin 108494 -> 109785 bytes languages/backwpup-de_DE.po | 8396 ++++++++++++++++------------------ languages/backwpup-sv_SE.mo | Bin 0 -> 99642 bytes languages/backwpup-sv_SE.po | 5983 ++++++++++++++++++++++++ languages/backwpup.pot | 5519 ++++++++++++++++++++++ 8 files changed, 15387 insertions(+), 4596 deletions(-) create mode 100644 languages/backwpup-sv_SE.mo create mode 100644 languages/backwpup-sv_SE.po create mode 100644 languages/backwpup.pot diff --git a/inc/class-create-archive.php b/inc/class-create-archive.php index 06444b46..3baaa605 100644 --- a/inc/class-create-archive.php +++ b/inc/class-create-archive.php @@ -313,7 +313,7 @@ public function add_file( $file_name, $name_in_archive = '' ) { case 'ZipArchive': $file_size = filesize( $file_name ); if ( $file_size === FALSE ) { - $file_size = PHP_INT_MAX; + return FALSE; } //check if entry already in archive and delete it if it not in full size if ( $zip_file_stat = $this->ziparchive->statName( $name_in_archive ) ) { @@ -326,41 +326,49 @@ public function add_file( $file_name, $name_in_archive = '' ) { return TRUE; } } - //close and reopen, all added files are open on fs - if ( $this->file_count > 20 ) { //35 works with PHP 5.2.4 on win - if ( ! $this->ziparchive->close() ) { - $this->ziparchive_status(); - trigger_error(__( 'ZIP archive cannot be closed correctly', 'backwpup' ), E_USER_ERROR ); - sleep( 1 ); - } - $this->ziparchive = NULL; - if ( ! $this->check_archive_filesize() ) { - return FALSE; - } - $this->ziparchive = new ZipArchive(); - $ziparchive_open = $this->ziparchive->open( $this->file, ZipArchive::CREATE ); - if ( $ziparchive_open !== TRUE ) { - $this->ziparchive_status(); - return FALSE; - } - $this->file_count = 0; - } - if ( $file_size < ( 1024 * 1024 * 2 ) ) { - if ( ! $this->ziparchive->addFromString( $name_in_archive, file_get_contents( $file_name ) ) ) { - $this->ziparchive_status(); - trigger_error( sprintf( __( 'Cannot add "%s" to zip archive!', 'backwpup' ), $name_in_archive ), E_USER_ERROR ); - return FALSE; - } else { - $file_factor = round( $file_size / ( 1024 * 1024 ), 4 ) * 2; - $this->file_count = $this->file_count + $file_factor; - } - } else { + if ( version_compare( PHP_VERSION, '5.3.3', '>=') ) { //php > 5.3.3 if ( ! $this->ziparchive->addFile( $file_name, $name_in_archive ) ) { $this->ziparchive_status(); trigger_error( sprintf( __( 'Cannot add "%s" to zip archive!', 'backwpup' ), $name_in_archive ), E_USER_ERROR ); return FALSE; + } + } else { //php < 5.3 + //close and reopen, all added files are open on fs + if ( $this->file_count > 20 ) { //35 works with PHP 5.2.4 on win + if ( ! $this->ziparchive->close() ) { + $this->ziparchive_status(); + trigger_error(__( 'ZIP archive cannot be closed correctly', 'backwpup' ), E_USER_ERROR ); + sleep( 1 ); + } + $this->ziparchive = NULL; + if ( ! $this->check_archive_filesize() ) { + return FALSE; + } + $this->ziparchive = new ZipArchive(); + $ziparchive_open = $this->ziparchive->open( $this->file, ZipArchive::CREATE ); + if ( $ziparchive_open !== TRUE ) { + $this->ziparchive_status(); + return FALSE; + } + $this->file_count = 0; + } + if ( $file_size < ( 1024 * 1024 * 2 ) ) { + if ( ! $this->ziparchive->addFromString( $name_in_archive, file_get_contents( $file_name ) ) ) { + $this->ziparchive_status(); + trigger_error( sprintf( __( 'Cannot add "%s" to zip archive!', 'backwpup' ), $name_in_archive ), E_USER_ERROR ); + return FALSE; + } else { + $file_factor = round( $file_size / ( 1024 * 1024 ), 4 ) * 2; + $this->file_count = $this->file_count + $file_factor; + } } else { - $this->file_count++; + if ( ! $this->ziparchive->addFile( $file_name, $name_in_archive ) ) { + $this->ziparchive_status(); + trigger_error( sprintf( __( 'Cannot add "%s" to zip archive!', 'backwpup' ), $name_in_archive ), E_USER_ERROR ); + return FALSE; + } else { + $this->file_count++; + } } } break; @@ -653,13 +661,12 @@ private function tar_empty_folder( $folder_name, $name_in_archive ) { */ private function check_archive_filesize( $file_to_add = '' ) { + $file_to_add_size = 0; if ( ! empty( $file_to_add ) ) { $file_to_add_size = filesize( $file_to_add ); if ( $file_to_add_size === FALSE ) { - $file_to_add_size = PHP_INT_MAX; + $file_to_add_size = 0; } - } else { - $file_to_add_size = 0; } if ( is_resource( $this->filehandel ) ) { diff --git a/inc/class-jobtype-file.php b/inc/class-jobtype-file.php index 8d6102cd..93b51bd6 100644 --- a/inc/class-jobtype-file.php +++ b/inc/class-jobtype-file.php @@ -285,7 +285,7 @@ public function edit_tab( $main ) { -

+

@@ -297,11 +297,11 @@ public function edit_tab( $main ) { - +
+ name="backupabsfolderup" value="1" /> Giving WordPress Its Own Directory" installation. Excludes must be configured again.', 'backwpup' ); ?>
@@ -502,7 +502,7 @@ public function job_run( BackWPup_Job $job_object ) { $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', ABSPATH . 'wp-config.php' ); $job_object->log( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), 'wp-config.php' ) ); } - elseif ( BackWPup_File::is_in_open_basedir( dirname( ABSPATH ) . '/wp-config.php' ) ) { + elseif ( BackWPup_File::is_in_open_basedir( dirname( ABSPATH ) ) ) { if ( is_readable( dirname( ABSPATH ) . '/wp-config.php' ) && ! is_readable( dirname( ABSPATH ) . '/wp-settings.php' ) ) { $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', dirname( ABSPATH ) . '/wp-config.php' ); $job_object->log( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), 'wp-config.php' ) ); diff --git a/inc/class-page-settings.php b/inc/class-page-settings.php index 03a0b2d1..575c0524 100644 --- a/inc/class-page-settings.php +++ b/inc/class-page-settings.php @@ -316,7 +316,7 @@ class="small-text code" /> diff --git a/languages/backwpup-de_DE.mo b/languages/backwpup-de_DE.mo index 3b919823056229bb9af864bf1c351af241020db5..c149a5f1c44c26d75f5f995e4b50e7e23d7b6104 100644 GIT binary patch delta 32015 zcmbW-*<;T%dimu>u{YW^ z*zNFtUIWKTz~_4_f7;ycfIT zOE?6-#(|C#bNbA3oB`}uggWsY9EwM<34V^v@H?D@^=3Ox8csoO;FMzuUXR1@NgR#8 z;ust?$8iQ@CF=bBn1L_gP@eBJnCm#{IuZM0A!g!bn1=tt>FCU}514`D37&-$@IKUo zeheI*VgI>of{0PlA|AqScntNxj{;4e2y>X&qc*}VPHNg#uZ2|I_IGt^bV@% zenO?VNrB^Zzy#Fs!Keq#4ECRndQLT}Zk&lNc)qiZjRf3<1Mtt-7hgw3q(Ru)9+L?t zqi&pq4R8fMiKinC#OYsX6LLN(;yY3Ixdv5ae?%4W0~pI<<0&?jlD0)Q1wBzG3`G|+ zu@C0qR@{zCVXI;rk$$L@kH>zv0I4p{CZvTrub?6_JVJ5eG*rPIN$(@i5ela!_?6gadFRDrNgob>|*b>-kp@eiv0lzoO1-S7OiWQ$qeL zD<`o-DO`+ccqS@mZbd!l3)F)fm)i5Xpt5uV>iRjT2j-)iRVB8>%TPJB7uAgK3HJX3 zm18f(*wBqXL)GeEQ9WA6sLlF;m`FGW7hpLmB}Y*adl8l5FHjF^R%Y#my3aW5jf=54 zZbn6T8_vhrwQMwI;|o-bz6)$oZfj{0wqk!8HpQ{n2D7jwF2)vE5QNvEDsv2Vzdfh~ z{2ANev#962gJf#V`Irsec*#23SBJ1K;a#XAxeo{8+t>)(R@fVML6`6-9DvJkFmA;$ zco>y4U!&?&%Szi*4n!5vT&Ze&18ov%{)})D8Ut2 zg`@E}j>l%3Y|Lk%QWip`v^?0q8I=ROuruBegzrT?_%ZB+ub_(Nt4-v;vbMoyTLhg@ zSvnR~6thre7Q!~T236LZQ8~9CRe6t~&U*xvV^5KoiOR9|XWDtjlo%Vj zaS^KWoq@XXUR2io6_t{=u`B+7ieUS*?4-39Dx&i-1B*~Oa|QYlM5X))Dgwt)5&jBQ z7h*rLp_n#3+h$ECRMw>9+c*i8GSyTyKh0Qs;1F~%2UQo=p(5;IPkaQGpm&4g&9>P4 z4njR|3JzEM&tYQ(J1)Q}_yDRhnR9H)hoEw3ChCSOP!Bve*nbO#3EzuKY2vxI9~g=w z35QWBy*3CRL?!55^xOZZY$&T5o@XmpH&i7YihA%^RF=<1mHkTe@B&myd!BEH+wrIz znu1E<%)lk62NqxwmSO|EMEl7dXBQg{@midLH=!Qsv}RLu6q+*`~+jVaf=J=3Bxgw@GR_&Yf(MirPvMcLsi0mqi*yi zDyM!%rL4g=$Jv5?Q8{xnYX4)XqWKV&6F*Zok^`PF{ZOXH;5#h^GF~17?;33qF zp2xoUE%w45J8T3qQI)a;l_NW`0p5u9@n%fMgV+U+p>p_x9pt|{gzwp*l(pVzvn~}C zfnkB!s2i_FW#xKQiY~$?cs&llTZ8Zms0h4)%DHz@&GJ`Fz?K)<9O@rqLn+Kg#jFgw z<8~Z?`%o!9jw+h(P{%u8WXo_UD&-4NIaz^@M%m)ILNLKRgzR0O)BQZ^DN;6faVaa3J+9F^1WqayMP z((}fgR+rkWbkWapR90nU7A{2>uS1pL--7+`pmHMRGTVhuMV-GGvvCi$!1qx_Z~~RX ztuD8fwjZ|T`OZK#RHm7z6fHr;bak-58g=1?H~{xye>{#l|0h(0>&5MLZE-x|6l{!z zsJajh!j(9a@Mi4F^PR`oP+7f&O3~-2O4V$ay+M0anRZ9zz))SH5`sY#S ze}+owcc`5C8INIokBA#yVsSa)lUFj5V$N0MzjoYr6{{B5>1vx3Rj3=Bi>h2Zg8et6 zYV%!z4+lPtO7Y961pJ0=vB@>IXuF}V8-&WSao7p7uOa_A*EyXX%F>^(4L09nvpxaU zf%Hb*Fa=ec$Dqz%hPqJ%o8cBz1TI89XcsDHZU{UWco(Y3{}y9I9naIKGX4M;;%|Wq zueCFwTX7`&8(wE`I39KWbo>XNhN^`9_u9$lXjD;DqaL&=2yYL(7*p6EyPOTh_`bkL zP%(ZQbMQq}B}%#8X5mUynHQsupMy%kbEus76jizE-(YjHGb#sDQ1?wk<=hD5yqGhM zjh^gSjw+*#*bcX%B6cOJ_TGR>$=#^R_Xw(v`~#KJXHgOPH!ADD#H;WZtcTu>_I_8R z?spTqYXA4J(T^Q3qbi%Z$=)~-^`O3}h^1i?jzXn$IjT;q!?AcCs`>p5`{P%rN|~_F z-hVRc{%cTmY&+KH`OZ~rC}r28E;xuP+hZt)e@s()LH~pMtu6>8<3yYGVmIl;vjz2X+PFTTnNA2vsTH z3Os?m2siqp&Eo#3<~J?~&q6(D6*j>NRE}-NWZZ^Z@sBY!lvRTc+FCjs8xtOd^>GqT z!l|eSZpEQ^E7rr;aUi~hD$_Q%**B&noI-d7j>o;Y3SSQ#`zInxICd2q*=+n9hoO7O z*49O+8=i$q`5&+;-Vp3Rh)UW0sM`N1Ecq>i5^u&_?EY6es$2OPtN_zJ3W z4!p}os2bI}{)uTk-}#u0KG^wg`wllARi-7VtlWdGvC&~$sXAdR!UM1!jzQIxIoJ{B zV`nVF1dL%n+=F`FBdCN;y@#-FbR`?|X4DPu4tx@o)vuv${4OfyKLp1+-)ko<{ZZ#l zLp^8?reHOyd0&UBybqzS{|~xY?+Ec3z(%hlHY?|$vUXA6DpXwvqq4RPJL7r5@oR$p zH=z=67?ps>P}jYTDzbO68P>bc9&d>%BKJP>L(MOZ9lF6_Y>AVw6V467VeCq{GT47H zD$Dnw9(W7t`uk81`UffkFJK#d6P183QI)*G{dSOQ8Dqm`M>o_B#s&vwqOx!a>H%9Y z0pq9}+=0r8dr=R17Ipors0e%4`!mmX*J2C2G4OU&zi>b50iR+jwtLj3XdLz@T#Ratadh!&Y>W4y za_VW+b6&)l4t&gpvifIK)--?2#&jgAl1)e5@HA8w7NQ~+MHe@t>d+ok`~M5}!B@H%m2F#a!j;&M@E%mmA3@cHW7q>q zDkbfou_;f*284%THynwLZ~>~QmIeFQVPnDK0VW@5k2oDk^I~L1p3BsGRx^l~cdra%}RF&7pkMD7O`d;jP#i z-$32(TbzQ8UbZR+Ve}c>L46*5bCA&DF4+HOVC+3M znsDF~R91h3jd9vXw)W3OmEj^(doRW`jG-#Ef<3U+$M$#{s%Kn=b8t7d#CK8m z{|Xza{r?c`a6YjInxHy}HrN2ug8hTB9^uibT0bt>zbJ4ODuQ8bj%Q*s+>SiRiQ`(l z8r9qzQE{5{e5V^5x?x|`1rxCa&P3woEJ1ZllRx7>45NzV7F1FE6LrJ)u_gY9D%&QX z+vB}Z*NsQ*--0UYYb4Kio@YZ@*YXQ{;s8{0i=u9P3#vKZkF)T3)D7G(?Rm>^IN>;s z$0u;0__8DrDgnE18*#nU#_jh@80_#5`cxhHJ68ufrja30qC zhL;FjfRoS*dswi2F?*@UmbnfM+~#6dsX94yCY2_K5FQAo_U z{K8iYc6{)w9ZV{Ivk}^b_1J$G_QQLyE53!zxb8>nPPm~len*oOn2VY0--;Rdc;L6F z9O+Zf_;o9m!A5I#Oh)xw3osQo1m1ux2tS2t9WP;Xd>6an7pRmrt8e^fwh)y=D^TZc z!~PgY-T%R0|GP*+V$K(AsM$1aU@z#5icl|XgF{g%oQjIT>8P?>i^Fjf>H&A)M0^z$ zq3#WhKP3wX9z@mpuW$wqYhhOUf_l(9s8Q}$bol=UEsftHHEd-QG82_k^HD_*LG`E`Q4zklRm@hN zo7kaBcq};Z8tQ_tF%j#vR%Kxvz`HOT6~W(7Wt`H+=ExLOb6bhUcp;vR-=Gpw*_Iq3 zqFXVS@Sa#Z%T{(tZfJ5PgGJ-IdnQ|!crN8 zFGrW~epID=40YYBsD#B%u%SxTzN7KG+|f9ea3L14a-p%>_nyH3RKJw zpo-uwRE``Ad^_+PRD>IMvnlS2sw?AB_bEg@Z#`b9_8((IH)`J9_`_&V96|Ur9E?|> zisT7Y57;2V_=8Vt)F?R>$KW~~jkn<(d>>VG!+O{pSc)o|3s9B$5c=Q$UkFb46*a!6 z@fM-JdJU?QT!MYq^&Y#r-k`{wSbzPt}Ai{_!~#&Vp8uiz@|-`75PJ1XV3qgu~Hs1!bj zdcbGFe*L^!3229ET}i0(MhD^8LN?THOHe5}7j@%9sGRs4YVddo)pfpuBk@~QE6GT) z5txBGZ#gPu1*kGEMQp1S~||zZ6wD&qGD;?i*(ysMxyFQ5$eHL2OhxTD&xNdCwzz#33t!1?Ro`j z(zzX#f&-Y2_oGtsF{(^^4m3_VjzE?D%{T~;;1v7>RR;zRvi-{hR5*q)W$7Q-(1Q-4 za^Rn+9_oEmR)2x26K1gOnA+h!!r7>t_#7K!+adP4uBft44jhE48xv6H&p_qG+99-m zW%UMj=mr;}VjM^H@h_q(&8Mgo{TzhThuVmZNA(NyP+jg?R1xe%Md0tK`yWRQKL0@_ zZ( zBW&fJhRVq(DnVONb>z|*8;a?DI0v6Zs4Q0)}s5)>Qm9o!KC;o^UE<2945gLN3WHV7I zUWF>#vrx@%8!AWc#zy!z)O{aA<-mVX*L{n0!7-=P7@I|-P-S^K>Vh*-S${REOpl@Z zfktC(*PMasFXo|AUX9ABD^U@C43*XI2A)9Gh5F-c$~&XhpPdvorg7j)RHYa>-o7}j z#0v=DhyyWof=$^n)Q$5{MOA@{$R<=BxgJ;J-*7DUoM)o2#eUn8r}eYbV~1_n{tq#&nzF9jFvvg-Y3- zs2q6^b)U!ZUObMuj3ql~*t+pXw(-9)kB`l?F9?6eEu1)LmW|<`Q8#)NRlA=?HODVe zDQ-U7rnoDrxei1PGGkFW7DYAF4d~)dRG)tkb^VcGf9wf1US`KfsNwSH9P4YS2%JRS z@E26=ZZy|sZ6DP6v(d#cDrYW0J-`dX`%w?RI|x6DDyn~5W6q~+sAsD;&(6tGaSh>F z7}bSXgne>srMnpQpkt^qeG{L>Z-ej?^KIpO6ICRG7uXyfhpL1*fs1jH+W$&6lvUSa z3%n!n0aPvi2ad-C3Q+BKIjS<2p!V-XwVo$Xt>isa|6mr{l($7i#6>-404nDuV0X3u zC2Xi~t_)7N9+L>)iOTvHP$_)_b)%E0%H=Gw;by2h&=J*|l2Ao32an?ltdD7n?RA4t z5gvmvRjws$q~a#jgZH6ddr^J(aa7K{h-!ZSK}D$95^EApAUq1waRc_l{isU$G^#^# zmfHJ|K-GbzOKJZaoucf}4J%Py?M_q{9YIyXf1x7uD*9QB{Rx|8)-=@hOHkKEaWrlV z!VjbF^Ge`5sG|IM8SVc~HhyM@Zt&W2<9}Q_fl6uq3R{LdP#wpWsEFK#D&xD+#m7*! z`~y@3zeVL(yOp-1NkpZ17%J;$qKd32#)itQ5_Q2|RLpKerQ|`JgfF5l?6S&6bU3Qx znT;#35H*PX9o3qeuC@^ygzCcQqlzYiDsm5Xzt|Brl=2r*9n9ybuCeK9HUd3SGntX7 z8?8XUs8IdEPE?(_6_q1Tp>F&t>iq9fIo9TMTPeGt>O=}&qVazP8)}!Iplaz?s9Jv# zRX2XcIaohrTgiN!O!#cn`46L-;iIUWtDk4r|2pC%2D^5ZsBpVg+MX3A6B5bJnZALx#oWM&_588`L z`8}xq;VD$RejokjiMnC^N_%~0R8jUtMPMlEK@(7QBL`J?!bm^D@Bi57!;Y<}9_^q# z;5>?h2)~9(dCMxBQ>m!hzW^1Hue|s zKSrgvX|;_=G7cv^4i)nXOvP=e^Z$%49!GURU!ihv;CeejnSkn&=b@V46}S?QpzhOo z139PmpUH+M6pK(ds6?gsTvS(k9jdJF3XcB`3ke^?tvLJ)o7MNBa^^Agn;$BoucC7H z$6$YljmG~xmxO-%FK0u|BZkVFTTn%E92L`VQDyILGR|c<7PbFr9Dv`Uvb@)3<7~$? z)c(6rUG>|j>wBMR>&irA0_^0TN&BC~fospQS@s612);n=Z*sQH`fO}Ncr}i|GSv8f z00-k+sL`z*%~{QF5-KMuQTsQeittucrF;-oX`hU-q1ydAs@;EyBeCTc`@k$z(JV%# zuqyB@Y)SY69EQ744|oz4p*K+Nzs)(el1@bx$x2kEjG$Uib&L&V)h1LWI)J*-e}WT! zK;7_HRLlpRYwN;T>`OQcm4Fh=z!;|CAyiJjiYn4?Fb5OPGtPBbisLZW;(YsnY+TKb z%{UfcLFGuNtu_mX;+cd)s4RX1Rkm#}u%q8X)FAX1T!GED*`izZCgW|W9`G3)gU%(!p`|%v@iKyU zUuye_8J8JnJ>dfU1YgCUIq&hyZGs-zWg~DL)xW%f%E8YtrmQ=`hO+o4R6o#ew>@zz zs@Bg8%ne+L%Gxk4#4=PwA3-&@lc=7v*A=!Xm!Z1q%~*nQRE{_v?O$2m$}`UC*bOhh z&8P>|yVBO;7N{Pv4=RG0s0Xb<4Wn0Lf4m20kn(r2Ev8*NWSBwqa@H13s3IAK8nvdPQeKQI(V`RL-4)>Y_bVGrkK|yB|VT-p5e)c?MPK-bN+x3v8NQC;q9sQ#k)A8kY?qK>aZC1@u`@G;bL1|75!8;^~7zB4V@ zF&CABC8!Q24;$eQR75Vt`nU&GB-f)N`VgwMJb`K@&!JNKIqJHfgK(4EjQ;US*2T?Ko=WTb6$u6(gcuD4hx!H54-}(5ggzk6#yD({3v+~M~1z~r3 zY2J)GzqvZM*_{vVFYI9|@9cYYN^_Hc=bB?h4Pu35B?aLMHlYA$r=> zNJTims;pvT@&tQMoyT#G%QWXlI8!8G#q8a4ioliaY*QPBe+f?V2R2M~}cUHZ&p?Ql))Gwoq{IXIfp1HKW_t8Gn zIsQ;#gLu0S5Ak0I~iNrAAVp`=cO+Qua8uc`1Glvs_+{Vq<(5XOs7~oqD$1fxeEt_xx;uR)yW`#54WX+1VmCWl6|RVetK5Z= z(y$Z%(-))bJAG!v@A$%vH~F$tyvLV4<72*@5;JR|=0m+j*dzv>$=_-ai2 z+OI|sPKba0RdT%b*O~EoUyqAlb}}J;;Oky&caFdLb#lDzx8361PNe#-Jdxph(}@(W zb>knO=oJ6$#5~UJ6wm*rZT#17dV1&0G9BXwzDbBb{LKV**h(&9~#?1HT&=U-MlzBEBa6=kMCbullZ2{Lpu4@t40#k2n0jZ@mBa zD@k-EiC(@T9I31dmy|?`!ftMOZFRJOMDP86cuQw$I6~{19oZC)Zi;9AFv~c14)~#| z>7xs$hANBm%0d-PNC^4)e{^3_*bmJvE2?zji+*%_>sXdrE%&dE7KNk!@g-3TWO>J>w-mrNzCUhR2`!>74kipR3{z z{yZz*Ay^fFZ%UaVz%hlA``#ww+nY?ndIGtCaFH-^6u>>W%uo-+g(qX<|e@* zCN(w1EjhZ6I^z~m0Sm$zj`x`{L%g2#_%pAbne1I!&kXb)vvg&A+JC`7#wN>;t;R^rJ+77!pC7~!~6C6`m zoj@g*PCI%(bwVv|Ne+GDg0hkly3I&*Q#J1mT`K%i)s5zct7(=&8+5#shGvAfsv+^* z*3eAy9&2c3daWCoX~yxMYG|^&s~VXp-m8sFw%4n%={L;DEGUgc^Fqujez!%v^t%WC z0ZF(rR7$I)Z5D@0svK`)V{?VqstNg((!?ZpaxxhevgumgoKR)uhNE{^a58I@O?dvb zO-y$D+0#3EKXCeJC$luPi9ULINhqIu;F^>b>36bdA3e>g)AvX1c_?<@NVgH#0rFP0dVl=ivThsLo~dP+@mU z2{ClMKQ}Yg6rpl7r9ab?%<_o4HoQ>;ADY|W*!%1X;MXp;QO z^o1MCYi^=?RI^=FarEw^d&4dzqx*WTT9|}xPG)5!M8@Yw3M2V$N-o1$sJyHqoa)3| z7j&j&$3h+ZI+@i)3`5+gx~kZnQdZ#CO}4|)Dz4jP>!f#S3o`bO7G{w5W($+r$3Oej z8C7aX|8(dFPFAi5I z`%dk(ZN~AIv^K7{zP0J+?P+c9_U5-SsousmrhC`g>)oLFR5C3oRNXz;h92nUHYVa_ zwl%SKwI|j-C?tPxw_mRizABp=j~0J*R_M` z<&EuNx^@YUyBn%2n3oV~_0LuGf@?aMk+GViwo2IwM9MbM@W^gglQKK{rrR^99X9Ni zb0{l)PDm9p*roZ$f7(+LJA=wMBs%T;x_50yGtPUdqgm{wcQU=(*W65#kBIH+yu3~(qpcJ4X0D2xKGE^^b}~I| z0h2-h-5|W$a@<*H{BkP_> zw@g*4xi;!fDGuq>y1R1AD?*eb17kOn*x8v}oxhfOnm+}sQ;TPIGpV#JdoZ)Qazm(C z719rnal9Sf%tc+CDKqBGo9a@pH-)Jh(Fj>EiwyP#Cz}r5#P0Mch270aZ%=oo1W$K2 zousvWOgf*I~jOQ0fFB$%-tKbRcjy_aC-dP91c-rk}fCc`_o2e-Jj2TlH&9<=uF zw6AwhGrWQwr0C)IghPwxFfPddAGiKe61HIcq=bfOup;3WO&FXVGO|tilORvCI7q6<5 zY0vwl-}{x*8y1G$f=HMl)qkn-Um931VD3iitDRD_WzXfA{CaY-%QGYSp`tQ3W!{3R z3|s`GAva}mII@P0Kh^PWOEM{G&P-}Vh^#-lued~WgefI-L{)YK3$`o6`4wR*nfG&& z>E4<%%Bl;}bF0f4I~d`6C!6G+{Lc=SlvGwJ)ta9A&D*wQzvIv2oUY7$7`P&(j3DZs z!WAW9PF8PrO|nU9{ojWj?@6xlK2A1syb--9oRz)k8Tpgw9q2{D-`k5)drJoz^)}#L8RJ)5dGOMgS7`;C4ZTdI2VRt>_fS1(AZ1Jw|V{*JN`k2+;?7pU7 zjN{DJYIw~5pv;f^vxnC!!2^!t7-vGQ% z`kLn5{W%*=tftM@IooU9&vfZjC(*SxqNv99GifuNU{9562Y}iXRJn6P(MVyqvdRuU z6g#h2!4za|RW+jwBSg-O9JjiXe!}}>KQqdEyPxSc-%-&r35>2yx2a*_XtFz{IGn$h zA%F7ptl3#J<}M_&r}F;KVnE8&X-lYlb>2ekWz<%tvl{ZUQYct{Jld_(se6}|SJl)L z$Ga}Y^sRHut=mDql)@CYWh!-HSgLW`pSnYE7K=FP-OV7@qkbQ6m%+O#Qp7~XE5DQq zbu^WJ`L$HjWni6C{dAo=v-Te9j`AYW0>5&*{mrl?r!FGx3qu-xE8RKF^s6*MUs6VA zNUvL@j0xve7r7}>O>5kv_w)LoZnjF9WRKL{cX)q)Gs<+}(57&y-ZY%qNAIrG&6q0; zV4Bb-jZSJ$8lBnFG}B63Dc;3trj51+*aIJ@nHF}dYr1LO#qXb35Ag>8^;N;PH$I)b zZOXpVp)|2UsdD?0c4e`dEJJj)7XPBOy92R+0WmwB83KJiu91H+nW(J*SG{X$@ zZpfe`yC=h}Yws|&&?VGNo0uy&-k5=Au(xKQncCW!TDG>D7tAW#t$FtiG?}fP8R{Z< zGbrJmkCZkYL?@gw$n>1%OsxoqO5GV{%xnFAsAjrO?$u1dgAKjK=~ayJBG{8&^Iqp| z8^nn5z#y~V3k^2CMmp27X3Wl7z>AbGg_O0(O_?5MiXPoa!6=kn5vIZxC={yP=&wk4 zcX4rwGdUcp$g?v~r>4>8)!7$Jw7j1Oo2lN!A*N#+$L>ncEYLijQ8I6c89d?ldxJ2q zzLjAH6FN#~c9=K9ikkJ6K9w9R@#_P5|MU?0#!rTrQ8Q~|;a^4{RTbhb%blw?j*`-{ zf@*R^Gl$4}KcM^jXE1;-=GCW~82Q7#a=v&d)#0L{jGy-mr3_viN?WZrjKUi-j6x0% zGl}WWv@jz_1?yH3<~;el+ePyHH|e>|;O#Lo)<1`S=}*JB%|C~ko4tzRRNCFcO-iye z*KZ3f_S8)NNI@mFilK;?m?)RMHrxzo#s3m~Hj8E9e7~de+K(`ET_@`de;7jEL0x~~ z;f=>#>-Y6!%d;aGtoM#EExm&y7%d2qc_YKSrAFDGI08$t?ebbUQAlPYxH7EE}0-qfF0!{@FG2$WwDlm-P`hJu_MwF0nnv z>`|u2fI26;nbE2Zn#cL?fV%K^^WDov8Mhgk7^-4XkV!Vb;T<@Qa9%~VUdR1Z2e`?7 zDp_Epeb^p`)lpvA>E`}N*4RB>`2;$?$)g!;^GDNp>>OE~){a-oe9UpH_^D-vz0uz~FlKR)2&YQvX zva%vFXle!PGBr1Kss484X3=1RX+NO${L)jyciod~$8_rVrxTdyH<@T=dF7K#BKfs$ zBDr|kL?$F}O*8|#)Z9xiD+PMD@LyKAFliE}aLtIAQ)h}Cy#A8`B$&48ufztK{eSLb zK%nPaUS0D-#T#dxThdKwovFfQ8Iqn^)6qhI4TJY+HPNQdG+I7Goa6P)q#Df0G+h$> zX(7+A?UKvO-P+k?ER)GIf4X`va={R1dXSygQ;TpmJcbdZ?jnTdjr?qRK{sc5)_X z@1A1%4tIhwJ~fK`ccIq})yCEPbPBbl-&8u9IaBE%w@hUz{_R~II@a7RSX>(8F3Qbx zya%Sz^!`27Z0hLDV3}6yO8lFNV2i@d%c6_AJj*QAuz?( zgH+Bfoo2fA@b?DmiFR35-M_y)%PH4SGe-_Do6gTwz1wC`wVP#|D(|dp6VsnAUi+CQ zlHe?g79G96gqcy;T^P#KM3CPSmD;KP?wO`ns;0&M*9m{brq=72omU4Z26Ia9jhUuX zi<*7@`|PhX&CmoVI~vl8Cik@)b(S){nX^n%4-V9+TRQL5XDG)zgHyaKXPH;Lb+b*^ z{;IKIe-Q8^p?Oz!Rk)O@Jd^cOf3?znba1>oW-~+{n{E1atuqO#`w~Uh+G37LV!h8^ zQkm{A%&~S}vm;n!3l3`z>vv=|hy9WC)Y**Mtg$fOX8JRPN~)Vaf4F3Zs$FmuuOO#h zp4hwA+c$@?@$otI$sf)!YrO??O_}%5T$Yad%`=%PHP=<1x_xlp4Ur1IjD>^gf_L#e z^PIOj$8`3pa?FAO_By-zUlUC88nnX3I(vo2Xe>@@|^ zu1c5p&zgX?$+^Yz%>wV{`DVf($9{^?2p+7rvnRUNcC>yR?buWl<^y37gLJzEyl>B2 zKpS1Vz$A=!W;5?|?GkcEMh4GOcuqKa^nO1`6Rs*-OQtcAso6ZWhW57wrYk+qe=md) z#ZzZ|y}+cmuXCv#6=)%Ya!vAVM-vyDJT6)gR{eI@vvOLqV#YCdc6h!2S-~IF{jvD!rIXJoicm+0b)^zpVSplmXj`#60Q|>KWZu*Y5XVk97I&)bjw{4!aFD=s0Jm*rWH-syA zg{}Jr&T5T!c)3X$YUGWv<61USyTNBw4fU1OR;zV z3X|#myu$S8Y;R%bBs{dx9|w{geQ5KhuQV&Y8&@)=`fw$qRjXC>sTr#n1+rFASt?eU zUOj?G1fxKd75P$^8o^4Q9&^Vk)0x!?|E1!8dzAOf@Z}fs*^HxLKW=&*HxRkH`d~fBA#qP;vmf(2L=QG_H zTwqGQYYWUeuVvVr?v;d1?l@g_ssa)iwMAyB_xB z$QKamX(n%d)WE13RNWvC_lhI5-t!_R*Lxvi26d~smQJ5vTvQbJpPVwvDrj3h)|kZc zH4FB{Rc|gV+meV1TbXm17gHbIQ{O{5PE|d%Xjr+%%`O6E;s7p*jLuWzm6vw-?glXA@hr4m~pB!=`nMMdRwNLPR(_o=B;N(xk+iE9h#NuvqyaJeH})y<9DyKPVO9i zf6-rmCCARG{9tVhxMH2@%2Rbp-GPB`i0cghmWn>#4(D!)ej`%4v2tBWgyxi+JKO)0 zu9xUKi*!!b(#%;4v)sA!7G^Iex3U&Yn>TypYG8Rr(ej1W1a%YVYdD2z9ned#*pO z7gOYQx2XbN(@N8=Wu4>n#~GD$)w3&kN#jqKdeq*tD$R(F&JzE7f&Zn8ny*js9D1yh zsmm9-g5U5bdFfSVf?IQD&G&k%yTN{M;G*qS3_{1M=(E16GON5f)uw+3N0l_)&bN4B zB#X(@9o42MbJ$?icIRg5b9b%|1~W5$1x6+A%ZJ&LNcmXiS=E|==nVC?_FQebIfa@( z{9J8{yu9`1f+Wr<=as=9ENYf-tigvdFR{1jG>{*XI73V zZnM$s@Sb6x_v1!0CH~9byLZs+jBZCiN|@(AnL8gY*kooJ?@yaeW?MVc=S8EYKk$Cp zOc8cG(`532zh)3nmGxKth`2u$se8f3Gg%_N{Y<`>eRw8czq+2qv|!p-_ruw&{WXl4Ve~{B z>48h#->-7k>{q4Z_WnsW9SdjY@~u5a*6)s)2@E;stTG*%vc6BNeOJ z^PRNwnUm}|pIO3N=QHCQyOrPgoWGUExo<1Azu5)mTkp3E%=kVv-?pl3llB*y)#Vh0 z_&wr=a5Sp@USyj|h(*FIuZGyen*lp%0{oKl=sqfARKL|^LB%cL%MXXRfqmb#uY3Ad zkXPY<3gPQ#ML`DdmHN#i!yf|^BcZL!F85baFwNw1X;!7n(9X?j7BszAxA7&n<93F^ z5!+4QRDK3fU78owd$wX!?Y|vR2d7d^G%r^#%_j)niO$(>(t5I7V9Ry^OFwmfsp)?J zW16_#r2E;dkF8v(WeaCfE}t0~8T?<-d6~^j&s6POLL~XRN~c{GW$alL%?m4Es6+FL z>97|vsVi~3`8ycC&)-2?zjX)Y&7WlNyB(&z*K{Wn?}0n1_p^3VTxabx)4ad$q^+IU zY5I0_7FF^qr1Y8vbUO&fW6$>Y7GKB>`L_&wH@=Wp`$sP1cO{)KqNb0%hU1au`(Eo7AH7>Iav?H^&o*^GBiAnO>Qi6|gOBaP{?|)A{_Sq!irN#C_)Tj~Mc}=> zYEucr3Vn4%pSD$B3iwS_$bTvE*S~|f*cEZ+Po5>4=`h#?ECybt;74dJM_>mqZZ*YjdV^wAfa4c_e+n@{!UlfzptG40G; zX36$PfBGdr&9plIQ45$eGBr}^!0N@$9p4AcKi@$+)LWUv*zxi zV=LWd1|0TwnQU|T&E4dT_vIB#14ejM?TAM+A(-g>)uVA7_spc(rv@z=FFzz^z&bUG z@n~L9{8f>fkHhxYME`Xl$avl!u79o5>3XfPzd^3OHht-w+37W(lWO<6?B%1AzX0m5 z44pbs^JZMombQK)~wyWbCoIZvaU7-gzI~5rZM+ArHThoRb>?hu&vj;0J!g@3!(K*+Z?EHxa_wGIUc2X)y?kt#eZ3jb zz*(N1<9(XIv}O18`efs;yz{5#hi2a4>zUBKa=mfm=e*a!Yk30&nR)}0iDzzLxZ8XK z72=8@I9&S@z2qBByF_P2_S|XnR-MYOAQeHOd-HE(IqQ-ex!J)RP4~EYzrFX;jiyzX zn(LS_6zaAa5A)(E?YcM|){Lv=6q z^Cth;kk@8)pZv?Nu)j2}uEp_+_L)_w4!=+F=T!W<=Kg4bJx%{AVa&jRb$|Nr|MtJ3 z{t&t*|cW7PCkBwJ!!1U|v@Z(GUEG$Z2U_U*Q zC8dsc!vW*AbL_9UnOxc5tuqfke!wK8IMoc%d^XB2_J39!WR9O)ej7}~i3X2obF(Sw z?dVnSRP*z{!TbC4Gm&IPOt-7vt*WL@PZT0th&zS_={r(@1|M&4-o^#H$b3UicnYr2T_pP^@zW7qp z#Je3EU*hmT7d3XA-gwIZr5tDC?8Bz8If-;7E<+ce!EX3Dw#7zs9H%vQ!0y-=wSO#* z!}-_)&%zOSEe>^@g!4KZL&#_{*B&?=N0MHR9q~%+ig)4^d>S*cMZSLlXAGv3UWKFZ zd>oIDV-Eg~!*P6pJ-!mNN$=_(}jfxzn7)Rm| z+=8QVFP7kE_&OGFP;2bJz;T-4u)uMs&`-fuxCC3`Dokj{iEOCt&&H{E1NO%+usOC{ zXbaXIRr0BrhEZIFJFo-(fnBh}BFCAGgD?-va0K3p!|{E*4?8X<{)3F;Jipj+P9o#S zV{PZEJ&q1U`a)#4a|fp4U8v6Z8vX}=#2)zl65D55FSSlVHAx(GY4tDzOvBu^pa;3hfS5$!|hk=q^;Re;5_1PjC!2UCz+ONvH^HK=q}& zaV&lv>>s$oar%%>l(5l)jZ*{9MwRRm)QzsgINpvL&jU`dk(!7dNiRc1pcYktou~@D zg4+Kvw#A=OeWQ8EMy@Xs>4Yya4inR>re%GHt;R%NBUFL zgH0)L8 zIGZsSRr9A%1$ZBI-XR=>t;!u|1&+iem_$YHYy1rVKsCu{74&=@x0?3X1-7oXkoSmBe2) zY*%Hc;L)gvtVDIb8&EfX6m{Ios8IeJb%CbU_J+Mt!zmLL+Bv959g7;iCkFYaqbhtM z>biRpY^XQyL(OC_qKluRBG4k@I7OI&s>#Wyf?a^B@eQaO?GOA1>N*E;0Jf{K!*~>` zz*F!TT!hUqaRVDF(H((LU`x_}$F}$pYJT_;RpQ^V4YsSbP1OgL9*pY5<51UIh^oM9 zY>(SeH{6K?&$$k{Zo+AQqMf6A;y`v3ph6wTp?DcK#b;3$d>LK*4u@dJsC}p$jX9)i zQIWYBQ}Idci=U#Js9DTLEDd{bf9Gg6bmL=Doh=a@uoKfs{{>Z`cLI-!+ZitdGss_n z3iU>ufY)J1d=Fjx9-CvQIvdg6s9`(=2XKF99vfXSrVQMQ>JztN2Ydp@;Txz>w_jsB zU0+lUv#~W6qMB|Qs_DwHGpvgtfBQTTvg&4xquoM0ZRluK66W3AeiN88c^YylKq~TK1SvVfI z;w0RU-O+5YHS3AGPzEZ06e`YWaE(-Qvg=*^?Q4xC{`{Qq@>$-`PZRZ<~ zy6~~6&{d;qavAo(yHEvu9<%TtsDidU#ja*uRGZI7zksNk$4~{>f-3M$sJ`$QR6!Ge zWkaEP2^E@;@dNxBRkOD@+Tr&v>_hqsbg>1IQ(qX2DsUmH@0@}fO_vAz_oJ@+8R~|= z;b?5J$zLxdoXKoVBV!G!Gu@A>`4^}V9d)X`U}w|~C!q2}7{(~7rf=eK{1V4v-_vYO z7opOns0v+<>NC5sv&R3!LB^}78R|>a4Sqz0yvgad?Yp2ydNQh}Z(tKVgqom!L)Gx8 zGpy}VH|&F{I1n4-tRTMtn{a<;5gW7cc+`z|quS^mOvlGjZTl6fll_K@Q1i`J7u7k( zp+?0@R3E5D^^wz1=j}ijccHHP1SWLA*KDL<<1_7O7=VLG&&Hk@M|HyUQ5U)q6{)*X zHG2p*;d`jaoUp~_Cs0ju4Js0MqxL_H1MrhN5beht2Ug9D*x@^m(WPc&Nx-j%vDn*c+cjMc|*P3N}idZA+Gpy~xN#U2qwy z##>QMa|dew0d(<8RL$F*V?#Lv)h7y3eWx5-;TlwpPYd#s_%i8ha2h6J=h_JDLuI^- zE3wOY_H}z5HX(f<>Vl78Q+y6pfLBm8`xcMJHs{+{uzXZaH=#m(6{;Zjpr+oZkVqz+ zx7hGQj&0e|=mPt&>3}Zj#i%x17v%3mMdAb0h5i%dx4V!IOL`%;#;Z_Ga0{yKpTcJN zK6b!Qv5Ut4FKnnr?Ju$=?S^XWY}ARzJ`jxm)H*5U2JQZf{I)w4#!+nr;6c7 zyc9d*3)m4q#7=k+Rk0SAP>2W{{n*frFT@sj8LGy+a1S0p-FWSG+ZVQ=E^sdD_&umz ze+McucjJrrAoeqSS76#)Li)BHtOv2hr8XVEl=v?r<0UfGYqKu17np$RTvJi`C!jiC zBydCEnW!3HgsQ;3sJ49!yWp#+^FG6_co6wtr}a)-q3d@N|Mq0;BSRs78Z~hoKwaoH zR4@J*6@ey~+Y5EUmZURLHy(@XbW>0fDF|E~7(!K~64mzWQB9jnu(5!Rn**II>D!MRJWrdxgQn5*HG7e6BW4+QOA9cifGeo{Oc#2 zG&a;bhoee19Xn$IDr75B6HqOxbFD$u>=aZ%PD6$Ma-XGO|P?kq7N$MLvc7(;$XZ2)ft~g-Qa8NgI#yo z$c)0HNavv{HXGBpzq6PPwe2aWf?R@%#O0`v?nZ^~9#pS>Hb}pZD%g+M6I<=J1ssUF z&bYwIs7TGg<#+<>x{qMu6*dmAp$lKP$9_<}4^{F$*V~d#K!tENHpAtp2(1dzQPgPI zfV$3RY>Ycm6}cK!;~P;G*%#zLcRle}h+iW^o#jxl!@0qp*aEZ2?})na6jaFVhAkI%$)e ztlhCc=^?0jVm|6dp&(t0ir8t`96eOTuEu_N3vR}j5^N|`3vaf)b_q5ky$sb^!Z-yh zP&d2@N8*dv2pipEUo4uSA~PDt;|!dJn{X07j?1vot=1E8BI(4#Y|LikR~&_Tx7psi z0d>J^Q8nL-E%3=8{{X6HAD~9V=eQUL-cDh0BhJB3aVCzu!$#nwz%57x6HbziCLG|Q zE_em%Mte}9x&ze&ui~5d1FCmFf2Un|yo&jxzYWrp?jo9`m*6721J!q$?X|tX54IwG zGIrJYKg-`>!GJpO9*p7hSd3HtV*AF$sF~{)R1-aiD)_5`Z(%3W@1bt+11`WnP@QwZ z-L^oNp+?ttn92Q}cK6tcVbQy63+JPbt3=%> zis^V6YIyHQb>5Fq=eM}uPQ`=nr#wT*m_>#{8ApY7L*QwszOW4y+KaIp-Vp46G{}D% zRe^t?3ibu+yx&nx*8BlGK@CFfAAxG3ya$MfhTkz{=mLwd4TiBR#)9-V>_K`*kbf5{ zK%g;z&Fdb=|vh3O<91WXnhVPMvTDu%R1{LX~tj>P8Du z7djDD@=d54Y{lcz!w~+6s>z~9Z6`bdb)7QQbz`W4o`vdLSK$!69-C`Cyvl|`@(1yeJBG@BAtzCcoSyf0aT5DM_s4;ewxlOQg8(K zcP2k>YY;`X^~pE}&qsBVCj(za%?t0NZqWV-``$kWRihJdFrI@Nj{DHXhfxoy_fV1g z4t1YjF`*r8pR^@&Q5PDDnsAn)I$0$)#nVwC+=eRHMd;#Hs6O;4YW)8V)9`oHjRrhr zn`A6%bWB5yo_S9Z|9)%~kue(UP@V1O;D85l5a~xzCI1xF7rw_n_$#U)J)X92!2?kh zn2RdVTAYmM;v{?lZ^Ks4*v@(XGsHigjIYTk!fwynUcVZ3gPoX)_hA{njhQ&@Ir~Yr z7AKIt5%cgP)D4F`Pk+HmR3CT%i}5pj4JW-|o33NxMP@xRCgNEbhEHE=~|qJr=ZS%9%-V4^C=q|&%dKi zT>6UbR2wma^i^1c&tL}}|EgWV%tfN;+=zD>+M2jFAwBqSwj#r@g^ow%PYaxlok-8e zz8e1}Y_uceG*l=rLWS&7RAjD1MP?5!!P`+0Y59hIs%7FR(uJrd*o?Z~6*vuVMMdB{ zRDpiSLTvsflN~V{+ zBk8Ijoxt9tFGdyk&LIC;R3CZ|TVnHfiN9{#>0SG)R6o3gbR2KQmhZ7d#=qc~c*gs7 z7@hb5?M?a#oQRV?WY)tCs3vOmPrKGzi33SLhJ)}^JPO+rE)}5jzli@BHd4sYT)qg0 zU>$1QUW3~IQjl)?k*&cf96_c7nTU6*3*=&PG!< z-odW;FU-VWQ4vW0)OM;x*oX8soPalA0safy;E2!c1*f2{H!Dcb4_u7B$X|ht@g$p{ za5k~gh>WvPo#kx1!`T&h3#wp$LCs*#q1x^Z)QvvGO8g8pdKP|ekE=jkuMTzmd8o)- ziuV$_J(#NTzv65A_dchhCZPSO6F)}v>OW8?cKpURNeXKJc+AD3Apc?CG6X;ER5@YsLrvuv793$M^**Lv}k` z5-^aBt=Jv!z!vOz278iz)fj&n{&iqVBjdMeA!f1v!oWvR5%~&L;Dgu}n;&KTd8Hes zlb#S*iW*IcbJ=LY#--R2uR~2dx1nnKG-`tB(AfA9>V`UQDrR5-YT{ZOxH98XP|Dd92MfTPz8Dlr(^r3)`gf$`ZAn} z|G+dHK*wp0a{`M|edBmk0aoM1YUB-UsK)J@8^^^A?2L0zH(r6d@RisJKSmw@3#vw) zX)jID{ZXB8JSrk{(8UO*;Q6Q~y&b#Zvr?VxLpC%Ve!;Go($coo80PDAi z4DUkKa9}IzP}Kf$sJ<`{RpUjdCM*ros{_|zLNz^;jS09DRkAlwZTt;t|1YSLw`*_4>h&L@3UmvhDuh{ z-nQ)qR3t7&4YOOY4F8U&;M5MbhL2(w!`m?yk^f0Y)ftcC?mDjE$%cvUsgc{$?c!gCTa8aFXOpuokM%W3H1<){ihgcK;@yv>GcGOW7|*>uzmR-g*9E=XS-cq^*FPog^852)jQ$3pDc z!}k74R0U$F>z#!<{u)$8ZoxJh{|~UCwtfZ`@(%)k2yD{Rmbe?L#-mYvWiIMMF>HpX z;Wpfcx=xo~#(!K7LN#d_4#O)@P4XhP;QmgF-o}6EbV9Y+OdO9f9EZ1}o?aiL+HPbY z8-Ycrra2wen{PrD>_D*pC!9z+jh6&%YL>*frJWk4$C!Pa$I-8R|sm zqdMUgsG8l13h`^Gw)WGIAV``eN(!{MaQLKWnG)cy}pGi9>@#{Ygl4b|4qpbGdlYD)eX)A1Wrgu160 zXCwB*d3X&TkKZQP(1i;I+M35u!{>BV4KGIB;I<(DQB)0HMh&m`P{$n#((MP?UOxyG z@`%q2j zrlLZ>09Df!LAnNYoeij(CUJ~mVS=jIJ3}Pn?_)Mn$@m5}Ogd!Rf{aE*W){`@>u^07_coEeEU!n@of26&^Fw|5$4ONrlP)%2X3iY|DNZg0&oNuCTc+@Bx z>5-`GuNuYpSIEyGLp9ims_`Dw1#ZLL_yTI`jg7XwcRQ-U51}gXBC3zPgDPk>JMdVX#g5RPpdi9jVPQD-2q=%5>5>8f*otqb+CX6_$Q(cM*)dQ#!e~Joq;|bPI zsLs|8RrAsKB<5irww`GFL=jFWy#_bq1E^t~J4qE|{MWLf3$H`9)fQAi&O?QMFD}EE zQP1t6N819gMul)2DiYVAB6%08w?B@WsNO_X;47SsEhgKD6=MqbccN^}!;4Uz=mXS+ zTTQX~{ZJFjiKq+jLDl^Jz!y+W^gb%&pQ3JfRIbfWK{d%B)OF{fjtgVrXf`&np^4-X zR0RG&MWpFeJArh;Lekl&8zoSkaSOJ5Y4_E3?z2{q$AjO*|XRA(;Cvjsg4 zHM&ah0Zis4?2YHour*$RxAn+?fbz- zRMY;3D&Wa;>~+pZb?)t`;dpO?4b}J+RE^(5O+-JU9wL9BLNDX0^ol~;>FQ8T@gypg z2T+~wpMjsEF8CE{_+=eqzidnnoQvwbi*X{}fEunJVQ)3kpwHgKEMeR1+>k z9e)<8U>Bn*wj0%HA4;&H6aRxMX^-RW1T++vke-EkcpYkZeTFJnyJdDRABt+K8K^!G zLtXC@)b;K}O*BuTX2=gv1vrRW&?MR{w-*|QI$?$wo`j0X<){najCzPXg^Jj_ zs80F`swsZN^Kjq_J529Jb=vz;qu?P_UwH!a_56Q^4Go*FC)n?JQ&A_Jf$EG~P@#JQ zXXD>+F1jK6S*{98NdE;FWA~NzTTv|@qkPmuu4##Vb<0Cl=v3^c@qYmu>H{~RZu9`E zX3wLZYOiA@jwrRu@+)yU>9%2egKAV8KN9#Hs)lc%rrx(v*ZUAP?!Q2F_Jf$p{hgFm zMxW%JT+|6;%Ixr&go{X5q1tvo#_=O8#UO2cjHz>y$7)Le91E>o(skD(?j4tWbsN>H@ z^(im#Zd8F^tz`TwWq)zAbcCo$D^ukWRj?1 z`4j4TZ6fyg-l+U>s9{P%TrMW zI2Uyz57jqrK=qvmQBCzYYO4J^s*n8<+mK)Ssdv^F1mOKcfoTWUZ}He^mZNEWlZ)8*WFx6QUyXJgP~4Kozw6I>x`+ zK9`LPa4BlXm#C*#m-RN}Q*aCES*ZL2n2W!n&Y!fw-f%Ip5O%^inf%*MvJv|l)datz z^1GgF`^=(~8UG6DYBEOS2GsNZ4jhJ`p`LC%PqD*qCMpu^QTdxto$ppur+f_6X`jOm z_%3Rm_!h@t>y5TR(@;%Qypi#*PE|{WT!(s^ZNiawF6su4p$hamYWz3lJay9XsL&Up zI_2@G(Nl(sR3%Qt?WpU#8tnfBb-gbVY^dbDH`#GN5YtExMb%&-W?>l)!Anq~d<@m5 zZ{d7&PBr?k4mgE40l!AwVDM>ns$GgXr0+vTKcf0dkF)IpWFRVk8)|&tjz#zc_Q&q$ z*vI%p97=jQUcmjG^VrbDkaDhZ>M#dC$2;&>hSSdTYz@2%>_XeQy9D+LOv8jinZ-sijzN`d8>(~MkD4k!K^J>pWPAN2tR%ev6@f=l zA$|c@;G4J^$0co3J&fwKPoXOM9;$%9BpLs@QNN4rV{<-ckdEL?YQ6*8ga+1f~##OU5gqGH=+t~E9&8NFRJEm zqnh>?)C@cL8r$g;C2T0e3o;I%4s3j_t?4M7M7jtyaa@3!^KZcvd=eF@k5NtWA5@F^JD>EaY1Y)b zvRKxFnjE)f;rs%J7U=I(eAKuIipABj2`XI zELbpP*oa}n-1LHqcsyJcu8Y>x?%!1rD=81V#WmH{;pm2NMLdIxW)+3kRK$+BX5zmu zI$jqYG3NjOMe{?kc-DewC=#m*#cQHD?(|TkB3$Lp+W%mzG8}OyR);F8rj+`b<#l1@ zWtWDJZkZp7l+}fLmW8txghSO-*=Cec)0yFDbtsa2`^)s?sb4Nl9Gg{G6E3ZYXBF4f zMN7id%0tmuIG*D!TreYRT+3s#W`-l-sJ(Z7O-YTL<(9|ewXvL`L#t{^LRA&9aQ4cI z4MRCHxX#p2ELLm=LMo9G*F1LTN*4MCQl|D|FI|u>L90Kam_Avm&x0Qd3hKY_mgoD;iD= zl8NB5M;yCOhn8@``i+RckvWRI$hw9DGe;`DVs$LI!@6Ko`Qcc}icmZr^-HEidAz!+ zA>r>)aoLlwyMmNGDY$RLc|p2Foh=fNt%%fBuM9_5R8>SOb5wstir5XG5LZX3cUpN( zMG4o<96>Xv>9Q7tqSRK~p(;8;X?Vr-ykzcI{gdIZrY3K|=fCPvls0@ojFGU4YnA1= zX(I;296zhB`hOGdnwp547mBT)7Ojc==`gptBF>D!D65GiCw@IG`R1IImqX*d^KJ`wTx%+sA&N-LQT2_v!xj3*Qg-ZTe%|WQQN@ z^@@Jzmu&Q7pX5b9*nLm`VDH!T$GQHoi+-HqyYt71$v1;-U4O(uTUKqKdT^M3%smHZ zCI2`$p;20S(j4lq>UK}7a3{G-)`sck;i{^NvanlF5vhxZlNTJyOg?mINb)o6`tP*l z#D6dCkrw;!gNwtJb&=9=@~(f6PJa6DWB2C%)ZC)?RPx(jHYHE|HJ1G7*Ez{yzfDfo{x&I@zqonwtp7Z{H}Rh` zll`Tie0_WtrmOVg8*)ORnpYX2@enp?&M zQyR|pTw_Lf#l{TxHXD=cJ!MR`cZh#7atmj>OcM@f6_=D(4XmrHu9^^wg{vB}m=8&M z$22l&-ZhPk+dL?Ks&{oGGuX{tT4%)H!{7vmPeV{P4-{T z;PRFnWinglmXzqJ#jU-Ijxs~MhmSG?j?Db}DAO~+K{a)exH~UY9d>dn;}vTv!ckpZ zn_;)GDik5=hm&<>v_+0HWB-G6fvKUA%Eg6swQf;ORaMw6uZV1@bMm5oTXBtf;X0n9 z!DtLlDXj>{!tTPN**s0%aD{h%W8->vG&Y01w;P+u9)I~b+Y2`_d0vYC`L2nX>Wyk@ zW_hPHH3Ns{mR46pR)(U^pEu}}{v7Yj497y%aqc-gQXZ;`dv7!~+r3CL)6?79%%pbC z9lub=tSfF)WUT0+P5@ay+JKa zyaVTk-Soj3PHt_5TNz%T75*2y1eH@d~>?p6dKLgI4zL<2dib z)}~iu_SNh=s*N$mYtq(CZ!&dBMePW$u&wEy+_@^NMO{T%CCi3z#5?*X)7`tjt?AUi zzB6PMMr*Pbg`+CEQ=e&jh-cc-+Wp#@fgXQ`c(?aQJCi=V;gF!C#A>7aA6%tQ_dk1B zNv)#EmbRx(XSX-y-jD6g#`g7x)!%gA868YF<6Yj-6no!xG-W*-dL$2xsNZSpYW;;% zg?D{-)5p7@lWE>oSE|yncnN2Ouuf$6^ynh<#AaYa=unv6&%sNGd0iXY{m?= zr@FS~{N|4;m}1H#^golPficW2|y4$hofRa3@L^T(E7Ylf769{E`d%EQ&+ z*#BfNtgWgEmB!rp(NdN;UdJv3b$k~Jy{e0u;9c9rEcAZrV)}OoZsC{OALSl@_n6%- zxSJdEYZvjVyP7_ogBbj|SMpbo=?Pni`lIU$v!Tw-tqyJAF*>s5= zRuhSbDrf>nm(-wem+~P`KOIHr!VNhQH(0(NkyBh74blCasdXilVaEAz zuYFI`rAtGS)ee`|voW6SP3&nhx(2&)>tbs|jzh6jz;wznDWP47+LI|N<{&nH}y+D|>4heM>2mEuYQ!uy3klkgx~5GF)!#2eO?@@A)+zFt8p56p^Glbc+; zrmy#0su`3%hsF#Mwf(!wIoFw1#UPLSlY6ik3ztNBxA6M*GrihOtE#Ch%_^>|)hn7e ztDouTRraI5Z0%=K2l$hBMKuFLGe9_6#Vbl#Jli>(ALgOwn$B$w=WwL=gD%sxzsdJX z`ctiK{Rs^J^z~lrPnDaj_DL`x%?xhg zr?lqvj!QF}yuYWJ`QG4xW|?=^Kr_&tOE<2m?@Ls_e$K3ae0%)0Wv^ku6n(^T!FUNe zAtx$~4JpqZWV+{R9YE)P4tND|Krdc@64<=jh;X$TH zb1l;~?Rp;!B20${nXz7Wy6G|JaF4L1bf!;bh=ofko!qH2^YZg%&0CP;OlMXP#oYAi zGZtr%s9%oSGh%Kn3m_)@)-|-kJ?W-x_xc_5J~}5)hG4bhy_?Qj;b6K+>)dc(H;9gA zlVKT*uCff8@cayu(*D1X@gB`EBf2-_W(8;RxQkbmrD|_y&mC-fO=~!0|AVab8lII6 z*;#%K-QYxO6pRWD`;`@uQuVXb2Aff74SRB&1tC4BVs1fABot?Lx44EmhiR=W$9r$E z>Dh65cqJbf()~MX9*bw}Ycs@*GaaUfH-z;z=j89dN1qhvTbT^8Q!*L!*Jd)_`KQ14 z?@S8sZw<{d&9s%~9iL@d+O2c4Oq(tm@4QB98a=$}-I+zq?#kj~le0~e<^`;RH`GPL z%1={PFS|35ZJK*$W%B^zD~>vY8(LY$`={1`;kfreHY@SZv&~4a?@*o>V}_dA4ouOk zU+Y&KJZ8Q7hEm)whMH+@rq@)~=~dPLz~W6BW^&ui(nw~tSj9>|;+;E;Rm^R}812sw zGd+?cPj{PV1urN4e+ z5$3n`ig6>QydSm5_aclomy30Q(6~uv_P&{<8SLC{sD3R z52i+$AcF@PacDJ)W*9z-=fd()OxznsFAOOQvI1yOA94{4r)o>uLG3 z-Mn?-5`Wk~J;uyynzzoMiTjS_*5{1nvhD=ahFo3^TrYb98RTYq_l?yOcdQxabsEQH zJ7%2e+k8e*UY^5J#9J|r$JV*yOwTkeOpXYG_Ga0~K-SdoDk|aM_$AJ6d3X)u{XEX} z>XjRb^F=7`52(ZYV*Uxk$D8gQl=DnbxSoB;xV#fb^>NY(ma^-Q<`H-G z(R7?gjyB7^zLQzcE}3lHgx#+f$C))XWxS6~kMfQhoaRxw%Q_*~6zcfV zxks$Hg15GaZqLias{Ic(yixprWHBe^c%SE*-u-#$j=Fq;VIm6iio42xvE(g_QQ^#p zk{>GbGN+pKu8Z_K&UNkb+YRxOs;>Z5Q<(&|PUSWGnW<(<^4E(71}}?D5EG`EqOLRZ z7Py5)^PQQz?K!;hmht9M5%I2{Ml&>>&gdR7oh!_rZU*!`;w8_mq~<*NgLeS$g6V|l z_UR@qx#;5QUhh1Uk-Y!nvEIf!y4W>&rfV|ek~vaoI?CEY=srT+N zrf8tQ%a3vW>2{r=iO!i*S5?73kqU2Vk;%=-*WyDxn~(kFRiV07j?M8u7Y5t@mqYKF zB2(n`E;f_e=T~e9M>gmQ5`1N=ET(^MW0&`IvFTkrGweUrX~9{AZeG-mFTzJO@_F0` z-;%Pkvu&~<9NGV%QjCCjO(k(Uyk$EOPsT|LOpl(7`XfIA@IkX-e{_M#>d-?HXDT|-<{Q2`T zyd?|G%dHBg^8XPdSTv1a!~EabE=1OZ9^VrzEnCHn0i_M7b z$C}YCIIn`m1aCRtEi&D+8-ua@XtZmDy;;Gw@V?xS2&J6D2uO?W@xN}*_^L0@V%WSXuINs^E9LKxr zW5=29Q&`(FKl1X(5;w=08eSV_0a(h)pEcub`^%rd;Nyjw!W=PUyXCBgUB`Rje3N3r zo;lxio*IdS%UL33ySy;C{>qTS@*sVabzFsh2ILc*{|36arvAsnBk#eP$xC;qdaah2 z16>N%7ax=F2Je`8k&>Fy3S#j65>xAyEH!E4{QdRcwj6z@^_Ld8d~DF`ag3L!_=dIN zXr=!)6$>7MIj;A_Qj@yOeuK4dSULU?4PRtwg!*?b-c32M{-d5VZ~v~6a^7o>9BBVX zUXC~Wc+;olV*iQcez@s=FM7Pm>^)ZjwDYB-?IWhqZ117tX_YsQ=bLNyWu|u*|JdM@ zMOm1ye)RCvYg^j0l1OTE7?V+GM-Ia45io9lYVET`jDET_A9%jw7WFR#Bs@CMm% z1@EinrdKDsqW#l*i`Qob_aD2$^v|^GOnu1t(^pZO&FJTir@nh;ds|m97vH$Tq_(Z! zuSqtZ>ivC%>0>VyV^U`w7FktMR_9OZ&OClT_TP@?Xxa*XFYumU%o=Rz3FiDx^Rwq> zJM-r{^DE;udWmA7d5uD5o_9=$mFmWjnc65f;yoTRh5Nd!H1{|14wRbinFANGDV{~rJ+x; zo#X1K*z^qk@_)WltOn((`by49wqYa3n^wk{t0^P)7nPZVO$$q^SSfhtm$RIHwA?KA zx>vAkLWQaG?yO*}bX&~>cEW12e42ea`imBaZkNmJ1^p|+NIWvdP5q^zo@V}I!k(6; zA6LWP2dnv@JG#;gP1gLSSqCP6m(rE`U&*s;qGjI3N|Q1+cnmv*6kNl+A|CahErl!< zSx>u%e-!cO&xS8Jf3M_6hW=Ho@FG<_IUcLx6Yc9&Cbjj#NU2*LE{}e=X^)e9?AJcV z|JTc{HY?iOdE2ESH29hK@2WQa1|7q%9_#r)QRcrzI*VuLP0uTul~+`}ATK|E;k=o} zu6-SxvoEjJ5%Y{!6k#$wIbtsG+SHhEe+H!gnelM%Bs@iYN#f_9xPC#2<#;=4OrPQ8 z)iK}b9Zs7Oeox=PfwiHi?S^^v-yUPtbsE&HCTmQ;jz!^EEk7=VU40#M)fYXtmbali zer8?Cw?S`KEgkh_{c}exgYV^9p8EXLxoPo8Ua+&hwkO)$&ffGK(|!zDPEkz_QMcXQ zzBTee$nX61sbc%GsjtJjZ_GRIMAMrW2mhxueLmH!6#QDK2XNgg|B>^;i6*5j_dVQv zG4Hn%O^+7j+3CY`qb5Ds=mB@=pI@$=;sU-o>mOGuNPnT^r|P@6cV*P{=-_ABM-ZPJ z>3`m{QPXQCQ?q?&yXjiGRIiVnSXGhX6c^{~KUsQ}qX~oWDo)<9xpNofx%1{Pn7t&& z$t#*MKYwOX-t1|!lCM25qDeI|DD$dg%wd~jymQ?gV=9Wo_-gcz7z3zHoVPUo>6vh& zJe#Vj_wU+&6|1j8{|l7mf1brQJL;q7bDUp_bOPH9V|}mme|kK;nd8{sGs+3|5t~H5 z;U`w_xwz@j>hNJKUE|Dt{p$48uj9>fVjbUaqjh}L*-}TBy|a$>6o1Lf!@kZ;>a*DY zfJ#>^(+@xvcdh-Zn&Zt|V`h5W*Dx>Kzs4Nzbz92?a@U$pga7;mRJ||SFSZ(yB6~Z)Wk(y?S@;pDpcydu$C3+=yhgua`>a&oA9kC?s$a*OxH|)WL?SM z8gRINb5M8FXP~@DWpsV5{+!0iJ0cA3dNaSx5gCl{m)5fo-@e{-@c8@R&fbITnI+gt z^A4@29_|K$Ghu_d(0gG6$$xJ!Lz)FE9&gA=W~+DiNlc#~oMfgZ-}-BxmK*p}p&I|T z`-)CBbBuSzDTmk4ZZKfHuTPgEIEx|DQ-K>WOkd*Jay#C z&5ctUI>Ha9@foT2>Ac`qpKh-7TA#rOdHzZ9%Fi$zy_3%1sr&ac%!FP#-@bsjYwLL9 z=WCk%timhzh|PSL3~e?id+%;06dlgwx9$aJ@&oI!J>!Wk{`ZVNR#>296OezGQ4yiGxa?em<#>4J1xLn{djxC>`CV+xzMcj-oDU$ zp?^N#cW2UcG&Ad;Ejcc$620lz$IPD+e0k?F?%36A0KfVD=|{c}mza!fdqgPs$)|pG zpUcyn#jK-0d1ReYZ;ltagkOUnzl5S6yo3p%|90l@!PT))Hv1)ec^F5C2V$7Q*^e=>KU5Z@J!- z9ZZL-cW~<+I~XJP?l6P*{d0$zW%gxWW;z(}=$$O{H}9mW?%T=0CfV0(d^xYH{Vq3? zhc?W6bSYxtG^AD4hWD%bpgPG8?{@8@)uI2_UkwLj9b1r}Wk0zjv)}ESuGj2_oo@X! za`=Mvt7EVK75pAodxhzi%N6X>t;kJJi)HvdTzU4YybJQZ*8U-la&0obw!F4rz5n+r zZgH~Ld+8l$nLnML8WM zqOHF1@t^uXN|?5rW6O7&l;p=Bb@ndb%_H`{-8@HD?%|QwY7fcuJvKQ?d40XR_b}7( z2fTf~PxhFjhcBHyZ^ry(^}l%8%Cl_ugY@TpjCg&@PDVcI=G9(r+IorWO}FH(PlmM9 z58MMv8mv_ICa{Vz>Pz{xiKWg%Sx%11Xk^I37(=Ykx7c;!mZZVxEYYD6S tRP#)VR64w-+mC>*U3mME&vriCbg?_1R~FvrFD7xHyQGf4$l+Jh{|5~\n" -"Language-Team: \n" -"Language: German\n" -"Plural-Forms: nplurals=2; plural=n != 1\n" +"PO-Revision-Date: 2015-09-16 06:40:44+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Loco - https://localise.biz/\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-SearchPath-0: ..\n" -"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;" -"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;" -"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;" -"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;" -"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n" -"X-Loco-Target-Locale: de_DE" - -#: ../inc/class-jobtype-file.php:304 -msgid "" -"Move WordPress install folder one folder up! If special WordPress " -"installation that will help." -msgstr "" -"WordPress Installations Ordner einen Ordner höher annehmen. Das unterstützt " -"bei speziellen WordPress Installationen." +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: GlotPress/0.1\n" +"Project-Id-Version: BackWPup Pro\n" -#: ../inc/class-create-archive.php:677 -#, php-format -msgid "" -"If %s will be added to your backup archive, the archive will be too large " -"for for operations with this PHP Version. You might want to consider " -"splitting the backup job in multiple jobs with less files each." -msgstr "" -"Wenn %s zum Backup Archive hinzugefügt wird, wird das Archive zu groß für " -"viele PHP Operationen. Du solltest das Archive aufteilen in mehrere Aufträge " -"mit weniger Dateien in jedem." +msgid "https://marketpress.com/product/backwpup-pro" +msgstr "https://marketpress.de/product/backwpup-pro" -#: ../inc/class-easycron.php:189 -msgid "" -"Here you can setup your EasyCron.com API key " -"to use this service." -msgstr "" -"Hier kannst du EasyCron API Key finden EasyCron." -"com API key um den Dienst zu benutzen." +#: ../inc/class-jobtype-file.php:288 +msgid "Special options" +msgstr "Spezielle Optionen" -#: ../inc/class-file.php:194 -msgid "" -"BackWPup will not backup folders and its sub folders when this file is " -"inside." -msgstr "" -"BackWPup wird Ordner und unter Ordner nicht sichern wenn dies Datei " -"enthalten ist." +#: ../inc/class-jobtype-file.php:300 +msgid "Use one folder above as WP install folder" +msgstr "Einen Ordner höher als WP Installations Ordner festlegen" -#: ../inc/class-page-jobs.php:420 -#, php-format -msgid "The job \"%s\" destination \"%s\" is not configured properly" -msgstr "Der Auftrag \"%s\" mit dem Ziel \"%s\" ist nicht richtig configurierd" +#: ../inc/class-jobtype-file.php:304 +msgid "Use one folder above as WordPress install folder! That can be helpful, if you would backup files and folder that are not in the WordPress installation folder. Or if you made a \"Giving WordPress Its Own Directory\" installation. Excludes must be configured again." +msgstr "Einen Ordner höher als WordPress Installations Ordner festlegen! Dies kann nützlich sein, wenn du Dateien und Ordner sicher willst die nicht im WordPress Installations Ordner liegen. Oder wenn du eine Installation wie \"hier beschrieben gemacht hast. Ausschlüsse müssen erneut konfiguriert werden." -#: ../inc/class-page-jobs.php:425 -#, php-format -msgid "The job \"%s\" needs properly configured destinations to run!" -msgstr "" -"Der Aufrag \"%s\" benötigt vollständig konfigurierte Ziele damit er ausgeführt " -"werden kann!" +#: ../inc/class-page-settings.php:319 +msgid "This do an empty output on job working. This can help in some situations or can brake the working. You must test it." +msgstr "Erstellt eine Leere Ausgabe wenn ein Auftrag ausgeführt wird. Dies kann in einigen fällen helfen das ein Auftrag nicht abgebrochen wird. Du musst diese Option es Testen. " -#: ../inc/class-page-settings.php:197 -msgid "" -"You can use absolute or relative path! Relative path is relative to " -"WP_CONTENT_DIR." -msgstr "" -"Du kannst absolute und relative Pfad Angaben benutzen! Relative sind " -"relative zu \n" -"WP_CONTENT_DIR." +#: ../inc/class-page-jobs.php:287 +msgid "%1$s at %2$s by EasyCron" +msgstr "%1$s um %2$s von EasyCron" -#: ../inc/class-page-settings.php:224 ../inc/class-page-settings.php:227 -msgid "Logging Level" -msgstr "Log Level" +#: ../inc/class-easycron.php:179 +msgid "EasyCron.com API returns (%s): %s" +msgstr "EasyCron.com API Antwort (%s): %s" -#: ../inc/class-page-settings.php:230 -msgid "" -"Debug lag has much more informations than normal logs. It is for support and " -"should be handled carefully. For support is the best to use a not translated " -"log file. Usage of not translated logs can reduce the PHP memory usage." -msgstr "" -"der Debug Log beinhaltet mehr Informationen als der Normale Log. Dieser ist " -"für den Support gedacht und sollte mir Vorsicht behandelt werden. Für den " -"Support ist es am besten ein Logfile zu nehmen welches nicht übersetzt ist. " -"Die Benutzung von nicht übersetzten Logs kann den Speicher verbrauch " -"reduzieren." +#: ../inc/class-easycron.php:188 +msgid "EasyCron" +msgstr "EasyCron" -#: ../inc/class-page-settings.php:313 -msgid "Empty output on working" -msgstr "Lerre ausgabe beim Ausführen" +#: ../inc/class-easycron.php:192 +msgid "Api key:" +msgstr "Api key:" -#: ../inc/class-page-settings.php:316 ../inc/class-page-settings.php:321 -msgid "Enable an empty Output on backup working." -msgstr "Aktiviere leere ausgaben bei der Auftrags Ausführung " +#: ../inc/class-easycron.php:200 +msgid "Trigger WordPress Cron:" +msgstr "Rufe WordPress Cron:" -#: ../inc/class-page-settings.php:319 -msgid "" -"This do an empty output on job working. This kan help in some situations or " -"can brake the working. You must test it." -msgstr "" -"Dies erzeugt einen Leere ( ) Ausgabe wenn der Auftrag ausgeführt wird. Das " -"kann das abbrechen eines Auftrags verhindern. Du musst es testen." +#: ../inc/class-easycron.php:204 +msgid "If you check this box, a cron job will be created on EasyCron that all 5 Minutes calls the WordPress cron." +msgstr "Wenn dies Checkbox aktiv ist wird bei EasyCron ein Cronjob erstellt der alle 5 Minuten den WordPRess Cron aufruft." -#: ../inc/class-page-settings.php:333 -msgid "" -"Is your blog protected with HTTP basic authentication (.htaccess)? Or did " -"you use a Plugin to secure wp-cron.php than use the authentication methods " -"below" -msgstr "" -"Ist dein Blog hinter einer HTTP Basic Authentifizierung \n" -"(.htaccess)? Oder hast du Plugins installiert die eine \n" -"Authentifizierung\n" -" für die wp-cron.php erstellen? Dann benutze die \n" -"Authentifizierungs\n" -" Methoden unten" +#: ../inc/class-easycron.php:189 +msgid "Here you can setup your EasyCron.com API key to use this service." +msgstr "Hier kannst du EasyCron API Key finden EasyCron.com API key um den Dienst zu benutzen." #: ../inc/class-job.php:321 -#, php-format msgid "[INFO] Runs with user: %1$s (%2$d) " msgstr "[INFO] Läuft mit Benutzer: %1$s (%2$d) " @@ -136,2607 +65,2170 @@ msgstr "[INFO] Läuft mit Benutzer: %1$s (%2$d) " msgid "[INFO] BackWPup job start with EasyCron.com" msgstr "[INFO] BackWPup job gestarte durch EasyCron.com" -#: ../inc/class-job.php:2167 -msgid "" -"The Backup archive will be too large for for file operations with this PHP " -"Version. You might want to consider splitting the backup job in multiple " -"jobs with less files each." -msgstr "" -"Das Backup Archive ist zu groß für Datei Operationen mit dieser PHP Version. " -" Du solltest den Auftrag in mehrere aufteilen mit weniger Dateien pro " -"Auftrag." - -#: ../inc/class-page-editjob.php:588 -msgid "" -"Leave empty to not have log sent. Or separate with , for more than one " -"receiver." -msgstr "" -"Leer lassen um kein Log zu senden. Oder Empfänger durch , trennen für " -"mehrere." - #: ../inc/class-page-editjob.php:642 msgid "Use EasyCron.com Cron jobs." msgstr "Benutze EasyCron.com Cron Aufträge." #: ../inc/class-page-editjob.php:642 -msgid "" -"with EasyCron.com" -msgstr "" -"mit EasyCron.com" +msgid "with EasyCron.com" +msgstr "mit EasyCron.com" #: ../inc/class-page-editjob.php:645 -#, php-format -msgid "" -"Setup Account / API Key first." -msgstr "" -"Erstelle zuerste ein Konto / API " -"Key." +msgid "Setup Account / API Key first." +msgstr "Erstelle zuerste ein Konto / API Key." -#: ../inc/class-page-editjob.php:662 -msgid "" -"Use WP-CLI commands to let the job start with the server’s cron on command " -"line interface." -msgstr "" -"Benutze WP-CLI Befehle um den Auftrag über die Server Kommandozeile " -"auszuführen." +#: ../inc/class-page-settings.php:313 +msgid "Empty output on working" +msgstr "Lerre ausgabe beim Ausführen" -#: ../backwpup.php:42 -msgid "" -"BackWPup requires PHP version 5.2.7 with spl extension or greater and " -"WordPress 3.4 or greater." -msgstr "" -"BackWPup benötigt PHP Version 5.2.7 oder höher mit der SPL-Erweiterung und " -"WordPress 3.4 oder höher." +#: ../inc/class-page-settings.php:316 ../inc/class-page-settings.php:321 +msgid "Enable an empty Output on backup working." +msgstr "Aktiviere leere ausgaben bei der Auftrags Ausführung " -#: ../backwpup.php:310 ../inc/class-page-backups.php:264 -msgid "Folder" -msgstr "Ordner" +#: ../inc/class-create-archive.php:684 +msgid "If %s will be added to your backup archive, the archive will be too large for for operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each." +msgstr "Wenn %s zum Backup Archive hinzugefügt wird, wird das Archive zu groß für viele PHP Operationen. Du solltest das Archive aufteilen in mehrere Aufträge mit weniger Dateien in jedem." -#: ../backwpup.php:311 -msgid "Backup to Folder" -msgstr "Backup in Ordner" +#: ../inc/class-destination-s3.php:91 ../inc/pro/class-destination-s3.php:29 +msgid "Google Storage: EU" +msgstr "Google Storage: EU" -#: ../backwpup.php:326 -msgid "Email" -msgstr "E-Mail" +#: ../inc/class-destination-s3.php:92 ../inc/pro/class-destination-s3.php:30 +msgid "Google Storage: USA" +msgstr "Google Storage: USA" -#: ../backwpup.php:327 -msgid "Backup sent via email" -msgstr "Backup als E-Mail versendet" +#: ../inc/class-destination-s3.php:93 ../inc/pro/class-destination-s3.php:31 +msgid "Google Storage: Asia" +msgstr "Google Storage: Asien" -#: ../backwpup.php:342 -msgid "FTP" -msgstr "FTP" +#: ../inc/class-file.php:194 +msgid "BackWPup will not backup folders and its sub folders when this file is inside." +msgstr "BackWPup wird Ordner und unter Ordner nicht sichern wenn dies Datei enthalten ist." -#: ../backwpup.php:343 -msgid "Backup to FTP" -msgstr "Backup zu FTP" +#: ../inc/class-job.php:2167 +msgid "The Backup archive will be too large for for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each." +msgstr "Das Backup Archive ist zu groß für Datei Operationen mit dieser PHP Version. Du solltest den Auftrag in mehrere aufteilen mit weniger Dateien pro Auftrag." -#: ../backwpup.php:358 ../inc/class-destination-dropbox.php:278 -msgid "Dropbox" -msgstr "Dropbox" +#: ../inc/class-jobtype-file.php:77 +msgid "Backup WordPress install folder" +msgstr "Sichere den WordPress Installations Ordner" -#: ../backwpup.php:359 ../inc/class-page-about.php:577 -msgid "Backup to Dropbox" -msgstr "Backup in die Dropbox" +#: ../inc/class-page-editjob.php:386 +msgid "%1$s Job: %2$s" +msgstr "%1$s Auftrag: %2$s" -#: ../backwpup.php:375 ../backwpup.php:394 ../inc/class-destination-s3-v1.php:71 . -#: ./inc/class-destination-s3.php:74 -msgid "S3 Service" -msgstr "S3 Service" +#: ../inc/pro/class-jobtype-dbdump.php:865 +msgid "Backup database structure \"%s\" to XML" +msgstr "Backup der Datenbank Struktur \"%s\" für XML" -#: ../backwpup.php:376 -msgid "Backup to an S3 Service" -msgstr "Backup zu einem S3 Service" +#: ../inc/pro/class-jobtype-dbdump.php:907 +msgid "Backup table \"%s\" data to XML" +msgstr "Sichere Daten der Tabelle \"%s\" als XML" -#: ../backwpup.php:395 -msgid "Backup to an S3 Service v1" -msgstr "Backup auf S3 Service v1" +#: ../inc/class-admin.php:468 +msgid "Add BackWPup Role" +msgstr "Füge BackWPup Rolle hinzu" -#: ../backwpup.php:411 -msgid "MS Azure" -msgstr "MS Azure" +#: ../inc/class-admin.php:472 +msgid "— No additional role for BackWPup —" +msgstr "— Keine exrta BackWPup Rolle —" -#: ../backwpup.php:412 -msgid "Backup to Microsoft Azure (Blob)" -msgstr "Backup zu Microsoft Azure (Blob)" +#: ../inc/class-admin.php:593 +msgid "Administrator" +msgstr "Administrator" -#: ../backwpup.php:427 -msgid "RSC" -msgstr "RSC" +#: ../inc/class-create-archive.php:340 +msgid "ZIP archive cannot be closed correctly" +msgstr "ZIP Archive kann nicht geschlossen werden" -#: ../backwpup.php:428 ../inc/class-page-about.php:582 -msgid "Backup to Rackspace Cloud Files" -msgstr "Backup in die Rackspace Cloud" +#: ../inc/class-destination-dropbox.php:247 +#: ../inc/pro/class-destination-dropbox. php:128 +msgid "Authenticated with Dropbox of user: %s" +msgstr "Authentifiziert mit der Dropbox von: %s" -#: ../backwpup.php:444 -msgid "SugarSync" -msgstr "SugarSync" +#: ../inc/class-destination-msazure.php:259 +#: ../inc/class-destination-ftp.php:344 . ./inc/class-destination-s3.php:412 +#: ../inc/class-destination-s3.php:498 .. /inc/class-destination-rsc.php:282 +#: ../inc/pro/class-destination-rsc.php:215 .. +#: /inc/pro/class-destination-rsc.php:248 +#: ../inc/pro/class-destination-gdrive.php: 594 +#: ../inc/pro/class-destination-glacier.php:387 +msgid "Can not open source file for transfer." +msgstr "Kann die Quell Datei nicht für den Transfer öffnen." -#: ../backwpup.php:445 ../inc/class-page-about.php:597 -msgid "Backup to SugarSync" -msgstr "Backup zu SugarSync" +#: ../inc/class-job.php:310 +msgctxt "Plugin name; Plugin Version; plugin url" +msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH" +msgstr "[INFO] %1$s %2$s; Ein Projekt der Inpsyde GmbH" -#: ../backwpup.php:464 -#, php-format -msgid "PHP Version %1$s is to low, you need Version %2$s or above." -msgstr "" -"Du nutzt die veraltete PHP Version %1$s. Es wird aber mindestens die Version " -"%2$s benötigt." +#: ../inc/class-job.php:312 +msgctxt "WordPress Version; Blog url" +msgid "[INFO] WordPress %1$s on %2$s" +msgstr "[INFO] WordPress %1$s auf %2$s" -#: ../backwpup.php:471 -#, php-format -msgid "Missing function \"%s\"." -msgstr "Fehlende Funktion \"%s\"." +#: ../inc/class-job.php:318 +msgid "[INFO] BackWPup job: %1$s" +msgstr "[INFO] BackWPup Auftrag: %1$s" -#: ../backwpup.php:480 -#, php-format -msgid "Missing class \"%s\"." -msgstr "Fehlende Klasse \"%s\"." +#: ../inc/class-job.php:339 ../inc/class-job.php:351 +msgid "[INFO] Cron: %s; Next: %s " +msgstr "[INFO] Cron: %s; Nächster: %s " -#: ../inc/class-page-logs.php:108 -msgid "No Logs." -msgstr "Keine Protokolldateien." +#: ../inc/class-job.php:413 +msgid "Could not write log file" +msgstr "Kann nicht in die Log-Datei schreiben" -#: ../inc/class-page-logs.php:120 ../inc/class-page-logs.php:198 ../inc/class- -#: page-jobs.php:113 ../inc/class-page-jobs.php:177 ../inc/class-page-backups.php: -#: 189 ../inc/class-page-backups.php:308 -msgid "Delete" -msgstr "Löschen" +#: ../inc/class-job.php:1168 +msgid "Signal \"%s\" is sent to script!" +msgstr "Signal \"%s\" wurde an das Script geschickt!" -#: ../inc/class-page-logs.php:131 ../inc/class-page-backwpup.php:262 ../inc/class- -#: page-backwpup.php:326 ../inc/class-page-backups.php:262 -msgid "Time" -msgstr "Zeit" +#: ../inc/class-job.php:1183 ../inc/class-job.php:1196 +msgid "System: %s" +msgstr "System: %s" -#: ../inc/class-page-logs.php:132 ../inc/class-page-backwpup.php:262 ../inc/class- -#: page-backwpup.php:327 -msgid "Job" -msgstr "Auftrag" +#: ../inc/class-file.php:153 +msgid "Folder %1$s is not in open basedir, please use another folder." +msgstr "Verzeichnis %1$s ist nicht innerhalb von open basedir, bitte benutze ein anderes Verzeichnis." -#: ../inc/class-page-logs.php:133 -msgid "Status" -msgstr "Status" +#: ../inc/class-job.php:2076 +msgid "Adding Extra files to Archive" +msgstr "Extra Dateien zum Archive hinzufügen" -#: ../inc/class-page-logs.php:134 ../inc/class-page-jobs.php:126 ../inc/class- -#: page-editjob.php:718 ../inc/pro/class-wizard-job.php:302 -msgid "Type" -msgstr "Typ" +#: ../inc/class-job.php:2102 +msgid "Archiving Folder: %s" +msgstr "Archiviere Verzeichnis: %s" -#: ../inc/class-page-logs.php:135 ../inc/class-page-backups.php:265 -msgid "Size" -msgstr "Größe" +#: ../inc/class-jobtype-wpplugin.php:138 +#: ../inc/pro/class-jobtype-dbdump.php:771 +msgid "Can not open target file for writing." +msgstr "Kann die Ziel Datei nicht zum schreiben öffnen." -#: ../inc/class-page-logs.php:136 -msgid "Runtime" -msgstr "Laufzeit" +#: ../inc/class-page-backwpup.php:128 +msgctxt "BackWPup News RSS Feed URL" +msgid "https://marketpress.com/tag/backwpup/feed/" +msgstr "https://marketpress.de/tag/backwpup/feed/" -#: ../inc/class-page-logs.php:159 ../inc/class-page-backwpup.php:291 ../inc/class- -#: page-backwpup.php:364 ../inc/class-page-jobs.php:313 ../inc/class-page-backups. -#: php:352 -#, php-format -msgid "%1$s at %2$s" -msgstr "%1$s um %2$s" +#: ../inc/class-page-editjob.php:588 +msgid "Leave empty to not have log sent. Or separate with , for more than one receiver." +msgstr "Leer lassen um kein Log zu senden. Oder Empfänger durch , trennen für mehrere." -#: ../inc/class-page-logs.php:194 ../inc/class-page-jobs.php:172 -#, php-format -msgid "Job ID: %d" -msgstr "Auftrags-ID: %d" +#: ../inc/class-page-editjob.php:662 +msgid "Use WP-CLI commands to let the job start with the server’s cron on command line interface." +msgstr "Benutze WP-CLI Befehle um den Auftrag über die Server Kommandozeile auszuführen." -#: ../inc/class-page-logs.php:196 -msgid "View" -msgstr "Ansehen" +#: ../inc/class-page-editjob.php:664 +msgid "Use WP-CLI to run jobs from commandline.." +msgstr "Benutze WP-CLI um Aufträge von der Kommandozeile zu starten.." -#: ../inc/class-page-logs.php:199 ../inc/class-page-jobs.php:323 ../inc/class- -#: page-backups.php:310 -msgid "Download" -msgstr "Herunterladen" +#: ../inc/class-page-jobs.php:420 +msgid "The job \"%s\" destination \"%s\" is not configured properly" +msgstr "Der Auftrag \"%s\" mit dem Ziel \"%s\" ist nicht richtig configurierd" -#: ../inc/class-page-logs.php:215 -#, php-format -msgid "1 ERROR" -msgid_plural "%d ERRORS" -msgstr[0] "1 FEHLER" -msgstr[1] "%d FEHLER" +#: ../inc/class-page-jobs.php:425 +msgid "The job \"%s\" needs properly configured destinations to run!" +msgstr "Der Aufrag \"%s\" benötigt vollständig konfigurierte Ziele damit er ausgeführt werden kann!" -#: ../inc/class-page-logs.php:217 -#, php-format -msgid "1 WARNING" -msgid_plural "%d WARNINGS" -msgstr[0] "1 WARNUNG" -msgstr[1] "%d WARNUNGEN" +#: ../inc/class-page-jobs.php:441 +msgid "Not expected HTTP response body: %s" +msgstr "Nicht erwartete HTTP Body: %s" -#: ../inc/class-page-logs.php:219 -msgid "O.K." -msgstr "O.K." +#: ../inc/class-page-settings.php:197 +msgid "You can use absolute or relative path! Relative path is relative to WP_CONTENT_DIR." +msgstr "" +"Du kannst absolute und relative Pfad Angaben benutzen! Relative sind relative zu \n" +"WP_CONTENT_DIR." -#: ../inc/class-page-logs.php:236 -msgid "Log only" -msgstr "Nur Log" +#: ../inc/class-page-settings.php:224 ../inc/class-page-settings.php:227 +msgid "Logging Level" +msgstr "Log Level" -#: ../inc/class-page-logs.php:247 ../inc/class-destination-ftp.php:86 .. -#: inc/class-page-settings.php:470 -msgid "seconds" -msgstr "Sekunden" +#: ../inc/class-page-settings.php:230 +msgid "Debug lag has much more informations than normal logs. It is for support and should be handled carefully. For support is the best to use a not translated log file. Usage of not translated logs can reduce the PHP memory usage." +msgstr "der Debug Log beinhaltet mehr Informationen als der Normale Log. Dieser ist für den Support gedacht und sollte mir Vorsicht behandelt werden. Für den Support ist es am besten ein Logfile zu nehmen welches nicht übersetzt ist. Die Benutzung von nicht übersetzten Logs kann den Speicher verbrauch reduzieren." -#: ../inc/class-page-logs.php:306 ../inc/class-admin.php:201 ../inc/class-admin. -#: php:201 ../inc/class-adminbar.php:102 ../inc/class-page-settings.php:120 -msgid "Logs" -msgstr "Protokolle" +#: ../inc/class-page-settings.php:231 +msgid "Normal (translated)" +msgstr "Normal (übersetzt)" -#: ../inc/class-page-logs.php:369 -#, php-format -msgid "%s Logs" -msgstr "%s Logs" +#: ../inc/class-page-settings.php:232 +msgid "Normal (not translated)" +msgstr "Normal (nicht übersetzt)" -#: ../inc/class-destination-msazure.php:25 -msgid "MS Azure access keys" -msgstr "MS Azure Zugriff Schlüssel" +#: ../inc/class-page-settings.php:233 +msgid "Debug (translated)" +msgstr "Debug (übersetzt)" -#: ../inc/class-destination-msazure.php:29 -msgid "Account name" -msgstr "Account Name" +#: ../inc/class-page-settings.php:234 +msgid "Debug (not translated)" +msgstr "Debug (nicht übersetzt)" -#: ../inc/class-destination-msazure.php:36 -msgid "Access key" -msgstr "Access Key" +#: ../inc/class-page-settings.php:332 +msgid "Authentication for %s" +msgstr "Authentifizierung für %s" -#: ../inc/class-destination-msazure.php:44 -msgid "Blob container" -msgstr "Blob Container" +#: ../inc/class-page-settings.php:333 +msgid "Is your blog protected with HTTP basic authentication (.htaccess)? Or did you use a Plugin to secure wp-cron.php than use the authentication methods below" +msgstr "" +"Ist dein Blog hinter einer HTTP Basic Authentifizierung \n" +"(.htaccess)? Oder hast du Plugins installiert die eine \n" +"Authentifizierung\n" +" für die wp-cron.php erstellen? Dann benutze die \n" +"Authentifizierungs\n" +" Methoden unten" -#: ../inc/class-destination-msazure.php:48 ../inc/class-destination-rsc.php:77 -msgid "Container selection" -msgstr "Container Auswahl" +#: ../inc/class-page-settings.php:339 ../inc/class-page-settings.php:342 +msgid "Authentication method" +msgstr "Authentifizierungs methode" -#: ../inc/class-destination-msazure.php:59 ../inc/class-destination-rsc.php:89 -msgid "Create a new container" -msgstr "Neuen Container erstellen" +#: ../inc/class-page-settings.php:346 +msgid "Basic auth" +msgstr "Basic auth" -#: ../inc/class-destination-msazure.php:66 ../inc/class-destination-sugarsync.php: -#: 86 ../inc/class-destination-folder.php:29 ../inc/class-destination-dropbox.php: -#: 91 ../inc/class-destination-ftp.php:52 ../inc/class-destination-rsc.php:96 .. -#: inc/pro/class-destination-gdrive.php:63 -msgid "Backup settings" -msgstr "Backup-Einstellungen" +#: ../inc/class-page-settings.php:347 +msgid "WordPress User" +msgstr "WordPress Benutzer" -#: ../inc/class-destination-msazure.php:70 -msgid "Folder in container" -msgstr "Ordner im Container" +#: ../inc/class-page-settings.php:348 +msgid "Query argument" +msgstr "Query Argument" -#: ../inc/class-destination-msazure.php:76 ../inc/class-destination-s3-v1.php:155 -#: ../inc/class-destination-s3.php:160 ../inc/class-destination-rsc.php:106 .. -#: inc/pro/class-destination-glacier.php:94 -msgid "File deletion" -msgstr "Datei Löschung" +#: ../inc/class-page-settings.php:355 +msgid "Basic Auth Username:" +msgstr "Basic Auth Benutzername:" -#: ../inc/class-destination-msazure.php:81 ../inc/class-destination-s3-v1.php:160 -#: ../inc/class-destination-sugarsync.php:101 ../inc/class-destination-folder.php: -#: 44 ../inc/class-destination-ftp.php:67 ../inc/class-destination-s3.php:165 .. -#: inc/class-destination-rsc.php:111 ../inc/pro/class-destination-msazure.php:35 -#: ../inc/pro/class-destination-s3-v1.php:60 ../inc/pro/class-destination-folder. -#: php:24 ../inc/pro/class-destination-dropbox.php:42 ../inc/pro/class- -#: destination-s3.php:62 ../inc/pro/class-destination-rsc.php:55 ../inc/pro/class- -#: destination-gdrive.php:78 ../inc/pro/class-destination-gdrive.php:284 .. -#: inc/pro/class-destination-glacier.php:96 ../inc/pro/class-destination-glacier. -#: php:180 -msgid "Oldest files will be deleted first. 0 = no deletion" -msgstr "Älteste Dateien werden als erstes gelöscht. 0 = keine Löschung" +#: ../inc/class-page-settings.php:363 +msgid "Basic Auth Password:" +msgstr "Basic Auth Passwort:" -#: ../inc/class-destination-msazure.php:82 ../inc/class-destination-s3-v1.php:161 -#: ../inc/class-destination-sugarsync.php:102 ../inc/class-destination-folder.php: -#: 45 ../inc/class-destination-dropbox.php:108 ../inc/class-destination-s3.php: -#: 166 ../inc/class-destination-rsc.php:112 ../inc/pro/class-destination-msazure. -#: php:36 ../inc/pro/class-destination-s3-v1.php:61 ../inc/pro/class-destination- -#: folder.php:25 ../inc/pro/class-destination-dropbox.php:43 ../inc/pro/class- -#: destination-s3.php:63 ../inc/pro/class-destination-rsc.php:56 ../inc/pro/class- -#: destination-gdrive.php:79 ../inc/pro/class-destination-gdrive.php:285 -msgid "Number of files to keep in folder." -msgstr "Anzahl der Dateien, die im Ordner behalten werden" +#: ../inc/class-page-settings.php:370 ../inc/class-page-settings.php:373 +msgid "Select WordPress User" +msgstr "WordPress Benutzer auswählen" -#: ../inc/class-destination-msazure.php:86 ../inc/class-destination-s3-v1.php:165 -#: ../inc/class-destination-sugarsync.php:106 ../inc/class-destination-folder.php: -#: 49 ../inc/class-destination-dropbox.php:112 ../inc/class-destination-ftp.php: -#: 72 ../inc/class-destination-s3.php:170 ../inc/class-destination-rsc.php:116 .. -#: inc/pro/class-destination-msazure.php:41 ../inc/pro/class-destination-s3-v1. -#: php:66 ../inc/pro/class-destination-sugarsync.php:68 ../inc/pro/class- -#: destination-folder.php:30 ../inc/pro/class-destination-dropbox.php:45 .. -#: inc/pro/class-destination-ftp.php:46 ../inc/pro/class-destination-s3.php:68 .. -#: inc/pro/class-destination-rsc.php:61 ../inc/pro/class-destination-gdrive.php: -#: 83 ../inc/pro/class-destination-gdrive.php:287 -msgid "Do not delete files while syncing to destination!" -msgstr "Keine Dateien im Sync-Zielverzeichnis löschen!" +#: ../inc/class-page-settings.php:389 +msgid "Query arg key=value:" +msgstr "Query Argumente Schlüssel=Wert:" -#: ../inc/class-destination-msazure.php:124 ../inc/pro/class-destination-msazure. -#: php:81 -#, php-format -msgid "MS Azure container \"%s\" created." -msgstr "MS Azure Container \"%s\" erstellt." +#: ../inc/pro/class-destination-gdrive.php:145 ../inc/pro/class-destination- +#: gdrive.php:172 +msgid "GDrive: No refresh token received. Try to Authenticate again!" +msgstr "GDrive: Keinen refresh Token erhalten. Versuche dich erneut zu Authentifizieren!" -#: ../inc/class-destination-msazure.php:127 ../inc/pro/class-destination-msazure. -#: php:84 -#, php-format -msgid "MS Azure container create: %s" -msgstr "MS Azure Container erstellen: %s" +#: ../inc/class-create-archive.php:184 +msgid "ZIP archive cannot be closed correctly." +msgstr "ZIP-Archiv kann nicht korrekt geschlossen werden." -#: ../inc/class-destination-msazure.php:203 -#, php-format -msgid "%d. Try sending backup to a Microsoft Azure (Blob) …" -msgstr "%d. Versuche, das Backup zu Microsoft Azure (Blob) zu senden …" +#: ../inc/class-destination-dropbox.php:68 +msgid "App Access to Dropbox" +msgstr "App-Zugang zu Dropbox" -#: ../inc/class-destination-msazure.php:225 ../inc/pro/class-destination-msazure. -#: php:126 -#, php-format -msgid "MS Azure container \"%s\" does not exist!" -msgstr "MS Azure Container \"%s\" existiert nicht!" +#: ../inc/class-destination-dropbox.php:70 +msgid "A dedicated folder named BackWPup will be created inside of the Apps folder in your Dropbox. BackWPup will get read and write access to that folder only. You can specify a subfolder as your backup destination for this job in the destination field below." +msgstr "Ein spezieller Ordner namens BackWPup wird innerhalb des Apps-Ordners in deiner Dropbox angelegt. BackWPup erhält Lese- und Schreibrechte ausschließlich für diesen Ordner. Du kannst einen Unterordner als dein Backup-Ziel im Feld Zielordner weiter unten benennen." -#: ../inc/class-destination-msazure.php:229 ../inc/pro/class-destination-msazure. -#: php:130 -#, php-format -msgid "Connected to MS Azure container \"%s\"." -msgstr "Verbunden mit MS Azure container \"%s\"" +#: ../inc/class-destination-dropbox.php:72 +msgid "Allows restricted access to Apps/BackWPup folder only." +msgstr "Erlaubt beschränkten Zugriff ausschließlich zum Ordner Apps/BackWPup." -#: ../inc/class-destination-msazure.php:232 -msgid "Starting upload to MS Azure …" -msgstr "Hochladen zu MS Azure hat begonnen …" +#: ../inc/class-destination-dropbox.php:80 +msgid "Full Access to Dropbox" +msgstr "Uneingeschränkter Zugang zur Dropbox." -#: ../inc/class-destination-msazure.php:259 ../inc/class-destination-ftp.php:344 . -#: ./inc/class-destination-s3.php:412 ../inc/class-destination-s3.php:498 .. -#: inc/class-destination-rsc.php:282 ../inc/pro/class-destination-rsc.php:215 .. -#: inc/pro/class-destination-rsc.php:248 ../inc/pro/class-destination-gdrive.php: -#: 594 ../inc/pro/class-destination-glacier.php:387 -msgid "Can not open source file for transfer." -msgstr "Kann die Quell Datei nicht für den Transfer öffnen." +#: ../inc/class-destination-dropbox.php:82 +msgid "BackWPup will have full read and write access to your entire Dropbox. You can specify your backup destination wherever you want, just be aware that ANY files or folders inside of your Dropbox can be overridden or deleted by BackWPup." +msgstr "BackWPup erhält uneingeschränkten Lese- und Schreibzugriff zu deiner gesamten Dropbox. Du kannst deinen Zielordner innerhalb deiner Dropbox frei wählen; bedenke jedoch, dass ALLE Dateien und Ordner in deiner Dropbox von BackWPup überschrieben oder gelöscht werden können." -#: ../inc/class-destination-msazure.php:272 ../inc/class-destination-sugarsync. -#: php:257 ../inc/class-destination-dropbox.php:269 ../inc/pro/class-destination- -#: gdrive.php:603 -#, php-format -msgid "Backup transferred to %s" -msgstr "Backup übertragen zu %s" +#: ../inc/class-destination-dropbox.php:84 +msgid "Allows full access to your entire Dropbox." +msgstr "Erlaubt uneingeschränkten Zugriff zu deiner gesamten Dropbox." -#: ../inc/class-destination-msazure.php:277 ../inc/class-destination-msazure.php: -#: 333 ../inc/pro/class-destination-msazure.php:215 -#, php-format -msgid "Microsoft Azure API: %s" -msgstr "Microsoft Azure API: %s" +#: ../inc/class-destination-dropbox.php:95 +msgid "Destination Folder" +msgstr "Zielordner" -#: ../inc/class-destination-msazure.php:326 -#, php-format -msgid "One file deleted on Microsoft Azure container." -msgid_plural "%d files deleted on Microsoft Azure container." -msgstr[0] "Eine Datei im Microsoft-Azure-Container gelöscht" -msgstr[1] "%d Dateien im Microsoft-Azure-Container gelöscht" +#: ../inc/class-destination-dropbox.php:97 +msgid "Specify a subfolder where your backup archives will be stored. If you use the App option from above, this folder will be created inside of Apps/BackWPup. Otherwise it will be created at the root of your Dropbox. Already exisiting folders with the same name will not be overriden." +msgstr "Benenne einen Unterordner, in dem deine Backwup-Archive gespeichert werden sollen. Sofern du die App-Option von weiter oben benutzt, wird dieser Ordner innerhalb von Apps/BackWPup angelegt. Anderenfalls wird er im Hauptordner deiner Dropbox angelegt. Bereits bestehende Ordner mit dem gleichen Namen werden nicht überschrieben." -#: ../inc/class-destination-msazure.php:419 -msgid "Missing account name!" -msgstr "Kontoname (Benutzername) nicht angegeben!" +#: ../inc/class-destination-dropbox.php:98 +msgid "Folder inside your Dropbox where your backup archives will be stored." +msgstr "Ordner in deiner Dropbox, in dem deine Backup-Archive gespeichert werden." -#: ../inc/class-destination-msazure.php:421 ../inc/class-destination-s3-v1.php: -#: 575 ../inc/class-destination-s3.php:675 ../inc/pro/class-destination-glacier. -#: php:536 -msgid "Missing access key!" -msgstr "Der Zugangsschlüssel (Access Key) fehlt!" +#: ../inc/class-destination-dropbox.php:107 +msgid "Older files will be deleted first. 0 = no files will be deleted." +msgstr "Ältere Dateien werden zuerst gelöscht. 0 = keine Dateien werden gelöscht." -#: ../inc/class-destination-msazure.php:425 -msgid "No container found!" -msgstr "Kein Container gefunden!" +#: ../inc/class-job.php:1435 +msgid "Cannot write progress to working file. Job will be aborted." +msgstr "Kann Fortschritt nicht in die Arbeitsdatei schreiben. Auftrag wird abgebrochen." -#: ../inc/class-jobtype-dbdump.php:13 -msgid "DB Backup" -msgstr "Datenbank-Backup" +#: ../inc/class-job.php:1950 +msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue." +msgstr "Dateigröße von „%s“ kann nicht abgefragt werden. Die Datei könnte zu groß sein und wird nicht zur Warteschlange hinzugefügt." -#: ../inc/class-jobtype-dbdump.php:14 -msgid "Database backup" -msgstr "Datenbank Backup" +#: ../inc/class-job.php:2087 ../inc/class-job.php:2145 +msgid "Cannot create backup archive correctly. Aborting creation." +msgstr "Backup-Archiv kann nicht korrekt angelegt werden. Anlegeprozess abgebrochen." -#: ../inc/class-jobtype-dbdump.php:15 -msgid "Creates an .sql database backup file" -msgstr "Erstellt ein Datenbank-Backup (.sql, .xml)" +#: ../inc/class-jobtype-wpexp.php:126 +msgid "WP Export: Post type “%s” does not allow export." +msgstr "WP Export: Post-Type „%s“ erlaubt keinen Export." -#: ../inc/class-jobtype-dbdump.php:61 ../inc/pro/class-jobtype-dbdump.php:84 .. -#: inc/pro/class-jobtype-dbdump.php:105 -msgid "Settings for database backup" -msgstr "Einstellungen für das Datenbank Backup" +#: ../inc/class-page-jobs.php:462 +msgid "Job “%s” has started, but not responded for 10 seconds." +msgstr "Auftrag „%s“ wurde gestartet, hat jedoch seit 10 Sekunden nicht geantwortet." -#: ../inc/class-jobtype-dbdump.php:65 ../inc/pro/class-jobtype-dbdump.php:151 -msgid "Tables to backup" -msgstr "Tabellen zu sichern" +#: ../inc/pro/class-destination-gdrive.php:87 +msgid "Consider using trash to delete files. If trash is not enabled, files will be deleted permanently." +msgstr "Überlege dir, den Papierkorb zu nutzen um Dateien zu löschen. Bei deaktiviertem Papierkorb werden Dateien unwiderruflich gelöscht." -#: ../inc/class-jobtype-dbdump.php:67 ../inc/pro/class-jobtype-dbdump.php:153 -msgid "all" -msgstr "alle" +#: ../inc/pro/class-jobtype-dbdump.php:584 +msgid "Executing of system commands not allowed. Please use backup with mysqli." +msgstr "Ausführung von Systembefehlen nicht erlaubt. Bitte nutze Backup mit mysqli." -#: ../inc/class-jobtype-dbdump.php:68 ../inc/class-jobtype-dbdump.php:103 .. -#: inc/class-page-backwpup.php:307 ../inc/class-page-backwpup.php:372 .. -#: inc/class-destination-s3-v1.php:178 ../inc/class-destination-s3.php:193 .. -#: inc/class-destination-email.php:114 ../inc/class-page-settings.php:345 .. -#: inc/class-jobtype-wpexp.php:73 ../inc/class-jobtype-wpplugin.php:57 .. -#: inc/pro/class-jobtype-dbdump.php:154 ../inc/pro/class-jobtype-dbdump.php:198 -msgid "none" -msgstr "keine" +#: ../inc/pro/class-jobtype-dbdump.php:594 +msgid "%s file not found. Please correct the path for the mysqldump file." +msgstr "Datei %s nicht gefunden. Bitte korrigiere den Pfad für die mysqldump-Datei." -#: ../inc/class-jobtype-dbdump.php:91 ../inc/pro/class-jobtype-dbdump.php:186 -msgid "Backup file name" -msgstr "Backup Datei Name" +#: ../inc/pro/class-jobtype-dbdump.php:686 +msgid "MySQL Server Error. This could be an issue with permissions. Try using database backup with mysqli." +msgstr "Fehler des MySQL-Servers. Dies könnte ein Problem mit Berechtigungen sein. Versuche ein Datenbank mit mysqli." -#: ../inc/class-jobtype-dbdump.php:99 ../inc/pro/class-jobtype-dbdump.php:194 -msgid "Backup file compression" -msgstr "Backup Datei Komprimierungsmethode" +#: ../inc/pro/class-jobtype-dbdump.php:687 +msgid "Error during consistency checks." +msgstr "Fehler während Konsistenzprüfung." -#: ../inc/class-jobtype-dbdump.php:105 ../inc/class-jobtype-dbdump.php:107 .. -#: inc/class-jobtype-wpexp.php:75 ../inc/class-jobtype-wpexp.php:77 ../inc/class- -#: jobtype-wpplugin.php:59 ../inc/class-jobtype-wpplugin.php:61 ../inc/pro/class- -#: jobtype-dbdump.php:200 ../inc/pro/class-jobtype-dbdump.php:202 -msgid "GZip" -msgstr "GZip" +#: ../inc/pro/class-jobtype-dbdump.php:689 +msgid "Error during writing of SQL backup file." +msgstr "Fehler beim Schreiben der SQL-Backup-Datei." -#: ../inc/class-jobtype-dbdump.php:155 ../inc/pro/class-jobtype-dbdump.php:453 -#, php-format -msgid "%d. Try to backup database …" -msgstr "%d. Versuche, die Datenbank zu sichern …" +#: ../inc/pro/class-destination-gdrive.php:800 +msgid "File %s deleted permanently in Google Drive" +msgstr "Datei %s unwiderruflich gelöscht aus Google Drive" -#: ../inc/class-jobtype-dbdump.php:169 ../inc/pro/class-jobtype-dbdump.php:472 .. -#: inc/pro/class-jobtype-dbdump.php:784 -#, php-format -msgid "Connected to database %1$s on %2$s" -msgstr "Mit Datenbank %1$s auf %2$s verbunden" +#: ../inc/pro/class-destination-glacier.php:37 ../inc/pro/class-destination- +#: glacier.php:159 +msgid "EU (Germany)" +msgstr "EU (Germany)" -#: ../inc/class-jobtype-dbdump.php:183 ../inc/pro/class-jobtype-dbdump.php:486 -msgid "No tables to backup." -msgstr "Es gibt keine Tabellen zu sichern" +#: ../inc/pro/class-jobtype-dbdump.php:170 +msgid "SQL File (with mysqli)" +msgstr "SQL-Datei (mit mysqli)" -#: ../inc/class-jobtype-dbdump.php:206 ../inc/pro/class-jobtype-dbdump.php:512 -#, php-format -msgid "Backup database table \"%s\" with \"%s\" records" -msgstr "Sichere Datenbank-Tabelle „%s“ mit „%s“ Einträgen" +#: ../inc/pro/class-jobtype-dbdump.php:171 +msgid "SQL File (with mysqldump)" +msgstr "SQL-Datei (mit mysqldump)" -#: ../inc/class-jobtype-dbdump.php:246 ../inc/pro/class-jobtype-dbdump.php:552 -msgid "MySQL backup file not created" -msgstr "MySQL-Sicherungsdatei nicht erstellt" +#: ../inc/pro/class-jobtype-dbdump.php:589 +msgid "%s file not in open basedir of PHP." +msgstr "Datei %s nicht im open basedir von PHP." -#: ../inc/class-jobtype-dbdump.php:250 ../inc/pro/class-jobtype-dbdump.php:736 -#, php-format -msgid "Added database dump \"%1$s\" with %2$s to backup file list" -msgstr "Datenbank Backup \"%1$s\" mit %2$s zur Backup Datei Liste hinzugefügt" +#: ../inc/pro/class-jobtype-dbdump.php:674 +msgctxt "Executed exec() command" +msgid "CLI Exec: %s" +msgstr "CLI Exec: %s" -#: ../inc/class-jobtype-dbdump.php:256 ../inc/pro/class-jobtype-dbdump.php:562 .. -#: inc/pro/class-jobtype-dbdump.php:739 -msgid "Database backup done!" -msgstr "Datenbank-Backup fertig!" +#: ../inc/pro/class-jobtype-dbdump.php:685 +msgid "Usage error." +msgstr "Usage-Fehler" -#: ../inc/class-page-about.php:394 -#, php-format -msgid "%s Welcome" -msgstr "%s Willkommen" +#: ../inc/pro/class-jobtype-dbdump.php:688 +msgid "Not enough memory." +msgstr "Nicht genug Speicher." -#: ../inc/class-page-about.php:401 -msgid "Heads up! You have updated from version 2.x" -msgstr "Achtung! Sie haben von Version 2.x aktualisiert" +#: ../inc/pro/class-jobtype-dbdump.php:690 +msgid "Illegal table" +msgstr "Ungültige Tabelle" -#: ../inc/class-page-about.php:402 -#, php-format -msgid "Please check your settings after updating from version 2.x:" -msgstr "" -"Bitte prüfen Sie Ihre Einstellungen nach dem Update von " -"Version 2.x." +#: ../inc/pro/class-jobtype-dbdump.php:695 +msgid "mysqldump returned: (%d) %s" +msgstr "mysqldump hat zurückgegeben: (%d) %s" -#: ../inc/class-page-about.php:403 -msgid "Dropbox authentication must be re-entered" -msgstr "Die Drohbox-Authentifizierung muss wiederholt werden." +#: ../inc/pro/class-jobtype-dbdump.php:708 +msgid "Can not create mysql backup with mysqldump command" +msgstr "Keine Datenbanksicherung mit System-Kommando mysqldump möglich" -#: ../inc/class-page-about.php:404 -msgid "SugarSync authentication must be re-entered" -msgstr "Die SugarSync-Authentifizierung muss wiederholt werden" +#: ../inc/pro/class-destination-dropbox.php:24 +msgid "Auth Code:" +msgstr "Auth Code:" -#: ../inc/class-page-about.php:405 -msgid "S3 Settings" -msgstr "S3-Einstellungen" +#: ../inc/pro/class-destination-dropbox.php:27 +msgid "Get auth code" +msgstr "Hole Authentifizierungscode" -#: ../inc/class-page-about.php:406 -msgid "Google Storage is now a part of S3 service settings" -msgstr "Google Storage ist jetzt Teil der S3-Einstellungen" +#: ../inc/class-destination-s3-v1.php:249 ../inc/class-destination-s3.php:263 +msgid "Bucket %1$s created." +msgstr "Bucket %1$s erstellt." -#: ../inc/class-page-about.php:407 -msgid "All your passwords" -msgstr "All Ihre Passwörter" +#: ../inc/class-job.php:384 +msgid "[INFO] Web Server: %s" +msgstr "[INFO] Webserver: %s" -#: ../inc/class-page-about.php:416 -msgid "Welcome to BackWPup Pro" -msgstr "Willkommen zu BackWPup Pro" +#: ../inc/class-destination-dropbox.php:61 +#: ../inc/class-destination-dropbox.php:61 +msgid "Delete Dropbox Authentication" +msgstr "Lösche Dropbox-Authentifizierung" -#: ../inc/class-page-about.php:417 ../inc/class-page-backwpup.php:75 -msgid "" -"BackWPup’s job wizards make planning and scheduling your backup jobs a " -"breeze." -msgstr "" -"Die Assistenten in BackWPup machen das Planen und terminieren deiner " -"Sicherungen zu einem Spaziergang." +#: ../inc/class-destination-dropbox.php:71 +msgid "Get Dropbox App auth code" +msgstr "Hole Auth-Code für Apps-Ordner in Dropbox" -#: ../inc/class-page-about.php:418 ../inc/class-page-about.php:428 -msgid "" -"Use your backup archives to save your entire WordPress installation " -"including /wp-content/. Push them to an external storage " -"service if you don’t want to save the backups on the same server. With a " -"single backup archive you are able to restore an installation. Use a tool " -"like phpMyAdmin or a plugin like Adminer to restore your database " -"backup files." -msgstr "" -"Benutze deine Backup-Archive, um deine gesamte WordPress-Installation zu " -"sichern, einschließlich /wp-content/. Lade sie zu einem " -"externen Dienst hoch, wenn du deine Backups nicht auf demselben Server " -"speichern möchtest. Mit einem einzigen Backup-Archiv kannst du deine " -"Installation wiederherstellen. Benutze ein serverseitiges Tool wie " -"phpMyAdmin, oder ein Plugin wie Adminer, um deine " -"Datenbanksicherung wiederherzustellen." +#: ../inc/class-destination-dropbox.php:77 +msgid "— OR —" +msgstr "— ODER —" -#: ../inc/class-page-about.php:419 -#, php-format -msgid "" -"Ready to set up a backup job? You can use " -"the wizards or plan your backup in expert mode." -msgstr "" -"Bereit, einen Backup-Auftrag anzulegen? Benutze die Assistenten, oder plane dein Backup im Expertenmodus." +#: ../inc/class-destination-dropbox.php:83 +msgid "Get full Dropbox auth code " +msgstr "Hole Auth-Code für gesamte Dropbox" -#: ../inc/class-page-about.php:426 -msgid "Welcome to BackWPup" -msgstr "Willkommen bei BackWPup" +#: ../inc/class-jobtype-dbdump.php:206 ../inc/pro/class-jobtype-dbdump.php:512 +msgid "Backup database table \"%s\" with \"%s\" records" +msgstr "Sichere Datenbank-Tabelle „%s“ mit „%s“ Einträgen" -#: ../inc/class-page-about.php:429 -msgid "" -"Ready to set up a backup job? Use one of the wizards to plan what you want " -"to save." -msgstr "" -"Bereit, einen Backup-Auftrag anzulegen? Benutze einen der Assistenten, um " -"deine Sicherung zu planen." +#: ../inc/class-jobtype-dbdump.php:246 ../inc/pro/class-jobtype-dbdump.php:552 +msgid "MySQL backup file not created" +msgstr "MySQL-Sicherungsdatei nicht erstellt" -#: ../inc/class-page-about.php:446 -msgid "Please activate your license" -msgstr "Bitte aktivieren Sie Ihre Lizenz." +#: ../inc/class-jobtype-wpexp.php:171 ../inc/class-jobtype-wpexp.php:185 .. +#: /inc/class-jobtype-wpexp.php:214 ../inc/class-jobtype-wpexp.php:235 .. +#: /inc/class-jobtype-wpexp.php:268 ../inc/class-jobtype-wpexp.php:288 .. +#: /inc/class-jobtype-wpexp.php:378 ../inc/class-jobtype-wpexp.php:387 +msgid "WP Export file could not written." +msgstr "WP-Exportdatei konnte nicht geschrieben werden." -#: ../inc/class-page-about.php:447 -msgid "" -"Please go to your plugin page and active the license to have the autoupdates " -"enabled." -msgstr "" -"Bitte gehen Sie auf die Plugin-Seite, und aktivieren Sie die Lizenz, um " -"automatische Aktualisierungen zu aktivieren." +#: ../inc/class-create-archive.php:504 +msgid "Cannot open source file %s for archiving" +msgstr "Kann Quelldatei %s nicht zum Archivieren öffnen" -#: ../inc/class-page-about.php:456 -msgid "Save your database" -msgstr "Sichern Sie Ihre Datenbank" +#: ../inc/class-destination-s3-v1.php:82 ../inc/class-destination-s3.php:85 .. +#: /inc/pro/class-destination-s3.php:23 +msgid "Amazon S3: EU (Germany)" +msgstr "Amazon S3: EU (Germany)" -#: ../inc/class-page-about.php:459 -msgid "Save your database regularly" -msgstr "Sichern Sie Ihre Datenbank regelmäßig" +#: ../inc/class-destination-s3-v1.php:90 ../inc/class-destination-s3.php:95 .. +#: /inc/pro/class-destination-s3-v1.php:31 +#: ../inc/pro/class-destination-s3.php:33 +msgid "GreenQloud Storage Qloud" +msgstr "GreenQloud Storage Qloud" -#: ../inc/class-page-about.php:460 -#, php-format -msgid "" -"With BackWPup you can schedule the database backup to run automatically. " -"With a single backup file you can restore your database. You should set up a backup job, so you will never forget it. There is " -"also an option to repair and optimize the database after each backup." -msgstr "" -"Mit BackWPup können Sie automatische Datenbank-Backups planen. Mit einer " -"einzigen Backup-Datei können Sie Ihre Datenbank wiederherstellen. Sie " -"sollten einen Backup-Auftrag einrichten, damit Sie es nie " -"mehr vergessen. Es gibt auch eine Option, um die Datenbank anschließend zu " -"reparieren und zu optimieren." +#: ../backwpup.php:42 +msgid "BackWPup requires PHP version 5.2.7 with spl extension or greater and WordPress 3.4 or greater." +msgstr "BackWPup benötigt PHP Version 5.2.7 oder höher mit der SPL-Erweiterung und WordPress 3.4 oder höher." -#: ../inc/class-page-about.php:465 ../inc/class-page-about.php:469 -msgid "WordPress XML Export" -msgstr "WordPress-XML-Export" +#: ../inc/pro/class-jobtype-dbdump.php:847 +msgid "Dump database create view \"%s\"" +msgstr "Datenbank Backup CREATE VIEW \"%s\"" -#: ../inc/class-page-about.php:466 -msgid "" -"You can choose the built-in WordPress export format in addition or exclusive " -"to save your data. This works in automated backups too of course. The " -"advantage is: you can import these files into a blog with the regular " -"WordPress importer." -msgstr "" -"Sie können das interne WordPress-Export-Format zusätzlich oder " -"ausschließlich wählen, um Ihre Daten zu sichern. Das funktioniert natürlich " -"auch in automatischen Backups. Der Vorteil: Sie können dieses Format mit dem " -"normalen WordPress-Importer-Plugin importieren." +#: ../inc/pro/class-jobtype-dbdump.php:975 +msgid "Added database XML dump \"%1$s\" with %2$s to backup file list" +msgstr "XML Datenbank Backup \"%1$s\" mit %2$s zur Backup Datei Liste hinzugefügt" -#: ../inc/class-page-about.php:474 -msgid "Save all data from the webserver" -msgstr "Sichern Sie alle Daten vom Webserver" +#: ../inc/class-wp-cli.php:105 +msgid "No job running" +msgstr "Kein laufender Auftrag" -#: ../inc/class-page-about.php:477 -msgid "Save all files" -msgstr "Sichern Sie alle Dateien" +#: ../inc/class-adminbar.php:55 +msgid "running" +msgstr "läuft" -#: ../inc/class-page-about.php:478 -#, php-format -msgid "" -"You can backup all your attachments, also all system files, plugins and " -"themes in a single file. You can create a job to update a " -"backup copy of your file system only when files are changed." -msgstr "" -"Sie können all Ihre Anhänge sichern, ebenso alle Systemdateien, Plugins und " -"Themes – in einer einzigen Datei. Sie können einen Auftrag " -"erstellen, um die Sicherungskopie nur dann zu aktualisieren, wenn sich " -"tatsächlich eine Datei geändert hat." +#: ../inc/class-adminbar.php:71 +msgid "Now Running" +msgstr "Jetzt läuft" -#: ../inc/class-page-about.php:483 ../inc/class-page-about.php:487 -msgid "Security!" -msgstr "Sicherheit!" +#: ../inc/class-adminbar.php:77 +msgid "Abort!" +msgstr "Abbrechen!" -#: ../inc/class-page-about.php:484 -msgid "" -"By default everything is encrypted: connections to external services, local " -"files and access to directories." -msgstr "" -"In der Grundeinstellung ist alles verschlüsselt: Verbindungen zu externen " -"Diensten, lokale Dateien und der Zugriff auf die Verzeichnisse." +#: ../inc/pro/class-pro.php:174 ../inc/pro/class-pro.php:174 +#: ../inc/pro/class-pro. php:210 +msgid "Wizards" +msgstr "Assistenten" -#: ../inc/class-page-about.php:492 ../inc/class-page-about.php:495 -msgid "Cloud Support" -msgstr "Cloud-Support" +#: ../backwpup.php:358 ../inc/class-destination-dropbox.php:278 +msgid "Dropbox" +msgstr "Dropbox" -#: ../inc/class-page-about.php:496 -msgid "" -"BackWPup supports multiple cloud services in parallel. This ensures backups " -"are redundant." -msgstr "" -"BackWPup unterstützt mehrere Cloud-Dienste parallel. Damit wird " -"sichergestellt, dass Sie redundante Backups anlegen können." +#: ../inc/pro/class-destination-gdrive.php:51 +#: ../inc/pro/class-destination-gdrive. php:271 +msgid "Authenticate" +msgstr "Authentifizieren" -#: ../inc/class-page-about.php:504 -msgid "Features / differences between Free and Pro" -msgstr "Features / Unterschiede zwischen Free und Pro" +#: ../inc/pro/class-destination-gdrive.php:57 +#: ../inc/pro/class-destination-gdrive. php:277 +msgid "Reauthenticate" +msgstr "Neu authentifizieren" -#: ../inc/class-page-about.php:507 -msgid "Features" -msgstr "Features" +#: ../inc/class-destination-msazure.php:81 +#: ../inc/class-destination-s3-v1.php:160 +#: ../inc/class-destination-sugarsync.php:101 +#: ../inc/class-destination-folder.php: 44 ../inc/class-destination-ftp.php:67 +#: ../inc/class-destination-s3.php:165 .. /inc/class-destination-rsc.php:111 +#: ../inc/pro/class-destination-msazure.php:35 +#: ../inc/pro/class-destination-s3-v1.php:60 +#: ../inc/pro/class-destination-folder. php:24 +#: ../inc/pro/class-destination-dropbox.php:42 ../inc/pro/class- +#: destination-s3.php:62 ../inc/pro/class-destination-rsc.php:55 +#: ../inc/pro/class- destination-gdrive.php:78 +#: ../inc/pro/class-destination-gdrive.php:284 .. +#: /inc/pro/class-destination-glacier.php:96 +#: ../inc/pro/class-destination-glacier. php:180 +msgid "Oldest files will be deleted first. 0 = no deletion" +msgstr "Älteste Dateien werden als erstes gelöscht. 0 = keine Löschung" -#: ../inc/class-page-about.php:508 -msgid "FREE" -msgstr "FREE" +#: ../inc/class-destination-dropbox.php:51 ../inc/pro/class-destination-gdrive. +#: php:47 +msgid "Login" +msgstr "Anmelden" -#: ../inc/class-page-about.php:509 -msgid "PRO" -msgstr "PRO" +#: ../inc/class-destination-msazure.php:66 +#: ../inc/class-destination-sugarsync.php: 86 +#: ../inc/class-destination-folder.php:29 ../inc/class-destination-dropbox.php: +#: 91 ../inc/class-destination-ftp.php:52 ../inc/class-destination-rsc.php:96 +#: .. /inc/pro/class-destination-gdrive.php:63 +msgid "Backup settings" +msgstr "Backup-Einstellungen" -#: ../inc/class-page-about.php:512 -msgid "Complete database backup" -msgstr "Vollständige Datenbanksicherung" +#: ../inc/class-destination-s3-v1.php:149 ../inc/class-destination-s3.php:154 +#: .. /inc/class-destination-rsc.php:100 +msgid "Folder in bucket" +msgstr "Ordner im Bucket" -#: ../inc/class-page-about.php:517 -msgid "Complete file backup" -msgstr "Vollständige Dateisicherung" +#: ../inc/class-destination-sugarsync.php:96 +#: ../inc/class-destination-folder.php: 39 +#: ../inc/class-destination-dropbox.php:102 ../inc/class-destination-ftp.php: +#: 62 ../inc/pro/class-destination-gdrive.php:73 +msgid "File Deletion" +msgstr "Dateilöschung" -#: ../inc/class-page-about.php:522 -msgid "Database check" -msgstr "Datenbanküberprüfung" +#: ../backwpup.php:342 +msgid "FTP" +msgstr "FTP" -#: ../inc/class-page-about.php:527 -msgid "Data compression" -msgstr "Datenbankoptimierung" +#: ../backwpup.php:343 +msgid "Backup to FTP" +msgstr "Backup zu FTP" -#: ../inc/class-page-about.php:532 ../inc/class-jobtype-wpexp.php:14 -msgid "WordPress XML export" -msgstr "WordPress XML Export" +#: ../inc/class-destination-ftp.php:37 ../inc/class-destination-rsc.php:45 +msgid "Username" +msgstr "Benutzername" -#: ../inc/class-page-about.php:537 -msgid "List of installed plugins" -msgstr "Liste installierter Plugins" +#: ../inc/class-destination-ftp.php:44 +msgid "Password" +msgstr "Passwort" -#: ../inc/class-page-about.php:542 -msgid "Backup archives management" -msgstr "Verwaltung der Backup-Archive" +#: ../inc/class-destination-ftp.php:82 +msgid "Timeout for FTP connection" +msgstr "Zeitüberschreitung bei der FTP-Verbindung" -#: ../inc/class-page-about.php:547 -msgid "Log file management" -msgstr "Verwaltung der Log-Dateien" +#: ../inc/class-destination-ftp.php:296 +msgid "FTP current folder is: %s" +msgstr "Aktueller FTP-Ordner ist: %s" -#: ../inc/class-page-about.php:552 -msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI" -msgstr "Start der Aufträge über WP-Cron, URL, System, Backend, WP-CLI" +#: ../inc/class-destination-email.php:59 +msgid "MB" +msgstr "MB" -#: ../inc/class-page-about.php:557 -msgid "Log report via email" -msgstr "Log-Report via E-Mail" +#: ../inc/class-destination-email.php:82 +msgid "PHP: mail()" +msgstr "PHP: mail()" -#: ../inc/class-page-about.php:562 -msgid "Backup to Microsoft Azure" -msgstr "Backup zu Microsoft Azure" +#: ../inc/class-destination-email.php:84 +msgid "SMTP" +msgstr "SMTP" -#: ../inc/class-page-about.php:567 -msgid "Backup as email" -msgstr "Backup per E-Mail" +#: ../inc/class-destination-email.php:91 +msgid "Sendmail path" +msgstr "Sendmail Pfad" -#: ../inc/class-page-about.php:572 -msgid "" -"Backup to S3 services (Amazon, Google Storage, Hosteurope and " -"more)" -msgstr "" -"Backup zu S3-Dienstleistern (Amazon, Google Storage, Hosteurope, " -"usw)" +#: ../inc/class-destination-email.php:110 +msgid "SMTP secure connection" +msgstr "SMTP Sichere Verbindung" -#: ../inc/class-page-about.php:587 -msgid "Backup to FTP server" -msgstr "Backup auf FTP-Server" +#: ../inc/class-destination-email.php:115 +msgid "SSL" +msgstr "SSL" -#: ../inc/class-page-about.php:592 -msgid "Backup to your web space" -msgstr "Backup auf eigenem Webspace" +#: ../inc/class-destination-email.php:116 +msgid "TLS" +msgstr "TLS" -#: ../inc/class-page-about.php:602 ../inc/pro/class-pro.php:122 -msgid "Backup to Google Drive" -msgstr "Backup zu Google Drive" +#: ../inc/class-destination-email.php:121 +msgid "SMTP username" +msgstr "SMTP Benutzername" -#: ../inc/class-page-about.php:607 ../inc/pro/class-pro.php:103 -msgid "Backup to Amazon Glacier" -msgstr "Backup zu Amazon Glacier" +#: ../inc/class-destination-email.php:128 +msgid "SMTP password" +msgstr "SMTP Passwort" -#: ../inc/class-page-about.php:612 -msgid "Custom API keys for DropBox and SugarSync" -msgstr "Eigene API-Keys für DropBox und SugarSync hinterlegen" +#: ../backwpup.php:411 +msgid "MS Azure" +msgstr "MS Azure" -#: ../inc/class-page-about.php:617 -msgid "XML database backup as PHPMyAdmin schema" -msgstr "XML-Datenbanksicherung der Datenbank nach PHPMyAdmin-Schema" +#: ../backwpup.php:412 +msgid "Backup to Microsoft Azure (Blob)" +msgstr "Backup zu Microsoft Azure (Blob)" -#: ../inc/class-page-about.php:622 -msgid "Database backup as mysqldump per command line" -msgstr "Datenbanksicherung mit System-Kommando mysqldump" +#: ../inc/class-destination-s3-v1.php:106 ../inc/class-destination-s3.php:111 +#: .. /inc/pro/class-destination-glacier.php:52 +msgid "Access Key" +msgstr "Access Key" -#: ../inc/class-page-about.php:627 -msgid "Database backup for additional MySQL databases" -msgstr "Datenbanksicherung weiterer MySQL-Datenbanken" +#: ../inc/class-destination-msazure.php:48 ../inc/class-destination-rsc.php:77 +msgid "Container selection" +msgstr "Container Auswahl" -#: ../inc/class-page-about.php:632 -msgid "Import and export job settings as XML" -msgstr "Auftragseinstellungen als XML ex- und importieren" +#: ../inc/class-destination-msazure.php:59 ../inc/class-destination-rsc.php:89 +msgid "Create a new container" +msgstr "Neuen Container erstellen" -#: ../inc/class-page-about.php:637 -msgid "Wizard for system tests" -msgstr "Assistent zur Ausführung eines Systemtests" +#: ../inc/class-destination-msazure.php:70 +msgid "Folder in container" +msgstr "Ordner im Container" -#: ../inc/class-page-about.php:642 -msgid "Wizard for scheduled backup jobs" -msgstr "Assistent zur Einrichtung von Sicherungsaufträgen" +#: ../inc/class-destination-msazure.php:124 +#: ../inc/pro/class-destination-msazure. php:81 +msgid "MS Azure container \"%s\" created." +msgstr "MS Azure Container \"%s\" erstellt." -#: ../inc/class-page-about.php:647 -msgid "Wizard to import settings and backup jobs" -msgstr "Assistent zum Importieren von Einstellungen und Aufträgen" +#: ../inc/class-destination-msazure.php:127 +#: ../inc/pro/class-destination-msazure. php:84 +msgid "MS Azure container create: %s" +msgstr "MS Azure Container erstellen: %s" -#: ../inc/class-page-about.php:652 -msgid "Differential backup of changed directories to Dropbox" -msgstr "Sicherung geänderter Verzeichnisse in einer Dropbox" +#: ../backwpup.php:427 +msgid "RSC" +msgstr "RSC" -#: ../inc/class-page-about.php:657 -msgid "Differential backup of changed directories to Rackspace Cloud Files" -msgstr "Sicherung geänderter Verzeichnisse nach Rackspace Cloud Files" +#: ../inc/class-destination-rsc.php:41 +msgid "Rack Space Cloud Keys" +msgstr "Rack Space Cloud Keys" -#: ../inc/class-page-about.php:662 -msgid "Differential backup of changed directories to S3" -msgstr "Sicherung geänderter Verzeichnisse nach S3" +#: ../inc/class-destination-rsc.php:52 +msgid "API Key" +msgstr "API Key" -#: ../inc/class-page-about.php:667 -msgid "Differential backup of changed directories to MS Azure" -msgstr "Sicherung geänderter Verzeichnisse nach MS Azure" +#: ../inc/class-destination-s3-v1.php:145 ../inc/class-destination-s3.php:150 +msgid "S3 Backup settings" +msgstr "S3 Backup Einstellungen" -#: ../inc/class-page-about.php:672 -msgid "Premium support" -msgstr "Premium-Support" +#: ../backwpup.php:375 ../backwpup.php:394 +#: ../inc/class-destination-s3-v1.php:71 . ./inc/class-destination-s3.php:74 +msgid "S3 Service" +msgstr "S3 Service" -#: ../inc/class-page-about.php:677 -msgid "Dynamically loaded documentation" -msgstr "Integration einer dynamischen Dokumentation" +#: ../inc/class-destination-s3-v1.php:77 ../inc/class-destination-s3.php:80 .. +#: /inc/pro/class-destination-s3-v1.php:18 +#: ../inc/pro/class-destination-s3.php:18 +msgid "Amazon S3 Region" +msgstr "Amazon S3 Region" -#: ../inc/class-page-about.php:682 -msgid "Automatic update from MarketPress" -msgstr "Automatische Aktualisierung durch MarketPress" +#: ../inc/class-destination-s3-v1.php:78 ../inc/class-destination-s3.php:81 .. +#: /inc/pro/class-destination-s3-v1.php:19 +#: ../inc/pro/class-destination-s3.php:19 +msgid "Amazon S3: US Standard" +msgstr "Amazon S3: US Standard" -#: ../inc/class-page-about.php:689 ../inc/class-admin.php:404 -msgid "http://marketpress.com/product/backwpup-pro/" -msgstr "http://marketpress.de/product/backwpup-pro/" +#: ../inc/class-destination-s3-v1.php:79 ../inc/class-destination-s3.php:82 .. +#: /inc/pro/class-destination-s3-v1.php:20 +#: ../inc/pro/class-destination-s3.php:20 +msgid "Amazon S3: US West (Northern California)" +msgstr "Amazon S3: US West (Northern California)" -#: ../inc/class-page-about.php:689 -msgid "GET PRO" -msgstr "GET PRO" +#: ../inc/class-destination-s3-v1.php:80 ../inc/class-destination-s3.php:83 .. +#: /inc/pro/class-destination-s3-v1.php:21 +#: ../inc/pro/class-destination-s3.php:21 +msgid "Amazon S3: US West (Oregon)" +msgstr "Amazon S3: US West (Oregon)" -#: ../inc/class-cron.php:64 -msgid "Aborted, because no progress for one hour!" -msgstr "Abgebrochen, aufgrund keines Fortschrittes innerhalb der letzten Stunde!" +#: ../inc/class-destination-s3-v1.php:81 ../inc/class-destination-s3.php:84 .. +#: /inc/pro/class-destination-s3-v1.php:22 +#: ../inc/pro/class-destination-s3.php:22 +msgid "Amazon S3: EU (Ireland)" +msgstr "Amazon S3: EU (Ireland)" -#: ../inc/class-page-backwpup.php:67 -#, php-format -msgid "%s Dashboard" -msgstr "%s Dashboard" +#: ../inc/class-destination-s3-v1.php:83 ../inc/class-destination-s3.php:86 .. +#: /inc/pro/class-destination-s3-v1.php:23 +#: ../inc/pro/class-destination-s3.php:24 +msgid "Amazon S3: Asia Pacific (Tokyo)" +msgstr "Amazon S3: Asia Pacific (Tokyo)" -#: ../inc/class-page-backwpup.php:74 ../inc/class-page-backwpup.php:83 -msgctxt "Dashboard heading" -msgid "Planning backups" -msgstr "Backups planen" +#: ../inc/class-adminbar.php:132 +msgid "Run Now" +msgstr "Jetzt starten" -#: ../inc/class-page-backwpup.php:75 ../inc/class-page-backwpup.php:84 -msgid "" -"Use your backup archives to save your entire WordPress installation " -"including /wp-content/. Push them to an external storage " -"service if you don’t want to save the backups on the same server." -msgstr "" -"Benutze deine Backup-Archive, um deine gesamte WordPress-Installation zu " -"sichern, einschließlich /wp-content/. Lade sie zu einem " -"externen Dienst hoch, wenn du deine Backups nicht auf demselben Server " -"speichern möchtest." +#: ../inc/class-destination-dropbox.php:254 +#: ../inc/pro/class-destination-dropbox. php:135 +msgid "Not Authenticated with Dropbox!" +msgstr "Nicht mit Dropbox Authentifiziert!" -#: ../inc/class-page-backwpup.php:76 ../inc/class-page-backwpup.php:85 -msgctxt "Dashboard heading" -msgid "Restoring backups" -msgstr "Backups wiederherstellen" +#: ../inc/class-destination-rsc.php:72 ../inc/pro/class-destination-rsc.php:36 +msgid "Hong Kong (HKG)" +msgstr "Hong Kong (HKG)" -#: ../inc/class-page-backwpup.php:77 ../inc/class-page-backwpup.php:86 -msgid "" -"With a single backup archive you are able to restore an installation. Use a " -"tool like phpMyAdmin or a plugin like Adminer to restore your database " -"backup files." -msgstr "" -"Mit einem einzigen Backup-Archiv kannst du deine Installation " -"wiederherstellen. Benutze ein serverseitiges Tool wie phpMyAdmin, oder ein " -"Plugin wie Adminer, um deine Datenbanksicherung wiederherzustellen." +#: ../inc/class-destination-s3-v1.php:87 ../inc/class-destination-s3.php:90 .. +#: /inc/pro/class-destination-s3-v1.php:27 +#: ../inc/pro/class-destination-s3.php:28 +msgid "Amazon S3: China (Beijing)" +msgstr "Amazon S3: China (Beijing)" -#: ../inc/class-page-backwpup.php:78 ../inc/class-page-backwpup.php:87 -msgctxt "Dashboard heading" -msgid "Ready to set up a backup job?" -msgstr "Bereit, einen Backup-Auftrag zu erstellen?" +#: ../inc/class-jobtype-dbdump.php:91 ../inc/pro/class-jobtype-dbdump.php:186 +msgid "Backup file name" +msgstr "Backup Datei Name" -#: ../inc/class-page-backwpup.php:79 -#, php-format -msgid "" -"Use one of the wizards to plan a backup, or use expert mode " -"for full control over all options." -msgstr "" -"Verwende einen der Assistenten, um dein Backup zu planen, oder den Expertenmodus für die volle Übersicht über alle Optionen." +#: ../inc/class-jobtype-dbdump.php:99 ../inc/pro/class-jobtype-dbdump.php:194 +msgid "Backup file compression" +msgstr "Backup Datei Komprimierungsmethode" -#: ../inc/class-page-backwpup.php:79 ../inc/class-page-backwpup.php:89 -msgid "" -"Please note: You are solely responsible for the security of your " -"data; the authors of this plugin are not." -msgstr "" -"Bitte beachte: Für die Sicherheit deiner Daten bist du allein " -"verantwortlich; die Autoren dieses Plugins sind es nicht." +#: ../inc/class-jobtype-dbdump.php:250 ../inc/pro/class-jobtype-dbdump.php:736 +msgid "Added database dump \"%1$s\" with %2$s to backup file list" +msgstr "Datenbank Backup \"%1$s\" mit %2$s zur Backup Datei Liste hinzugefügt" -#: ../inc/class-page-backwpup.php:84 -msgid "" -"Use the short links in the First steps box to plan and " -"schedule backup jobs." -msgstr "" -"Benutze die Schnellverweise in Erste Schritte, um einen " -"Backup-Auftrag zu planen und zu terminieren." +#: ../inc/class-jobtype-file.php:102 ../inc/class-jobtype-file.php:139 .. +#: /inc/class-jobtype-file.php:176 ../inc/class-jobtype-file.php:213 +#: ../inc/class- jobtype-file.php:250 +msgid "Excluded by .donotbackup file!" +msgstr "Ausgeschlossen durch .donotbackup Datei!" -#: ../inc/class-page-backwpup.php:88 -#, php-format -msgid "Add a new backup job and plan what you want to save." -msgstr "Erstelle einen Backup-Auftrag und plane deine Sicherung." +#: ../inc/class-mysqldump.php:143 +msgid "Cannot open SQL backup file" +msgstr "Kann SQL Backup Datei nicht öffnen" -#: ../inc/class-page-backwpup.php:96 -msgid "First Steps" -msgstr "Erste Schritte" +#: ../inc/class-page-about.php:567 +msgid "Backup as email" +msgstr "Backup per E-Mail" -#: ../inc/class-page-backwpup.php:100 -msgid "Test the installation" -msgstr "Die Installation testen" +#: ../inc/class-page-backwpup.php:123 +msgid "BackWPup News" +msgstr "BackWPup Neuigkeiten" -#: ../inc/class-page-backwpup.php:101 ../inc/class-page-backwpup.php:104 -msgid "Create a Job" -msgstr "Auftrag erstellen" +#: ../inc/class-page-backwpup.php:133 +msgid "RSS Error: %s" +msgstr "RSS Fehler: %s" -#: ../inc/class-page-backwpup.php:103 -msgid "Check the installation" -msgstr "Überprüfe die Installation" +#: ../inc/class-page-backwpup.php:137 +msgid "An error has occurred, which probably means the feed is down. Try again later." +msgstr "Ein Fehler ist aufgetreten, der wahrscheinlich bedeutet, das der Feed Offline ist. Versuchen Sie es später erneut." -#: ../inc/class-page-backwpup.php:106 -msgid "Run the created job" -msgstr "Erstellten Auftrag starten" +#: ../inc/class-page-backwpup.php:152 +msgid "Untitled" +msgstr "Ohne Titel" -#: ../inc/class-page-backwpup.php:107 -msgid "Check the job log" -msgstr "Logs des Auftrages prüfen" +#: ../inc/class-page-editjob.php:88 +msgid "Job with ID %d" +msgstr "Auftrag mit der ID %d" -#: ../inc/class-page-backwpup.php:115 -msgid "One click backup" -msgstr "Ein-Klick-Backup" +#: ../inc/class-page-jobs.php:788 +msgid "Job has done with warnings in %s seconds. Please resolve them for correct execution." +msgstr "Auftrag wurde mit Warnungen in %s Sekunden erledigt. Bitte beheben sie diese, für eine korrekte Ausführung." -#: ../inc/class-page-backwpup.php:117 -msgid "Generate a database backup of WordPress tables and download it right away!" -msgstr "" -"Generieren Sie ein Datenbank-Backup der WordPress-Tabellen und laden Sie es " -"gleich herunter!" +#: ../inc/class-page-settings.php:271 ../inc/class-page-settings.php:274 +msgid "Method for creating ZIP-file archives" +msgstr "Methode für das erstellen von ZIP Dateien ist" -#: ../inc/class-page-backwpup.php:117 -msgid "Download database backup" -msgstr "Datenbank-Backup herunterladen" +#: ../inc/class-page-settings.php:302 +msgid "This adds short pauses to the process. Can be used to reduce the CPU load.
Disabled = off
minimum = shortest sleep
medium = middle between minimum and maximum
maximum = longest sleep
" +msgstr "Dies fügt kurzen Pausen an den Prozess. Kann verwendet werden, um die CPU-Last zu reduzieren.
Abgeschaltet = aus
Mindest = kürzeste Schlaf
medium = Mitte zwischen Minimum und Maximum
Maximum = längste pausen
" -#: ../inc/class-page-backwpup.php:123 -msgid "BackWPup News" -msgstr "BackWPup Neuigkeiten" +#: ../inc/class-page-settings.php:447 +msgid "Temp folder %s doesn't exist." +msgstr "Temp Verzeichnis %s existiert nicht." -#: ../inc/class-page-backwpup.php:128 -msgctxt "BackWPup News RSS Feed URL" -msgid "https://marketpress.com/tag/backwpup/feed/" -msgstr "https://marketpress.de/tag/backwpup/feed/" +#: ../inc/class-page-settings.php:457 +msgid "Logs folder %s not exist." +msgstr "Log Dateien %s Verzeichnis existiert nicht" -#: ../inc/class-page-backwpup.php:133 -#, php-format -msgid "RSS Error: %s" -msgstr "RSS Fehler: %s" +#: ../inc/pro/class-destination-glacier.php:42 +msgid "China (Beijing)" +msgstr "China (Beijing)" -#: ../inc/class-page-backwpup.php:137 -msgid "" -"An error has occurred, which probably means the feed is down. Try again " -"later." -msgstr "" -"Ein Fehler ist aufgetreten, der wahrscheinlich bedeutet, das der Feed " -"Offline ist. Versuchen Sie es später erneut." +#: ../inc/pro/class-destination-rsc.php:265 +msgid "Delete nonexistent files on Rackspace Cloud." +msgstr "Lösche nicht existierende Dateien von Rackspace Cloud" -#: ../inc/class-page-backwpup.php:152 -msgid "Untitled" -msgstr "Ohne Titel" +#: ../inc/pro/class-destination-sugarsync.php:25 ../inc/pro/class-destination- +#: sugarsync.php:85 +msgid "Sugarsync authenticate!" +msgstr "Sugarsync Authentifizierung!" -#: ../inc/class-page-backwpup.php:216 ../inc/pro/class-page-wizard.php:358 -msgid "Start wizard" -msgstr "Assistenten starten" +#: ../inc/class-job.php:291 +msgid "BackWPup log for %1$s from %2$s at %3$s" +msgstr "BackWPup-Protokoll für %1$s von %2$s am %3$s" -#: ../inc/class-page-backwpup.php:232 -msgctxt "Pro teaser box" -msgid "Thank you for using BackWPup!" -msgstr "Danke, dass du BackWPup benutzt!" +#: ../inc/class-destination-msazure.php:272 ../inc/class-destination-sugarsync. +#: php:257 ../inc/class-destination-dropbox.php:269 +#: ../inc/pro/class-destination- gdrive.php:603 +msgid "Backup transferred to %s" +msgstr "Backup übertragen zu %s" -#: ../inc/class-page-backwpup.php:235 -msgctxt "Pro teaser box" -msgid "Get access to:" -msgstr "Erhalte Zugang zu:" +#: ../inc/class-destination-msazure.php:421 ../inc/class-destination-s3-v1.php: +#: 575 ../inc/class-destination-s3.php:675 +#: ../inc/pro/class-destination-glacier. php:536 +msgid "Missing access key!" +msgstr "Der Zugangsschlüssel (Access Key) fehlt!" -#: ../inc/class-page-backwpup.php:237 -msgctxt "Pro teaser box" -msgid "First-class dedicated support at MarketPress Helpdesk." -msgstr "" -"Erstklassigem persönlichen Support im Helpdesk bei " -"MarketPress." +#: ../inc/class-destination-s3-v1.php:577 ../inc/class-destination-s3.php:677 +#: .. /inc/pro/class-destination-glacier.php:538 +msgid "Missing secret access key!" +msgstr "Der geheime Zugangsschlüssel (Secret Access Key) fehlt!" -#: ../inc/class-page-backwpup.php:238 -msgctxt "Pro teaser box" -msgid "Differential backups to Google Drive and other cloud storage service." -msgstr "Differenzielle Backups zu Google Drive anderen Cloud-Storage-Diensten." +#: ../inc/class-admin.php:137 +#: ../inc/pro/class-marketpress-documentation.php:149 . +#: ./inc/pro/class-pro.php:188 ../inc/pro/class-pro.php:188 +msgid "Documentation" +msgstr "Dokumentation" -#: ../inc/class-page-backwpup.php:239 -msgctxt "Pro teaser box" -msgid "Easy-peasy wizards to create and schedule backup jobs." -msgstr "Kinderleichte Assistenten zum Erstellen und Planen von Backup-Aufträgen." +#: ../inc/class-jobtype-dbdump.php:14 +msgid "Database backup" +msgstr "Datenbank Backup" -#: ../inc/class-page-backwpup.php:240 -msgctxt "Pro teaser box, link text" -msgid "And more…" -msgstr "Und mehr…" +#: ../inc/class-jobtype-file.php:16 +msgid "File backup" +msgstr "Dateien Backup" -#: ../inc/class-page-backwpup.php:242 -msgctxt "Pro teaser box, link title" -msgid "Get BackWPup Pro now" -msgstr "Wechsle jetzt zu BackWPup Pro" +#: ../inc/class-jobtype-dbcheck.php:14 +msgid "Check database tables" +msgstr "Datenbank-Tabellen prüfen" -#: ../inc/class-page-backwpup.php:242 -msgctxt "Pro teaser box, link text" -msgid "Get BackWPup Pro now" -msgstr "Wechsle jetzt zu BackWPup Pro" +#: ../inc/class-help.php:15 +msgid "Plugin Info" +msgstr "Plugin Info" -#: ../inc/class-page-backwpup.php:260 -msgid "Last logs" -msgstr "Letzte Logs" +#: ../inc/class-job.php:274 +msgid "End of Job" +msgstr "Auftragsende" -#: ../inc/class-page-backwpup.php:262 -msgid "Result" -msgstr "Ergebnis" +#: ../inc/class-job.php:359 +msgid "[INFO] BackWPup job started from wp-cron" +msgstr "[INFO] BackWPup-Auftrag wurde per wp-cron gestartet" -#: ../inc/class-page-backwpup.php:295 -#, php-format -msgid "%d ERROR" -msgid_plural "%d ERRORS" -msgstr[0] "%d FEHLER" -msgstr[1] "%d FEHLER" +#: ../inc/class-job.php:361 +msgid "[INFO] BackWPup job started manually" +msgstr "[INFO] BackWPup-Auftrag wurde manuell gestartet" -#: ../inc/class-page-backwpup.php:297 -#, php-format -msgid "%d WARNING" -msgid_plural "%d WARNINGS" -msgstr[0] "%d WARNUNG" -msgstr[1] "%d WARNUNGEN" +#: ../inc/class-job.php:363 +msgid "[INFO] BackWPup job started from external url" +msgstr "[INFO] BackWPup Auftrag wurde von externer URL gestartet" -#: ../inc/class-page-backwpup.php:299 -msgid "OK" -msgstr "OK" +#: ../inc/class-job.php:374 +msgid "[INFO] PHP ver.:" +msgstr "[INFO] PHP ver.:" -#: ../inc/class-page-backwpup.php:323 -msgid "Next scheduled jobs" -msgstr "Nächste geplante Aufträge" +#: ../inc/class-job.php:382 +msgid "[INFO] MySQL ver.: %s" +msgstr "[INFO] MySQL ver.: %s" -#: ../inc/class-page-backwpup.php:350 -#, php-format -msgid "working since %d seconds" -msgstr "in Arbeit seit %d Sek." +#: ../inc/class-job.php:387 +msgid "[INFO] curl ver.: %1$s; %2$s" +msgstr "[INFO] curl ver.: %1$s; %2$s" -#: ../inc/class-page-backwpup.php:352 ../inc/class-page-jobs.php:616 -msgid "Abort" -msgstr "Abbrechen" +#: ../inc/class-job.php:405 +msgid "[INFO] Backup type is: %s" +msgstr "[INFO] Backup Typ ist: %s" -#: ../inc/class-page-backwpup.php:366 ../inc/class-page-jobs.php:280 ../inc/class- -#: page-jobs.php:289 ../inc/class-job.php:335 -msgid "Not scheduled!" -msgstr "Nicht geplant!" +#: ../inc/class-job.php:1211 +msgid "Exception caught in %1$s: %2$s" +msgstr "Ausnahme eingefangen in %1$s: %2$s" -#: ../inc/class-page-backwpup.php:368 -msgid "Edit Job" -msgstr "Auftrag bearbeiten" +#: ../inc/class-page-jobs.php:788 ../inc/class-job.php:1264 +msgid "WARNING:" +msgstr "WARNUNG:" -#: ../inc/class-jobtype-file.php:15 -msgid "Files" -msgstr "Dateien" +#: ../inc/class-job.php:1277 +msgid "DEPRECATED:" +msgstr "ABGELEHNT:" -#: ../inc/class-jobtype-file.php:16 -msgid "File backup" -msgstr "Dateien Backup" +#: ../inc/class-job.php:1280 +msgid "STRICT NOTICE:" +msgstr "EXAKTE NOTIZ:" -#: ../inc/class-jobtype-file.php:73 -msgid "Folders to backup" -msgstr "Zu sichernde Verzeichnisse" +#: ../inc/class-job.php:1285 +msgid "RECOVERABLE ERROR:" +msgstr "WIEDERHERSTELLUNGS FEHLER:" -#: ../inc/class-jobtype-file.php:77 -msgid "Backup WordPress install folder" -msgstr "Sichere den WordPress Installations Ordner" +#: ../inc/class-job.php:1546 +msgid "[%3$s] BackWPup log %1$s: %2$s" +msgstr "[%3$s] BackWPup Log %1$s: %2$s" -#: ../inc/class-jobtype-file.php:88 ../inc/class-jobtype-file.php:125 .. -#: inc/class-jobtype-file.php:162 ../inc/class-jobtype-file.php:199 ../inc/class- -#: jobtype-file.php:236 -#, php-format -msgid "Path as set by user (symlink?): %s" -msgstr "Pfad, wie vom User gesetzt (symlink?): %s" +#: ../inc/class-job.php:1946 +msgid "File \"%s\" is not readable!" +msgstr "Datei \"%s\" ist nicht lesbar!" -#: ../inc/class-jobtype-file.php:91 ../inc/class-jobtype-file.php:128 .. -#: inc/class-jobtype-file.php:165 ../inc/class-jobtype-file.php:202 ../inc/class- -#: jobtype-file.php:239 -msgid "Exclude:" -msgstr "Ausschließen:" +#: ../inc/class-create-archive.php:509 ../inc/class-create-archive.php:510 .. +#: /inc/class-create-archive.php:609 ../inc/class-create-archive.php:610 +msgid "Unknown" +msgstr "Unbekannt" -#: ../inc/class-jobtype-file.php:102 ../inc/class-jobtype-file.php:139 .. -#: inc/class-jobtype-file.php:176 ../inc/class-jobtype-file.php:213 ../inc/class- -#: jobtype-file.php:250 -msgid "Excluded by .donotbackup file!" -msgstr "Ausgeschlossen durch .donotbackup Datei!" +#: ../inc/pro/class-jobtype-dbdump.php:120 +msgid "User:" +msgstr "Benutzer: " -#: ../inc/class-jobtype-file.php:114 -msgid "Backup content folder" -msgstr "Sicherung des Content Verzeichnisses" +#: ../inc/pro/class-jobtype-dbdump.php:127 +msgid "Charset:" +msgstr "Charset: " -#: ../inc/class-jobtype-file.php:151 -msgid "Backup plugins" -msgstr "Plugins sichern" +#: ../inc/pro/class-jobtype-dbdump.php:138 +msgid "Database:" +msgstr "Datenbank:" -#: ../inc/class-jobtype-file.php:188 -msgid "Backup themes" -msgstr "Themes sichern" +#: ../inc/class-jobtype-dbdump.php:67 ../inc/pro/class-jobtype-dbdump.php:153 +msgid "all" +msgstr "alle" -#: ../inc/class-jobtype-file.php:225 ../inc/pro/class-wizard-job.php:703 .. -#: inc/pro/class-wizard-job.php:704 -msgid "Backup uploads folder" -msgstr "Uploads Verzeichnis sichern" +#: ../inc/class-jobtype-dbdump.php:105 ../inc/class-jobtype-dbdump.php:107 .. +#: /inc/class-jobtype-wpexp.php:75 ../inc/class-jobtype-wpexp.php:77 +#: ../inc/class- jobtype-wpplugin.php:59 ../inc/class-jobtype-wpplugin.php:61 +#: ../inc/pro/class- jobtype-dbdump.php:200 +#: ../inc/pro/class-jobtype-dbdump.php:202 +msgid "GZip" +msgstr "GZip" -#: ../inc/class-jobtype-file.php:262 -msgid "Extra folders to backup" -msgstr "Weitere Verzeichnisse sichern" +#: ../inc/class-jobtype-wpexp.php:79 ../inc/class-jobtype-wpexp.php:81 .. +#: /inc/class-jobtype-wpplugin.php:63 ../inc/class-jobtype-wpplugin.php:65 +msgid "BZip2" +msgstr "BZip2" -#: ../inc/class-jobtype-file.php:264 -msgid "" -"Separate folder names with a line-break or a comma. Folders must be set with " -"their absolute path!" -msgstr "" -"Trenne Verzeichnisnamen mit einer neuen Zeile oder einem Komma. Die " -"Verzeichnisse müssen mit ihrem absoluten Pfad angegeben werden!" +#: ../inc/class-jobtype-wpexp.php:481 ../inc/pro/class-jobtype-dbdump.php:721 +msgid "Compressing done." +msgstr "Komprimierung erledigt." -#: ../inc/class-jobtype-file.php:269 -msgid "Exclude from backup" -msgstr "Nicht mitsichern" - -#: ../inc/class-jobtype-file.php:273 -msgid "Thumbnails in uploads" -msgstr "Thumbnails in uploads" +#: ../inc/class-jobtype-file.php:503 ../inc/class-jobtype-file.php:508 .. +#: /inc/class-jobtype-file.php:513 ../inc/class-jobtype-file.php:517 +#: ../inc/class- jobtype-file.php:521 ../inc/class-jobtype-file.php:525 +msgid "Added \"%s\" to backup file list" +msgstr "\"%s\" zur Backup-Datei-Liste hinzugefügt." -#: ../inc/class-jobtype-file.php:275 -msgid "" -"All images with -???x???. will be excluded. Use a plugin like Regenerate " -"Thumbnails to rebuild them after a restore." -msgstr "" -"Alle Bilder mit -???x??? im Dateinamen werden nicht mitgesichert. Benutze " -"ein Plugin wir Regenerate Thumbnails um die Thumbnails wiederherzustellen." +#: ../inc/class-jobtype-file.php:571 +msgid "Folder \"%s\" is not readable!" +msgstr "Ordner \"%s\" ist nicht lesbar!" -#: ../inc/class-jobtype-file.php:277 -msgid "Don't backup thumbnails from the site's uploads folder." -msgstr "Thumbnails im Uploads-Verzeichnis der Website nicht mitsichern." +#: ../inc/class-jobtype-wpplugin.php:123 +msgid "from %s" +msgstr "von %s" -#: ../inc/class-jobtype-file.php:281 -msgid "Exclude files/folders from backup" -msgstr "Datein/Verzeichnisse nicht mitsichern." +#: ../inc/class-jobtype-wpplugin.php:125 +msgid "Active plugins:" +msgstr "Aktive Plugins:" -#: ../inc/class-jobtype-file.php:283 -msgid "" -"Separate file / folder name parts with a line-break or a comma. For example " -"/logs/,.log,.tmp" -msgstr "" -"Trenne Dateien / Verzeichnisse mit einer neuen Zeile oder einem Komma. Zum " -"Beispiel: /logs/,.log,.tmp" +#: ../inc/class-jobtype-wpplugin.php:131 +msgid "Inactive plugins:" +msgstr "Inaktive Plugins:" -#: ../inc/class-jobtype-file.php:288 -msgid "Special option" -msgstr "Spezialoption" +#: ../inc/class-page-jobs.php:181 ../inc/class-page-editjob.php:195 +msgid "Run now" +msgstr "Jetzt starten" -#: ../inc/class-jobtype-file.php:292 -msgid "Include special files" -msgstr "Spezielle Dateien einschließen" +#: ../inc/class-page-backwpup.php:366 ../inc/class-page-jobs.php:280 +#: ../inc/class- page-jobs.php:289 ../inc/class-job.php:335 +msgid "Not scheduled!" +msgstr "Nicht geplant!" -#: ../inc/class-jobtype-file.php:294 -msgid "" -"If the WordPress root folder is not included in this backup job, check this " -"option to additionally include wp-config.php, robots.txt, .htaccess, ." -"htpasswd and favicon.ico into the backup. Your wp-config.php will be " -"included even if you placed it in the parent directory of your root folder." -msgstr "" -"Sofern das WordPress-Wurzelverzeichnis nicht sowieso im Backup inkludiert " -"ist, aktiviere diese Option, um zusätzlich die Dateien wp-config.php, robots." -"txt, .htaccess, .htpasswd und favicon.ico mitzusichern. Die wp-config-php-" -"Datei wird in diesem Fall auch dann mitgesichert, wenn sie sich eine Ordner-" -"Ebene höher als WordPress befindet." +#: ../inc/class-page-editjob.php:195 +msgid "Jobs overview" +msgstr "Auftragsübersicht" -#: ../inc/class-jobtype-file.php:296 -msgid "" -"Backup wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico from " -"root." -msgstr "" -"Sichere wp-config.php, robots.txt, .htaccess, .htpasswd und favicon.ico vom " -"Root" +#: ../inc/class-page-settings.php:409 ../inc/class-page-settings.php:410 +msgid "Value" +msgstr "Wert" -#: ../inc/class-jobtype-file.php:300 -msgid "Move WP install folder up" -msgstr "Bewege das WP Installations ein Verzeichnis hoch " +#: ../inc/class-page-settings.php:466 +msgid "PHP SAPI" +msgstr "PHP SAPI" -#: ../inc/class-jobtype-file.php:387 -#, php-format -msgid "%d. Trying to make a list of folders to back up …" -msgstr "%d. Versuche, eine Liste der Ordner für das Backup zu erstellen …" +#: ../inc/class-page-settings.php:464 +msgid "Server" +msgstr "Server" -#: ../inc/class-jobtype-file.php:503 ../inc/class-jobtype-file.php:508 .. -#: inc/class-jobtype-file.php:513 ../inc/class-jobtype-file.php:517 ../inc/class- -#: jobtype-file.php:521 ../inc/class-jobtype-file.php:525 -#, php-format -msgid "Added \"%s\" to backup file list" -msgstr "\"%s\" zur Backup-Datei-Liste hinzugefügt." +#: ../inc/class-page-settings.php:424 +msgid "unavailable" +msgstr "unerreichbar" -#: ../inc/class-jobtype-file.php:530 -msgid "No files/folder for the backup." -msgstr "Keine Dateien/Ordner für das Backup." +#: ../inc/class-page-settings.php:468 ../inc/class-page-settings.php:472 .. +#: /inc/class-page-settings.php:476 +msgid "On" +msgstr "An" -#: ../inc/class-jobtype-file.php:532 -#, php-format -msgid "%1$d folders to backup." -msgstr "%1$d Ordner für Backup." +#: ../inc/class-page-settings.php:468 ../inc/class-page-settings.php:474 .. +#: /inc/class-page-settings.php:478 +msgid "Off" +msgstr "Aus" -#: ../inc/class-jobtype-file.php:571 -#, php-format -msgid "Folder \"%s\" is not readable!" -msgstr "Ordner \"%s\" ist nicht lesbar!" +#: ../inc/class-page-settings.php:469 +msgid "Safe Mode" +msgstr "Safe Mode" -#: ../inc/class-wp-cli.php:23 -msgid "A job is already running." -msgstr "Ein Auftrag läuft gerade." +#: ../inc/class-page-settings.php:472 ../inc/class-page-settings.php:474 +msgid "Alternative WP Cron" +msgstr "Alternative WP Cron" -#: ../inc/class-wp-cli.php:35 -msgid "No job ID specified!" -msgstr "Keine Auftragsnummer angegeben!" +#: ../inc/class-page-settings.php:480 ../inc/class-page-settings.php:482 +msgid "CHMOD Dir" +msgstr "CHMOD Verzeichnis" -#: ../inc/class-wp-cli.php:41 -msgid "Job ID does not exist!" -msgstr "Auftragsnummer existiert nicht!" +#: ../inc/class-page-settings.php:484 +msgid "Server Time" +msgstr "Server Zeit" -#: ../inc/class-wp-cli.php:54 -msgid "Nothing to abort!" -msgstr "Es gibt nichts abzubrechen!" +#: ../inc/class-page-settings.php:485 +msgid "Blog Time" +msgstr "Webseite Zeit" -#: ../inc/class-wp-cli.php:59 ../inc/class-page-jobs.php:479 -msgid "Job will be terminated." -msgstr "Auftrag wird beendet." +#: ../inc/class-page-settings.php:486 +msgid "Blog Timezone" +msgstr "Webseite Zeitzone" -#: ../inc/class-wp-cli.php:105 -msgid "No job running" -msgstr "Kein laufender Auftrag" +#: ../inc/class-page-settings.php:487 +msgid "Blog Time offset" +msgstr "Webseite Zeitversetzung" -#: ../inc/class-destination-s3-v1.php:75 ../inc/class-destination-s3.php:78 -msgid "Select a S3 service" -msgstr "Wähle einen S3 Service" +#: ../inc/class-page-settings.php:488 +msgid "Blog language" +msgstr "Webseiten Sprache" -#: ../inc/class-destination-s3-v1.php:77 ../inc/class-destination-s3.php:80 .. -#: inc/pro/class-destination-s3-v1.php:18 ../inc/pro/class-destination-s3.php:18 -msgid "Amazon S3 Region" -msgstr "Amazon S3 Region" +#: ../inc/class-page-settings.php:489 +msgid "MySQL Client encoding" +msgstr "MySQL Client Encoding" -#: ../inc/class-destination-s3-v1.php:78 ../inc/class-destination-s3.php:81 .. -#: inc/pro/class-destination-s3-v1.php:19 ../inc/pro/class-destination-s3.php:19 -msgid "Amazon S3: US Standard" -msgstr "Amazon S3: US Standard" +#: ../inc/class-page-settings.php:492 +msgid "Blog charset" +msgstr "Webseiten Charset" -#: ../inc/class-destination-s3-v1.php:79 ../inc/class-destination-s3.php:82 .. -#: inc/pro/class-destination-s3-v1.php:20 ../inc/pro/class-destination-s3.php:20 -msgid "Amazon S3: US West (Northern California)" -msgstr "Amazon S3: US West (Northern California)" +#: ../inc/class-page-settings.php:493 +msgid "PHP Memory limit" +msgstr "PHP Memory Limit" -#: ../inc/class-destination-s3-v1.php:80 ../inc/class-destination-s3.php:83 .. -#: inc/pro/class-destination-s3-v1.php:21 ../inc/pro/class-destination-s3.php:21 -msgid "Amazon S3: US West (Oregon)" -msgstr "Amazon S3: US West (Oregon)" +#: ../inc/class-page-settings.php:496 +msgid "Memory in use" +msgstr "Speicher in Benutzung" -#: ../inc/class-destination-s3-v1.php:81 ../inc/class-destination-s3.php:84 .. -#: inc/pro/class-destination-s3-v1.php:22 ../inc/pro/class-destination-s3.php:22 -msgid "Amazon S3: EU (Ireland)" -msgstr "Amazon S3: EU (Ireland)" +#: ../inc/class-page-settings.php:440 +msgid "Response Test O.K." +msgstr "Response Test O.K." -#: ../inc/class-destination-s3-v1.php:82 ../inc/class-destination-s3.php:85 .. -#: inc/pro/class-destination-s3.php:23 -msgid "Amazon S3: EU (Germany)" -msgstr "Amazon S3: EU (Germany)" +#: ../inc/class-destination-sugarsync.php:299 +msgid "One file deleted on SugarSync folder" +msgid_plural "%d files deleted on SugarSync folder" +msgstr[0] "Eine Datei im SugarSync-Ordner gelöscht" +msgstr[1] "%d Dateien im SugarSync-Ordner gelöscht" -#: ../inc/class-destination-s3-v1.php:83 ../inc/class-destination-s3.php:86 .. -#: inc/pro/class-destination-s3-v1.php:23 ../inc/pro/class-destination-s3.php:24 -msgid "Amazon S3: Asia Pacific (Tokyo)" -msgstr "Amazon S3: Asia Pacific (Tokyo)" +#: ../inc/class-destination-sugarsync.php:305 +msgid "SugarSync API: %s" +msgstr "SugarSync API: %s" -#: ../inc/class-destination-s3-v1.php:84 ../inc/class-destination-s3.php:87 .. -#: inc/pro/class-destination-s3-v1.php:24 ../inc/pro/class-destination-s3.php:25 -msgid "Amazon S3: Asia Pacific (Singapore)" -msgstr "Amazon S3: Asia Pacific (Singapore)" +#: ../inc/class-job.php:1480 +msgid "One old log deleted" +msgid_plural "%d old logs deleted" +msgstr[0] "Eine alte Log-Datei gelöscht" +msgstr[1] "%d alte Log-Dateien gelöscht" -#: ../inc/class-destination-s3-v1.php:85 ../inc/class-destination-s3.php:88 .. -#: inc/pro/class-destination-s3-v1.php:25 ../inc/pro/class-destination-s3.php:26 -msgid "Amazon S3: Asia Pacific (Sydney)" -msgstr "Amazon S3: Asia Pacific (Sydney)" +#: ../inc/class-page-editjob.php:796 +msgid "Hours:" +msgstr "Stunden:" -#: ../inc/class-destination-s3-v1.php:86 ../inc/class-destination-s3.php:89 .. -#: inc/pro/class-destination-s3-v1.php:26 ../inc/pro/class-destination-s3.php:27 -msgid "Amazon S3: South America (Sao Paulo)" -msgstr "Amazon S3: South America (Sao Paulo)" +#: ../inc/class-page-editjob.php:744 ../inc/class-page-editjob.php:851 .. +#: /inc/pro/class-wizard-job.php:329 +msgid "Sunday" +msgstr "Sonntag" -#: ../inc/class-destination-s3-v1.php:87 ../inc/class-destination-s3.php:90 .. -#: inc/pro/class-destination-s3-v1.php:27 ../inc/pro/class-destination-s3.php:28 -msgid "Amazon S3: China (Beijing)" -msgstr "Amazon S3: China (Beijing)" +#: ../inc/class-page-editjob.php:745 ../inc/class-page-editjob.php:852 .. +#: /inc/pro/class-wizard-job.php:330 +msgid "Monday" +msgstr "Montag" -#: ../inc/class-destination-s3-v1.php:88 ../inc/pro/class-destination-s3-v1.php:28 -msgid "Google Storage (Interoperable Access)" -msgstr "Google Storage (Interoperable Access)" +#: ../inc/class-page-editjob.php:746 ../inc/class-page-editjob.php:853 .. +#: /inc/pro/class-wizard-job.php:331 +msgid "Tuesday" +msgstr "Dienstag" -#: ../inc/class-destination-s3-v1.php:89 ../inc/class-destination-s3.php:94 .. -#: inc/pro/class-destination-s3-v1.php:30 ../inc/pro/class-destination-s3.php:32 -msgid "Dream Host Cloud Storage" -msgstr "Dream Host Cloud Storage" +#: ../inc/class-page-editjob.php:747 ../inc/class-page-editjob.php:854 .. +#: /inc/pro/class-wizard-job.php:332 +msgid "Wednesday" +msgstr "Mittwoch" -#: ../inc/class-destination-s3-v1.php:90 ../inc/class-destination-s3.php:95 .. -#: inc/pro/class-destination-s3-v1.php:31 ../inc/pro/class-destination-s3.php:33 -msgid "GreenQloud Storage Qloud" -msgstr "GreenQloud Storage Qloud" +#: ../inc/class-page-editjob.php:748 ../inc/class-page-editjob.php:855 .. +#: /inc/pro/class-wizard-job.php:333 +msgid "Thursday" +msgstr "Donnerstag" -#: ../inc/class-destination-s3-v1.php:95 ../inc/class-destination-s3.php:100 -msgid "Or a S3 Server URL" -msgstr "oder eine S3 Server URL" +#: ../inc/class-page-editjob.php:749 ../inc/class-page-editjob.php:856 .. +#: /inc/pro/class-wizard-job.php:334 +msgid "Friday" +msgstr "Freitag" -#: ../inc/class-destination-s3-v1.php:102 ../inc/class-destination-s3.php:107 -msgid "S3 Access Keys" -msgstr "S3 Access Keys" +#: ../inc/class-page-editjob.php:750 ../inc/class-page-editjob.php:857 .. +#: /inc/pro/class-wizard-job.php:335 +msgid "Saturday" +msgstr "Samstag" -#: ../inc/class-destination-s3-v1.php:106 ../inc/class-destination-s3.php:111 .. -#: inc/pro/class-destination-glacier.php:52 -msgid "Access Key" -msgstr "Access Key" +#: ../inc/class-page-editjob.php:354 +msgid "Next runtime:" +msgstr "Nächster Durchlauf:" -#: ../inc/class-destination-s3-v1.php:113 ../inc/class-destination-s3.php:118 .. -#: inc/pro/class-destination-glacier.php:59 -msgid "Secret Key" -msgstr "Secret Key" +#: ../inc/class-page-editjob.php:535 ../inc/class-page-editjob.php:537 .. +#: /inc/pro/class-wizard-job.php:404 ../inc/pro/class-wizard-job.php:406 +msgid "Zip" +msgstr "Zip" -#: ../inc/class-destination-s3-v1.php:121 ../inc/class-destination-s3.php:126 -msgid "S3 Bucket" -msgstr "S3 Bucket" +#: ../inc/class-page-editjob.php:538 ../inc/pro/class-wizard-job.php:407 +msgid "Tar" +msgstr "Tar" -#: ../inc/class-destination-s3-v1.php:125 ../inc/class-destination-s3.php:130 -msgid "Bucket selection" -msgstr "Bucket Auswahl" +#: ../inc/class-page-editjob.php:540 ../inc/class-page-editjob.php:542 .. +#: /inc/pro/class-wizard-job.php:409 ../inc/pro/class-wizard-job.php:411 +msgid "Tar GZip" +msgstr "Tar GZip" -#: ../inc/class-destination-s3-v1.php:138 ../inc/class-destination-s3.php:143 -msgid "Create a new bucket" -msgstr "Neues Bucket erstellen" +#: ../inc/class-page-editjob.php:544 ../inc/class-page-editjob.php:546 .. +#: /inc/pro/class-wizard-job.php:413 ../inc/pro/class-wizard-job.php:415 +msgid "Tar BZip2" +msgstr "Tar BZip2" -#: ../inc/class-destination-s3-v1.php:145 ../inc/class-destination-s3.php:150 -msgid "S3 Backup settings" -msgstr "S3 Backup Einstellungen" +#: ../inc/class-jobtype-file.php:91 ../inc/class-jobtype-file.php:128 .. +#: /inc/class-jobtype-file.php:165 ../inc/class-jobtype-file.php:202 +#: ../inc/class- jobtype-file.php:239 +msgid "Exclude:" +msgstr "Ausschließen:" -#: ../inc/class-destination-s3-v1.php:149 ../inc/class-destination-s3.php:154 .. -#: inc/class-destination-rsc.php:100 -msgid "Folder in bucket" -msgstr "Ordner im Bucket" +#: ../inc/class-jobtype-wpplugin.php:13 +msgid "Plugins" +msgstr "Plugins" -#: ../inc/class-destination-s3-v1.php:171 ../inc/class-destination-s3.php:186 -msgid "Amazon specific settings" -msgstr "Amazon spezifische Einstellungen" +#: ../inc/pro/class-destination-rsc.php:26 +msgid "API Key:" +msgstr "API-Schlüssel" -#: ../inc/class-destination-s3-v1.php:175 ../inc/class-destination-s3-v1.php:177 . -#: ./inc/class-destination-s3.php:190 ../inc/class-destination-s3.php:192 -msgid "Amazon: Storage Class" -msgstr "Amazon: Storage Class" +#: ../inc/pro/class-destination-msazure.php:21 +#: ../inc/pro/class-destination-rsc. php:38 +msgid "Container:" +msgstr "Container:" -#: ../inc/class-destination-s3-v1.php:179 ../inc/class-destination-s3.php:194 -msgid "Reduced Redundancy" -msgstr "Reduzierte Redundanz" +#: ../inc/class-destination-ftp.php:263 +msgid "Error getting SYSTYPE" +msgstr "Fehler, SYSTYPE wird angezeigt" -#: ../inc/class-destination-s3-v1.php:184 ../inc/class-destination-s3.php:199 -msgid "Server side encryption" -msgstr "Serverseitige Enkryption" +#: ../backwpup.php:359 ../inc/class-page-about.php:577 +msgid "Backup to Dropbox" +msgstr "Backup in die Dropbox" -#: ../inc/class-destination-s3-v1.php:188 ../inc/class-destination-s3.php:203 -msgid "Save files encrypted (AES256) on server." -msgstr "Speicher Dateien Server Side Encrypted (AES256)" +#: ../inc/pro/class-export-jobs.php:12 ../inc/pro/class-export-jobs.php:23 +msgid "Export" +msgstr "Export" -#: ../inc/class-destination-s3-v1.php:249 ../inc/class-destination-s3.php:263 -#, php-format -msgid "Bucket %1$s created." -msgstr "Bucket %1$s erstellt." +#: ../inc/class-page-jobs.php:330 +msgid "Log" +msgstr "Protokoll" -#: ../inc/class-destination-s3-v1.php:251 ../inc/pro/class-destination-s3-v1.php: -#: 136 -#, php-format -msgid "Bucket %s could not be created." -msgstr "Bucket %s konnte nicht erstellt werden." +#: ../inc/pro/class-wizard-jobimport.php:94 +msgid "Import Type" +msgstr "Import-Typ" -#: ../inc/class-destination-s3-v1.php:297 ../inc/class-destination-s3-v1.php:419 . -#: ./inc/class-destination-s3-v1.php:470 ../inc/class-destination-s3.php:306 .. -#: inc/class-destination-s3.php:431 ../inc/class-destination-s3.php:483 .. -#: inc/class-destination-s3.php:517 ../inc/class-destination-s3.php:577 .. -#: inc/pro/class-destination-s3-v1.php:314 ../inc/pro/class-destination-s3.php:323 -#, php-format -msgid "S3 Service API: %s" -msgstr "S3 Service API: %s" +#: ../inc/pro/class-wizard-jobimport.php:94 +msgid "No Import" +msgstr "Kein Import" -#: ../inc/class-destination-s3-v1.php:362 ../inc/class-destination-s3.php:370 -#, php-format -msgid "%d. Trying to send backup file to S3 Service …" -msgstr "%d. Versuche, ein Backup zum S3-Service zu senden …" +#: ../inc/pro/class-wizard-jobimport.php:96 +msgid "Overwrite" +msgstr "Überschreiben" -#: ../inc/class-destination-s3-v1.php:383 ../inc/class-destination-s3.php:383 .. -#: inc/pro/class-destination-s3-v1.php:182 ../inc/pro/class-destination-s3.php:178 -#, php-format -msgid "Connected to S3 Bucket \"%1$s\" in %2$s" -msgstr "Verbunden zum S3 Bucket \"%1$s\" in %2$s" +#: ../inc/pro/class-wizard-jobimport.php:96 +msgid "Append" +msgstr "Anhängen" -#: ../inc/class-destination-s3-v1.php:386 ../inc/class-destination-s3.php:386 .. -#: inc/pro/class-destination-s3-v1.php:185 ../inc/pro/class-destination-s3.php:181 -#, php-format -msgid "S3 Bucket \"%s\" does not exist!" -msgstr "Amazon S3 Bucket \"%s\" existiert nicht!" +#: ../inc/pro/class-wizard-jobimport.php:32 +#: ../inc/pro/class-wizard-jobimport.php: 98 +msgid "Import" +msgstr "Import" -#: ../inc/class-destination-s3-v1.php:392 ../inc/class-destination-s3.php:405 -msgid "Starting upload to S3 Service …" -msgstr "Upload zum S3 Service begonnen …" +#: ../inc/pro/class-jobtype-dbdump.php:117 +msgid "Host:" +msgstr "Host (Server):" -#: ../inc/class-destination-s3-v1.php:410 ../inc/class-destination-s3.php:508 .. -#: inc/pro/class-destination-glacier.php:363 -#, php-format -msgid "Backup transferred to %s." -msgstr "Backup übertragen zu %s" +#: ../inc/pro/class-destination-msazure.php:17 +msgid "Account Name:" +msgstr "Kontoname/ Benutzername:" -#: ../inc/class-destination-s3-v1.php:415 ../inc/class-destination-s3.php:513 -#, php-format -msgid "Cannot transfer backup to S3! (%1$d) %2$s" -msgstr "Backup kann nicht zu Amazon S3 übertragen werden! (%1$d) %2$s" +#: ../inc/pro/class-destination-msazure.php:19 +#: ../inc/pro/class-destination-s3-v1. php:36 +#: ../inc/pro/class-destination-s3.php:38 ../inc/pro/class-destination- +#: glacier.php:165 +msgid "Access Key:" +msgstr "Zugangsschlüssel (Access Key):" -#: ../inc/class-destination-s3-v1.php:460 ../inc/class-destination-s3.php:567 -#, php-format -msgid "Cannot delete backup from %s." -msgstr "Kann das Backup auf %s nicht löschen" +#: ../inc/class-destination-dropbox.php:58 +#: ../inc/pro/class-destination-dropbox. php:29 +msgid "Create Account" +msgstr "Konto erstellen" -#: ../inc/class-destination-s3-v1.php:464 ../inc/class-destination-s3.php:571 -#, php-format -msgid "One file deleted on S3 Bucket." -msgid_plural "%d files deleted on S3 Bucket" -msgstr[0] "Eine Datei im S3-Bucket gelöscht" -msgstr[1] "%d Dateien im S3-Bucket gelöscht" +#: ../inc/class-page-editjob.php:809 +msgid "Day of Month:" +msgstr "Tag des Monats:" -#: ../inc/class-destination-s3-v1.php:577 ../inc/class-destination-s3.php:677 .. -#: inc/pro/class-destination-glacier.php:538 -msgid "Missing secret access key!" -msgstr "Der geheime Zugangsschlüssel (Secret Access Key) fehlt!" +#: ../inc/class-page-editjob.php:845 +msgid "Day of Week:" +msgstr "Wochentag:" -#: ../inc/class-destination-s3-v1.php:583 ../inc/class-destination-s3.php:683 -msgid "No bucket found!" -msgstr "Kein Bucket gefunden!" +#: ../inc/pro/class-destination-sugarsync.php:63 +#: ../inc/pro/class-destination-ftp. php:42 +msgid "(Oldest files will be deleted first.)" +msgstr "(Älteste Dateien werden zuerst gelöscht.)" -#: ../inc/class-create-archive.php:71 -msgid "The file name of an archive cannot be empty." -msgstr "Der Dateiname eines Archivs kann nicht leer sein." +#: ../inc/pro/class-destination-sugarsync.php:31 ../inc/pro/class-destination- +#: dropbox.php:34 ../inc/pro/class-destination-gdrive.php:269 ../inc/pro/class- +#: destination-gdrive.php:275 +msgid "Login:" +msgstr "Anmelden:" -#: ../inc/class-create-archive.php:79 -#, php-format -msgctxt "%s = Folder name" -msgid "Folder %s for archive not found" -msgstr "Ordner %s für Archiv nicht gefunden" +#: ../inc/class-destination-dropbox.php:57 ../inc/pro/class-destination-gdrive. +#: php:53 ../inc/pro/class-destination-gdrive.php:270 +msgid "Not authenticated!" +msgstr "Nicht authentifiziert!" -#: ../inc/class-create-archive.php:85 ../inc/class-create-archive.php:120 .. -#: inc/class-create-archive.php:137 ../inc/class-mysqldump.php:130 -msgid "Functions for gz compression not available" -msgstr "Die Funktionen für die Gzip-Kompression sind nicht verfügbar." +#: ../inc/class-destination-sugarsync.php:49 +#: ../inc/class-destination-dropbox.php: 60 +#: ../inc/pro/class-destination-sugarsync.php:32 ../inc/pro/class-destination- +#: dropbox.php:35 ../inc/pro/class-destination-gdrive.php:55 ../inc/pro/class- +#: destination-gdrive.php:276 +msgid "Authenticated!" +msgstr "Authentifiziert!" -#: ../inc/class-create-archive.php:92 ../inc/class-create-archive.php:143 -msgid "Functions for bz2 compression not available" -msgstr "Die Funktionen für die Bz2-Kompression sind nicht verfügbar." +#: ../backwpup.php:445 ../inc/class-page-about.php:597 +msgid "Backup to SugarSync" +msgstr "Backup zu SugarSync" -#: ../inc/class-create-archive.php:116 -#, php-format -msgctxt "ZipArchive open() result" -msgid "Cannot create zip archive: %d" -msgstr "Konte ZIP-Datei %d nicht erstellen" +#: ../inc/pro/class-destination-sugarsync.php:36 +msgid "Root:" +msgstr "Root:" -#: ../inc/class-create-archive.php:149 -#, php-format -msgctxt "%s = file name" -msgid "Method to archive file %s not detected" -msgstr "Methode zum Archivieren der Datei %s nicht gefunden" +#: ../inc/class-destination-sugarsync.php:69 ../inc/pro/class-destination- +#: sugarsync.php:43 +msgid "No Syncfolders found!" +msgstr "Keine Sync-Ordner gefunden!" -#: ../inc/class-create-archive.php:154 -msgid "Cannot open archive file" -msgstr "Kann Archivdatei nicht öffnen" +#: ../inc/class-page-backwpup.php:295 +msgid "%d ERROR" +msgstr "%d FEHLER" -#: ../inc/class-create-archive.php:174 ../inc/class-create-archive.php:371 -#, php-format -msgid "PclZip archive add error: %s" -msgstr "Fehler beim Hinzufügen zum PclZip-Archive: %s" +#: ../inc/class-page-backwpup.php:297 +msgid "%d WARNING" +msgstr "%d WARNUNG" -#: ../inc/class-create-archive.php:184 -msgid "ZIP archive cannot be closed correctly." -msgstr "ZIP-Archiv kann nicht korrekt geschlossen werden." +#: ../inc/class-page-logs.php:219 +msgid "O.K." +msgstr "O.K." -#: ../inc/class-create-archive.php:238 -msgid "File name cannot be empty" -msgstr "Der Dateiname kann nicht leer sein." +#: ../inc/class-page-backups.php:263 +msgid "File" +msgstr "Datei" -#: ../inc/class-create-archive.php:247 -#, php-format -msgctxt "File to add to archive" -msgid "File %s does not exist or is not readable" -msgstr "Datei %s existiert nicht oder ist nicht lesbar" +#: ../backwpup.php:310 ../inc/class-page-backups.php:264 +msgid "Folder" +msgstr "Ordner" -#: ../inc/class-create-archive.php:278 ../inc/class-create-archive.php:294 .. -#: inc/class-create-archive.php:414 ../inc/class-create-archive.php:418 -msgid "This archive method can only add one file" -msgstr "Diese Archive-Methode kann nur eine einziges Datei sichern." +#: ../inc/class-page-logs.php:131 ../inc/class-page-backwpup.php:262 +#: ../inc/class- page-backwpup.php:326 ../inc/class-page-backups.php:262 +msgid "Time" +msgstr "Zeit" -#: ../inc/class-create-archive.php:283 ../inc/class-create-archive.php:299 -#, php-format -msgid "Cannot open source file %s to archive" -msgstr "Konnte Quelle %s zum Archivieren nicht öffnen" +#: ../inc/class-page-editjob.php:823 +msgid "Month:" +msgstr "Monat:" -#: ../inc/class-create-archive.php:333 -msgid "ZIP archive cannot be closed correctly" -msgstr "ZIP Archive kann nicht geschlossen werden" +#: ../inc/class-wp-cli.php:59 ../inc/class-page-jobs.php:479 +msgid "Job will be terminated." +msgstr "Auftrag wird beendet." -#: ../inc/class-create-archive.php:351 ../inc/class-create-archive.php:360 .. -#: inc/class-create-archive.php:429 -#, php-format -msgid "Cannot add \"%s\" to zip archive!" -msgstr "\"%s\" kann dem ZIP-Archiv nicht hinzugefügt werden!" +#: ../inc/class-page-settings.php:211 ../inc/class-page-settings.php:214 +msgid "Compression" +msgstr "Komprimierung" -#: ../inc/class-create-archive.php:396 -msgid "Folder name cannot be empty" -msgstr "Der Verzeichnis Name darf nicht leer sein" +#: ../inc/class-page-settings.php:144 +msgid "Admin Bar" +msgstr "Adminbar" -#: ../inc/class-create-archive.php:401 -#, php-format -msgctxt "Folder path to add to archive" -msgid "Folder %s does not exist or is not readable" -msgstr "Verzeichnis %s existiert nicht oder ist nicht lesbar" +#: ../inc/pro/class-destination-s3-v1.php:54 +#: ../inc/pro/class-destination-s3.php:56 +msgid "Folder in bucket:" +msgstr "Ordner im Bucket:" -#: ../inc/class-create-archive.php:451 -#, php-format -msgctxt "Text of ZipArchive status Message" -msgid "ZipArchive returns status: %s" -msgstr "Das Zip-Archive liefert den Status: %s" +#: ../inc/pro/class-destination-msazure.php:30 +#: ../inc/pro/class-destination-rsc. php:49 +msgid "Folder in container:" +msgstr "Ordner im Container:" -#: ../inc/class-create-archive.php:481 -#, php-format -msgid "File name \"%1$s\" is too long to be saved correctly in %2$s archive!" -msgstr "Dateiname \"%1$s\" ist zu lang, um korrekt im %2$s Archiv zu speichern." +#: ../inc/pro/class-destination-sugarsync.php:58 ../inc/pro/class-destination- +#: dropbox.php:38 ../inc/pro/class-destination-gdrive.php:280 +msgid "Folder:" +msgstr "Ordner:" -#: ../inc/class-create-archive.php:484 -#, php-format -msgid "File path \"%1$s\" is too long to be saved correctly in %2$s archive!" -msgstr "Dateipfad \"%1$s\" ist zu lang, um korrekt in %2$s Archiv zu speichern" +#: ../backwpup.php:311 +msgid "Backup to Folder" +msgstr "Backup in Ordner" -#: ../inc/class-create-archive.php:496 -#, php-format -msgid "Cannot open source file %s for archiving" -msgstr "Kann Quelldatei %s nicht zum Archivieren öffnen" +#: ../inc/class-destination-ftp.php:31 ../inc/class-destination-email.php:104 +#: .. /inc/pro/class-destination-ftp.php:21 +msgid "Port:" +msgstr "Port:" -#: ../inc/class-create-archive.php:501 ../inc/class-create-archive.php:502 .. -#: inc/class-create-archive.php:601 ../inc/class-create-archive.php:602 -msgid "Unknown" -msgstr "Unbekannt" +#: ../inc/class-help.php:21 +msgid "For more information:" +msgstr "Für weitere Informationen:" -#: ../inc/class-create-archive.php:592 -#, php-format -msgid "Folder name \"%1$s\" is too long to be saved correctly in %2$s archive!" -msgstr "" -"Verzeichnis Name \"%1$s\" ist zu lang um ihn koreckt zu speichern im %2$s " -"Archiv" +#: ../inc/class-help.php:18 +msgid "BackWPup comes with ABSOLUTELY NO WARRANTY. This is a free software, and you are welcome to redistribute it under certain conditions." +msgstr "BackWPup erhalten Sie OHNE JEDWEDE GARANTIE. Dies ist freie Software (quelloffen, im Sinne von Open Source) und Sie sind eingeladen, sie unter bestimmten Bedingungen weiterzugeben." -#: ../inc/class-create-archive.php:595 -#, php-format -msgid "Folder path \"%1$s\" is too long to be saved correctly in %2$s archive!" -msgstr "" -"Verzeichnis Pfad \"%1$s\" ist zu lang um ihn koreckt zu speichern im %2$s " -"Archiv" +#: ../inc/class-page-editjob.php:684 +msgid "advanced" +msgstr "erweitert" -#: ../inc/class-admin.php:137 ../inc/class-help.php:29 -msgid "https://marketpress.com/documentation/backwpup-pro/" -msgstr "https://marketpress.de/dokumentation/backwpup-pro/" +#: ../inc/class-page-editjob.php:680 +msgid "basic" +msgstr "einfach" -#: ../inc/class-admin.php:137 ../inc/pro/class-marketpress-documentation.php:149 . -#: ./inc/pro/class-pro.php:188 ../inc/pro/class-pro.php:188 -msgid "Documentation" -msgstr "Dokumentation" +#: ../inc/class-page-editjob.php:723 ../inc/pro/class-wizard-job.php:308 +msgid "Hour" +msgstr "Stunde" -#: ../inc/class-admin.php:139 ../inc/class-help.php:26 -msgid "https://marketpress.com/support/forum/plugins/backwpup-pro/" -msgstr "https://marketpress.de/support/forum/plugins/backwpup-pro/" +#: ../inc/class-page-editjob.php:726 ../inc/pro/class-wizard-job.php:311 +msgid "Minute" +msgstr "Minute" -#: ../inc/class-admin.php:139 ../inc/class-help.php:26 -msgid "Pro Support" -msgstr "Pro-Support" +#: ../inc/class-page-editjob.php:730 ../inc/pro/class-wizard-job.php:315 +msgid "monthly" +msgstr "monatlich" -#: ../inc/class-admin.php:141 ../inc/class-help.php:28 -msgid "http://wordpress.org/support/plugin/backwpup/" -msgstr "http://wordpress.org/support/plugin/backwpup/" +#: ../inc/class-page-editjob.php:732 ../inc/pro/class-wizard-job.php:317 +msgid "on" +msgstr "am" -#: ../inc/class-admin.php:141 ../inc/class-help.php:28 -msgid "Support" -msgstr "Support" +#: ../inc/class-page-editjob.php:742 ../inc/pro/class-wizard-job.php:327 +msgid "weekly" +msgstr "wöchentlich" -#: ../inc/class-admin.php:154 -msgid "BackWPup Dashboard" -msgstr "BackWPup Dashboard" +#: ../inc/class-page-editjob.php:760 ../inc/pro/class-wizard-job.php:345 +msgid "daily" +msgstr "täglich" -#: ../inc/class-admin.php:154 -msgid "Dashboard" -msgstr "Dashboard" +#: ../inc/class-page-editjob.php:770 ../inc/pro/class-wizard-job.php:355 +msgid "hourly" +msgstr "stündlich" -#: ../inc/class-admin.php:171 ../inc/class-admin.php:171 ../inc/class-adminbar. -#: php:86 ../inc/class-page-settings.php:120 -msgid "Jobs" -msgstr "Aufträge" +#: ../inc/class-mysqldump.php:150 ../inc/class-mysqldump.php:161 ../inc/class- +#: mysqldump.php:254 ../inc/class-mysqldump.php:267 ../inc/class-mysqldump.php: +#: 282 ../inc/class-mysqldump.php:295 ../inc/class-mysqldump.php:341 +#: ../inc/class- mysqldump.php:365 ../inc/class-mysqldump.php:403 +#: ../inc/class-mysqldump.php: 460 ../inc/pro/class-jobtype-dbdump.php:790 +#: ../inc/pro/class-jobtype-dbdump. php:804 +#: ../inc/pro/class-jobtype-dbdump.php:852 ../inc/pro/class-jobtype- +#: dbdump.php:871 ../inc/pro/class-jobtype-dbdump.php:914 +msgid "Database error %1$s for query %2$s" +msgstr "Datenbankfehler %1$s für die Abfrage (Query) %2$s" -#: ../inc/class-admin.php:186 ../inc/class-admin.php:186 -msgid "Add new job" -msgstr "Neuer Auftrag" +#: ../inc/class-destination-dropbox.php:36 +#: ../inc/class-destination-dropbox.php: 332 +#: ../inc/pro/class-destination-dropbox.php:253 +msgid "Dropbox API: %s" +msgstr "Dropbox-API: %s" -#: ../inc/class-admin.php:216 ../inc/class-admin.php:216 ../inc/class-adminbar. -#: php:110 -msgid "Backups" -msgstr "Backups" +#: ../inc/class-destination-folder.php:196 +msgid "One backup file deleted" +msgid_plural "%d backup files deleted" +msgstr[0] "Eine Sicherungsdatei gelöscht" +msgstr[1] "%d Sicherungsdateien gelöscht" -#: ../inc/class-admin.php:231 ../inc/class-admin.php:231 -msgid "Settings" -msgstr "Einstellungen" +#: ../inc/class-destination-ftp.php:225 +msgid "Connected to FTP server: %s" +msgstr "Verbunden mit dem FTP-Server: %s" -#: ../inc/class-admin.php:244 ../inc/class-admin.php:244 -msgid "About" -msgstr "Über" +#: ../inc/class-destination-ftp.php:281 +msgid "FTP Folder \"%s\" created!" +msgstr "FTP-Ordner \"%s\" erstellt!" -#: ../inc/class-admin.php:281 ../inc/class-admin.php:287 -msgid "Cheating, huh?" -msgstr "Mogeln, wie?" +#: ../inc/class-destination-ftp.php:337 +msgid "Backup transferred to FTP server: %s" +msgstr "Backup Archiv übertragen zum FTP-Server: %s" -#: ../inc/class-admin.php:402 -msgid "http://marketpress.com" -msgstr "http://marketpress.com" +#: ../inc/class-destination-email.php:292 +msgid "BackWPup archive from %1$s: %2$s" +msgstr "BackWPup-Archiv vom %1$s: %2$s" -#: ../inc/class-admin.php:402 ../inc/class-admin.php:402 -msgid "MarketPress" -msgstr "MarketPress" +#: ../inc/class-destination-email.php:295 +msgid "Backup archive: %s" +msgstr "Backup Archiv: %s" -#: ../inc/class-admin.php:404 -#, php-format -msgid "Get BackWPup Pro now." -msgstr "Wechsle jetzt zu BackWPup Pro." +#: ../inc/class-destination-msazure.php:277 +#: ../inc/class-destination-msazure.php: 333 +#: ../inc/pro/class-destination-msazure.php:215 +msgid "Microsoft Azure API: %s" +msgstr "Microsoft Azure API: %s" -#: ../inc/class-admin.php:423 -#, php-format -msgid "version %s" -msgstr "Version %s" +#: ../inc/pro/class-settings-apikeys.php:119 +msgid "App ID:" +msgstr "App ID:" -#: ../inc/class-admin.php:468 -msgid "Add BackWPup Role" -msgstr "Füge BackWPup Rolle hinzu" +#: ../inc/pro/class-wizard-jobimport.php:45 +msgid "Import File" +msgstr "Import-Datei" -#: ../inc/class-admin.php:472 -msgid "— No additional role for BackWPup —" -msgstr "— Keine exrta BackWPup Rolle —" +#: ../inc/pro/class-wizard-jobimport.php:45 +msgid "Upload XML job file for import" +msgstr "XML Arbeitsauftrag Datei hochladen zum Importieren" -#: ../inc/class-admin.php:544 -#, php-format -msgid "" -"Important: before updating, please back up " -"your database and files with %2$s. For help with updates, visit the Updating WordPress " -"Codex page." -msgstr "" -"Wichtig: Bitte erstelle ein Backup von der " -"Datenbank und den Dateien mit %2$s vor der Installation dieses Plugins. Um " -"Hilfe für die Updates zu erhalten, besuche bitte die Updating WordPress Codex-Seite." +#: ../inc/pro/class-wizard-jobimport.php:69 +msgid "Choose a file from your computer:" +msgstr "Wähle eine Datei von deinem Computer:" -#: ../inc/class-admin.php:548 ../inc/class-admin.php:552 -#, php-format -msgid "" -"Important: before installing this plugin, please back up your database and files with %2$s." -msgstr "" -"Wichtig: Bitte erstelle ein Backup von der " -"Datenbank und den Dateien mit %2$s vor der Installation dieses Plugins." +#: ../inc/pro/class-wizard-jobimport.php:69 +msgid "Maximum size: %s" +msgstr "Maximale Größe: %s" -#: ../inc/class-admin.php:566 -msgid "BackWPup Role" -msgstr "BackWPup Rolle" +#: ../inc/pro/class-wizard-jobimport.php:91 +msgid "Import Jobs" +msgstr "Importiere Aufträge" -#: ../inc/class-admin.php:593 -msgid "Administrator" -msgstr "Administrator" +#: ../inc/pro/class-wizard-jobimport.php:110 +msgid "Import Config" +msgstr "Konfiguration importieren" -#: ../inc/class-easycron.php:179 -#, php-format -msgid "EasyCron.com API returns (%s): %s" -msgstr "EasyCron.com API Antwort (%s): %s" +#: ../inc/pro/class-wizard-jobimport.php:113 +msgid "Import BackWPup configuration" +msgstr "Importiere BackWPup Konfiguration" -#: ../inc/class-easycron.php:188 -msgid "EasyCron" -msgstr "EasyCron" +#: ../inc/pro/class-wizard-jobimport.php:138 +msgid "File is empty. Please upload something more substantial. This error could also caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini." +msgstr "Datei ist leer. Bitte lade etwas mit Substanz hoch. Dieser Fehler kann begründet sein weil uploads in der php.ini oder durch post_max_size kleiner definiert sind als upload_max_filesize in php.ini." -#: ../inc/class-easycron.php:192 -msgid "Api key:" -msgstr "Api key:" +#: ../inc/pro/class-wizard-jobimport.php:167 +msgid "This Export file (version %s) may not be supported by this version of the importer." +msgstr "Die Export Datei (version %s) wird wahrscheinlich nicht von dieser Version des Importers unterstützt" -#: ../inc/class-easycron.php:200 -msgid "Trigger WordPress Cron:" -msgstr "Rufe WordPress Cron:" +#: ../inc/pro/class-wizard-jobimport.php:236 +msgid "Job %1$s with id %2$d imported" +msgstr "Job %1$s mit ID %2$d wurde importiert" -#: ../inc/class-easycron.php:204 -msgid "" -"If you check this box, a cron job will be created on EasyCron that all 5 " -"Minutes calls the WordPress cron." -msgstr "" -"Wenn dies Checkbox aktiv ist wird bei EasyCron ein Cronjob erstellt der alle " -"5 Minuten den WordPRess Cron aufruft." +#: ../inc/pro/class-wizard-jobimport.php:244 +msgid "BackWPup config imported" +msgstr "BackWPup Konfiguration wurde importiert" -#: ../inc/class-destination-sugarsync.php:22 -msgid "Sugarsync Login" -msgstr "SugarSync Login" +#: ../inc/class-admin.php:154 +msgid "Dashboard" +msgstr "Dashboard" -#: ../inc/class-destination-sugarsync.php:28 ../inc/class-destination-sugarsync. -#: php:47 ../inc/class-destination-dropbox.php:55 -msgid "Authentication" -msgstr "Authentifizierung" +#: ../inc/class-install.php:83 +msgid "BackWPup Admin" +msgstr "BackWPup Admin" -#: ../inc/class-destination-sugarsync.php:30 ../inc/pro/class-destination- -#: sugarsync.php:17 -msgid "Email address:" -msgstr "E-Mail-Adresse" +#: ../inc/class-install.php:97 +msgid "BackWPup jobs checker" +msgstr "BackWPup Auftragsprüfung" -#: ../inc/class-destination-sugarsync.php:34 ../inc/pro/class-jobtype-dbdump.php: -#: 123 ../inc/pro/class-destination-sugarsync.php:20 ../inc/pro/class-destination- -#: ftp.php:29 -msgid "Password:" -msgstr "Passwort:" +#: ../inc/class-install.php:111 +msgid "BackWPup jobs helper" +msgstr "BackWPup Auftragshelfer" -#: ../inc/class-destination-sugarsync.php:40 ../inc/class-destination-sugarsync. -#: php:121 -msgid "Authenticate with Sugarsync!" -msgstr "Mit SugarSync authentifizieren!" +#: ../inc/class-page-backwpup.php:100 +msgid "Test the installation" +msgstr "Die Installation testen" -#: ../inc/class-destination-sugarsync.php:42 ../inc/class-destination-sugarsync. -#: php:137 ../inc/pro/class-destination-sugarsync.php:27 ../inc/pro/class- -#: destination-sugarsync.php:101 -msgid "Create Sugarsync account" -msgstr "SugarSync-Konto erstellen" +#: ../inc/class-page-backwpup.php:101 ../inc/class-page-backwpup.php:104 +msgid "Create a Job" +msgstr "Auftrag erstellen" -#: ../inc/class-destination-sugarsync.php:49 ../inc/class-destination-dropbox.php: -#: 60 ../inc/pro/class-destination-sugarsync.php:32 ../inc/pro/class-destination- -#: dropbox.php:35 ../inc/pro/class-destination-gdrive.php:55 ../inc/pro/class- -#: destination-gdrive.php:276 -msgid "Authenticated!" -msgstr "Authentifiziert!" +#: ../inc/class-page-backwpup.php:106 +msgid "Run the created job" +msgstr "Erstellten Auftrag starten" -#: ../inc/class-destination-sugarsync.php:51 ../inc/class-destination-sugarsync. -#: php:133 ../inc/pro/class-destination-sugarsync.php:34 ../inc/pro/class- -#: destination-sugarsync.php:97 -msgid "Delete Sugarsync authentication!" -msgstr "Lösche SugarSync Authentifizierung" +#: ../inc/class-page-backwpup.php:323 +msgid "Next scheduled jobs" +msgstr "Nächste geplante Aufträge" -#: ../inc/class-destination-sugarsync.php:57 -msgid "SugarSync Root" -msgstr "SugarSync-Wurzelverzeichnis" +#: ../inc/class-page-backwpup.php:352 ../inc/class-page-jobs.php:616 +msgid "Abort" +msgstr "Abbrechen" -#: ../inc/class-destination-sugarsync.php:61 -msgid "Sync folder selection" -msgstr "Sync Ordner Auswahl" +#: ../inc/class-page-backwpup.php:260 +msgid "Last logs" +msgstr "Letzte Logs" -#: ../inc/class-destination-sugarsync.php:69 ../inc/pro/class-destination- -#: sugarsync.php:43 -msgid "No Syncfolders found!" -msgstr "Keine Sync-Ordner gefunden!" +#: ../inc/class-page-backwpup.php:262 +msgid "Result" +msgstr "Ergebnis" -#: ../inc/class-destination-sugarsync.php:90 -msgid "Folder in root" -msgstr "Ordner im Wurzelverzeichnis" +#: ../inc/pro/class-wizard-systemtest.php:15 +msgid "Wizard to test if BackWPup can work properly" +msgstr "Dieser Assistent testet, ob BackWPup problemlos arbeiten kann." -#: ../inc/class-destination-sugarsync.php:96 ../inc/class-destination-folder.php: -#: 39 ../inc/class-destination-dropbox.php:102 ../inc/class-destination-ftp.php: -#: 62 ../inc/pro/class-destination-gdrive.php:73 -msgid "File Deletion" -msgstr "Dateilöschung" +#: ../inc/pro/class-wizard-systemtest.php:32 +msgid "Run tests" +msgstr "Starte die Tests" -#: ../inc/class-destination-sugarsync.php:227 -#, php-format -msgid "%d. Try to send backup to SugarSync …" -msgstr "%d. Versuche, ein Backup zu SugarSync zu senden …" +#: ../inc/pro/class-wizard-systemtest.php:45 +msgid "Environment" +msgstr "Voraussetzungen" -#: ../inc/class-destination-sugarsync.php:234 -#, php-format -msgid "Authenticated to SugarSync with nickname %s" -msgstr "Authentifiziert bei SugarSync mit dem Namen %s" +#: ../inc/pro/class-wizard-systemtest.php:45 +msgid "System Environment" +msgstr "System Voraussetzungen" -#: ../inc/class-destination-sugarsync.php:237 -#, php-format -msgctxt "Available space on SugarSync" -msgid "Not enough disk space available on SugarSync. Available: %s." -msgstr "Nicht genug Speicherplatz verfügbar bei SugarSync. Verfügbar: %s." +#: ../inc/class-admin.php:154 +msgid "BackWPup Dashboard" +msgstr "BackWPup Dashboard" -#: ../inc/class-destination-sugarsync.php:243 -#, php-format -msgid "%s available at SugarSync" -msgstr "%s verfügbar bei SugarSync" +#: ../inc/pro/class-destination-dropbox.php:159 +msgid "Upload changed files to Dropbox" +msgstr "Lade geänderte Datei in die Dropbox" -#: ../inc/class-destination-sugarsync.php:250 -msgid "Starting upload to SugarSync …" -msgstr "Hochladen zu SugarSync hat begonnen …" +#: ../inc/pro/class-destination-dropbox.php:181 +msgid "File %s uploaded to Dropbox" +msgstr "Datei %s zu Dropbox hochgeladen" -#: ../inc/class-destination-sugarsync.php:260 -msgid "Cannot transfer backup to SugarSync!" -msgstr "Backup kann nicht zu SugarSync übertragen werden!" +#: ../inc/pro/class-destination-folder.php:92 +msgid "File %s copied" +msgstr "Datei %s kopiert" -#: ../inc/class-destination-sugarsync.php:299 -#, php-format -msgid "One file deleted on SugarSync folder" -msgid_plural "%d files deleted on SugarSync folder" -msgstr[0] "Eine Datei im SugarSync-Ordner gelöscht" -msgstr[1] "%d Dateien im SugarSync-Ordner gelöscht" +#: ../inc/pro/class-destination-folder.php:186 +msgid "Empty folder %s deleted" +msgstr "Leerer Ordner %s gelöscht" -#: ../inc/class-destination-sugarsync.php:305 -#, php-format -msgid "SugarSync API: %s" -msgstr "SugarSync API: %s" +#: ../inc/class-destination-rsc.php:155 +#: ../inc/pro/class-destination-rsc.php:105 +msgid "Rackspace Cloud container \"%s\" created." +msgstr "Rackspace Cloud Container\"%s\" erstellt." -#: ../inc/class-destination-folder.php:33 -msgid "Folder to store backups in" -msgstr "Order für Dateien" +#: ../inc/class-destination-rsc.php:159 ../inc/class-destination-rsc.php:267 .. +#: /inc/class-destination-rsc.php:307 ../inc/class-destination-rsc.php:352 .. +#: /inc/pro/class-destination-rsc.php:109 ../inc/pro/class-destination-rsc.php: +#: 159 ../inc/pro/class-destination-rsc.php:279 +msgid "Rackspace Cloud API: %s" +msgstr "Rackspace Cloud API: %s" -#: ../inc/class-destination-folder.php:196 -#, php-format -msgid "One backup file deleted" -msgid_plural "%d backup files deleted" -msgstr[0] "Eine Sicherungsdatei gelöscht" -msgstr[1] "%d Sicherungsdateien gelöscht" +#: ../inc/class-destination-s3-v1.php:175 +#: ../inc/class-destination-s3-v1.php:177 . ./inc/class-destination-s3.php:190 +#: ../inc/class-destination-s3.php:192 +msgid "Amazon: Storage Class" +msgstr "Amazon: Storage Class" -#: ../inc/class-destination-dropbox.php:36 ../inc/class-destination-dropbox.php: -#: 332 ../inc/pro/class-destination-dropbox.php:253 -#, php-format -msgid "Dropbox API: %s" -msgstr "Dropbox-API: %s" +#: ../inc/class-job.php:389 +msgid "[INFO] Temp folder is: %s" +msgstr "[INFO] Temp Ordner ist: %s" -#: ../inc/class-destination-dropbox.php:51 ../inc/pro/class-destination-gdrive. -#: php:47 -msgid "Login" -msgstr "Anmelden" +#: ../inc/class-job.php:403 +msgid "[INFO] Backup file is: %s" +msgstr "[INFO] Backup Datei ist: %s" -#: ../inc/class-destination-dropbox.php:57 ../inc/pro/class-destination-gdrive. -#: php:53 ../inc/pro/class-destination-gdrive.php:270 -msgid "Not authenticated!" -msgstr "Nicht authentifiziert!" +#: ../inc/class-page-about.php:426 +msgid "Welcome to BackWPup" +msgstr "Willkommen bei BackWPup" -#: ../inc/class-destination-dropbox.php:58 ../inc/pro/class-destination-dropbox. -#: php:29 -msgid "Create Account" -msgstr "Konto erstellen" +#: ../inc/pro/class-wizard-systemtest.php:14 +msgid "System Test" +msgstr "System Test" -#: ../inc/class-destination-dropbox.php:61 ../inc/class-destination-dropbox.php:61 -msgid "Delete Dropbox Authentication" -msgstr "Lösche Dropbox-Authentifizierung" +#: ../inc/pro/class-marketpress-autoupdate.php:356 +msgid "You are currently using a valid key for this plugin. You are able to renew the key in MarketPress Dashboard. Or if you want to add another valid code use the form below." +msgstr "Du verwendest derzeit einen gültigen Lizenzschlüssel für dieses Plugin. Du kannst die Lizenzen im MarketPress Dashboard erneuern. Oder einen anderen gültigen Schlüssel eintragen." -#: ../inc/class-destination-dropbox.php:68 -msgid "App Access to Dropbox" -msgstr "App-Zugang zu Dropbox" +#: ../inc/pro/class-marketpress-autoupdate.php:379 +msgid "You are currently using a valid key for this plugin. You are able to renew the key below or you can delete the key by clicking here." +msgstr "Du verwendest einen gültigen Lizenzschlüssel für dieses Plugin. Du kannst den Schlüssel unten erneuern oder Löschen zum Löschen hier klicken." -#: ../inc/class-destination-dropbox.php:70 -msgid "" -"A dedicated folder named BackWPup will be created inside of the Apps folder " -"in your Dropbox. BackWPup will get read and write access to that folder only." -" You can specify a subfolder as your backup destination for this job in the " -"destination field below." -msgstr "" -"Ein spezieller Ordner namens BackWPup wird innerhalb des Apps-Ordners in " -"deiner Dropbox angelegt. BackWPup erhält Lese- und Schreibrechte " -"ausschließlich für diesen Ordner. Du kannst einen Unterordner als dein " -"Backup-Ziel im Feld Zielordner weiter unten benennen." +#: ../inc/pro/class-marketpress-autoupdate.php:386 +msgid "License Key" +msgstr "Lizenzschlüssel" -#: ../inc/class-destination-dropbox.php:71 -msgid "Get Dropbox App auth code" -msgstr "Hole Auth-Code für Apps-Ordner in Dropbox" +#: ../inc/pro/class-marketpress-autoupdate.php:389 +msgid "Activate" +msgstr "Aktivieren" -#: ../inc/class-destination-dropbox.php:72 -msgid "Allows restricted access to Apps/BackWPup folder only." -msgstr "Erlaubt beschränkten Zugriff ausschließlich zum Ordner Apps/BackWPup." +#: ../inc/pro/class-marketpress-autoupdate.php:558 +msgid "The License has been deleted." +msgstr "Die Lizenz wurde gelöscht." -#: ../inc/class-destination-dropbox.php:77 -msgid "— OR —" -msgstr "— ODER —" +#: ../inc/pro/class-marketpress-autoupdate.php:565 +msgid "Plugin successfully activated." +msgstr "Plugin erfolgreich aktiviert." -#: ../inc/class-destination-dropbox.php:80 -msgid "Full Access to Dropbox" -msgstr "Uneingeschränkter Zugang zur Dropbox." +#: ../inc/pro/class-marketpress-autoupdate.php:572 +msgid "The entered license key is wrong." +msgstr "Der eingegebene Lizenzschlüssel ist falsch." -#: ../inc/class-destination-dropbox.php:82 -msgid "" -"BackWPup will have full read and write access to your entire Dropbox. You " -"can specify your backup destination wherever you want, just be aware that " -"ANY files or folders inside of your Dropbox can be overridden or deleted by " -"BackWPup." -msgstr "" -"BackWPup erhält uneingeschränkten Lese- und Schreibzugriff zu deiner " -"gesamten Dropbox. Du kannst deinen Zielordner innerhalb deiner Dropbox frei " -"wählen; bedenke jedoch, dass ALLE Dateien und Ordner in deiner Dropbox von " -"BackWPup überschrieben oder gelöscht werden können." +#: ../inc/pro/class-marketpress-autoupdate.php:579 +msgid "You have reached the limit of urls. Please update your license at marketpress.com." +msgstr "Du hast das Limit der URLs erreicht. Bitte aktualisiere deine Lizenz auf marketpress.de." -#: ../inc/class-destination-dropbox.php:83 -msgid "Get full Dropbox auth code " -msgstr "Hole Auth-Code für gesamte Dropbox" +#: ../inc/pro/class-marketpress-autoupdate.php:586 +msgid "Something went wrong. Please try again later or contact the MarketPress Team." +msgstr "Etwas ist falsch gelaufen. Bitte versuche es erneut oder kontaktiere das MarketPress Team." -#: ../inc/class-destination-dropbox.php:84 -msgid "Allows full access to your entire Dropbox." -msgstr "Erlaubt uneingeschränkten Zugriff zu deiner gesamten Dropbox." +#: ../inc/pro/class-marketpress-autoupdate.php:593 +msgid "Due to a wrong license you are not allowed to activate this plugin. Please update your license at marketpress.com." +msgstr "Dir ist nicht erlaubt, das Plugin zu aktivieren, mit einer falschen Lizenz. Bitte aktualisiere deine Lizenz auf MarketPress.de." -#: ../inc/class-destination-dropbox.php:95 -msgid "Destination Folder" -msgstr "Zielordner" +#: ../inc/pro/class-wizard-jobimport.php:14 +msgid "XML job import" +msgstr "XML Auftrag Import" -#: ../inc/class-destination-dropbox.php:97 -msgid "" -"Specify a subfolder where your backup archives will be stored. If you use " -"the App option from above, this folder will be created inside of " -"Apps/BackWPup. Otherwise it will be created at the root of your Dropbox. " -"Already exisiting folders with the same name will not be overriden." -msgstr "" -"Benenne einen Unterordner, in dem deine Backwup-Archive gespeichert werden " -"sollen. Sofern du die App-Option von weiter oben benutzt, wird dieser Ordner " -"innerhalb von Apps/BackWPup angelegt. Anderenfalls wird er im Hauptordner " -"deiner Dropbox angelegt. Bereits bestehende Ordner mit dem gleichen Namen " -"werden nicht überschrieben." +#: ../inc/class-jobtype-dbcheck.php:145 +msgid "Database check done!" +msgstr "Datenbank-Check fertig!" -#: ../inc/class-destination-dropbox.php:98 -msgid "Folder inside your Dropbox where your backup archives will be stored." -msgstr "Ordner in deiner Dropbox, in dem deine Backup-Archive gespeichert werden." +#: ../inc/class-page-jobs.php:614 +msgid "Errors:" +msgstr "Fehler:" -#: ../inc/class-destination-dropbox.php:107 -msgid "Older files will be deleted first. 0 = no files will be deleted." -msgstr "Ältere Dateien werden zuerst gelöscht. 0 = keine Dateien werden gelöscht." +#: ../inc/class-page-jobs.php:613 +msgid "Warnings:" +msgstr "Warnungen:" -#: ../inc/class-destination-dropbox.php:224 -#, php-format -msgid "%d. Try to send backup file to Dropbox …" -msgstr "%d. Versuche, das Backup zur Dropbox zu senden …" +#: ../inc/class-page-logs.php:132 ../inc/class-page-backwpup.php:262 +#: ../inc/class- page-backwpup.php:327 +msgid "Job" +msgstr "Auftrag" -#: ../inc/class-destination-dropbox.php:247 ../inc/pro/class-destination-dropbox. -#: php:128 -#, php-format -msgid "Authenticated with Dropbox of user: %s" -msgstr "Authentifiziert mit der Dropbox von: %s" +#: ../inc/class-page-logs.php:134 ../inc/class-page-jobs.php:126 ../inc/class- +#: page-editjob.php:718 ../inc/pro/class-wizard-job.php:302 +msgid "Type" +msgstr "Typ" -#: ../inc/class-destination-dropbox.php:251 ../inc/pro/class-destination-dropbox. -#: php:132 -#, php-format -msgid "%s available on your Dropbox" -msgstr "%s verfügbar in deiner Dropbox" +#: ../inc/class-page-logs.php:133 +msgid "Status" +msgstr "Status" -#: ../inc/class-destination-dropbox.php:254 ../inc/pro/class-destination-dropbox. -#: php:135 -msgid "Not Authenticated with Dropbox!" -msgstr "Nicht mit Dropbox Authentifiziert!" +#: ../inc/class-page-logs.php:135 ../inc/class-page-backups.php:265 +msgid "Size" +msgstr "Größe" -#: ../inc/class-destination-dropbox.php:257 -msgid "Uploading to Dropbox …" -msgstr "Hochladen zur Dropbox hat begonnen …" +#: ../inc/class-page-logs.php:136 +msgid "Runtime" +msgstr "Laufzeit" -#: ../inc/class-destination-dropbox.php:273 ../inc/pro/class-destination-gdrive. -#: php:607 -msgid "Uploaded file size and local file size don't match." -msgstr "Größe der lokalen und der hochgeladenen Datei ist nicht identisch." +#: ../inc/class-page-jobs.php:125 ../inc/class-page-editjob.php:438 +msgid "Job Name" +msgstr "Auftragsname" -#: ../inc/class-destination-dropbox.php:277 ../inc/pro/class-destination-gdrive. -#: php:609 ../inc/pro/class-destination-glacier.php:367 -#, php-format -msgid "Error transfering backup to %s." -msgstr "Fehler beim Übertragen des Backups zu %s." +#: ../inc/class-page-jobs.php:128 +msgid "Next Run" +msgstr "Nächster Durchlauf" -#: ../inc/class-destination-dropbox.php:323 -#, php-format -msgid "Error while deleting file from Dropbox: %s" -msgstr "Fehler beim Löschen der Datei aus der Dropbox: %s" +#: ../inc/class-page-jobs.php:129 +msgid "Last Run" +msgstr "Letzter Durchlauf" -#: ../inc/class-destination-dropbox.php:326 -#, php-format -msgid "One file deleted from Dropbox" -msgid_plural "%d files deleted on Dropbox" -msgstr[0] "Eine Datei aus der Dropbox gelöscht" -msgstr[1] "%d Dateien aus der Dropbox gelöscht" +#: ../inc/class-admin.php:231 ../inc/class-admin.php:231 +msgid "Settings" +msgstr "Einstellungen" -#: ../inc/class-destination-ftp.php:23 -msgid "FTP server and login" -msgstr "FTP-Server und -Anmeldung" +#: ../inc/class-jobtype-dbdump.php:68 ../inc/class-jobtype-dbdump.php:103 .. +#: /inc/class-page-backwpup.php:307 ../inc/class-page-backwpup.php:372 .. +#: /inc/class-destination-s3-v1.php:178 ../inc/class-destination-s3.php:193 .. +#: /inc/class-destination-email.php:114 ../inc/class-page-settings.php:345 .. +#: /inc/class-jobtype-wpexp.php:73 ../inc/class-jobtype-wpplugin.php:57 .. +#: /inc/pro/class-jobtype-dbdump.php:154 +#: ../inc/pro/class-jobtype-dbdump.php:198 +msgid "none" +msgstr "keine" -#: ../inc/class-destination-ftp.php:27 -msgid "FTP server" -msgstr "FTP-Server" +#: ../inc/class-page-backwpup.php:368 +msgid "Edit Job" +msgstr "Auftrag bearbeiten" -#: ../inc/class-destination-ftp.php:31 ../inc/class-destination-email.php:104 .. -#: inc/pro/class-destination-ftp.php:21 -msgid "Port:" -msgstr "Port:" +#: ../inc/class-page-logs.php:120 ../inc/class-page-logs.php:198 ../inc/class- +#: page-jobs.php:113 ../inc/class-page-jobs.php:177 +#: ../inc/class-page-backups.php: 189 ../inc/class-page-backups.php:308 +msgid "Delete" +msgstr "Löschen" -#: ../inc/class-destination-ftp.php:37 ../inc/class-destination-rsc.php:45 -msgid "Username" -msgstr "Benutzername" +#: ../inc/class-page-settings.php:518 +msgid "Save Changes" +msgstr "Änderungen speichern" -#: ../inc/class-destination-ftp.php:44 -msgid "Password" -msgstr "Passwort" +#: ../inc/class-page-editjob.php:829 +msgid "January" +msgstr "Januar" -#: ../inc/class-destination-ftp.php:56 -msgid "Folder to store files in" -msgstr "Order für Dateien" +#: ../inc/class-page-editjob.php:830 +msgid "February" +msgstr "Februar" -#: ../inc/class-destination-ftp.php:68 -msgid "Maximum number of files to keep in folder." -msgstr "Maximale Anzahl von Dateien im Ordner." +#: ../inc/class-page-editjob.php:831 +msgid "March" +msgstr "März" -#: ../inc/class-destination-ftp.php:78 -msgid "FTP specific settings" -msgstr "FTP-Einstellungen" +#: ../inc/class-page-editjob.php:832 +msgid "April" +msgstr "April" -#: ../inc/class-destination-ftp.php:82 -msgid "Timeout for FTP connection" -msgstr "Zeitüberschreitung bei der FTP-Verbindung" +#: ../inc/class-page-editjob.php:833 +msgid "May" +msgstr "Mai" -#: ../inc/class-destination-ftp.php:90 -msgid "SSL-FTP connection" -msgstr "SSL-FTP-Verbindung" +#: ../inc/class-page-editjob.php:834 +msgid "June" +msgstr "Juni" -#: ../inc/class-destination-ftp.php:94 -msgid "Use explicit SSL-FTP connection." -msgstr "Nutze explizit SSL-FTP Verbindung" +#: ../inc/class-page-editjob.php:835 +msgid "July" +msgstr "Juli" -#: ../inc/class-destination-ftp.php:99 -msgid "FTP Passive Mode" -msgstr "FTP-Passivmodus" +#: ../inc/class-page-editjob.php:837 +msgid "September" +msgstr "September" -#: ../inc/class-destination-ftp.php:103 -msgid "Use FTP Passive Mode." -msgstr "Nutze FTP-Passivmodus" +#: ../inc/class-page-editjob.php:838 +msgid "October" +msgstr "Oktober" -#: ../inc/class-destination-ftp.php:179 -msgid "FTP: Login failure!" -msgstr "FTP: Anmeldung fehlgeschlagen!" +#: ../inc/class-page-editjob.php:839 +msgid "November" +msgstr "November" -#: ../inc/class-destination-ftp.php:203 -#, php-format -msgid "%d. Try to send backup file to an FTP server …" -msgstr "%d. Versuche, Backup an FTP-Server zu senden …" +#: ../inc/class-page-editjob.php:840 +msgid "December" +msgstr "Dezember" -#: ../inc/class-destination-ftp.php:209 -#, php-format -msgid "Connected via explicit SSL-FTP to server: %s" -msgstr "Durch explizite SSL-FTP-Verbindung zum Server verbunden: %s" +#: ../inc/pro/class-destination-ftp.php:17 +msgid "Hostname:" +msgstr "Hostname:" -#: ../inc/class-destination-ftp.php:211 -#, php-format -msgid "Cannot connect via explicit SSL-FTP to server: %s" -msgstr "Kann nicht mit explizit SSL-FTP zum Server verbinden: %s" +#: ../inc/pro/class-destination-ftp.php:25 +#: ../inc/pro/class-destination-rsc.php:23 +msgid "Username:" +msgstr "Benutzername:" -#: ../inc/class-destination-ftp.php:217 -msgid "PHP function to connect with explicit SSL-FTP to server does not exist!" -msgstr "" -"PHP-Funktion für die Verbindung mit explizit SSL-FTP zum Server existiert " -"nicht!" +#: ../inc/class-destination-sugarsync.php:34 +#: ../inc/pro/class-jobtype-dbdump.php: 123 +#: ../inc/pro/class-destination-sugarsync.php:20 ../inc/pro/class-destination- +#: ftp.php:29 +msgid "Password:" +msgstr "Passwort:" -#: ../inc/class-destination-ftp.php:225 -#, php-format -msgid "Connected to FTP server: %s" -msgstr "Verbunden mit dem FTP-Server: %s" +#: ../inc/pro/class-settings-apikeys.php:104 +msgid "Access Key ID:" +msgstr "Access Key ID (Zugangsschlüssel-ID):" -#: ../inc/class-destination-ftp.php:227 -#, php-format -msgid "Cannot connect to FTP server: %s" -msgstr "Kann nicht mit dem FTP-Server verbinden: %s" +#: ../inc/pro/class-destination-s3-v1.php:42 +#: ../inc/pro/class-destination-s3.php:44 +msgid "Bucket:" +msgstr "Bucket:" -#: ../inc/class-destination-ftp.php:234 ../inc/class-destination-ftp.php:242 .. -#: inc/class-destination-ftp.php:258 ../inc/class-destination-ftp.php:305 -#, php-format -msgid "FTP client command: %s" -msgstr "FTP-Client-Befehl: %s" +#: ../inc/class-admin.php:171 ../inc/class-admin.php:171 ../inc/class-adminbar. +#: php:86 ../inc/class-page-settings.php:120 +msgid "Jobs" +msgstr "Aufträge" -#: ../inc/class-destination-ftp.php:236 -#, php-format -msgid "FTP server response: %s" -msgstr "FTP-Server Antwort: %s" +#: ../inc/class-page-logs.php:306 ../inc/class-admin.php:201 +#: ../inc/class-admin. php:201 ../inc/class-adminbar.php:102 +#: ../inc/class-page-settings.php:120 +msgid "Logs" +msgstr "Protokolle" -#: ../inc/class-destination-ftp.php:240 ../inc/class-destination-ftp.php:245 .. -#: inc/class-destination-ftp.php:248 ../inc/class-destination-ftp.php:261 .. -#: inc/class-destination-ftp.php:263 ../inc/class-destination-ftp.php:308 .. -#: inc/class-destination-ftp.php:310 ../inc/class-destination-ftp.php:314 .. -#: inc/class-destination-ftp.php:316 -#, php-format -msgid "FTP server reply: %s" -msgstr "Antwort des FTP-Servers: %s" +#: ../inc/class-page-logs.php:196 +msgid "View" +msgstr "Ansehen" -#: ../inc/class-destination-ftp.php:263 -msgid "Error getting SYSTYPE" -msgstr "Fehler, SYSTYPE wird angezeigt" +#: ../inc/class-page-settings.php:107 +msgid "Settings saved" +msgstr "Einstellungen gespeichert" -#: ../inc/class-destination-ftp.php:281 -#, php-format -msgid "FTP Folder \"%s\" created!" -msgstr "FTP-Ordner \"%s\" erstellt!" +#: ../inc/class-page-jobs.php:373 +msgid "Copy of" +msgstr "Kopie von" -#: ../inc/class-destination-ftp.php:285 -#, php-format -msgid "FTP Folder \"%s\" cannot be created!" -msgstr "FTP-Ordner \"%s\" kann nicht erstellt werden!" +#: ../inc/class-destination-email.php:83 +msgid "Sendmail" +msgstr "Sendmail" -#: ../inc/class-destination-ftp.php:296 -#, php-format -msgid "FTP current folder is: %s" -msgstr "Aktueller FTP-Ordner ist: %s" +#: ../inc/class-page-jobs.php:592 ../inc/class-adminbar.php:94 +msgid "Add new" +msgstr "Erstellen" -#: ../inc/class-destination-ftp.php:308 -msgid "Entering passive mode" -msgstr "Passivmodus gestartet" +#: ../inc/class-page-jobs.php:175 +msgid "Edit" +msgstr "Bearbeiten" -#: ../inc/class-destination-ftp.php:310 -msgid "Cannot enter passive mode" -msgstr "Starten des passiven Modus’ nicht möglich" +#: ../inc/class-page-jobs.php:176 +msgid "Copy" +msgstr "Kopieren" -#: ../inc/class-destination-ftp.php:314 -msgid "Entering normal mode" -msgstr "Starte Normalmodus" +#: ../inc/class-page-jobs.php:293 +msgid "Inactive" +msgstr "Inaktiv" -#: ../inc/class-destination-ftp.php:316 -msgid "Cannot enter normal mode" -msgstr "Normalmodus kann nicht gestartet werden" +#: ../inc/class-page-jobs.php:786 ../inc/class-job.php:1273 +msgid "ERROR:" +msgstr "FEHLER:" -#: ../inc/class-destination-ftp.php:320 -msgid "Starting upload to FTP  …" -msgstr "Hochladen ins FTP-Verzeichnis hat begonnen …" +#: ../inc/class-destination-rsc.php:295 +msgid "Backup File transferred to RSC://" +msgstr "Backup Archiv übertragen zu RSC://" -#: ../inc/class-destination-ftp.php:332 -msgid "Cannot transfer backup to FTP server!" -msgstr "Backup kann nicht zum FTP-Server übertragen werden!" +#: ../inc/class-admin.php:216 ../inc/class-admin.php:216 ../inc/class-adminbar. +#: php:110 +msgid "Backups" +msgstr "Backups" -#: ../inc/class-destination-ftp.php:337 -#, php-format -msgid "Backup transferred to FTP server: %s" -msgstr "Backup Archiv übertragen zum FTP-Server: %s" +#: ../inc/class-destination-rsc.php:451 +msgid "Missing API Key!" +msgstr "API-Schlüssel wird fehlt!" -#: ../inc/class-destination-ftp.php:388 -#, php-format -msgid "Cannot delete \"%s\" on FTP server!" -msgstr "Kann \"%s\" auf dem FTP-Server nicht löschen!" +#: ../inc/class-page-jobs.php:100 +msgid "No Jobs." +msgstr "Keine Aufträge." -#: ../inc/class-destination-ftp.php:391 -#, php-format -msgid "One file deleted on FTP server" -msgid_plural "%d files deleted on FTP server" -msgstr[0] "Eine Datei vom FTP-Server gelöscht" -msgstr[1] "%d Dateien vom FTP-Server gelöscht" +#: ../inc/class-page-settings.php:120 +msgid "Information" +msgstr "Informationen" -#: ../inc/class-destination-s3.php:91 ../inc/pro/class-destination-s3.php:29 -msgid "Google Storage: EU" -msgstr "Google Storage: EU" +#: ../inc/class-page-logs.php:108 +msgid "No Logs." +msgstr "Keine Protokolldateien." -#: ../inc/class-destination-s3.php:92 ../inc/pro/class-destination-s3.php:30 -msgid "Google Storage: USA" -msgstr "Google Storage: USA" +#: ../inc/class-page-logs.php:199 ../inc/class-page-jobs.php:323 ../inc/class- +#: page-backups.php:310 +msgid "Download" +msgstr "Herunterladen" -#: ../inc/class-destination-s3.php:93 ../inc/pro/class-destination-s3.php:31 -msgid "Google Storage: Asia" -msgstr "Google Storage: Asien" +#: ../inc/class-page-backups.php:339 +msgid "?" +msgstr "?" -#: ../inc/class-destination-s3.php:176 -msgid "Multipart Upload" -msgstr "Multipart Upload" +#: ../inc/class-page-editjob.php:786 ../inc/class-page-editjob.php:799 .. +#: /inc/class-page-editjob.php:811 ../inc/class-page-editjob.php:825 +#: ../inc/class- page-editjob.php:847 +msgid "Any (*)" +msgstr "Alle (*)" -#: ../inc/class-destination-s3.php:178 -msgid "" -"Multipart splits file into multiple chunks while uploading. This is " -"necessary for displaying the upload process and to transfer bigger files. " -"Works without a problem on Amazon. Other services might have issues." -msgstr "" -"Multipart splittet den Upload in mehrere Teile auf. Dies ist notwendig für " -"die Fortschrittsanzeige und um große Dateien hochzuladen. Funktioniert ohne " -"Probleme mit Amazon. Bei anderen Services kann es nicht funktioniren." +#: ../inc/class-destination-s3-v1.php:297 +#: ../inc/class-destination-s3-v1.php:419 . +#: ./inc/class-destination-s3-v1.php:470 ../inc/class-destination-s3.php:306 .. +#: /inc/class-destination-s3.php:431 ../inc/class-destination-s3.php:483 .. +#: /inc/class-destination-s3.php:517 ../inc/class-destination-s3.php:577 .. +#: /inc/pro/class-destination-s3-v1.php:314 +#: ../inc/pro/class-destination-s3.php:323 +msgid "S3 Service API: %s" +msgstr "S3 Service API: %s" -#: ../inc/class-destination-s3.php:180 -msgid "Use multipart upload for uploading a file" -msgstr "Benutze Multipart Upload zu hochladen der Datei" +#: ../inc/class-destination-s3-v1.php:583 ../inc/class-destination-s3.php:683 +msgid "No bucket found!" +msgstr "Kein Bucket gefunden!" -#: ../inc/class-destination-s3.php:265 ../inc/pro/class-destination-s3.php:137 -#, php-format -msgid " %s is not a valid bucket name." -msgstr "%s ist kein gültiger Bucket Name" +#: ../backwpup.php:444 +msgid "SugarSync" +msgstr "SugarSync" -#: ../inc/class-destination-s3.php:393 -msgid "Checking for not aborted multipart Uploads …" -msgstr "Prüfe auf nicht abgebrochene, mehrteilige Uploads …" +#: ../inc/class-destination-sugarsync.php:40 +#: ../inc/class-destination-sugarsync. php:121 +msgid "Authenticate with Sugarsync!" +msgstr "Mit SugarSync authentifizieren!" -#: ../inc/class-destination-s3.php:399 -#, php-format -msgid "Upload for %s aborted." -msgstr "Upload für %s abgebrochen." +#: ../inc/class-destination-sugarsync.php:51 +#: ../inc/class-destination-sugarsync. php:133 +#: ../inc/pro/class-destination-sugarsync.php:34 ../inc/pro/class- +#: destination-sugarsync.php:97 +msgid "Delete Sugarsync authentication!" +msgstr "Lösche SugarSync Authentifizierung" -#: ../inc/class-destination-s3.php:541 -#, php-format -msgid "Storage Class: %s" -msgstr "Speicher-Klasse: %s" +#: ../inc/class-destination-sugarsync.php:22 +msgid "Sugarsync Login" +msgstr "SugarSync Login" -#: ../inc/class-file.php:148 -#, php-format -msgid "Folder %1$s not allowed, please use another folder." -msgstr "Ordner %1$s ist nicht erlaubt, bitte wähle einen anderen." +#: ../inc/class-destination-sugarsync.php:28 +#: ../inc/class-destination-sugarsync. php:47 +#: ../inc/class-destination-dropbox.php:55 +msgid "Authentication" +msgstr "Authentifizierung" -#: ../inc/class-file.php:153 -#, php-format -msgid "Folder %1$s is not in open basedir, please use another folder." -msgstr "" -"Verzeichnis %1$s ist nicht innerhalb von open basedir, bitte benutze ein " -"anderes Verzeichnis." +#: ../inc/class-destination-sugarsync.php:61 +msgid "Sync folder selection" +msgstr "Sync Ordner Auswahl" -#: ../inc/class-file.php:159 -#, php-format -msgid "Cannot create folder: %1$s" -msgstr "Kann keinen Ordner erstellen: %1$s" +#: ../inc/class-destination-sugarsync.php:90 +msgid "Folder in root" +msgstr "Ordner im Wurzelverzeichnis" -#: ../inc/class-file.php:165 -#, php-format -msgid "Folder \"%1$s\" is not writable" -msgstr "Ordner \"%1$s\" ist nicht beschreibbar" +#: ../inc/class-jobtype-dbcheck.php:13 +msgid "DB Check" +msgstr "DB Check" -#: ../inc/class-page-jobs.php:100 -msgid "No Jobs." -msgstr "Keine Aufträge." +#: ../inc/class-jobtype-dbcheck.php:35 ../inc/pro/class-jobtype-dbcheck.php:16 +msgid "Settings for database check" +msgstr "Einstellungen für den Datenbank Check" -#: ../inc/class-page-jobs.php:125 ../inc/class-page-editjob.php:438 -msgid "Job Name" -msgstr "Auftragsname" +#: ../inc/pro/class-jobtype-dbcheck.php:21 +msgid "Check only WordPress Database tables" +msgstr "Teste nur die WordPress Datenbank Tabellen" -#: ../inc/class-page-jobs.php:127 ../inc/pro/class-wizard-job.php:57 .. -#: inc/pro/class-wizard-job.php:438 -msgid "Destinations" -msgstr "Zielordner" +#: ../inc/class-jobtype-dbcheck.php:49 +msgid "Repair" +msgstr "Reparieren" -#: ../inc/class-page-jobs.php:128 -msgid "Next Run" -msgstr "Nächster Durchlauf" +#: ../inc/class-jobtype-dbcheck.php:116 +msgid "Table %1$s is not a MyISAM/InnoDB table. Not checked." +msgstr "Tabelle %1$s ist keine MyISAM/InnoDB Tabelle. Nicht geprüft" -#: ../inc/class-page-jobs.php:129 -msgid "Last Run" -msgstr "Letzter Durchlauf" +#: ../inc/class-jobtype-dbcheck.php:124 ../inc/class-jobtype-dbcheck.php:127 .. +#: /inc/class-jobtype-dbcheck.php:129 +msgid "Result of table check for %1$s is: %2$s" +msgstr "Ergebnis der Tabellenprüfung für %1$s ist: %2$s" -#: ../inc/class-page-jobs.php:175 -msgid "Edit" -msgstr "Bearbeiten" +#: ../inc/class-jobtype-dbcheck.php:135 ../inc/class-jobtype-dbcheck.php:137 .. +#: /inc/class-jobtype-dbcheck.php:139 +msgid "Result of table repair for %1$s is: %2$s" +msgstr "Ergebnis der Tabellenreparatur für %1$s ist: %2$s" -#: ../inc/class-page-jobs.php:176 -msgid "Copy" -msgstr "Kopieren" +#: ../inc/class-jobtype-file.php:15 +msgid "Files" +msgstr "Dateien" -#: ../inc/class-page-jobs.php:181 ../inc/class-page-editjob.php:195 -msgid "Run now" -msgstr "Jetzt starten" +#: ../inc/class-jobtype-wpexp.php:13 +msgid "XML export" +msgstr "XML Export" -#: ../inc/class-page-jobs.php:187 -msgid "Last log" -msgstr "Letztes Log" +#: ../inc/class-page-about.php:532 ../inc/class-jobtype-wpexp.php:14 +msgid "WordPress XML export" +msgstr "WordPress XML Export" -#: ../inc/class-page-jobs.php:249 -msgid "Not needed or set" -msgstr "Nicht gebraucht oder eingestellt" +#: ../inc/class-jobtype-wpexp.php:49 ../inc/pro/class-jobtype-wpexp.php:20 +msgid "All content" +msgstr "Gesamter Inhalt" -#: ../inc/class-page-jobs.php:271 -#, php-format -msgid "Running for: %s seconds" -msgstr "Läuft seit %s Sekunden" +#: ../inc/class-jobtype-wpexp.php:50 ../inc/pro/class-jobtype-wpexp.php:21 +msgid "Posts" +msgstr "Beiträge" -#: ../inc/class-page-jobs.php:278 ../inc/class-page-jobs.php:287 -#, php-format -msgid "Cron: %s" -msgstr "Cron: %s" +#: ../inc/class-jobtype-wpexp.php:51 ../inc/pro/class-jobtype-wpexp.php:22 +msgid "Pages" +msgstr "Seiten" -#: ../inc/class-page-jobs.php:278 -#, php-format -msgid "%1$s at %2$s by WP-Cron" -msgstr "%1$s um %2$s mit WP-Cron" +#: ../inc/class-jobtype-wpplugin.php:14 +msgid "Installed plugins list" +msgstr "Liste der installierten Plugins" -#: ../inc/class-page-jobs.php:287 -#, php-format -msgid "%1$s at %2$s by EasyCron" -msgstr "%1$s um %2$s von EasyCron" +#: ../inc/pro/class-jobtype-wpplugin.php:13 +msgid "Nothing to configure" +msgstr "Nichts zu konfiguieren" -#: ../inc/class-page-jobs.php:293 -msgid "Inactive" -msgstr "Inaktiv" +#: ../inc/class-page-jobs.php:127 ../inc/pro/class-wizard-job.php:57 .. +#: /inc/pro/class-wizard-job.php:438 +msgid "Destinations" +msgstr "Zielordner" -#: ../inc/class-page-jobs.php:315 -#, php-format -msgid "Runtime: %d seconds" -msgstr "Ausführungszeit: %d Sekunden" +#: ../inc/class-page-jobs.php:249 +msgid "Not needed or set" +msgstr "Nicht gebraucht oder eingestellt" -#: ../inc/class-page-jobs.php:319 -msgid "not yet" -msgstr "noch nicht" +#: ../inc/class-page-editjob.php:194 +msgid "Changes for job %s saved." +msgstr "Änderungen für den Auftrag %s gesichert." -#: ../inc/class-page-jobs.php:323 -msgid "Download last backup" -msgstr "Letztes Backup herunterladen" +#: ../inc/class-page-editjob.php:351 +msgid "ATTENTION: Can't calculate cron!" +msgstr "ACHTUNG: Kann cron nicht berechnen!" -#: ../inc/class-page-jobs.php:330 -msgid "Log" -msgstr "Protokoll" +#: ../inc/class-page-settings.php:120 ../inc/class-page-editjob.php:389 +msgid "General" +msgstr "Allgemein" -#: ../inc/class-page-jobs.php:373 -msgid "Copy of" -msgstr "Kopie von" +#: ../inc/class-page-editjob.php:389 +msgid "Schedule" +msgstr "Planen" -#: ../inc/class-page-jobs.php:388 ../inc/class-page-backups.php:368 ../inc/class- -#: page-backups.php:396 ../inc/class-page-editjob.php:35 -msgid "Sorry, you don't have permissions to do that." -msgstr "Sie haben nicht die notwendigen Berechtigungen für diese Aktion." +#: ../inc/class-page-editjob.php:404 +msgid "To: %s" +msgstr "Zu: %s" -#: ../inc/class-page-jobs.php:433 ../inc/class-page-settings.php:432 -#, php-format -msgid "The HTTP response test get an error \"%s\"" -msgstr "Der HTTP Antwort Test bekommt diesen Fehler \"%s\"" +#: ../inc/class-page-editjob.php:457 ../inc/pro/class-wizard-job.php:238 +msgid "Job tasks" +msgstr "Auftragsdetails" -#: ../inc/class-page-jobs.php:437 ../inc/class-page-settings.php:434 -#, php-format -msgid "The HTTP response test get a false http status (%s)" -msgstr "Der HTTP Antwort Test bekommt den falschen http Status (%s)" +#: ../inc/class-page-editjob.php:480 ../inc/class-page-editjob.php:483 .. +#: /inc/pro/class-wizard-job.php:380 ../inc/pro/class-wizard-job.php:383 +msgid "Backup type" +msgstr "Backup Typ" -#: ../inc/class-page-jobs.php:441 -#, php-format -msgid "Not expected HTTP response body: %s" -msgstr "Nicht erwartete HTTP Body: %s" +#: ../inc/pro/class-wizard-job.php:387 +msgid "Sync file by file to destination" +msgstr "Synchronisiere Datei für Datei zum Zielverzeichnis" -#: ../inc/class-page-jobs.php:462 -#, php-format -msgid "Job “%s” has started, but not responded for 10 seconds." -msgstr "Auftrag „%s“ wurde gestartet, hat jedoch seit 10 Sekunden nicht geantwortet." +#: ../inc/class-page-editjob.php:491 ../inc/pro/class-wizard-job.php:391 +msgid "Create a backup archive" +msgstr "Backup erstellen" -#: ../inc/class-page-jobs.php:467 -#, php-format -msgid "Job \"%s\" started." -msgstr "Auftrag \"%s\" wurde gestartet." +#: ../inc/pro/class-wizard-job.php:404 +msgid "PHP Zip functions will be used if available (memory lees). Else PCLZip Class will used." +msgstr "PHP Zip Funktionen wird verwendent, sofern verfügbar (memory lees). Ansosnten wird PCLZip Class verwendet." -#: ../inc/class-page-jobs.php:592 -#, php-format -msgid "%s Jobs" -msgstr "%s Aufträge" +#: ../inc/pro/class-wizard-job.php:406 ../inc/pro/class-wizard-job.php:411 .. +#: /inc/pro/class-wizard-job.php:415 +msgid "Disabled because missing PHP function." +msgstr "Aufgrund fehlender PHP Funktion deaktiviert." -#: ../inc/class-page-jobs.php:592 ../inc/class-adminbar.php:94 -msgid "Add new" -msgstr "Erstellen" +#: ../inc/pro/class-wizard-job.php:409 +msgid "A tared and GZipped archive (fast and memory less)" +msgstr "Ein .tar und .gz Archiv (schnell und schlank)" -#: ../inc/class-page-jobs.php:612 -#, php-format -msgid "Job currently running: %s" -msgstr "Aktueller Auftrag wird bearbeitet: %s" +#: ../inc/pro/class-wizard-job.php:413 +msgid "A tared and BZipped archive (fast and memory less)" +msgstr "Ein .tar und .bz Archiv (schnell und schlank)" -#: ../inc/class-page-jobs.php:613 -msgid "Warnings:" -msgstr "Warnungen:" +#: ../inc/pro/class-wizard-job.php:435 +msgid "Where to store the files" +msgstr "Wo die Dateien abgelegt werden" -#: ../inc/class-page-jobs.php:614 -msgid "Errors:" -msgstr "Fehler:" +#: ../inc/class-page-editjob.php:620 ../inc/class-page-editjob.php:623 +msgid "Start job" +msgstr "Auftrag starten" -#: ../inc/class-page-jobs.php:615 -msgid "Log of running job" -msgstr "Protokoll des laufenden Auftrags" +#: ../inc/class-page-editjob.php:655 +msgid "with a link" +msgstr "mit einem Link" -#: ../inc/class-page-jobs.php:615 -msgid "Display working log" -msgstr "Zeige Auftragslog" +#: ../inc/class-page-editjob.php:669 +msgid "Schedule execution time" +msgstr "Plane Ausführungszeit" -#: ../inc/class-page-jobs.php:617 -msgid "Close working screen" -msgstr "Arbeitsfläche schließen" +#: ../inc/class-page-editjob.php:673 ../inc/class-page-editjob.php:676 +msgid "Scheduler type" +msgstr "Planungstyp" -#: ../inc/class-page-jobs.php:617 -msgid "close" -msgstr "schließen" +#: ../inc/class-page-editjob.php:713 ../inc/class-page-editjob.php:781 .. +#: /inc/pro/class-wizard-job.php:298 +msgid "Scheduler" +msgstr "Planer" -#: ../inc/class-page-jobs.php:784 -msgid "Job completed" -msgstr "Auftrag vollständig" +#: ../inc/class-page-settings.php:501 +msgid "Disabled PHP Functions:" +msgstr "Deaktivierte PHP Funktionen:" -#: ../inc/class-page-jobs.php:786 ../inc/class-job.php:1273 -msgid "ERROR:" -msgstr "FEHLER:" +#: ../inc/class-page-settings.php:506 +msgid "Loaded PHP Extensions:" +msgstr "Geladene PHP Erweiterungen" -#: ../inc/class-page-jobs.php:786 ../inc/class-job.php:1486 -#, php-format -msgid "" -"Job has ended with errors in %s seconds. You must resolve the errors for " -"correct execution." -msgstr "" -"Job mit Fehlern beendet in %s Sekunden. Sie müssen die Fehler für eine " -"korrekte Ausführung beheben." +#: ../inc/class-admin.php:402 +msgid "http://marketpress.com" +msgstr "http://marketpress.com" -#: ../inc/class-page-jobs.php:788 ../inc/class-job.php:1264 -msgid "WARNING:" -msgstr "WARNUNG:" +#: ../inc/class-page-settings.php:413 +msgid "Get pro." +msgstr "Pro-Version kaufen" -#: ../inc/class-page-jobs.php:788 -#, php-format -msgid "" -"Job has done with warnings in %s seconds. Please resolve them for correct " -"execution." -msgstr "" -"Auftrag wurde mit Warnungen in %s Sekunden erledigt. Bitte beheben sie diese," -" für eine korrekte Ausführung." +msgid "BackWPup Pro" +msgstr "BackWPup Pro" -#: ../inc/class-page-jobs.php:790 ../inc/class-job.php:1490 -#, php-format -msgid "Job done in %s seconds." -msgstr "Auftrag erledigt in %s Sekunden." +#: ../inc/class-page-settings.php:465 +msgid "Operating System" +msgstr "Betriebssystem" -#: ../inc/class-destination-email.php:38 ../inc/class-destination-email.php:41 .. -#: inc/pro/class-destination-email.php:16 ../inc/pro/class-destination-email.php: -#: 18 -msgid "Email address" -msgstr "E-Mail-Adresse" +#: ../inc/class-page-settings.php:467 +msgid "Current PHP user" +msgstr "Aktueller PHP user" -#: ../inc/class-destination-email.php:43 ../inc/pro/class-destination-email.php:19 -msgid "Email address to which Backups are sent." -msgstr "E-Mail-Adresse, zu der Backups gesendet werden." +#: ../inc/class-page-settings.php:487 +msgid "%s hours" +msgstr "%s Stunden" -#: ../inc/class-destination-email.php:48 ../inc/class-destination-email.php:50 .. -#: inc/pro/class-destination-email.php:24 ../inc/pro/class-destination-email.php: -#: 25 -msgid "Send test email" -msgstr "Test-E-Mail senden" +#: ../inc/pro/class-wizard-job.php:41 +msgid "Job Types" +msgstr "Arbeitsauftrag Typen" -#: ../inc/class-destination-email.php:55 -msgid "Send email settings" -msgstr "Absende-Einstellungen für E-Mails" +#: ../inc/class-page-settings.php:120 +msgid "Network" +msgstr "Netzwerk" -#: ../inc/class-destination-email.php:58 -msgid "Maximum file size" -msgstr "Maximale Dateigröße" +#: ../inc/class-page-settings.php:120 +msgid "API Keys" +msgstr "API-Schlüssel" -#: ../inc/class-destination-email.php:59 -msgid "Maximum file size to be included in an email. 0 = unlimited" -msgstr "Maximale Dateigröße für den E-Mail-Versand. 0 = unbegrenzt" - -#: ../inc/class-destination-email.php:59 -msgid "MB" -msgstr "MB" - -#: ../inc/class-destination-email.php:63 ../inc/class-destination-email.php:64 -msgid "Sender email address" -msgstr "E-Mail-Adresse des Absenders" - -#: ../inc/class-destination-email.php:70 -msgid "Sender name" -msgstr "Absender NAme" - -#: ../inc/class-destination-email.php:71 -msgid "Name of email sender" -msgstr "Name des Absenders" - -#: ../inc/class-destination-email.php:77 -msgid "Sending method" -msgstr "E-Mail-Versandmethode" - -#: ../inc/class-destination-email.php:79 -msgid "" -"- Use site settings: retrieve the email settings of your site.
-PHP " -"mail(): needs more PHP memory" -msgstr "" -"- Verwende Seiteneinstellungen: Rufe die E-Mail-Einstellungen von deiner " -"Seite ab.
-PHP mail():benötigt mehr PHP-Speicher" - -#: ../inc/class-destination-email.php:81 -msgid "Use site settings" -msgstr "Verwende Blogeinstellungen" - -#: ../inc/class-destination-email.php:82 -msgid "PHP: mail()" -msgstr "PHP: mail()" - -#: ../inc/class-destination-email.php:83 -msgid "Sendmail" -msgstr "Sendmail" - -#: ../inc/class-destination-email.php:84 -msgid "SMTP" -msgstr "SMTP" - -#: ../inc/class-destination-email.php:91 -msgid "Sendmail path" -msgstr "Sendmail Pfad" - -#: ../inc/class-destination-email.php:99 -msgid "SMTP host name" -msgstr "SMTP Hostname" - -#: ../inc/class-destination-email.php:110 -msgid "SMTP secure connection" -msgstr "SMTP Sichere Verbindung" - -#: ../inc/class-destination-email.php:115 -msgid "SSL" -msgstr "SSL" - -#: ../inc/class-destination-email.php:116 -msgid "TLS" -msgstr "TLS" +#: ../inc/class-page-backwpup.php:216 ../inc/pro/class-page-wizard.php:358 +msgid "Start wizard" +msgstr "Assistenten starten" -#: ../inc/class-destination-email.php:121 -msgid "SMTP username" -msgstr "SMTP Benutzername" +#: ../inc/pro/class-wizard-job.php:650 +msgid "Create Job" +msgstr "Erstelle Auftrag" -#: ../inc/class-destination-email.php:128 -msgid "SMTP password" -msgstr "SMTP Passwort" +#: ../inc/pro/class-wizard-job.php:55 +msgid "Archive Settings" +msgstr "Archiv Einstellungen" -#: ../inc/class-destination-email.php:204 -#, php-format -msgid "%d. Try to send backup with email …" -msgstr "%d. Versuche, Backup als E-Mail zu senden …" +#: ../inc/pro/class-wizard-job.php:55 +msgid "Settings for the Backup Archive" +msgstr "Einstellungen für das Backup Archiv" -#: ../inc/class-destination-email.php:209 -msgid "Backup archive too big to be sent by email!" -msgstr "Das Backup Archiv ist zu groß zum Senden via E-Mail!" +#: ../inc/pro/class-wizard-job.php:67 ../inc/pro/class-wizard-job.php:292 +msgid "Scheduling" +msgstr "Planung" -#: ../inc/class-destination-email.php:216 -#, php-format -msgid "Sending email to %s…" -msgstr "Sende E-Mail an %s…" +#: ../inc/pro/class-wizard-job.php:293 +msgid "Activate scheduling" +msgstr "Aktive Planung" -#: ../inc/class-destination-email.php:292 -#, php-format -msgid "BackWPup archive from %1$s: %2$s" -msgstr "BackWPup-Archiv vom %1$s: %2$s" +#: ../inc/pro/class-wizard-job.php:398 +msgid "Select a compression type for the backup archive" +msgstr "Wähle einen Kompressions-Typ für das Backup Archiv" -#: ../inc/class-destination-email.php:295 -#, php-format -msgid "Backup archive: %s" -msgstr "Backup Archiv: %s" +#: ../inc/pro/class-wizard-job.php:401 +msgid "Archive compression type" +msgstr "Archiv Kompressions-Typ" -#: ../inc/class-destination-email.php:309 ../inc/class-destination-email.php:431 -msgid "Error while sending email!" -msgstr "Fehler beim Senden der E-Mail" +#: ../inc/pro/class-jobtype-dbdump.php:109 +msgid "Database connection" +msgstr "Datenbank Verbindung" -#: ../inc/class-destination-email.php:315 ../inc/class-destination-email.php:433 -msgid "Email sent." -msgstr "E-Mail gesendet." +#: ../inc/pro/class-jobtype-dbdump.php:113 +msgid "Use WordPress database connection." +msgstr "Nutze WordPress-Datenbankverbindung" -#: ../inc/class-destination-email.php:415 -msgid "BackWPup archive sending TEST Message" -msgstr "BackWPup Archiv TEST Nachricht senden" +#: ../inc/pro/class-settings-apikeys.php:59 +msgid "Dropbox API Keys" +msgstr "Dropbox API Keys" -#: ../inc/class-destination-email.php:418 -msgid "" -"If this message reaches your inbox, sending backup archives via email should " -"work for you." -msgstr "" -"Wenn dich diese Nachricht erreicht, funktioniert das Senden der " -"Sicherungsarchive per E-Mail." +#: ../inc/pro/class-settings-apikeys.php:63 +msgid "Full Dropbox App key:" +msgstr "Voller Dropbox app Key" -#: ../inc/class-help.php:15 -msgid "Plugin Info" -msgstr "Plugin Info" +#: ../inc/pro/class-settings-apikeys.php:71 +msgid "Full Dropbox App secret:" +msgstr "Voller Dropbox App secret:" -#: ../inc/class-help.php:17 -#, php-format -msgctxt "Plugin name and link; Plugin Version" -msgid "" -"%1$s version %2$s. A project by Inpsyde " -"GmbH." -msgstr "" -"%1$s Version %2$s. Ein Projekt von Inpsyde " -"GmbH." +#: ../inc/pro/class-settings-apikeys.php:79 +msgid "Sandbox App key:" +msgstr "Sandbox App key:" -#: ../inc/class-help.php:18 -msgid "" -"BackWPup comes with ABSOLUTELY NO WARRANTY. This is a free software, and you " -"are welcome to redistribute it under certain conditions." -msgstr "" -"BackWPup erhalten Sie OHNE JEDWEDE GARANTIE. Dies ist freie Software " -"(quelloffen, im Sinne von Open Source) und Sie sind eingeladen, sie unter " -"bestimmten Bedingungen weiterzugeben." +#: ../inc/pro/class-settings-apikeys.php:87 +msgid "Sandbox App secret:" +msgstr "Sandbox App secret:" -#: ../inc/class-help.php:21 -msgid "For more information:" -msgstr "Für weitere Informationen:" +#: ../inc/pro/class-settings-apikeys.php:100 +msgid "SugarSync API Keys" +msgstr "SugarSync API Keys" -#: ../inc/class-help.php:23 -msgid "Plugin on wordpress.org" -msgstr "Plugin auf wordpress.org" +#: ../inc/pro/class-settings-apikeys.php:112 +msgid "Private Access Key:" +msgstr "Private Access Key:" -#: ../inc/class-help.php:24 -msgid "https://marketpress.com/news/" -msgstr "https://marketpress.de/news/" +#: ../inc/pro/class-wizard-job.php:675 ../inc/pro/class-wizard-job.php:676 +msgid "Database Backup and XML Export (Daily)" +msgstr "DB Sicherung & XML Export (täglich)" -#: ../inc/class-help.php:24 -msgid "News" -msgstr "Neuigkeiten" +#: ../inc/pro/class-wizard-job.php:718 ../inc/pro/class-wizard-job.php:719 +msgid "Backup all files" +msgstr "Sicherung aller Dateien" -#: ../inc/class-help.php:29 -msgid "Manual" -msgstr "Handbuch" +#: ../inc/class-admin.php:141 ../inc/class-help.php:28 +msgid "Support" +msgstr "Support" -#: ../inc/class-destination-rsc.php:41 -msgid "Rack Space Cloud Keys" -msgstr "Rack Space Cloud Keys" +#: ../inc/class-job.php:1542 +msgid "ERROR" +msgstr "FEHLER" -#: ../inc/class-destination-rsc.php:52 -msgid "API Key" -msgstr "API Key" +#: ../backwpup.php:428 ../inc/class-page-about.php:582 +msgid "Backup to Rackspace Cloud Files" +msgstr "Backup in die Rackspace Cloud" #: ../inc/class-destination-rsc.php:60 msgid "Select region" msgstr "Wähle Region" -#: ../inc/class-destination-rsc.php:64 ../inc/class-destination-rsc.php:66 .. -#: inc/pro/class-destination-rsc.php:30 -msgid "Rackspace Cloud Files Region" -msgstr "Rackspace Cloud Verzeichnis" - #: ../inc/class-destination-rsc.php:67 ../inc/pro/class-destination-rsc.php:31 msgid "Dallas (DFW)" msgstr "Dallas (DFW)" @@ -2745,659 +2237,592 @@ msgstr "Dallas (DFW)" msgid "Chicago (ORD)" msgstr "Chicago (ORD)" -#: ../inc/class-destination-rsc.php:69 ../inc/pro/class-destination-rsc.php:33 -msgid "Sydney (SYD)" -msgstr "Sydney (SYD)" +#: ../inc/class-destination-rsc.php:264 +msgid "Connected to Rackspace cloud files container %s" +msgstr "Verbunden mit Rackspace Cloud Container %s" -#: ../inc/class-destination-rsc.php:70 ../inc/pro/class-destination-rsc.php:34 -msgid "London (LON)" -msgstr "London (LON)" +#: ../inc/class-help.php:24 +msgid "News" +msgstr "Neuigkeiten" -#: ../inc/class-destination-rsc.php:71 ../inc/pro/class-destination-rsc.php:35 -msgid "Northern Virginia (IAD)" -msgstr "Northern Virginia (IAD)" +#: ../inc/class-job.php:647 +msgid "Wrong BackWPup JobID" +msgstr "Falsche BackWPup JobID" -#: ../inc/class-destination-rsc.php:72 ../inc/pro/class-destination-rsc.php:36 -msgid "Hong Kong (HKG)" -msgstr "Hong Kong (HKG)" +#: ../inc/class-job.php:1535 +msgid "SUCCESSFUL" +msgstr "ERFOLGREICH" -#: ../inc/class-destination-rsc.php:155 ../inc/pro/class-destination-rsc.php:105 -#, php-format -msgid "Rackspace Cloud container \"%s\" created." -msgstr "Rackspace Cloud Container\"%s\" erstellt." +#: ../inc/class-job.php:1538 +msgid "WARNING" +msgstr "WARNUNG" -#: ../inc/class-destination-rsc.php:159 ../inc/class-destination-rsc.php:267 .. -#: inc/class-destination-rsc.php:307 ../inc/class-destination-rsc.php:352 .. -#: inc/pro/class-destination-rsc.php:109 ../inc/pro/class-destination-rsc.php: -#: 159 ../inc/pro/class-destination-rsc.php:279 -#, php-format -msgid "Rackspace Cloud API: %s" -msgstr "Rackspace Cloud API: %s" +#: ../inc/class-jobtype-dbdump.php:169 ../inc/pro/class-jobtype-dbdump.php:472 +#: .. /inc/pro/class-jobtype-dbdump.php:784 +msgid "Connected to database %1$s on %2$s" +msgstr "Mit Datenbank %1$s auf %2$s verbunden" -#: ../inc/class-destination-rsc.php:250 -#, php-format -msgid "%d. Trying to send backup file to Rackspace cloud …" -msgstr "%d. Versuche, ein Backup zur Rackspace Cloud zu senden …" +#: ../inc/class-job.php:1453 +msgid "Aborted by user!" +msgstr "Abgebrochen vom Benutzer!" -#: ../inc/class-destination-rsc.php:264 -#, php-format -msgid "Connected to Rackspace cloud files container %s" -msgstr "Verbunden mit Rackspace Cloud Container %s" +#: ../inc/class-destination-s3-v1.php:89 ../inc/class-destination-s3.php:94 .. +#: /inc/pro/class-destination-s3-v1.php:30 +#: ../inc/pro/class-destination-s3.php:32 +msgid "Dream Host Cloud Storage" +msgstr "Dream Host Cloud Storage" -#: ../inc/class-destination-rsc.php:276 -msgid "Upload to Rackspace cloud started …" -msgstr "Upload zur Rackspace Cloud nun gestartet …" +#: ../inc/pro/class-marketpress-documentation.php:175 +msgid "Loading Menu ..." +msgstr "Lade Menü..." -#: ../inc/class-destination-rsc.php:295 -msgid "Backup File transferred to RSC://" -msgstr "Backup Archiv übertragen zu RSC://" +#: ../inc/pro/class-marketpress-documentation.php:236 ../inc/pro/class- +#: marketpress-documentation.php:351 +msgid "Could not connect to remote host. Please try again later." +msgstr "Konnte nicht zum Remote-Host verbinden. Bitte versuche es später noch einmal." -#: ../inc/class-destination-rsc.php:301 -msgid "Cannot transfer backup to Rackspace cloud." -msgstr "Kann das Backup nicht zur Rackspace Cloud transferieren" - -#: ../inc/class-destination-rsc.php:346 -#, php-format -msgid "One file deleted on Rackspace cloud container." -msgid_plural "%d files deleted on Rackspace cloud container." -msgstr[0] "Eine Datei im Rackspace-Container gelöscht" -msgstr[1] "%d Dateien im Rackspace-Container gelöscht" +#: ../inc/pro/class-marketpress-documentation.php:282 ../inc/pro/class- +#: marketpress-documentation.php:290 +msgid "Loading Content ..." +msgstr "Lade Inhalt..." -#: ../inc/class-destination-rsc.php:449 -msgid "Missing username!" -msgstr "Fehlender Benutzername!" +#: ../inc/class-destination-s3-v1.php:84 ../inc/class-destination-s3.php:87 .. +#: /inc/pro/class-destination-s3-v1.php:24 +#: ../inc/pro/class-destination-s3.php:25 +msgid "Amazon S3: Asia Pacific (Singapore)" +msgstr "Amazon S3: Asia Pacific (Singapore)" -#: ../inc/class-destination-rsc.php:451 -msgid "Missing API Key!" -msgstr "API-Schlüssel wird fehlt!" +#: ../inc/class-destination-s3-v1.php:85 ../inc/class-destination-s3.php:88 .. +#: /inc/pro/class-destination-s3-v1.php:25 +#: ../inc/pro/class-destination-s3.php:26 +msgid "Amazon S3: Asia Pacific (Sydney)" +msgstr "Amazon S3: Asia Pacific (Sydney)" -#: ../inc/class-destination-rsc.php:455 -msgid "A container could not be found!" -msgstr "Kein Container gefunden!" +#: ../inc/class-destination-s3-v1.php:86 ../inc/class-destination-s3.php:89 .. +#: /inc/pro/class-destination-s3-v1.php:26 +#: ../inc/pro/class-destination-s3.php:27 +msgid "Amazon S3: South America (Sao Paulo)" +msgstr "Amazon S3: South America (Sao Paulo)" -#: ../inc/class-adminbar.php:55 -msgid "running" -msgstr "läuft" +#: ../inc/class-destination-s3-v1.php:88 +#: ../inc/pro/class-destination-s3-v1.php:28 +msgid "Google Storage (Interoperable Access)" +msgstr "Google Storage (Interoperable Access)" -#: ../inc/class-adminbar.php:71 -msgid "Now Running" -msgstr "Jetzt läuft" +#: ../inc/pro/class-destination-s3-v1.php:29 +msgid "Hosteurope Cloud Storage" +msgstr "Hosteurope Cloud Storage" -#: ../inc/class-adminbar.php:77 -msgid "Abort!" -msgstr "Abbrechen!" +#: ../inc/pro/class-destination-s3-v1.php:39 +#: ../inc/pro/class-destination-s3.php: 41 +#: ../inc/pro/class-destination-glacier.php:167 +msgid "Secret Key:" +msgstr "Secret Key:" -#: ../inc/class-adminbar.php:132 -msgid "Run Now" -msgstr "Jetzt starten" +#: ../inc/pro/class-destination-s3-v1.php:52 +#: ../inc/pro/class-destination-s3.php:54 +msgid "New Bucket:" +msgstr "Neues Bucket: " -#: ../inc/class-page-settings.php:60 -msgid "Settings reset to default" -msgstr "Die Einstellungen wurden zurückgesetzt." +#: ../inc/class-destination-s3-v1.php:102 ../inc/class-destination-s3.php:107 +msgid "S3 Access Keys" +msgstr "S3 Access Keys" -#: ../inc/class-page-settings.php:107 -msgid "Settings saved" -msgstr "Einstellungen gespeichert" +#: ../inc/class-destination-s3-v1.php:113 ../inc/class-destination-s3.php:118 +#: .. /inc/pro/class-destination-glacier.php:59 +msgid "Secret Key" +msgstr "Secret Key" -#: ../inc/class-page-settings.php:118 -#, php-format -msgid "%s Settings" -msgstr "%s Einstellungen" +#: ../inc/class-destination-s3-v1.php:121 ../inc/class-destination-s3.php:126 +msgid "S3 Bucket" +msgstr "S3 Bucket" -#: ../inc/class-page-settings.php:120 ../inc/class-page-editjob.php:389 -msgid "General" -msgstr "Allgemein" +#: ../inc/class-destination-s3-v1.php:125 ../inc/class-destination-s3.php:130 +msgid "Bucket selection" +msgstr "Bucket Auswahl" -#: ../inc/class-page-settings.php:120 -msgid "Network" -msgstr "Netzwerk" +#: ../inc/class-destination-s3-v1.php:179 ../inc/class-destination-s3.php:194 +msgid "Reduced Redundancy" +msgstr "Reduzierte Redundanz" -#: ../inc/class-page-settings.php:120 -msgid "API Keys" -msgstr "API-Schlüssel" +#: ../inc/class-destination-s3.php:265 ../inc/pro/class-destination-s3.php:137 +msgid " %s is not a valid bucket name." +msgstr "%s ist kein gültiger Bucket Name" -#: ../inc/class-page-settings.php:120 -msgid "Information" -msgstr "Informationen" +#: ../inc/class-page-about.php:672 +msgid "Premium support" +msgstr "Premium-Support" -#: ../inc/class-page-settings.php:137 -msgid "Display Settings" -msgstr "Einstellungen anzeigen" +#: ../inc/class-page-about.php:677 +msgid "Dynamically loaded documentation" +msgstr "Integration einer dynamischen Dokumentation" -#: ../inc/class-page-settings.php:138 -msgid "Do you want to see BackWPup in the WordPress admin bar?" -msgstr "Möchten Sie BackWPup-Menüpunkte in der WordPress-Adminbar sehen?" +#: ../inc/class-page-about.php:682 +msgid "Automatic update from MarketPress" +msgstr "Automatische Aktualisierung durch MarketPress" -#: ../inc/class-page-settings.php:141 -msgid "Admin bar" -msgstr "Adminbar" +#: ../inc/class-page-about.php:689 +msgid "GET PRO" +msgstr "GET PRO" -#: ../inc/class-page-settings.php:144 -msgid "Admin Bar" -msgstr "Adminbar" +#: ../inc/class-page-backups.php:177 +msgid "No files could be found. (List will be generated during next backup.)" +msgstr "Keine Dateien gefunden. (Liste wird beim nächsten Backup generiert.)" -#: ../inc/class-page-settings.php:149 -msgid "Show BackWPup links in admin bar." -msgstr "BackWPup-Links in der Adminbar anzeigen." +#: ../inc/class-page-backups.php:223 +msgid "Change destination" +msgstr "Ziel ändern" -#: ../inc/class-page-settings.php:154 ../inc/class-page-settings.php:157 -msgid "Folder sizes" -msgstr "Verzeichnisgrößen" +#: ../inc/class-page-logs.php:159 ../inc/class-page-backwpup.php:291 +#: ../inc/class- page-backwpup.php:364 ../inc/class-page-jobs.php:313 +#: ../inc/class-page-backups. php:352 +msgid "%1$s at %2$s" +msgstr "%1$s um %2$s" -#: ../inc/class-page-settings.php:162 -msgid "" -"Display folder sizes in the files tab when editing a job. (Might increase " -"loading time of files tab.)" -msgstr "" -"Ordnergrößen im Tab Dateien anzeigen, wenn ein Auftrag bearbeitet wird. " -"(Kann die Ladezeit des Tab erhöhen.)" +#: ../inc/class-page-jobs.php:388 ../inc/class-page-backups.php:368 +#: ../inc/class- page-backups.php:396 ../inc/class-page-editjob.php:35 +msgid "Sorry, you don't have permissions to do that." +msgstr "Sie haben nicht die notwendigen Berechtigungen für diese Aktion." -#: ../inc/class-page-settings.php:167 -msgid "Security" -msgstr "Sicherheit" +#: ../inc/class-page-backups.php:466 +msgid "%s Manage Backup Archives" +msgstr "%s Sicherungsarchive verwalten" -#: ../inc/class-page-settings.php:168 -msgid "Security option for BackWPup" -msgstr "Sicherheitseinstellungen für BackWPup" +#: ../inc/class-page-backwpup.php:67 +msgid "%s Dashboard" +msgstr "%s Dashboard" -#: ../inc/class-page-settings.php:171 ../inc/class-page-settings.php:174 -msgid "Protect folders" -msgstr "Ordner schützen" +#: ../inc/class-page-backwpup.php:96 +msgid "First Steps" +msgstr "Erste Schritte" -#: ../inc/class-page-settings.php:179 -msgid "" -"Protect BackWPup folders ( Temp, Log and Backups ) with ." -"htaccess and index.php" -msgstr "" -"Schütze BackWPup-Verzeichnis (Temp, Log und Backups) mit den Dateien ." -"htaccess und index.php" +#: ../inc/class-page-backwpup.php:103 +msgid "Check the installation" +msgstr "Überprüfe die Installation" -#: ../inc/class-page-settings.php:192 -msgid "" -"Every time BackWPup runs a backup job, a log file is being generated. Choose " -"where to store your log files and how many of them." -msgstr "" -"Jedes Mal, wenn BackWPup einen Auftrag ausführt, wird eine Protokolldatei " -"erzeugt. Wählen Sie aus, wo und wie viele dieser Protokolldateien Sie " -"speichern möchten." +#: ../inc/class-page-backwpup.php:107 +msgid "Check the job log" +msgstr "Logs des Auftrages prüfen" -#: ../inc/class-page-settings.php:195 -msgid "Log file folder" -msgstr "Protokolldateien-Ordner" +#: ../inc/class-page-backwpup.php:115 +msgid "One click backup" +msgstr "Ein-Klick-Backup" -#: ../inc/class-page-settings.php:203 -msgid "Maximum number of log files in folder" -msgstr "Anzahl der Dateien, die im Ordner behalten werden" +#: ../inc/class-page-backwpup.php:117 +msgid "Generate a database backup of WordPress tables and download it right away!" +msgstr "Generieren Sie ein Datenbank-Backup der WordPress-Tabellen und laden Sie es gleich herunter!" -#: ../inc/class-page-settings.php:206 -msgid "Oldest files will be deleted first." -msgstr "(Älteste Dateien werden zuerst gelöscht.)" +#: ../inc/class-page-backwpup.php:117 +msgid "Download database backup" +msgstr "Datenbank-Backup herunterladen" -#: ../inc/class-page-settings.php:211 ../inc/class-page-settings.php:214 -msgid "Compression" -msgstr "Komprimierung" +#: ../inc/class-page-backwpup.php:350 +msgid "working since %d seconds" +msgstr "in Arbeit seit %d Sek." -#: ../inc/class-page-settings.php:219 -msgid "Compress log files with GZip." -msgstr "Komprimiere Logdateien mit Gzip." +#: ../inc/class-page-editjob.php:341 +msgid "ATTENTION: Job runs every %d minutes!" +msgstr "ACHTUNG: Auftrag läuft alle %d Minuten!" -#: ../inc/class-page-settings.php:231 -msgid "Normal (translated)" -msgstr "Normal (übersetzt)" +#: ../inc/class-page-editjob.php:347 +msgid "ATTENTION: Job runs every %d hours!" +msgstr "ACHTUNG: Auftrag läuft alle %d Stunden!" -#: ../inc/class-page-settings.php:232 -msgid "Normal (not translated)" -msgstr "Normal (nicht übersetzt)" +#: ../inc/class-page-editjob.php:442 +msgid "Please name this job." +msgstr "Bitte benennen Sie diesen Auftrag." -#: ../inc/class-page-settings.php:233 -msgid "Debug (translated)" -msgstr "Debug (übersetzt)" +#: ../inc/class-page-editjob.php:450 +msgid "Job Tasks" +msgstr "Auftragsdetails" -#: ../inc/class-page-settings.php:234 -msgid "Debug (not translated)" -msgstr "Debug (nicht übersetzt)" +#: ../inc/class-page-editjob.php:454 ../inc/pro/class-wizard-job.php:235 +msgid "This job is a …" +msgstr "Dieser Auftrag ist ein …" -#: ../inc/class-page-settings.php:245 -msgid "There are a couple of general options for backup jobs. Set them here." -msgstr "" -"Es gibt einige allgemeine Optionen für Backup-Aufträge, die Sie hier setzen " -"können." +#: ../inc/class-page-editjob.php:475 +msgid "Backup File Creation" +msgstr "Erstellen der Backup-Datei" -#: ../inc/class-page-settings.php:249 -msgid "Maximum number of retries for job steps" -msgstr "Maximale Anzahl für Neuversuche der Arbeitsschritte" +#: ../inc/class-page-editjob.php:487 +msgid "Synchronize file by file to destination" +msgstr "Synchronisiere Datei für Datei zum Auftragsziel" -#: ../inc/class-page-settings.php:257 -msgid "Maximum script execution time" -msgstr "Maximale Script Ausführungszeit" +#: ../inc/class-page-editjob.php:497 +msgid "Archive name" +msgstr "Archivname" -#: ../inc/class-page-settings.php:260 -msgid "Maximum PHP Script execution time" -msgstr "Maximale PHP-Script Ausführungszeit" +#: ../inc/class-page-editjob.php:503 +msgid "%d = Two digit day of the month, with leading zeros" +msgstr "%d = Zweistelliger Tag des Monats, mit führenden Nullen" -#: ../inc/class-page-settings.php:263 -msgid "" -"Job will restart before hitting maximum execution time. It will not work " -"with CLI and not on every step during execution. If " -"ALTERNATE_WP_CRON has been defined, WordPress Cron will be used." -msgstr "" -"Auftrag wird neu gestartet, bevor die Maximal Execution Time erreicht wird. " -"Es funktioniert nicht in Verbindung mit CLI. Wenn " -"ALTERNATE_WP_CRON definiert wurde, wird der WordPress-Cron " -"verwendet." +#: ../inc/class-page-editjob.php:504 +msgid "%j = Day of the month, without leading zeros" +msgstr "%j = Tag des Monats, ohne führende Nullen" -#: ../inc/class-page-settings.php:265 -msgid "seconds. 0 = disabled." -msgstr "Sekunden. 0 = deaktiviert." +#: ../inc/class-page-editjob.php:505 +msgid "%m = Day of the month, with leading zeros" +msgstr "%m = Tag des Monats, mit führenden Nullen" -#: ../inc/class-page-settings.php:271 ../inc/class-page-settings.php:274 -msgid "Method for creating ZIP-file archives" -msgstr "Methode für das erstellen von ZIP Dateien ist" +#: ../inc/class-page-editjob.php:506 +msgid "%n = Representation of the month (without leading zeros)" +msgstr "%n = Monat als Zahl (ohne führende Nullen)" -#: ../inc/class-page-settings.php:277 -msgid "" -"Auto = Uses PHP class ZipArchive if available; otherwise uses PclZip.
ZipArchive = Uses less memory, but many open files at a time.
PclZip " -"= Uses more memory, but only 2 open files at a time." -msgstr "" -"Auto = Nutzt die PHP-Klasse ZipArchive falls verfügbar; andernfalls wird " -"PclZip genutzt.
ZipArchive = Benötigt weniger Memory, aber viele offene " -"Dateien gleichzeitig.
PclZip = Benötigt mehr Memory, aber nur 2 zur " -"gleichen Zeit offene Dateien." +#: ../inc/class-page-editjob.php:507 +msgid "%Y = Four digit representation for the year" +msgstr "%Y = Vierstellige Jahreszahl" -#: ../inc/class-page-settings.php:278 -msgid "Auto" -msgstr "Auto" +#: ../inc/class-page-editjob.php:508 +msgid "%y = Two digit representation of the year" +msgstr "%y = Zweistellige Jahreszahl" -#: ../inc/class-page-settings.php:279 -msgid "ZipArchive" -msgstr "ZipArchive" +#: ../inc/class-page-editjob.php:509 +msgid "%a = Lowercase ante meridiem (am) and post meridiem (pm)" +msgstr "%a = Kleingeschriebenes ante meridiem (am) und post meridiem (pm)" -#: ../inc/class-page-settings.php:280 -msgid "PclZip" -msgstr "PclZip" +#: ../inc/class-page-editjob.php:510 +msgid "%A = Uppercase ante meridiem (AM) and post meridiem (PM)" +msgstr "%A = Großgeschriebenes ante meridiem (AM) and post meridiem (PM)" -#: ../inc/class-page-settings.php:288 -msgid "Key to start jobs externally with an URL" -msgstr "Schlüssel für den Start eines Auftrags über eine externe URL" +#: ../inc/class-page-editjob.php:511 +msgid "%B = Swatch Internet Time" +msgstr "%B = Swatch Internet Time" -#: ../inc/class-page-settings.php:291 -msgid "" -"empty = deactivated. Will be used to protect job starts from unauthorized " -"person." -msgstr "" -"leer = deaktiviert. Wird verwendet, damit niemand sonst die Auftragsstart-" -"URLs nutzen kann." +#: ../inc/class-page-editjob.php:512 +msgid "%g = Hour in 12-hour format, without leading zeros" +msgstr "%g = Stunde im Zwölfstunden-Format, ohne führende Nullen" -#: ../inc/class-page-settings.php:296 ../inc/class-page-settings.php:299 -msgid "Reduce server load" -msgstr "Reduziere Server-Auslastung" +#: ../inc/class-page-editjob.php:513 +msgid "%G = Hour in 24-hour format, without leading zeros" +msgstr "%G = Stunde im 24-Stunden-Format, ohne führende Nullen" -#: ../inc/class-page-settings.php:302 -msgid "" -"This adds short pauses to the process. Can be used to reduce the CPU load." -"
Disabled = off
minimum = shortest sleep
medium = middle " -"between minimum and maximum
maximum = longest sleep
" -msgstr "" -"Dies fügt kurzen Pausen an den Prozess. Kann verwendet werden, um die CPU-" -"Last zu reduzieren.
Abgeschaltet = aus
Mindest = kürzeste " -"Schlaf
medium = Mitte zwischen Minimum und Maximum
Maximum = " -"längste pausen
" +#: ../inc/class-page-editjob.php:514 +msgid "%h = Hour in 12-hour format, with leading zeros" +msgstr "%h = Stunde im Zwölfstunden-Format, mit führenden Nullen" -#: ../inc/class-page-settings.php:303 -msgid "disabled" -msgstr "deaktiviert" +#: ../inc/class-page-editjob.php:515 +msgid "%H = Hour in 24-hour format, with leading zeros" +msgstr "%H = Stunde im 24-Stunden-Format, mit führenden Nullen" -#: ../inc/class-page-settings.php:304 -msgid "minimum" -msgstr "minimum" +#: ../inc/class-page-editjob.php:516 +msgid "%i = Two digit representation of the minute" +msgstr "%i = Zweistellige Minute" -#: ../inc/class-page-settings.php:305 -msgid "medium" -msgstr "medium" +#: ../inc/class-page-editjob.php:517 +msgid "%s = Two digit representation of the second" +msgstr "%s = Zweistellige Sekunde" -#: ../inc/class-page-settings.php:306 -msgid "maximum" -msgstr "maximum" +#: ../inc/class-page-editjob.php:502 +msgid "Replacement patterns:" +msgstr "Ersetzungsmuster:" -#: ../inc/class-page-settings.php:332 -#, php-format -msgid "Authentication for %s" -msgstr "Authentifizierung für %s" +#: ../inc/class-page-editjob.php:529 ../inc/class-page-editjob.php:532 +msgid "Archive Format" +msgstr "Archiv Format" -#: ../inc/class-page-settings.php:339 ../inc/class-page-settings.php:342 -msgid "Authentication method" -msgstr "Authentifizierungs methode" +#: ../inc/class-page-editjob.php:535 +msgid "PHP Zip functions will be used if available (needs less memory). Otherwise the PCLZip class will be used." +msgstr "PHP-Zip-Funktionen werden verwendet, sofern verfügbar (schneller). Ansonsten wird die Klasse PCLZip verwendet." -#: ../inc/class-page-settings.php:346 -msgid "Basic auth" -msgstr "Basic auth" +#: ../inc/class-page-editjob.php:537 ../inc/class-page-editjob.php:542 .. +#: /inc/class-page-editjob.php:546 +msgid "Disabled due to missing PHP function." +msgstr "Deaktiviert wegen nicht verfügbarer PHP-Funktion." -#: ../inc/class-page-settings.php:347 -msgid "WordPress User" -msgstr "WordPress Benutzer" +#: ../inc/class-page-editjob.php:538 +msgid "A tarballed, not compressed archive (fast and less memory)" +msgstr "Ein TAR-Archiv, nicht komprimiert (schnell und speicherschonend)" -#: ../inc/class-page-settings.php:348 -msgid "Query argument" -msgstr "Query Argument" +#: ../inc/class-page-editjob.php:540 +msgid "A tarballed, GZipped archive (fast and less memory)" +msgstr "Ein TAR-GZ-Archiv (schnell und speicherschonend)" -#: ../inc/class-page-settings.php:355 -msgid "Basic Auth Username:" -msgstr "Basic Auth Benutzername:" +#: ../inc/class-page-editjob.php:544 +msgid "A tarballed, BZipped archive (fast and less memory)" +msgstr "Ein TAR-BZ-Archiv (schnell und speicherschonend)" -#: ../inc/class-page-settings.php:363 -msgid "Basic Auth Password:" -msgstr "Basic Auth Passwort:" +#: ../inc/class-page-editjob.php:552 +msgid "Job Destination" +msgstr "Zielordner des Auftrags" -#: ../inc/class-page-settings.php:370 ../inc/class-page-settings.php:373 -msgid "Select WordPress User" -msgstr "WordPress Benutzer auswählen" +#: ../inc/class-page-editjob.php:556 ../inc/class-page-editjob.php:559 +msgid "Where should your backup file be stored?" +msgstr "Wo soll die Backup-Datei gespeichert werden?" -#: ../inc/class-page-settings.php:389 -msgid "Query arg key=value:" -msgstr "Query Argumente Schlüssel=Wert:" +#: ../inc/class-page-editjob.php:580 +msgid "Log Files" +msgstr "Protokoll-Dateien" -#: ../inc/class-page-settings.php:409 ../inc/class-page-settings.php:410 -msgid "Setting" -msgstr "Einstellung" +#: ../inc/class-page-editjob.php:584 +msgid "Send log to email address" +msgstr "Protokoll-Datei an E-Mail-Adresse senden" -#: ../inc/class-page-settings.php:409 ../inc/class-page-settings.php:410 -msgid "Value" -msgstr "Wert" +#: ../inc/class-page-editjob.php:592 +msgid "Email FROM field" +msgstr "VON-Feld der E-Mail" -#: ../inc/class-page-settings.php:411 -msgid "WordPress version" -msgstr "WordPress-Version" +#: ../inc/class-page-editjob.php:596 +msgid "Email \"From\" field (Name < you@your-email-address.tld >)" +msgstr "\"VON\"-Feld der E-Mail (Name < email@adresse.tld >)" -#: ../inc/class-page-settings.php:413 -msgid "BackWPup version" -msgstr "BackWPup-Version" +#: ../inc/class-page-editjob.php:600 +msgid "Errors only" +msgstr "Nur Fehler" -#: ../inc/class-page-settings.php:413 -msgid "Get pro." -msgstr "Pro-Version kaufen" +#: ../inc/class-page-editjob.php:605 +msgid "Send email with log only when errors occur during job execution." +msgstr "Sende eine E-Mail mit Protokoll nur, wenn während des Auftrags ein Fehler aufgetreten ist." -#: ../inc/class-page-settings.php:415 -msgid "BackWPup Pro version" -msgstr "BackWPup-Pro-Version" +#: ../inc/class-page-editjob.php:616 +msgid "Job Schedule" +msgstr "Auftragsplanung" -#: ../inc/class-page-settings.php:416 -msgid "PHP version" -msgstr "PHP-Version" +#: ../inc/class-page-editjob.php:627 +msgid "manually only" +msgstr "nur manuell" -#: ../inc/class-page-settings.php:417 -msgid "MySQL version" -msgstr "MySQL-Version" +#: ../inc/class-page-editjob.php:631 +msgid "with WordPress cron" +msgstr "mit WordPress Cron" -#: ../inc/class-page-settings.php:420 ../inc/class-page-settings.php:424 -msgid "cURL version" -msgstr "cURL-Version" +#: ../inc/class-page-editjob.php:655 +msgid "Copy the link for an external start. This option has to be activated to make the link work." +msgstr "Kopieren Sie den Link für einen externen Auftragsstart. Diese Option muss erst aktiviert werden, damit der Link funktioniert." -#: ../inc/class-page-settings.php:421 -msgid "cURL SSL version" -msgstr "cURL-SSL-Version" +#: ../inc/class-page-editjob.php:661 +msgid "Start job with CLI" +msgstr "Auftrag per CLI starten" -#: ../inc/class-page-settings.php:424 -msgid "unavailable" -msgstr "unerreichbar" +#: ../inc/class-page-editjob.php:784 +msgid "Minutes:" +msgstr "Minuten:" -#: ../inc/class-page-settings.php:426 -msgid "WP-Cron url:" -msgstr "WP-Cron URL:" +#: ../inc/class-page-jobs.php:615 +msgid "Display working log" +msgstr "Zeige Auftragslog" -#: ../inc/class-page-settings.php:428 -msgid "Server self connect:" -msgstr "Verbindung zum Server selbst:" +#: ../inc/class-admin.php:186 ../inc/class-admin.php:186 +msgid "Add new job" +msgstr "Neuer Auftrag" -#: ../inc/class-page-settings.php:437 ../inc/pro/class-wizard-systemtest.php:183 -#, php-format -msgid "The BackWPup HTTP response header returns a false value: \"%s\"" -msgstr "" -"Der HTTP Response Header in BackWPup gibt einen fehlerhaften Wert zurück: " -"\"%s\"" +#: ../inc/class-page-settings.php:303 +msgid "disabled" +msgstr "deaktiviert" -#: ../inc/class-page-settings.php:440 -msgid "Response Test O.K." -msgstr "Response Test O.K." +#: ../inc/class-page-settings.php:304 +msgid "minimum" +msgstr "minimum" -#: ../inc/class-page-settings.php:445 -msgid "Temp folder:" -msgstr "Temp Verzeichnis:" +#: ../inc/class-page-settings.php:305 +msgid "medium" +msgstr "medium" -#: ../inc/class-page-settings.php:447 -#, php-format -msgid "Temp folder %s doesn't exist." -msgstr "Temp Verzeichnis %s existiert nicht." +#: ../inc/class-destination-email.php:415 +msgid "BackWPup archive sending TEST Message" +msgstr "BackWPup Archiv TEST Nachricht senden" -#: ../inc/class-page-settings.php:449 -#, php-format -msgid "Temporary folder %s is not writable." -msgstr "Temporärer Ordner %s ist nicht beschreibbar." +#: ../inc/class-destination-rsc.php:64 ../inc/class-destination-rsc.php:66 .. +#: /inc/pro/class-destination-rsc.php:30 +msgid "Rackspace Cloud Files Region" +msgstr "Rackspace Cloud Verzeichnis" -#: ../inc/class-page-settings.php:455 -msgid "Log folder:" -msgstr "Protokoll-Ordner:" +#: ../inc/pro/class-wizard-job.php:619 +msgid "Wizard: %1$s" +msgstr "Assistent: %1$s" -#: ../inc/class-page-settings.php:457 -#, php-format -msgid "Logs folder %s not exist." -msgstr "Log Dateien %s Verzeichnis existiert nicht" +#: ../inc/class-job.php:1920 +msgctxt "Folder name" +msgid "Folder %s not exists" +msgstr "Verzeichnis %s existiert nicht" -#: ../inc/class-page-settings.php:459 -#, php-format -msgid "Log folder %s is not writable." -msgstr "Protokoll-Ordner %s ist nicht beschreibbar." +#: ../inc/class-job.php:1925 +msgctxt "Folder name" +msgid "Folder %s not readable" +msgstr "Verzeichnis %s ist nicht lesbar" -#: ../inc/class-page-settings.php:464 -msgid "Server" -msgstr "Server" +#: ../inc/class-job.php:1944 +msgid "Link \"%s\" not following." +msgstr "Link \"%s\" wird nicht gefolgt" -#: ../inc/class-page-settings.php:465 -msgid "Operating System" -msgstr "Betriebssystem" - -#: ../inc/class-page-settings.php:466 -msgid "PHP SAPI" -msgstr "PHP SAPI" +#: ../inc/class-job.php:1970 +msgid "%d. Trying to generate a manifest file …" +msgstr "%d. Versuche eine Manifest-Datei zu generieren …" -#: ../inc/class-page-settings.php:467 -msgid "Current PHP user" -msgstr "Aktueller PHP user" +#: ../inc/class-job.php:2020 +msgid "You may have noticed the manifest.json file in this archive." +msgstr "Du wirst manifest.json in diesem Archiv bemerkt haben." -#: ../inc/class-page-settings.php:468 ../inc/class-page-settings.php:472 .. -#: inc/class-page-settings.php:476 -msgid "On" -msgstr "An" +#: ../inc/class-job.php:2021 +msgid "manifest.json might be needed for later restoring a backup from this archive." +msgstr "manifest.json könnte für das spätere Wiederherstellen des Backups aus diesem Archiv benötigt werden." -#: ../inc/class-page-settings.php:468 ../inc/class-page-settings.php:474 .. -#: inc/class-page-settings.php:478 -msgid "Off" -msgstr "Aus" +#: ../inc/class-job.php:2022 +msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored." +msgstr "Bitte lasse die manifest.json unberührt an ihrem Platz. Du kannst sie ansonsten einfach ignorieren." -#: ../inc/class-page-settings.php:469 -msgid "Safe Mode" -msgstr "Safe Mode" +#: ../inc/class-job.php:2032 +msgid "Added manifest.json file with %1$s to backup file list." +msgstr "manifest.json mit %1$s wurde zur Backup-Datei-Liste hinzugefügt." -#: ../inc/class-page-settings.php:470 -msgid "Maximum execution time" -msgstr "Max. Ausführungszeit" +#: ../inc/class-job.php:2062 +msgid "%d. Trying to create backup archive …" +msgstr "%d. Versuche, Backup zu erstellen …" -#: ../inc/class-page-settings.php:472 ../inc/class-page-settings.php:474 -msgid "Alternative WP Cron" -msgstr "Alternative WP Cron" +#: ../inc/class-job.php:2154 +msgid "Backup archive created." +msgstr "Backup wurde erstellt." -#: ../inc/class-page-settings.php:476 ../inc/class-page-settings.php:478 -msgid "Disabled WP Cron" -msgstr "WP Cron abgeschaltet" +#: ../inc/class-job.php:2171 +msgid "Archive size is %s." +msgstr "Archivgröße ist %s" -#: ../inc/class-page-settings.php:480 ../inc/class-page-settings.php:482 -msgid "CHMOD Dir" -msgstr "CHMOD Verzeichnis" +#: ../inc/class-job.php:2174 +msgid "%1$d Files with %2$s in Archive." +msgstr "%1$d Dateien mit %2$s in Archiven." -#: ../inc/class-page-settings.php:484 -msgid "Server Time" -msgstr "Server Zeit" +#: ../inc/class-jobtype-dbcheck.php:44 +msgid "Check WordPress database tables only" +msgstr "Teste nur die WordPress-Tabellen" -#: ../inc/class-page-settings.php:485 -msgid "Blog Time" -msgstr "Webseite Zeit" +#: ../inc/class-jobtype-dbcheck.php:79 +msgid "%d. Trying to check database …" +msgstr "%d. Versuche, die Datenbank zu prüfen …" -#: ../inc/class-page-settings.php:486 -msgid "Blog Timezone" -msgstr "Webseite Zeitzone" +#: ../inc/class-jobtype-dbcheck.php:111 +msgid "Table %1$s is a view. Not checked." +msgstr "Tabelle %1$s ist ein View. Nicht geprüft." -#: ../inc/class-page-settings.php:487 -msgid "Blog Time offset" -msgstr "Webseite Zeitversetzung" +#: ../inc/class-jobtype-dbdump.php:61 ../inc/pro/class-jobtype-dbdump.php:84 .. +#: /inc/pro/class-jobtype-dbdump.php:105 +msgid "Settings for database backup" +msgstr "Einstellungen für das Datenbank Backup" -#: ../inc/class-page-settings.php:487 -#, php-format -msgid "%s hours" -msgstr "%s Stunden" +#: ../inc/class-jobtype-dbdump.php:65 ../inc/pro/class-jobtype-dbdump.php:151 +msgid "Tables to backup" +msgstr "Tabellen zu sichern" -#: ../inc/class-page-settings.php:488 -msgid "Blog language" -msgstr "Webseiten Sprache" +#: ../inc/class-jobtype-file.php:73 +msgid "Folders to backup" +msgstr "Zu sichernde Verzeichnisse" -#: ../inc/class-page-settings.php:489 -msgid "MySQL Client encoding" -msgstr "MySQL Client Encoding" +#: ../inc/class-jobtype-file.php:88 ../inc/class-jobtype-file.php:125 .. +#: /inc/class-jobtype-file.php:162 ../inc/class-jobtype-file.php:199 +#: ../inc/class- jobtype-file.php:236 +msgid "Path as set by user (symlink?): %s" +msgstr "Pfad, wie vom User gesetzt (symlink?): %s" -#: ../inc/class-page-settings.php:492 -msgid "Blog charset" -msgstr "Webseiten Charset" +#: ../inc/class-jobtype-file.php:188 +msgid "Backup themes" +msgstr "Themes sichern" -#: ../inc/class-page-settings.php:493 -msgid "PHP Memory limit" -msgstr "PHP Memory Limit" +#: ../inc/class-jobtype-file.php:225 ../inc/pro/class-wizard-job.php:703 .. +#: /inc/pro/class-wizard-job.php:704 +msgid "Backup uploads folder" +msgstr "Uploads Verzeichnis sichern" -#: ../inc/class-page-settings.php:494 -msgid "WP memory limit" -msgstr "WordPress-Memory-Limit" +#: ../inc/class-jobtype-file.php:262 +msgid "Extra folders to backup" +msgstr "Weitere Verzeichnisse sichern" -#: ../inc/class-page-settings.php:495 -msgid "WP maximum memory limit" -msgstr "Maximales WordPress-Memory-Limit" +#: ../inc/class-jobtype-file.php:264 +msgid "Separate folder names with a line-break or a comma. Folders must be set with their absolute path!" +msgstr "Trenne Verzeichnisnamen mit einer neuen Zeile oder einem Komma. Die Verzeichnisse müssen mit ihrem absoluten Pfad angegeben werden!" -#: ../inc/class-page-settings.php:496 -msgid "Memory in use" -msgstr "Speicher in Benutzung" +#: ../inc/class-jobtype-file.php:269 +msgid "Exclude from backup" +msgstr "Nicht mitsichern" -#: ../inc/class-page-settings.php:501 -msgid "Disabled PHP Functions:" -msgstr "Deaktivierte PHP Funktionen:" +#: ../inc/class-jobtype-file.php:273 +msgid "Thumbnails in uploads" +msgstr "Thumbnails in uploads" -#: ../inc/class-page-settings.php:506 -msgid "Loaded PHP Extensions:" -msgstr "Geladene PHP Erweiterungen" +#: ../inc/class-jobtype-file.php:277 +msgid "Don't backup thumbnails from the site's uploads folder." +msgstr "Thumbnails im Uploads-Verzeichnis der Website nicht mitsichern." -#: ../inc/class-page-settings.php:518 -msgid "Save Changes" -msgstr "Änderungen speichern" +#: ../inc/class-jobtype-file.php:275 +msgid "All images with -???x???. will be excluded. Use a plugin like Regenerate Thumbnails to rebuild them after a restore." +msgstr "Alle Bilder mit -???x??? im Dateinamen werden nicht mitgesichert. Benutze ein Plugin wir Regenerate Thumbnails um die Thumbnails wiederherzustellen." -#: ../inc/class-page-settings.php:520 -msgid "Reset all settings to default" -msgstr "Alle Einstellungen zurücksetzen" +#: ../inc/class-jobtype-file.php:281 +msgid "Exclude files/folders from backup" +msgstr "Datein/Verzeichnisse nicht mitsichern." -#: ../inc/class-page-backups.php:177 -msgid "No files could be found. (List will be generated during next backup.)" -msgstr "Keine Dateien gefunden. (Liste wird beim nächsten Backup generiert.)" +#: ../inc/class-jobtype-file.php:283 +msgid "Separate file / folder name parts with a line-break or a comma. For example /logs/,.log,.tmp" +msgstr "Trenne Dateien / Verzeichnisse mit einer neuen Zeile oder einem Komma. Zum Beispiel: /logs/,.log,.tmp" -#: ../inc/class-page-backups.php:223 -msgid "Change destination" -msgstr "Ziel ändern" +#: ../inc/class-jobtype-file.php:292 +msgid "Include special files" +msgstr "Spezielle Dateien einschließen" -#: ../inc/class-page-backups.php:263 -msgid "File" -msgstr "Datei" +#: ../inc/class-jobtype-file.php:296 +msgid "Backup wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico from root." +msgstr "Sichere wp-config.php, robots.txt, .htaccess, .htpasswd und favicon.ico vom Root" -#: ../inc/class-page-backups.php:308 -msgid "" -"You are about to delete this backup archive. \n" -" 'Cancel' to stop, 'OK' to delete." -msgstr "" -"Sie sind dabei dieses Backup Archiv zu löschen. \n" -" 'Abbrechen' um zu stoppen, 'OK' um zu löschen." +#: ../inc/class-jobtype-file.php:294 +msgid "If the WordPress root folder is not included in this backup job, check this option to additionally include wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico into the backup. Your wp-config.php will be included even if you placed it in the parent directory of your root folder." +msgstr "Sofern das WordPress-Wurzelverzeichnis nicht sowieso im Backup inkludiert ist, aktiviere diese Option, um zusätzlich die Dateien wp-config.php, robots.txt, .htaccess, .htpasswd und favicon.ico mitzusichern. Die wp-config-php-Datei wird in diesem Fall auch dann mitgesichert, wenn sie sich eine Ordner-Ebene höher als WordPress befindet." -#: ../inc/class-page-backups.php:339 -msgid "?" -msgstr "?" +#: ../inc/class-jobtype-file.php:387 +msgid "%d. Trying to make a list of folders to back up …" +msgstr "%d. Versuche, eine Liste der Ordner für das Backup zu erstellen …" -#: ../inc/class-page-backups.php:418 -msgid "Backup Files" -msgstr "Backup-Dateien" +#: ../inc/class-jobtype-wpexp.php:46 +msgid "Items to export" +msgstr "Objekte zum Exportieren" -#: ../inc/class-page-backups.php:466 -#, php-format -msgid "%s Manage Backup Archives" -msgstr "%s Sicherungsarchive verwalten" +#: ../inc/class-jobtype-wpexp.php:69 ../inc/class-jobtype-wpplugin.php:53 +msgid "File compression" +msgstr "Dateikomprimierung" -#: ../inc/class-jobtype-dbcheck.php:13 -msgid "DB Check" -msgstr "DB Check" +#: ../inc/class-jobtype-wpexp.php:422 +msgid "XML WARNING (%s): %s" +msgstr "XML WARNUNG (%s): %s" -#: ../inc/class-jobtype-dbcheck.php:14 -msgid "Check database tables" -msgstr "Datenbank-Tabellen prüfen" +#: ../inc/class-jobtype-wpexp.php:425 +msgid "XML RECOVERABLE (%s): %s" +msgstr "XML RECOVERABLE (%s): %s" -#: ../inc/class-jobtype-dbcheck.php:35 ../inc/pro/class-jobtype-dbcheck.php:16 -msgid "Settings for database check" -msgstr "Einstellungen für den Datenbank Check" +#: ../inc/class-jobtype-wpexp.php:428 +msgid "XML ERROR (%s): %s" +msgstr "XML FEHLER (%s): %s" -#: ../inc/class-jobtype-dbcheck.php:39 -msgid "WordPress tables only" -msgstr "Nur WordPress Tabellen" +#: ../inc/class-jobtype-wpexp.php:438 +msgid "There was an error when reading this WXR file" +msgstr "Fehler beim Lesen der WXR Datei" -#: ../inc/class-jobtype-dbcheck.php:44 -msgid "Check WordPress database tables only" -msgstr "Teste nur die WordPress-Tabellen" +#: ../inc/class-jobtype-wpexp.php:444 ../inc/class-jobtype-wpexp.php:451 +msgid "This does not appear to be a WXR file, missing/invalid WXR version number" +msgstr "Es scheint nicht eine WXR Datei zu sein. Fehlende/ungültige Versionsnummer" -#: ../inc/class-jobtype-dbcheck.php:49 -msgid "Repair" -msgstr "Reparieren" +#: ../inc/class-jobtype-wpexp.php:460 +msgid "WP Export file is a valid WXR file." +msgstr "WP Export-Datei ist eine gültige WXR Datei." -#: ../inc/class-jobtype-dbcheck.php:54 ../inc/pro/class-jobtype-dbcheck.php:25 -msgid "Try to repair defect table" -msgstr "Versuche, definierte Tabellen zu reparieren" +#: ../inc/class-jobtype-wpexp.php:462 +msgid "WP Export file can not checked, because no XML extension loaded with the file can checked." +msgstr "WP Export-Datei kann nicht geprüft werden, da keine XML Erweiterung geladen wurde." -#: ../inc/class-jobtype-dbcheck.php:79 -#, php-format -msgid "%d. Trying to check database …" -msgstr "%d. Versuche, die Datenbank zu prüfen …" +#: ../inc/class-jobtype-wpexp.php:474 ../inc/pro/class-jobtype-dbdump.php:714 +msgid "Compressing file …" +msgstr "Komprimiere Datei …" -#: ../inc/class-jobtype-dbcheck.php:111 -#, php-format -msgid "Table %1$s is a view. Not checked." -msgstr "Tabelle %1$s ist ein View. Nicht geprüft." +#: ../inc/class-jobtype-wpexp.php:500 +msgid "Added XML export \"%1$s\" with %2$s to backup file list." +msgstr "XML Export \"%1$s\" mit %2$s zur Backup-Datei-Liste hinzugefügt" -#: ../inc/class-jobtype-dbcheck.php:116 -#, php-format -msgid "Table %1$s is not a MyISAM/InnoDB table. Not checked." -msgstr "Tabelle %1$s ist keine MyISAM/InnoDB Tabelle. Nicht geprüft" +#: ../inc/class-jobtype-wpplugin.php:93 +msgid "%d. Trying to generate a file with installed plugin names …" +msgstr "%d. Versuche, eine Liste der installierten Plugins zu erstellen …" -#: ../inc/class-jobtype-dbcheck.php:124 ../inc/class-jobtype-dbcheck.php:127 .. -#: inc/class-jobtype-dbcheck.php:129 -#, php-format -msgid "Result of table check for %1$s is: %2$s" -msgstr "Ergebnis der Tabellenprüfung für %1$s ist: %2$s" +#: ../inc/class-jobtype-wpplugin.php:121 +msgid "All plugin information:" +msgstr "Alle Plugin-Informationen" -#: ../inc/class-jobtype-dbcheck.php:135 ../inc/class-jobtype-dbcheck.php:137 .. -#: inc/class-jobtype-dbcheck.php:139 -#, php-format -msgid "Result of table repair for %1$s is: %2$s" -msgstr "Ergebnis der Tabellenreparatur für %1$s ist: %2$s" - -#: ../inc/class-jobtype-dbcheck.php:145 -msgid "Database check done!" -msgstr "Datenbank-Check fertig!" - -#: ../inc/class-jobtype-dbcheck.php:148 -msgid "No tables to check." -msgstr "Keine Tabellen zum checken." - -#: ../inc/class-mysqldump.php:60 -msgid "No MySQLi extension found. Please install it." -msgstr "Keine MySQLi Erweiterung gefunden. Bitte installieren Sie diese" +#: ../inc/class-mysqldump.php:60 +msgid "No MySQLi extension found. Please install it." +msgstr "Keine MySQLi Erweiterung gefunden. Bitte installieren Sie diese" #: ../inc/class-mysqldump.php:98 msgid "Cannot init MySQLi database connection" @@ -3408,1310 +2833,1159 @@ msgid "Setting of MySQLi connection timeout failed" msgstr "Einstellung von der MySQLi Verbindungs-Zeitüberschreitung ist fehlgeschlagen" #: ../inc/class-mysqldump.php:108 ../inc/pro/class-jobtype-dbdump.php:778 -#, php-format msgid "Cannot connect to MySQL database %1$d: %2$s" msgstr "Kann keine Verbindung zur Datenbank %1$d herstellen: %2$s" #: ../inc/class-mysqldump.php:115 -#, php-format msgctxt "Database Charset" msgid "Cannot set DB charset to %s" msgstr "Kann Datenbank-Zeichenkodierung nicht auf %s setzen." -#: ../inc/class-mysqldump.php:143 -msgid "Cannot open SQL backup file" -msgstr "Kann SQL Backup Datei nicht öffnen" - -#: ../inc/class-mysqldump.php:150 ../inc/class-mysqldump.php:161 ../inc/class- -#: mysqldump.php:254 ../inc/class-mysqldump.php:267 ../inc/class-mysqldump.php: -#: 282 ../inc/class-mysqldump.php:295 ../inc/class-mysqldump.php:341 ../inc/class- -#: mysqldump.php:365 ../inc/class-mysqldump.php:403 ../inc/class-mysqldump.php: -#: 460 ../inc/pro/class-jobtype-dbdump.php:790 ../inc/pro/class-jobtype-dbdump. -#: php:804 ../inc/pro/class-jobtype-dbdump.php:852 ../inc/pro/class-jobtype- -#: dbdump.php:871 ../inc/pro/class-jobtype-dbdump.php:914 -#, php-format -msgid "Database error %1$s for query %2$s" -msgstr "Datenbankfehler %1$s für die Abfrage (Query) %2$s" - -#: ../inc/class-mysqldump.php:439 -#, php-format -msgid "Start for table backup is not correctly set: %1$s " -msgstr "Start für den Tabellen Backup ist nicht richtig gesetzt: %1$s " - -#: ../inc/class-mysqldump.php:443 -#, php-format -msgid "Length for table backup is not correctly set: %1$s " -msgstr "Länge des Tabellen Backups ist nicht richtig gesetzt: %1$s " - #: ../inc/class-mysqldump.php:518 msgid "Error while writing file!" msgstr "Fehler beim Schreiben!" -#: ../inc/class-job.php:176 -msgid "Starting job" -msgstr "Auftrag starten" +#: ../inc/class-page-editjob.php:87 ../inc/class-page-editjob.php:444 .. +#: /inc/class-option.php:107 +msgid "New Job" +msgstr "Bitte geben Sie einen Namen ein" -#: ../inc/class-job.php:193 -msgid "Job Start" -msgstr "Auftragsstart" +#: ../inc/class-page-about.php:394 +msgid "%s Welcome" +msgstr "%s Willkommen" -#: ../inc/class-job.php:213 -msgid "Creates manifest file" -msgstr "Erstellt Manifest-Datei" +#: ../inc/class-page-about.php:401 +msgid "Heads up! You have updated from version 2.x" +msgstr "Achtung! Sie haben von Version 2.x aktualisiert" -#: ../inc/class-job.php:235 -msgid "Creates archive" -msgstr "erstellt Archiv" +#: ../inc/class-page-about.php:402 +msgid "Please check your settings after updating from version 2.x:" +msgstr "Bitte prüfen Sie Ihre Einstellungen nach dem Update von Version 2.x." -#: ../inc/class-job.php:274 -msgid "End of Job" -msgstr "Auftragsende" +#: ../inc/class-page-about.php:403 +msgid "Dropbox authentication must be re-entered" +msgstr "Die Drohbox-Authentifizierung muss wiederholt werden." -#: ../inc/class-job.php:291 -#, php-format -msgid "BackWPup log for %1$s from %2$s at %3$s" -msgstr "BackWPup-Protokoll für %1$s von %2$s am %3$s" +#: ../inc/class-page-about.php:404 +msgid "SugarSync authentication must be re-entered" +msgstr "Die SugarSync-Authentifizierung muss wiederholt werden" -#: ../inc/class-job.php:310 -#, php-format -msgctxt "Plugin name; Plugin Version; plugin url" -msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH" -msgstr "[INFO] %1$s %2$s; Ein Projekt der Inpsyde GmbH" +#: ../inc/class-page-about.php:405 +msgid "S3 Settings" +msgstr "S3-Einstellungen" -#: ../inc/class-job.php:312 -#, php-format -msgctxt "WordPress Version; Blog url" -msgid "[INFO] WordPress %1$s on %2$s" -msgstr "[INFO] WordPress %1$s auf %2$s" +#: ../inc/class-page-about.php:406 +msgid "Google Storage is now a part of S3 service settings" +msgstr "Google Storage ist jetzt Teil der S3-Einstellungen" -#: ../inc/class-job.php:318 -#, php-format -msgid "[INFO] BackWPup job: %1$s" -msgstr "[INFO] BackWPup Auftrag: %1$s" +#: ../inc/class-page-about.php:407 +msgid "All your passwords" +msgstr "All Ihre Passwörter" -#: ../inc/class-job.php:339 ../inc/class-job.php:351 -#, php-format -msgid "[INFO] Cron: %s; Next: %s " -msgstr "[INFO] Cron: %s; Nächster: %s " +#: ../inc/class-page-about.php:416 +msgid "Welcome to BackWPup Pro" +msgstr "Willkommen zu BackWPup Pro" -#: ../inc/class-job.php:343 -msgid "[INFO] BackWPup job start with link is active" -msgstr "[INFO] BackWPup Auftragsstart mit aktivem Link gestartet" +#: ../inc/class-page-about.php:446 +msgid "Please activate your license" +msgstr "Bitte aktivieren Sie Ihre Lizenz." -#: ../inc/class-job.php:355 -msgid "[INFO] BackWPup no automatic job start configured" -msgstr "[INFO] BackWPup kein automatischer Auftragsstart konfiguriert" +#: ../inc/class-page-about.php:447 +msgid "Please go to your plugin page and active the license to have the autoupdates enabled." +msgstr "Bitte gehen Sie auf die Plugin-Seite, und aktivieren Sie die Lizenz, um automatische Aktualisierungen zu aktivieren." -#: ../inc/class-job.php:359 -msgid "[INFO] BackWPup job started from wp-cron" -msgstr "[INFO] BackWPup-Auftrag wurde per wp-cron gestartet" +#: ../inc/class-page-about.php:456 +msgid "Save your database" +msgstr "Sichern Sie Ihre Datenbank" -#: ../inc/class-job.php:361 -msgid "[INFO] BackWPup job started manually" -msgstr "[INFO] BackWPup-Auftrag wurde manuell gestartet" +#: ../inc/class-page-about.php:459 +msgid "Save your database regularly" +msgstr "Sichern Sie Ihre Datenbank regelmäßig" -#: ../inc/class-job.php:363 -msgid "[INFO] BackWPup job started from external url" -msgstr "[INFO] BackWPup Auftrag wurde von externer URL gestartet" +#: ../inc/class-page-about.php:460 +msgid "With BackWPup you can schedule the database backup to run automatically. With a single backup file you can restore your database. You should set up a backup job, so you will never forget it. There is also an option to repair and optimize the database after each backup." +msgstr "Mit BackWPup können Sie automatische Datenbank-Backups planen. Mit einer einzigen Backup-Datei können Sie Ihre Datenbank wiederherstellen. Sie sollten einen Backup-Auftrag einrichten, damit Sie es nie mehr vergessen. Es gibt auch eine Option, um die Datenbank anschließend zu reparieren und zu optimieren." -#: ../inc/class-job.php:365 -msgid "[INFO] BackWPup job started form commandline interface" -msgstr "[INFO] BackWPup-Auftrag per Kommandozeile gestartet" +#: ../inc/class-page-about.php:465 ../inc/class-page-about.php:469 +msgid "WordPress XML Export" +msgstr "WordPress-XML-Export" -#: ../inc/class-job.php:374 -msgid "[INFO] PHP ver.:" -msgstr "[INFO] PHP ver.:" +#: ../inc/class-page-about.php:466 +msgid "You can choose the built-in WordPress export format in addition or exclusive to save your data. This works in automated backups too of course. The advantage is: you can import these files into a blog with the regular WordPress importer." +msgstr "Sie können das interne WordPress-Export-Format zusätzlich oder ausschließlich wählen, um Ihre Daten zu sichern. Das funktioniert natürlich auch in automatischen Backups. Der Vorteil: Sie können dieses Format mit dem normalen WordPress-Importer-Plugin importieren." -#: ../inc/class-job.php:375 -#, php-format -msgid "[INFO] Maximum PHP script execution time is %1$d seconds" -msgstr "[INFO] Maximum PHP script execution time ist %1$d Sekunden" +#: ../inc/class-page-about.php:474 +msgid "Save all data from the webserver" +msgstr "Sichern Sie alle Daten vom Webserver" -#: ../inc/class-job.php:379 -#, php-format -msgid "[INFO] Script restart time is configured to %1$d seconds" -msgstr "[INFO] Skript-Restart-Zeit ist auf %1$d Sekunden konfiguriert" +#: ../inc/class-page-about.php:477 +msgid "Save all files" +msgstr "Sichern Sie alle Dateien" -#: ../inc/class-job.php:382 -#, php-format -msgid "[INFO] MySQL ver.: %s" -msgstr "[INFO] MySQL ver.: %s" +#: ../inc/class-page-about.php:478 +msgid "You can backup all your attachments, also all system files, plugins and themes in a single file. You can create a job to update a backup copy of your file system only when files are changed." +msgstr "Sie können all Ihre Anhänge sichern, ebenso alle Systemdateien, Plugins und Themes – in einer einzigen Datei. Sie können einen Auftrag erstellen, um die Sicherungskopie nur dann zu aktualisieren, wenn sich tatsächlich eine Datei geändert hat." -#: ../inc/class-job.php:384 -#, php-format -msgid "[INFO] Web Server: %s" -msgstr "[INFO] Webserver: %s" +#: ../inc/class-page-about.php:483 ../inc/class-page-about.php:487 +msgid "Security!" +msgstr "Sicherheit!" -#: ../inc/class-job.php:387 -#, php-format -msgid "[INFO] curl ver.: %1$s; %2$s" -msgstr "[INFO] curl ver.: %1$s; %2$s" +#: ../inc/class-page-about.php:484 +msgid "By default everything is encrypted: connections to external services, local files and access to directories." +msgstr "In der Grundeinstellung ist alles verschlüsselt: Verbindungen zu externen Diensten, lokale Dateien und der Zugriff auf die Verzeichnisse." -#: ../inc/class-job.php:389 -#, php-format -msgid "[INFO] Temp folder is: %s" -msgstr "[INFO] Temp Ordner ist: %s" +#: ../inc/class-page-about.php:492 ../inc/class-page-about.php:495 +msgid "Cloud Support" +msgstr "Cloud-Support" -#: ../inc/class-job.php:396 -#, php-format -msgid "[INFO] Logfile is: %s" -msgstr "[INFO] Logfile ist: %s" +#: ../inc/class-page-about.php:496 +msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant." +msgstr "BackWPup unterstützt mehrere Cloud-Dienste parallel. Damit wird sichergestellt, dass Sie redundante Backups anlegen können." -#: ../inc/class-job.php:403 -#, php-format -msgid "[INFO] Backup file is: %s" -msgstr "[INFO] Backup Datei ist: %s" +#: ../inc/class-page-about.php:504 +msgid "Features / differences between Free and Pro" +msgstr "Features / Unterschiede zwischen Free und Pro" -#: ../inc/class-job.php:405 -#, php-format -msgid "[INFO] Backup type is: %s" -msgstr "[INFO] Backup Typ ist: %s" +#: ../inc/class-page-about.php:507 +msgid "Features" +msgstr "Features" -#: ../inc/class-job.php:413 -msgid "Could not write log file" -msgstr "Kann nicht in die Log-Datei schreiben" +#: ../inc/class-page-about.php:508 +msgid "FREE" +msgstr "FREE" -#: ../inc/class-job.php:425 -msgid "No destination correctly defined for backup! Please correct job settings." -msgstr "" -"Es wurde kein korrektes Backupziel definiert! Bitte überprüfe die " -"Auftragseinstellungen." +#: ../inc/class-page-about.php:509 +msgid "PRO" +msgstr "PRO" -#: ../inc/class-job.php:647 -msgid "Wrong BackWPup JobID" -msgstr "Falsche BackWPup JobID" +#: ../inc/class-page-about.php:512 +msgid "Complete database backup" +msgstr "Vollständige Datenbanksicherung" -#: ../inc/class-job.php:660 -msgid "A BackWPup job is already running" -msgstr "Es läuft bereits ein BackWPup-Auftrag" +#: ../inc/class-page-about.php:517 +msgid "Complete file backup" +msgstr "Vollständige Dateisicherung" -#: ../inc/class-job.php:752 -msgid "Job restarts due to inactivity for more than 5 minutes." -msgstr "Auftrag durch Inaktivität von mehr als 5 Minuten neu gestartet" +#: ../inc/class-page-about.php:522 +msgid "Database check" +msgstr "Datenbanküberprüfung" -#: ../inc/class-job.php:877 -msgid "Step aborted: too many attempts!" -msgstr "Schritt abgebrochen durch zu viele Versuche!" +#: ../inc/class-page-about.php:527 +msgid "Data compression" +msgstr "Datenbankoptimierung" -#: ../inc/class-job.php:968 -#, php-format -msgid "Restart after %1$d seconds." -msgstr "Neustart nach %1$s Sekunden." +#: ../inc/class-page-about.php:537 +msgid "List of installed plugins" +msgstr "Liste installierter Plugins" -#: ../inc/class-job.php:1168 -#, php-format -msgid "Signal \"%s\" is sent to script!" -msgstr "Signal \"%s\" wurde an das Script geschickt!" +#: ../inc/class-page-about.php:542 +msgid "Backup archives management" +msgstr "Verwaltung der Backup-Archive" -#: ../inc/class-job.php:1183 ../inc/class-job.php:1196 -#, php-format -msgid "System: %s" -msgstr "System: %s" +#: ../inc/class-page-about.php:547 +msgid "Log file management" +msgstr "Verwaltung der Log-Dateien" -#: ../inc/class-job.php:1211 -#, php-format -msgid "Exception caught in %1$s: %2$s" -msgstr "Ausnahme eingefangen in %1$s: %2$s" +#: ../inc/class-page-about.php:552 +msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI" +msgstr "Start der Aufträge über WP-Cron, URL, System, Backend, WP-CLI" -#: ../inc/class-job.php:1277 -msgid "DEPRECATED:" -msgstr "ABGELEHNT:" +#: ../inc/class-page-about.php:557 +msgid "Log report via email" +msgstr "Log-Report via E-Mail" -#: ../inc/class-job.php:1280 -msgid "STRICT NOTICE:" -msgstr "EXAKTE NOTIZ:" +#: ../inc/class-page-about.php:562 +msgid "Backup to Microsoft Azure" +msgstr "Backup zu Microsoft Azure" -#: ../inc/class-job.php:1285 -msgid "RECOVERABLE ERROR:" -msgstr "WIEDERHERSTELLUNGS FEHLER:" +#: ../inc/class-page-about.php:572 +msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)" +msgstr "Backup zu S3-Dienstleistern (Amazon, Google Storage, Hosteurope, usw)" -#: ../inc/class-job.php:1435 -msgid "Cannot write progress to working file. Job will be aborted." -msgstr "" -"Kann Fortschritt nicht in die Arbeitsdatei schreiben. Auftrag wird " -"abgebrochen." +#: ../inc/class-page-about.php:587 +msgid "Backup to FTP server" +msgstr "Backup auf FTP-Server" -#: ../inc/class-job.php:1453 -msgid "Aborted by user!" -msgstr "Abgebrochen vom Benutzer!" +#: ../inc/class-page-about.php:592 +msgid "Backup to your web space" +msgstr "Backup auf eigenem Webspace" -#: ../inc/class-job.php:1480 -#, php-format -msgid "One old log deleted" -msgid_plural "%d old logs deleted" -msgstr[0] "Eine alte Log-Datei gelöscht" -msgstr[1] "%d alte Log-Dateien gelöscht" +#: ../inc/class-page-about.php:612 +msgid "Custom API keys for DropBox and SugarSync" +msgstr "Eigene API-Keys für DropBox und SugarSync hinterlegen" -#: ../inc/class-job.php:1488 -#, php-format -msgid "" -"Job finished with warnings in %s seconds. Please resolve them for correct " -"execution." -msgstr "" -"Job mit Warnungen beendet in %s Sekunden. Bitte beheben Sie die Warnungen " -"für eine korrekte Ausführung." +#: ../inc/class-page-about.php:617 +msgid "XML database backup as PHPMyAdmin schema" +msgstr "XML-Datenbanksicherung der Datenbank nach PHPMyAdmin-Schema" -#: ../inc/class-job.php:1535 -msgid "SUCCESSFUL" -msgstr "ERFOLGREICH" +#: ../inc/class-page-about.php:622 +msgid "Database backup as mysqldump per command line" +msgstr "Datenbanksicherung mit System-Kommando mysqldump" -#: ../inc/class-job.php:1538 -msgid "WARNING" -msgstr "WARNUNG" +#: ../inc/class-page-about.php:627 +msgid "Database backup for additional MySQL databases" +msgstr "Datenbanksicherung weiterer MySQL-Datenbanken" -#: ../inc/class-job.php:1542 -msgid "ERROR" -msgstr "FEHLER" +#: ../inc/class-page-about.php:632 +msgid "Import and export job settings as XML" +msgstr "Auftragseinstellungen als XML ex- und importieren" -#: ../inc/class-job.php:1546 -#, php-format -msgid "[%3$s] BackWPup log %1$s: %2$s" -msgstr "[%3$s] BackWPup Log %1$s: %2$s" +#: ../inc/class-page-about.php:637 +msgid "Wizard for system tests" +msgstr "Assistent zur Ausführung eines Systemtests" -#: ../inc/class-job.php:1920 -#, php-format -msgctxt "Folder name" -msgid "Folder %s not exists" -msgstr "Verzeichnis %s existiert nicht" +#: ../inc/class-page-about.php:642 +msgid "Wizard for scheduled backup jobs" +msgstr "Assistent zur Einrichtung von Sicherungsaufträgen" -#: ../inc/class-job.php:1925 -#, php-format -msgctxt "Folder name" -msgid "Folder %s not readable" -msgstr "Verzeichnis %s ist nicht lesbar" +#: ../inc/class-page-about.php:647 +msgid "Wizard to import settings and backup jobs" +msgstr "Assistent zum Importieren von Einstellungen und Aufträgen" -#: ../inc/class-job.php:1944 -#, php-format -msgid "Link \"%s\" not following." -msgstr "Link \"%s\" wird nicht gefolgt" +#: ../inc/class-page-about.php:652 +msgid "Differential backup of changed directories to Dropbox" +msgstr "Sicherung geänderter Verzeichnisse in einer Dropbox" -#: ../inc/class-job.php:1946 -#, php-format -msgid "File \"%s\" is not readable!" -msgstr "Datei \"%s\" ist nicht lesbar!" +#: ../inc/class-page-about.php:657 +msgid "Differential backup of changed directories to Rackspace Cloud Files" +msgstr "Sicherung geänderter Verzeichnisse nach Rackspace Cloud Files" -#: ../inc/class-job.php:1950 -#, php-format -msgid "" -"File size of “%s” cannot be retrieved. File might be too large and will not " -"be added to queue." -msgstr "" -"Dateigröße von „%s“ kann nicht abgefragt werden. Die Datei könnte zu groß " -"sein und wird nicht zur Warteschlange hinzugefügt." +#: ../inc/class-page-about.php:662 +msgid "Differential backup of changed directories to S3" +msgstr "Sicherung geänderter Verzeichnisse nach S3" -#: ../inc/class-job.php:1970 -#, php-format -msgid "%d. Trying to generate a manifest file …" -msgstr "%d. Versuche eine Manifest-Datei zu generieren …" +#: ../inc/class-page-about.php:667 +msgid "Differential backup of changed directories to MS Azure" +msgstr "Sicherung geänderter Verzeichnisse nach MS Azure" -#: ../inc/class-job.php:2020 -msgid "You may have noticed the manifest.json file in this archive." -msgstr "Du wirst manifest.json in diesem Archiv bemerkt haben." +#: ../inc/class-job.php:355 +msgid "[INFO] BackWPup no automatic job start configured" +msgstr "[INFO] BackWPup kein automatischer Auftragsstart konfiguriert" -#: ../inc/class-job.php:2021 -msgid "manifest.json might be needed for later restoring a backup from this archive." -msgstr "" -"manifest.json könnte für das spätere Wiederherstellen des Backups aus diesem " -"Archiv benötigt werden." +#: ../inc/class-job.php:365 +msgid "[INFO] BackWPup job started form commandline interface" +msgstr "[INFO] BackWPup-Auftrag per Kommandozeile gestartet" -#: ../inc/class-job.php:2022 -msgid "" -"Please leave manifest.json untouched and in place. Otherwise it is safe to " -"be ignored." -msgstr "" -"Bitte lasse die manifest.json unberührt an ihrem Platz. Du kannst sie " -"ansonsten einfach ignorieren." +#: ../inc/class-job.php:379 +msgid "[INFO] Script restart time is configured to %1$d seconds" +msgstr "[INFO] Skript-Restart-Zeit ist auf %1$d Sekunden konfiguriert" -#: ../inc/class-job.php:2032 -#, php-format -msgid "Added manifest.json file with %1$s to backup file list." -msgstr "manifest.json mit %1$s wurde zur Backup-Datei-Liste hinzugefügt." +#: ../inc/class-job.php:396 +msgid "[INFO] Logfile is: %s" +msgstr "[INFO] Logfile ist: %s" -#: ../inc/class-job.php:2062 -#, php-format -msgid "%d. Trying to create backup archive …" -msgstr "%d. Versuche, Backup zu erstellen …" +#: ../inc/class-job.php:425 +msgid "No destination correctly defined for backup! Please correct job settings." +msgstr "Es wurde kein korrektes Backupziel definiert! Bitte überprüfe die Auftragseinstellungen." -#: ../inc/class-job.php:2069 -#, php-format -msgctxt "Archive compression method" -msgid "Compressing files as %s. Please be patient, this may take a moment." -msgstr "Komprimiere Dateien als %s. Bitte habe einen Moment Geduld." +#: ../inc/class-job.php:660 +msgid "A BackWPup job is already running" +msgstr "Es läuft bereits ein BackWPup-Auftrag" -#: ../inc/class-job.php:2076 -msgid "Adding Extra files to Archive" -msgstr "Extra Dateien zum Archive hinzufügen" +#: ../inc/class-job.php:752 +msgid "Job restarts due to inactivity for more than 5 minutes." +msgstr "Auftrag durch Inaktivität von mehr als 5 Minuten neu gestartet" -#: ../inc/class-job.php:2087 ../inc/class-job.php:2145 -msgid "Cannot create backup archive correctly. Aborting creation." -msgstr "Backup-Archiv kann nicht korrekt angelegt werden. Anlegeprozess abgebrochen." +#: ../inc/class-job.php:877 +msgid "Step aborted: too many attempts!" +msgstr "Schritt abgebrochen durch zu viele Versuche!" -#: ../inc/class-job.php:2102 -#, php-format -msgid "Archiving Folder: %s" -msgstr "Archiviere Verzeichnis: %s" +#: ../inc/class-job.php:968 +msgid "Restart after %1$d seconds." +msgstr "Neustart nach %1$s Sekunden." -#: ../inc/class-job.php:2154 -msgid "Backup archive created." -msgstr "Backup wurde erstellt." +#: ../inc/class-file.php:148 +msgid "Folder %1$s not allowed, please use another folder." +msgstr "Ordner %1$s ist nicht erlaubt, bitte wähle einen anderen." -#: ../inc/class-job.php:2171 -#, php-format -msgid "Archive size is %s." -msgstr "Archivgröße ist %s" +#: ../inc/class-file.php:159 +msgid "Cannot create folder: %1$s" +msgstr "Kann keinen Ordner erstellen: %1$s" -#: ../inc/class-job.php:2174 -#, php-format -msgid "%1$d Files with %2$s in Archive." -msgstr "%1$d Dateien mit %2$s in Archiven." +#: ../inc/class-file.php:165 +msgid "Folder \"%1$s\" is not writable" +msgstr "Ordner \"%1$s\" ist nicht beschreibbar" -#: ../inc/class-install.php:83 -msgid "BackWPup Admin" -msgstr "BackWPup Admin" +#: ../inc/class-page-jobs.php:786 ../inc/class-job.php:1486 +msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution." +msgstr "Job mit Fehlern beendet in %s Sekunden. Sie müssen die Fehler für eine korrekte Ausführung beheben." -#: ../inc/class-install.php:97 -msgid "BackWPup jobs checker" -msgstr "BackWPup Auftragsprüfung" +#: ../inc/class-job.php:1488 +msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution." +msgstr "Job mit Warnungen beendet in %s Sekunden. Bitte beheben Sie die Warnungen für eine korrekte Ausführung." -#: ../inc/class-install.php:111 -msgid "BackWPup jobs helper" -msgstr "BackWPup Auftragshelfer" +#: ../inc/class-page-jobs.php:790 ../inc/class-job.php:1490 +msgid "Job done in %s seconds." +msgstr "Auftrag erledigt in %s Sekunden." -#: ../inc/class-jobtype-wpexp.php:13 -msgid "XML export" -msgstr "XML Export" +#: ../inc/class-create-archive.php:603 +msgid "Folder path \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "Verzeichnis Pfad \"%1$s\" ist zu lang um ihn koreckt zu speichern im %2$s Archiv" -#: ../inc/class-jobtype-wpexp.php:46 -msgid "Items to export" -msgstr "Objekte zum Exportieren" +#: ../inc/class-cron.php:64 +msgid "Aborted, because no progress for one hour!" +msgstr "Abgebrochen, aufgrund keines Fortschrittes innerhalb der letzten Stunde!" -#: ../inc/class-jobtype-wpexp.php:49 ../inc/pro/class-jobtype-wpexp.php:20 -msgid "All content" -msgstr "Gesamter Inhalt" +#: ../inc/class-destination-dropbox.php:251 +#: ../inc/pro/class-destination-dropbox. php:132 +msgid "%s available on your Dropbox" +msgstr "%s verfügbar in deiner Dropbox" -#: ../inc/class-jobtype-wpexp.php:50 ../inc/pro/class-jobtype-wpexp.php:21 -msgid "Posts" -msgstr "Beiträge" +#: ../inc/class-destination-dropbox.php:257 +msgid "Uploading to Dropbox …" +msgstr "Hochladen zur Dropbox hat begonnen …" -#: ../inc/class-jobtype-wpexp.php:51 ../inc/pro/class-jobtype-wpexp.php:22 -msgid "Pages" -msgstr "Seiten" +#: ../inc/class-destination-dropbox.php:326 +msgid "One file deleted from Dropbox" +msgid_plural "%d files deleted on Dropbox" +msgstr[0] "Eine Datei aus der Dropbox gelöscht" +msgstr[1] "%d Dateien aus der Dropbox gelöscht" -#: ../inc/class-jobtype-wpexp.php:61 -msgid "XML Export file name" -msgstr "XML Export Datei Name" +#: ../inc/class-destination-email.php:38 ../inc/class-destination-email.php:41 +#: .. /inc/pro/class-destination-email.php:16 +#: ../inc/pro/class-destination-email.php: 18 +msgid "Email address" +msgstr "E-Mail-Adresse" -#: ../inc/class-jobtype-wpexp.php:69 ../inc/class-jobtype-wpplugin.php:53 -msgid "File compression" -msgstr "Dateikomprimierung" +#: ../inc/class-destination-email.php:43 +#: ../inc/pro/class-destination-email.php:19 +msgid "Email address to which Backups are sent." +msgstr "E-Mail-Adresse, zu der Backups gesendet werden." -#: ../inc/class-jobtype-wpexp.php:79 ../inc/class-jobtype-wpexp.php:81 .. -#: inc/class-jobtype-wpplugin.php:63 ../inc/class-jobtype-wpplugin.php:65 -msgid "BZip2" -msgstr "BZip2" +#: ../inc/class-destination-email.php:48 ../inc/class-destination-email.php:50 +#: .. /inc/pro/class-destination-email.php:24 +#: ../inc/pro/class-destination-email.php: 25 +msgid "Send test email" +msgstr "Test-E-Mail senden" -#: ../inc/class-jobtype-wpexp.php:111 -#, php-format -msgid "%d. Trying to create a WordPress export to XML file …" -msgstr "%d. Versuche, einen WordPress-Export als XML-Datei zu erstellen …" +#: ../inc/class-destination-email.php:55 +msgid "Send email settings" +msgstr "Absende-Einstellungen für E-Mails" -#: ../inc/class-jobtype-wpexp.php:126 -#, php-format -msgid "WP Export: Post type “%s” does not allow export." -msgstr "WP Export: Post-Type „%s“ erlaubt keinen Export." +#: ../inc/class-destination-email.php:58 +msgid "Maximum file size" +msgstr "Maximale Dateigröße" -#: ../inc/class-jobtype-wpexp.php:171 ../inc/class-jobtype-wpexp.php:185 .. -#: inc/class-jobtype-wpexp.php:214 ../inc/class-jobtype-wpexp.php:235 .. -#: inc/class-jobtype-wpexp.php:268 ../inc/class-jobtype-wpexp.php:288 .. -#: inc/class-jobtype-wpexp.php:378 ../inc/class-jobtype-wpexp.php:387 -msgid "WP Export file could not written." -msgstr "WP-Exportdatei konnte nicht geschrieben werden." +#: ../inc/class-destination-email.php:63 ../inc/class-destination-email.php:64 +msgid "Sender email address" +msgstr "E-Mail-Adresse des Absenders" -#: ../inc/class-jobtype-wpexp.php:402 -msgid "Check WP Export file …" -msgstr "Prüfe WP Export-Datei …" +#: ../inc/class-destination-email.php:70 +msgid "Sender name" +msgstr "Absender NAme" -#: ../inc/class-jobtype-wpexp.php:422 -#, php-format -msgid "XML WARNING (%s): %s" -msgstr "XML WARNUNG (%s): %s" +#: ../inc/class-destination-email.php:71 +msgid "Name of email sender" +msgstr "Name des Absenders" -#: ../inc/class-jobtype-wpexp.php:425 -#, php-format -msgid "XML RECOVERABLE (%s): %s" -msgstr "XML RECOVERABLE (%s): %s" +#: ../inc/class-destination-email.php:77 +msgid "Sending method" +msgstr "E-Mail-Versandmethode" -#: ../inc/class-jobtype-wpexp.php:428 -#, php-format -msgid "XML ERROR (%s): %s" -msgstr "XML FEHLER (%s): %s" +#: ../inc/class-destination-email.php:81 +msgid "Use site settings" +msgstr "Verwende Blogeinstellungen" -#: ../inc/class-jobtype-wpexp.php:438 -msgid "There was an error when reading this WXR file" -msgstr "Fehler beim Lesen der WXR Datei" +#: ../inc/class-destination-email.php:315 +#: ../inc/class-destination-email.php:433 +msgid "Email sent." +msgstr "E-Mail gesendet." -#: ../inc/class-jobtype-wpexp.php:444 ../inc/class-jobtype-wpexp.php:451 -msgid "This does not appear to be a WXR file, missing/invalid WXR version number" -msgstr "Es scheint nicht eine WXR Datei zu sein. Fehlende/ungültige Versionsnummer" +#: ../inc/class-destination-folder.php:33 +msgid "Folder to store backups in" +msgstr "Order für Dateien" -#: ../inc/class-jobtype-wpexp.php:460 -msgid "WP Export file is a valid WXR file." -msgstr "WP Export-Datei ist eine gültige WXR Datei." +#: ../inc/class-destination-ftp.php:23 +msgid "FTP server and login" +msgstr "FTP-Server und -Anmeldung" -#: ../inc/class-jobtype-wpexp.php:462 -msgid "" -"WP Export file can not checked, because no XML extension loaded with the " -"file can checked." -msgstr "" -"WP Export-Datei kann nicht geprüft werden, da keine XML Erweiterung geladen " -"wurde." +#: ../inc/class-destination-ftp.php:27 +msgid "FTP server" +msgstr "FTP-Server" -#: ../inc/class-jobtype-wpexp.php:474 ../inc/pro/class-jobtype-dbdump.php:714 -msgid "Compressing file …" -msgstr "Komprimiere Datei …" +#: ../inc/class-destination-ftp.php:68 +msgid "Maximum number of files to keep in folder." +msgstr "Maximale Anzahl von Dateien im Ordner." -#: ../inc/class-jobtype-wpexp.php:481 ../inc/pro/class-jobtype-dbdump.php:721 -msgid "Compressing done." -msgstr "Komprimierung erledigt." +#: ../inc/class-destination-ftp.php:78 +msgid "FTP specific settings" +msgstr "FTP-Einstellungen" -#: ../inc/class-jobtype-wpexp.php:500 -#, php-format -msgid "Added XML export \"%1$s\" with %2$s to backup file list." -msgstr "XML Export \"%1$s\" mit %2$s zur Backup-Datei-Liste hinzugefügt" +#: ../inc/class-destination-ftp.php:90 +msgid "SSL-FTP connection" +msgstr "SSL-FTP-Verbindung" -#: ../inc/class-jobtype-wpplugin.php:13 -msgid "Plugins" -msgstr "Plugins" +#: ../inc/class-destination-ftp.php:94 +msgid "Use explicit SSL-FTP connection." +msgstr "Nutze explizit SSL-FTP Verbindung" -#: ../inc/class-jobtype-wpplugin.php:14 -msgid "Installed plugins list" -msgstr "Liste der installierten Plugins" +#: ../inc/class-destination-ftp.php:99 +msgid "FTP Passive Mode" +msgstr "FTP-Passivmodus" -#: ../inc/class-jobtype-wpplugin.php:45 -msgid "Plugin list file name" -msgstr "Dateiname der Plugin-Liste" +#: ../inc/class-destination-ftp.php:103 +msgid "Use FTP Passive Mode." +msgstr "Nutze FTP-Passivmodus" -#: ../inc/class-jobtype-wpplugin.php:93 -#, php-format -msgid "%d. Trying to generate a file with installed plugin names …" -msgstr "%d. Versuche, eine Liste der installierten Plugins zu erstellen …" +#: ../inc/class-destination-ftp.php:179 +msgid "FTP: Login failure!" +msgstr "FTP: Anmeldung fehlgeschlagen!" -#: ../inc/class-jobtype-wpplugin.php:121 -msgid "All plugin information:" -msgstr "Alle Plugin-Informationen" +#: ../inc/class-destination-ftp.php:203 +msgid "%d. Try to send backup file to an FTP server …" +msgstr "%d. Versuche, Backup an FTP-Server zu senden …" -#: ../inc/class-jobtype-wpplugin.php:123 -#, php-format -msgid "from %s" -msgstr "von %s" +#: ../inc/class-destination-ftp.php:209 +msgid "Connected via explicit SSL-FTP to server: %s" +msgstr "Durch explizite SSL-FTP-Verbindung zum Server verbunden: %s" -#: ../inc/class-jobtype-wpplugin.php:125 -msgid "Active plugins:" -msgstr "Aktive Plugins:" +#: ../inc/class-destination-ftp.php:211 +msgid "Cannot connect via explicit SSL-FTP to server: %s" +msgstr "Kann nicht mit explizit SSL-FTP zum Server verbinden: %s" -#: ../inc/class-jobtype-wpplugin.php:131 -msgid "Inactive plugins:" -msgstr "Inaktive Plugins:" +#: ../inc/class-destination-ftp.php:217 +msgid "PHP function to connect with explicit SSL-FTP to server does not exist!" +msgstr "PHP-Funktion für die Verbindung mit explizit SSL-FTP zum Server existiert nicht!" -#: ../inc/class-jobtype-wpplugin.php:138 ../inc/pro/class-jobtype-dbdump.php:771 -msgid "Can not open target file for writing." -msgstr "Kann die Ziel Datei nicht zum schreiben öffnen." +#: ../inc/class-destination-ftp.php:234 ../inc/class-destination-ftp.php:242 .. +#: /inc/class-destination-ftp.php:258 ../inc/class-destination-ftp.php:305 +msgid "FTP client command: %s" +msgstr "FTP-Client-Befehl: %s" -#: ../inc/class-jobtype-wpplugin.php:145 -#, php-format -msgid "Added plugin list file \"%1$s\" with %2$s to backup file list." -msgstr "Plugin Listendatei \"%1$s\" mit %2$s zur Backup-Datei-Liste hinzugefügt." +#: ../inc/class-destination-ftp.php:236 +msgid "FTP server response: %s" +msgstr "FTP-Server Antwort: %s" -#: ../inc/class-page-editjob.php:87 ../inc/class-page-editjob.php:444 .. -#: inc/class-option.php:107 -msgid "New Job" -msgstr "Bitte geben Sie einen Namen ein" +#: ../inc/class-destination-ftp.php:240 ../inc/class-destination-ftp.php:245 .. +#: /inc/class-destination-ftp.php:248 ../inc/class-destination-ftp.php:261 .. +#: /inc/class-destination-ftp.php:263 ../inc/class-destination-ftp.php:308 .. +#: /inc/class-destination-ftp.php:310 ../inc/class-destination-ftp.php:314 .. +#: /inc/class-destination-ftp.php:316 +msgid "FTP server reply: %s" +msgstr "Antwort des FTP-Servers: %s" -#: ../inc/class-page-editjob.php:88 -#, php-format -msgid "Job with ID %d" -msgstr "Auftrag mit der ID %d" +#: ../inc/class-destination-ftp.php:310 +msgid "Cannot enter passive mode" +msgstr "Starten des passiven Modus’ nicht möglich" -#: ../inc/class-page-editjob.php:194 -#, php-format -msgid "Changes for job %s saved." -msgstr "Änderungen für den Auftrag %s gesichert." +#: ../inc/class-destination-ftp.php:314 +msgid "Entering normal mode" +msgstr "Starte Normalmodus" -#: ../inc/class-page-editjob.php:195 -msgid "Jobs overview" -msgstr "Auftragsübersicht" +#: ../inc/class-destination-ftp.php:316 +msgid "Cannot enter normal mode" +msgstr "Normalmodus kann nicht gestartet werden" -#: ../inc/class-page-editjob.php:332 -msgid "Working as Cron schedule:" -msgstr "Als Cron-Job ausführen:" +#: ../inc/class-destination-ftp.php:320 +msgid "Starting upload to FTP  …" +msgstr "Hochladen ins FTP-Verzeichnis hat begonnen …" -#: ../inc/class-page-editjob.php:341 -#, php-format -msgid "ATTENTION: Job runs every %d minutes!" -msgstr "ACHTUNG: Auftrag läuft alle %d Minuten!" +#: ../inc/class-destination-ftp.php:332 +msgid "Cannot transfer backup to FTP server!" +msgstr "Backup kann nicht zum FTP-Server übertragen werden!" -#: ../inc/class-page-editjob.php:347 -#, php-format -msgid "ATTENTION: Job runs every %d hours!" -msgstr "ACHTUNG: Auftrag läuft alle %d Stunden!" +#: ../inc/class-destination-ftp.php:391 +msgid "One file deleted on FTP server" +msgid_plural "%d files deleted on FTP server" +msgstr[0] "Eine Datei vom FTP-Server gelöscht" +msgstr[1] "%d Dateien vom FTP-Server gelöscht" -#: ../inc/class-page-editjob.php:351 -msgid "ATTENTION: Can't calculate cron!" -msgstr "ACHTUNG: Kann cron nicht berechnen!" +#: ../inc/class-destination-msazure.php:25 +msgid "MS Azure access keys" +msgstr "MS Azure Zugriff Schlüssel" -#: ../inc/class-page-editjob.php:354 -msgid "Next runtime:" -msgstr "Nächster Durchlauf:" +#: ../inc/class-destination-msazure.php:29 +msgid "Account name" +msgstr "Account Name" -#: ../inc/class-page-editjob.php:386 -#, php-format -msgid "%1$s Job: %2$s" -msgstr "%1$s Auftrag: %2$s" +#: ../inc/class-destination-msazure.php:36 +msgid "Access key" +msgstr "Access Key" -#: ../inc/class-page-editjob.php:389 -msgid "Schedule" -msgstr "Planen" +#: ../inc/class-destination-msazure.php:44 +msgid "Blob container" +msgstr "Blob Container" -#: ../inc/class-page-editjob.php:404 -#, php-format -msgid "To: %s" -msgstr "Zu: %s" +#: ../inc/class-destination-msazure.php:225 +#: ../inc/pro/class-destination-msazure. php:126 +msgid "MS Azure container \"%s\" does not exist!" +msgstr "MS Azure Container \"%s\" existiert nicht!" -#: ../inc/class-page-editjob.php:442 -msgid "Please name this job." -msgstr "Bitte benennen Sie diesen Auftrag." +#: ../inc/class-destination-msazure.php:229 +#: ../inc/pro/class-destination-msazure. php:130 +msgid "Connected to MS Azure container \"%s\"." +msgstr "Verbunden mit MS Azure container \"%s\"" -#: ../inc/class-page-editjob.php:450 -msgid "Job Tasks" -msgstr "Auftragsdetails" +#: ../inc/class-destination-msazure.php:232 +msgid "Starting upload to MS Azure …" +msgstr "Hochladen zu MS Azure hat begonnen …" -#: ../inc/class-page-editjob.php:454 ../inc/pro/class-wizard-job.php:235 -msgid "This job is a …" -msgstr "Dieser Auftrag ist ein …" +#: ../inc/class-destination-msazure.php:326 +msgid "One file deleted on Microsoft Azure container." +msgid_plural "%d files deleted on Microsoft Azure container." +msgstr[0] "Eine Datei im Microsoft-Azure-Container gelöscht" +msgstr[1] "%d Dateien im Microsoft-Azure-Container gelöscht" -#: ../inc/class-page-editjob.php:457 ../inc/pro/class-wizard-job.php:238 -msgid "Job tasks" -msgstr "Auftragsdetails" +#: ../inc/class-destination-msazure.php:419 +msgid "Missing account name!" +msgstr "Kontoname (Benutzername) nicht angegeben!" -#: ../inc/class-page-editjob.php:475 -msgid "Backup File Creation" -msgstr "Erstellen der Backup-Datei" +#: ../inc/class-destination-msazure.php:425 +msgid "No container found!" +msgstr "Kein Container gefunden!" -#: ../inc/class-page-editjob.php:480 ../inc/class-page-editjob.php:483 .. -#: inc/pro/class-wizard-job.php:380 ../inc/pro/class-wizard-job.php:383 -msgid "Backup type" -msgstr "Backup Typ" +#: ../inc/class-destination-rsc.php:71 ../inc/pro/class-destination-rsc.php:35 +msgid "Northern Virginia (IAD)" +msgstr "Northern Virginia (IAD)" -#: ../inc/class-page-editjob.php:487 -msgid "Synchronize file by file to destination" -msgstr "Synchronisiere Datei für Datei zum Auftragsziel" +#: ../inc/class-destination-rsc.php:346 +msgid "One file deleted on Rackspace cloud container." +msgid_plural "%d files deleted on Rackspace cloud container." +msgstr[0] "Eine Datei im Rackspace-Container gelöscht" +msgstr[1] "%d Dateien im Rackspace-Container gelöscht" -#: ../inc/class-page-editjob.php:491 ../inc/pro/class-wizard-job.php:391 -msgid "Create a backup archive" -msgstr "Backup erstellen" +#: ../inc/class-destination-rsc.php:449 +msgid "Missing username!" +msgstr "Fehlender Benutzername!" -#: ../inc/class-page-editjob.php:497 -msgid "Archive name" -msgstr "Archivname" +#: ../inc/class-destination-s3-v1.php:75 ../inc/class-destination-s3.php:78 +msgid "Select a S3 service" +msgstr "Wähle einen S3 Service" -#: ../inc/class-page-editjob.php:502 -msgid "Replacement patterns:" -msgstr "Ersetzungsmuster:" +#: ../inc/class-destination-s3-v1.php:95 ../inc/class-destination-s3.php:100 +msgid "Or a S3 Server URL" +msgstr "oder eine S3 Server URL" -#: ../inc/class-page-editjob.php:503 -#, php-format -msgid "%d = Two digit day of the month, with leading zeros" -msgstr "%d = Zweistelliger Tag des Monats, mit führenden Nullen" +#: ../inc/class-destination-s3-v1.php:184 ../inc/class-destination-s3.php:199 +msgid "Server side encryption" +msgstr "Serverseitige Enkryption" -#: ../inc/class-page-editjob.php:504 -msgid "%j = Day of the month, without leading zeros" -msgstr "%j = Tag des Monats, ohne führende Nullen" +#: ../inc/class-destination-s3-v1.php:188 ../inc/class-destination-s3.php:203 +msgid "Save files encrypted (AES256) on server." +msgstr "Speicher Dateien Server Side Encrypted (AES256)" -#: ../inc/class-page-editjob.php:505 -msgid "%m = Day of the month, with leading zeros" -msgstr "%m = Tag des Monats, mit führenden Nullen" +#: ../inc/pro/class-destination-s3-v1.php:134 +#: ../inc/pro/class-destination-s3.php: 135 +msgid "Bucket %1$s created in %2$s." +msgstr "Bucket %1$s in %2$s erstellt." -#: ../inc/class-page-editjob.php:506 -#, php-format -msgid "%n = Representation of the month (without leading zeros)" -msgstr "%n = Monat als Zahl (ohne führende Nullen)" +#: ../inc/class-destination-s3-v1.php:251 +#: ../inc/pro/class-destination-s3-v1.php: 136 +msgid "Bucket %s could not be created." +msgstr "Bucket %s konnte nicht erstellt werden." -#: ../inc/class-page-editjob.php:507 -msgid "%Y = Four digit representation for the year" -msgstr "%Y = Vierstellige Jahreszahl" +#: ../inc/class-destination-s3-v1.php:362 ../inc/class-destination-s3.php:370 +msgid "%d. Trying to send backup file to S3 Service …" +msgstr "%d. Versuche, ein Backup zum S3-Service zu senden …" -#: ../inc/class-page-editjob.php:508 -msgid "%y = Two digit representation of the year" -msgstr "%y = Zweistellige Jahreszahl" +#: ../inc/class-destination-s3-v1.php:383 ../inc/class-destination-s3.php:383 +#: .. /inc/pro/class-destination-s3-v1.php:182 +#: ../inc/pro/class-destination-s3.php:178 +msgid "Connected to S3 Bucket \"%1$s\" in %2$s" +msgstr "Verbunden zum S3 Bucket \"%1$s\" in %2$s" -#: ../inc/class-page-editjob.php:509 -#, php-format -msgid "%a = Lowercase ante meridiem (am) and post meridiem (pm)" -msgstr "%a = Kleingeschriebenes ante meridiem (am) und post meridiem (pm)" +#: ../inc/class-destination-s3-v1.php:386 ../inc/class-destination-s3.php:386 +#: .. /inc/pro/class-destination-s3-v1.php:185 +#: ../inc/pro/class-destination-s3.php:181 +msgid "S3 Bucket \"%s\" does not exist!" +msgstr "Amazon S3 Bucket \"%s\" existiert nicht!" -#: ../inc/class-page-editjob.php:510 -#, php-format -msgid "%A = Uppercase ante meridiem (AM) and post meridiem (PM)" -msgstr "%A = Großgeschriebenes ante meridiem (AM) and post meridiem (PM)" +#: ../inc/class-destination-s3-v1.php:392 ../inc/class-destination-s3.php:405 +msgid "Starting upload to S3 Service …" +msgstr "Upload zum S3 Service begonnen …" -#: ../inc/class-page-editjob.php:511 -#, php-format -msgid "%B = Swatch Internet Time" -msgstr "%B = Swatch Internet Time" +#: ../inc/class-destination-s3-v1.php:410 ../inc/class-destination-s3.php:508 +#: .. /inc/pro/class-destination-glacier.php:363 +msgid "Backup transferred to %s." +msgstr "Backup übertragen zu %s" -#: ../inc/class-page-editjob.php:512 -#, php-format -msgid "%g = Hour in 12-hour format, without leading zeros" -msgstr "%g = Stunde im Zwölfstunden-Format, ohne führende Nullen" +#: ../inc/class-destination-s3-v1.php:415 ../inc/class-destination-s3.php:513 +msgid "Cannot transfer backup to S3! (%1$d) %2$s" +msgstr "Backup kann nicht zu Amazon S3 übertragen werden! (%1$d) %2$s" -#: ../inc/class-page-editjob.php:513 -#, php-format -msgid "%G = Hour in 24-hour format, without leading zeros" -msgstr "%G = Stunde im 24-Stunden-Format, ohne führende Nullen" +#: ../inc/class-destination-s3-v1.php:460 ../inc/class-destination-s3.php:567 +msgid "Cannot delete backup from %s." +msgstr "Kann das Backup auf %s nicht löschen" -#: ../inc/class-page-editjob.php:514 -msgid "%h = Hour in 12-hour format, with leading zeros" -msgstr "%h = Stunde im Zwölfstunden-Format, mit führenden Nullen" +#: ../inc/class-destination-s3-v1.php:464 ../inc/class-destination-s3.php:571 +msgid "One file deleted on S3 Bucket." +msgid_plural "%d files deleted on S3 Bucket" +msgstr[0] "Eine Datei im S3-Bucket gelöscht" +msgstr[1] "%d Dateien im S3-Bucket gelöscht" -#: ../inc/class-page-editjob.php:515 -msgid "%H = Hour in 24-hour format, with leading zeros" -msgstr "%H = Stunde im 24-Stunden-Format, mit führenden Nullen" +#: ../inc/class-destination-s3.php:176 +msgid "Multipart Upload" +msgstr "Multipart Upload" -#: ../inc/class-page-editjob.php:516 -#, php-format -msgid "%i = Two digit representation of the minute" -msgstr "%i = Zweistellige Minute" +#: ../inc/class-destination-s3.php:180 +msgid "Use multipart upload for uploading a file" +msgstr "Benutze Multipart Upload zu hochladen der Datei" -#: ../inc/class-page-editjob.php:517 -#, php-format -msgid "%s = Two digit representation of the second" -msgstr "%s = Zweistellige Sekunde" +#: ../inc/class-destination-s3.php:178 +msgid "Multipart splits file into multiple chunks while uploading. This is necessary for displaying the upload process and to transfer bigger files. Works without a problem on Amazon. Other services might have issues." +msgstr "Multipart splittet den Upload in mehrere Teile auf. Dies ist notwendig für die Fortschrittsanzeige und um große Dateien hochzuladen. Funktioniert ohne Probleme mit Amazon. Bei anderen Services kann es nicht funktioniren." -#: ../inc/class-page-editjob.php:529 ../inc/class-page-editjob.php:532 -msgid "Archive Format" -msgstr "Archiv Format" +#: ../inc/class-destination-s3.php:399 +msgid "Upload for %s aborted." +msgstr "Upload für %s abgebrochen." -#: ../inc/class-page-editjob.php:535 -msgid "" -"PHP Zip functions will be used if available (needs less memory). Otherwise " -"the PCLZip class will be used." -msgstr "" -"PHP-Zip-Funktionen werden verwendet, sofern verfügbar (schneller). Ansonsten " -"wird die Klasse PCLZip verwendet." +#: ../inc/class-destination-s3.php:541 +msgid "Storage Class: %s" +msgstr "Speicher-Klasse: %s" -#: ../inc/class-page-editjob.php:535 ../inc/class-page-editjob.php:537 .. -#: inc/pro/class-wizard-job.php:404 ../inc/pro/class-wizard-job.php:406 -msgid "Zip" -msgstr "Zip" +#: ../inc/class-destination-sugarsync.php:234 +msgid "Authenticated to SugarSync with nickname %s" +msgstr "Authentifiziert bei SugarSync mit dem Namen %s" -#: ../inc/class-page-editjob.php:537 ../inc/class-page-editjob.php:542 .. -#: inc/class-page-editjob.php:546 -msgid "Disabled due to missing PHP function." -msgstr "Deaktiviert wegen nicht verfügbarer PHP-Funktion." +#: ../inc/class-destination-sugarsync.php:237 +msgctxt "Available space on SugarSync" +msgid "Not enough disk space available on SugarSync. Available: %s." +msgstr "Nicht genug Speicherplatz verfügbar bei SugarSync. Verfügbar: %s." -#: ../inc/class-page-editjob.php:538 -msgid "A tarballed, not compressed archive (fast and less memory)" -msgstr "Ein TAR-Archiv, nicht komprimiert (schnell und speicherschonend)" +#: ../inc/class-destination-sugarsync.php:243 +msgid "%s available at SugarSync" +msgstr "%s verfügbar bei SugarSync" -#: ../inc/class-page-editjob.php:538 ../inc/pro/class-wizard-job.php:407 -msgid "Tar" -msgstr "Tar" +#: ../inc/class-destination-sugarsync.php:250 +msgid "Starting upload to SugarSync …" +msgstr "Hochladen zu SugarSync hat begonnen …" -#: ../inc/class-page-editjob.php:540 -msgid "A tarballed, GZipped archive (fast and less memory)" -msgstr "Ein TAR-GZ-Archiv (schnell und speicherschonend)" +#: ../inc/class-destination-sugarsync.php:260 +msgid "Cannot transfer backup to SugarSync!" +msgstr "Backup kann nicht zu SugarSync übertragen werden!" -#: ../inc/class-page-editjob.php:540 ../inc/class-page-editjob.php:542 .. -#: inc/pro/class-wizard-job.php:409 ../inc/pro/class-wizard-job.php:411 -msgid "Tar GZip" -msgstr "Tar GZip" +#: ../inc/class-help.php:23 +msgid "Plugin on wordpress.org" +msgstr "Plugin auf wordpress.org" -#: ../inc/class-page-editjob.php:544 -msgid "A tarballed, BZipped archive (fast and less memory)" -msgstr "Ein TAR-BZ-Archiv (schnell und speicherschonend)" +#: ../inc/class-help.php:24 +msgid "https://marketpress.com/news/" +msgstr "https://marketpress.de/news/" -#: ../inc/class-page-editjob.php:544 ../inc/class-page-editjob.php:546 .. -#: inc/pro/class-wizard-job.php:413 ../inc/pro/class-wizard-job.php:415 -msgid "Tar BZip2" -msgstr "Tar BZip2" +#: ../inc/class-help.php:29 +msgid "Manual" +msgstr "Handbuch" -#: ../inc/class-page-editjob.php:552 -msgid "Job Destination" -msgstr "Zielordner des Auftrags" +#: ../inc/class-job.php:176 +msgid "Starting job" +msgstr "Auftrag starten" -#: ../inc/class-page-editjob.php:556 ../inc/class-page-editjob.php:559 -msgid "Where should your backup file be stored?" -msgstr "Wo soll die Backup-Datei gespeichert werden?" +#: ../inc/class-job.php:193 +msgid "Job Start" +msgstr "Auftragsstart" -#: ../inc/class-page-editjob.php:580 -msgid "Log Files" -msgstr "Protokoll-Dateien" +#: ../inc/class-job.php:213 +msgid "Creates manifest file" +msgstr "Erstellt Manifest-Datei" -#: ../inc/class-page-editjob.php:584 -msgid "Send log to email address" -msgstr "Protokoll-Datei an E-Mail-Adresse senden" +#: ../inc/class-job.php:235 +msgid "Creates archive" +msgstr "erstellt Archiv" -#: ../inc/class-page-editjob.php:592 -msgid "Email FROM field" -msgstr "VON-Feld der E-Mail" +#: ../inc/class-job.php:343 +msgid "[INFO] BackWPup job start with link is active" +msgstr "[INFO] BackWPup Auftragsstart mit aktivem Link gestartet" -#: ../inc/class-page-editjob.php:596 -msgid "Email \"From\" field (Name < you@your-email-address.tld >)" -msgstr "\"VON\"-Feld der E-Mail (Name < email@adresse.tld >)" +#: ../inc/pro/class-wizard-systemtest.php:154 +msgid "We recommend to install the PHP FTP extension to use the FTP backup destination." +msgstr "Wir empfehlen die PHP FTP Erweiterung zu installieren um FTP als Backup-Ziel nutzen zu können." -#: ../inc/class-page-editjob.php:600 -msgid "Errors only" -msgstr "Nur Fehler" +#: ../inc/pro/class-wizard-systemtest.php:174 +msgid "The HTTP response test result is an error: \"%s\"." +msgstr "Das Ergebnis des HTTP-Response-Tests ist ein Fehler: \"%s\"." -#: ../inc/class-page-editjob.php:605 -msgid "Send email with log only when errors occur during job execution." -msgstr "" -"Sende eine E-Mail mit Protokoll nur, wenn während des Auftrags ein Fehler " -"aufgetreten ist." +#: ../inc/pro/class-wizard-systemtest.php:196 +msgid "WP-Cron seems to be broken. But it is needed to run scheduled jobs." +msgstr "WP-Cron scheint beschädigt zu sein. Aber es wird benötigt um Aufträge planmäßig ausführen zu können." -#: ../inc/class-page-editjob.php:616 -msgid "Job Schedule" -msgstr "Auftragsplanung" +#: ../inc/pro/class-wizard-systemtest.php:201 +msgid "All tests passed without errors." +msgstr "Alle Tests fehlerfrei bestanden." -#: ../inc/class-page-editjob.php:620 ../inc/class-page-editjob.php:623 -msgid "Start job" -msgstr "Auftrag starten" +#: ../inc/pro/class-wizard-systemtest.php:204 +msgid "There is no error, but some warnings. BackWPup will work, but with limitations." +msgstr "Keine Fehler, nur Warnungen. BackWPup funktioniert mit Einschränkungen." -#: ../inc/class-page-editjob.php:627 -msgid "manually only" -msgstr "nur manuell" +#: ../inc/pro/class-wizard-systemtest.php:207 +msgid "There are errors. Please correct them, or BackWPup cannot work." +msgstr "Es sind Fehler aufgetreten. Bitte behebe sie, damit BackWPup ordnungsgemäß funktioniert." -#: ../inc/class-page-editjob.php:631 -msgid "with WordPress cron" -msgstr "mit WordPress Cron" +#: ../inc/class-jobtype-dbcheck.php:148 +msgid "No tables to check." +msgstr "Keine Tabellen zum checken." -#: ../inc/class-page-editjob.php:655 -msgid "" -"Copy the link for an external start. This option has to be activated to make " -"the link work." -msgstr "" -"Kopieren Sie den Link für einen externen Auftragsstart. Diese Option muss " -"erst aktiviert werden, damit der Link funktioniert." +#: ../inc/class-page-backwpup.php:299 +msgid "OK" +msgstr "OK" -#: ../inc/class-page-editjob.php:655 -msgid "with a link" -msgstr "mit einem Link" +#: ../inc/class-destination-email.php:209 +msgid "Backup archive too big to be sent by email!" +msgstr "Das Backup Archiv ist zu groß zum Senden via E-Mail!" -#: ../inc/class-page-editjob.php:661 -msgid "Start job with CLI" -msgstr "Auftrag per CLI starten" +#: ../inc/class-destination-rsc.php:301 +msgid "Cannot transfer backup to Rackspace cloud." +msgstr "Kann das Backup nicht zur Rackspace Cloud transferieren" -#: ../inc/class-page-editjob.php:664 +#: ../inc/class-destination-rsc.php:455 +msgid "A container could not be found!" +msgstr "Kein Container gefunden!" + +#: ../inc/class-jobtype-file.php:114 +msgid "Backup content folder" +msgstr "Sicherung des Content Verzeichnisses" + +#: ../inc/class-jobtype-file.php:151 +msgid "Backup plugins" +msgstr "Plugins sichern" + +#: ../inc/class-page-backups.php:308 msgid "" -"Use WP-CLI to run jobs from commandline." -"." +"You are about to delete this backup archive. \n" +" 'Cancel' to stop, 'OK' to delete." msgstr "" -"Benutze WP-CLI um Aufträge von der " -"Kommandozeile zu starten.." +"Sie sind dabei dieses Backup Archiv zu löschen. \n" +" 'Abbrechen' um zu stoppen, 'OK' um zu löschen." -#: ../inc/class-page-editjob.php:669 -msgid "Schedule execution time" -msgstr "Plane Ausführungszeit" +#: ../backwpup.php:326 +msgid "Email" +msgstr "E-Mail" -#: ../inc/class-page-editjob.php:673 ../inc/class-page-editjob.php:676 -msgid "Scheduler type" -msgstr "Planungstyp" +#: ../inc/class-destination-email.php:216 +msgid "Sending email to %s…" +msgstr "Sende E-Mail an %s…" -#: ../inc/class-page-editjob.php:680 -msgid "basic" -msgstr "einfach" +#: ../inc/class-destination-dropbox.php:224 +msgid "%d. Try to send backup file to Dropbox …" +msgstr "%d. Versuche, das Backup zur Dropbox zu senden …" -#: ../inc/class-page-editjob.php:684 -msgid "advanced" -msgstr "erweitert" +#: ../inc/class-destination-ftp.php:227 +msgid "Cannot connect to FTP server: %s" +msgstr "Kann nicht mit dem FTP-Server verbinden: %s" -#: ../inc/class-page-editjob.php:713 ../inc/class-page-editjob.php:781 .. -#: inc/pro/class-wizard-job.php:298 -msgid "Scheduler" -msgstr "Planer" +#: ../inc/class-destination-ftp.php:285 +msgid "FTP Folder \"%s\" cannot be created!" +msgstr "FTP-Ordner \"%s\" kann nicht erstellt werden!" -#: ../inc/class-page-editjob.php:723 ../inc/pro/class-wizard-job.php:308 -msgid "Hour" -msgstr "Stunde" +#: ../inc/class-destination-ftp.php:388 +msgid "Cannot delete \"%s\" on FTP server!" +msgstr "Kann \"%s\" auf dem FTP-Server nicht löschen!" -#: ../inc/class-page-editjob.php:726 ../inc/pro/class-wizard-job.php:311 -msgid "Minute" -msgstr "Minute" +#: ../inc/class-destination-email.php:309 +#: ../inc/class-destination-email.php:431 +msgid "Error while sending email!" +msgstr "Fehler beim Senden der E-Mail" -#: ../inc/class-page-editjob.php:730 ../inc/pro/class-wizard-job.php:315 -msgid "monthly" -msgstr "monatlich" +#: ../inc/class-help.php:17 +msgctxt "Plugin name and link; Plugin Version" +msgid "%1$s version %2$s. A project by Inpsyde GmbH." +msgstr "%1$s Version %2$s. Ein Projekt von Inpsyde GmbH." -#: ../inc/class-page-editjob.php:732 ../inc/pro/class-wizard-job.php:317 -msgid "on" -msgstr "am" +#: ../inc/class-destination-dropbox.php:273 +#: ../inc/pro/class-destination-gdrive. php:607 +msgid "Uploaded file size and local file size don't match." +msgstr "Größe der lokalen und der hochgeladenen Datei ist nicht identisch." -#: ../inc/class-page-editjob.php:742 ../inc/pro/class-wizard-job.php:327 -msgid "weekly" -msgstr "wöchentlich" +#: ../inc/class-admin.php:139 ../inc/class-help.php:26 +msgid "https://marketpress.com/support/forum/plugins/backwpup-pro/" +msgstr "https://marketpress.de/support/forum/plugins/backwpup-pro/" -#: ../inc/class-page-editjob.php:744 ../inc/class-page-editjob.php:851 .. -#: inc/pro/class-wizard-job.php:329 -msgid "Sunday" -msgstr "Sonntag" +#: ../inc/class-destination-dropbox.php:323 +msgid "Error while deleting file from Dropbox: %s" +msgstr "Fehler beim Löschen der Datei aus der Dropbox: %s" -#: ../inc/class-page-editjob.php:745 ../inc/class-page-editjob.php:852 .. -#: inc/pro/class-wizard-job.php:330 -msgid "Monday" -msgstr "Montag" +#: ../inc/class-jobtype-wpexp.php:111 +msgid "%d. Trying to create a WordPress export to XML file …" +msgstr "%d. Versuche, einen WordPress-Export als XML-Datei zu erstellen …" -#: ../inc/class-page-editjob.php:746 ../inc/class-page-editjob.php:853 .. -#: inc/pro/class-wizard-job.php:331 -msgid "Tuesday" -msgstr "Dienstag" +#: ../inc/class-jobtype-wpexp.php:402 +msgid "Check WP Export file …" +msgstr "Prüfe WP Export-Datei …" -#: ../inc/class-page-editjob.php:747 ../inc/class-page-editjob.php:854 .. -#: inc/pro/class-wizard-job.php:332 -msgid "Wednesday" -msgstr "Mittwoch" +#: ../inc/class-jobtype-file.php:530 +msgid "No files/folder for the backup." +msgstr "Keine Dateien/Ordner für das Backup." -#: ../inc/class-page-editjob.php:748 ../inc/class-page-editjob.php:855 .. -#: inc/pro/class-wizard-job.php:333 -msgid "Thursday" -msgstr "Donnerstag" +#: ../inc/class-jobtype-file.php:532 +msgid "%1$d folders to backup." +msgstr "%1$d Ordner für Backup." -#: ../inc/class-page-editjob.php:749 ../inc/class-page-editjob.php:856 .. -#: inc/pro/class-wizard-job.php:334 -msgid "Friday" -msgstr "Freitag" +#: ../inc/class-jobtype-wpplugin.php:145 +msgid "Added plugin list file \"%1$s\" with %2$s to backup file list." +msgstr "Plugin Listendatei \"%1$s\" mit %2$s zur Backup-Datei-Liste hinzugefügt." -#: ../inc/class-page-editjob.php:750 ../inc/class-page-editjob.php:857 .. -#: inc/pro/class-wizard-job.php:335 -msgid "Saturday" -msgstr "Samstag" +#: ../inc/class-page-editjob.php:332 +msgid "Working as Cron schedule:" +msgstr "Als Cron-Job ausführen:" -#: ../inc/class-page-editjob.php:760 ../inc/pro/class-wizard-job.php:345 -msgid "daily" -msgstr "täglich" +#: ../inc/class-destination-msazure.php:86 +#: ../inc/class-destination-s3-v1.php:165 +#: ../inc/class-destination-sugarsync.php:106 +#: ../inc/class-destination-folder.php: 49 +#: ../inc/class-destination-dropbox.php:112 ../inc/class-destination-ftp.php: +#: 72 ../inc/class-destination-s3.php:170 ../inc/class-destination-rsc.php:116 +#: .. /inc/pro/class-destination-msazure.php:41 +#: ../inc/pro/class-destination-s3-v1. php:66 +#: ../inc/pro/class-destination-sugarsync.php:68 ../inc/pro/class- +#: destination-folder.php:30 ../inc/pro/class-destination-dropbox.php:45 .. +#: /inc/pro/class-destination-ftp.php:46 ../inc/pro/class-destination-s3.php:68 +#: .. /inc/pro/class-destination-rsc.php:61 +#: ../inc/pro/class-destination-gdrive.php: 83 +#: ../inc/pro/class-destination-gdrive.php:287 +msgid "Do not delete files while syncing to destination!" +msgstr "Keine Dateien im Sync-Zielverzeichnis löschen!" -#: ../inc/class-page-editjob.php:770 ../inc/pro/class-wizard-job.php:355 -msgid "hourly" -msgstr "stündlich" +#: ../inc/class-destination-msazure.php:82 +#: ../inc/class-destination-s3-v1.php:161 +#: ../inc/class-destination-sugarsync.php:102 +#: ../inc/class-destination-folder.php: 45 +#: ../inc/class-destination-dropbox.php:108 ../inc/class-destination-s3.php: +#: 166 ../inc/class-destination-rsc.php:112 +#: ../inc/pro/class-destination-msazure. php:36 +#: ../inc/pro/class-destination-s3-v1.php:61 ../inc/pro/class-destination- +#: folder.php:25 ../inc/pro/class-destination-dropbox.php:43 ../inc/pro/class- +#: destination-s3.php:63 ../inc/pro/class-destination-rsc.php:56 +#: ../inc/pro/class- destination-gdrive.php:79 +#: ../inc/pro/class-destination-gdrive.php:285 +msgid "Number of files to keep in folder." +msgstr "Anzahl der Dateien, die im Ordner behalten werden" -#: ../inc/class-page-editjob.php:784 -msgid "Minutes:" -msgstr "Minuten:" +#: ../backwpup.php:395 +msgid "Backup to an S3 Service v1" +msgstr "Backup auf S3 Service v1" -#: ../inc/class-page-editjob.php:786 ../inc/class-page-editjob.php:799 .. -#: inc/class-page-editjob.php:811 ../inc/class-page-editjob.php:825 ../inc/class- -#: page-editjob.php:847 -msgid "Any (*)" -msgstr "Alle (*)" +#: ../inc/class-destination-ftp.php:56 +msgid "Folder to store files in" +msgstr "Order für Dateien" -#: ../inc/class-page-editjob.php:796 -msgid "Hours:" -msgstr "Stunden:" +#: ../inc/class-page-logs.php:247 ../inc/class-destination-ftp.php:86 .. +#: /inc/class-page-settings.php:470 +msgid "seconds" +msgstr "Sekunden" -#: ../inc/class-page-editjob.php:809 -msgid "Day of Month:" -msgstr "Tag des Monats:" +#: ../inc/class-destination-ftp.php:308 +msgid "Entering passive mode" +msgstr "Passivmodus gestartet" -#: ../inc/class-page-editjob.php:823 -msgid "Month:" -msgstr "Monat:" +#: ../inc/class-destination-email.php:59 +msgid "Maximum file size to be included in an email. 0 = unlimited" +msgstr "Maximale Dateigröße für den E-Mail-Versand. 0 = unbegrenzt" -#: ../inc/class-page-editjob.php:829 -msgid "January" -msgstr "Januar" +#: ../inc/class-destination-email.php:99 +msgid "SMTP host name" +msgstr "SMTP Hostname" -#: ../inc/class-page-editjob.php:830 -msgid "February" -msgstr "Februar" +#: ../inc/class-destination-email.php:204 +msgid "%d. Try to send backup with email …" +msgstr "%d. Versuche, Backup als E-Mail zu senden …" -#: ../inc/class-page-editjob.php:831 -msgid "March" -msgstr "März" +#: ../backwpup.php:471 +msgid "Missing function \"%s\"." +msgstr "Fehlende Funktion \"%s\"." -#: ../inc/class-page-editjob.php:832 -msgid "April" -msgstr "April" +#: ../inc/class-destination-s3-v1.php:138 ../inc/class-destination-s3.php:143 +msgid "Create a new bucket" +msgstr "Neues Bucket erstellen" -#: ../inc/class-page-editjob.php:833 -msgid "May" -msgstr "Mai" +#: ../inc/class-destination-msazure.php:76 +#: ../inc/class-destination-s3-v1.php:155 ../inc/class-destination-s3.php:160 +#: ../inc/class-destination-rsc.php:106 .. +#: /inc/pro/class-destination-glacier.php:94 +msgid "File deletion" +msgstr "Datei Löschung" -#: ../inc/class-page-editjob.php:834 -msgid "June" -msgstr "Juni" +#: ../inc/class-destination-msazure.php:203 +msgid "%d. Try sending backup to a Microsoft Azure (Blob) …" +msgstr "%d. Versuche, das Backup zu Microsoft Azure (Blob) zu senden …" -#: ../inc/class-page-editjob.php:835 -msgid "July" -msgstr "Juli" +#: ../inc/class-destination-s3-v1.php:171 ../inc/class-destination-s3.php:186 +msgid "Amazon specific settings" +msgstr "Amazon spezifische Einstellungen" -#: ../inc/class-page-editjob.php:836 -msgid "August" -msgstr "August" +#: ../backwpup.php:376 +msgid "Backup to an S3 Service" +msgstr "Backup zu einem S3 Service" -#: ../inc/class-page-editjob.php:837 -msgid "September" -msgstr "September" +#: ../inc/class-destination-s3.php:393 +msgid "Checking for not aborted multipart Uploads …" +msgstr "Prüfe auf nicht abgebrochene, mehrteilige Uploads …" -#: ../inc/class-page-editjob.php:838 -msgid "October" -msgstr "Oktober" +#: ../backwpup.php:464 +msgid "PHP Version %1$s is to low, you need Version %2$s or above." +msgstr "Du nutzt die veraltete PHP Version %1$s. Es wird aber mindestens die Version %2$s benötigt." -#: ../inc/class-page-editjob.php:839 -msgid "November" -msgstr "November" +#: ../inc/class-destination-sugarsync.php:42 +#: ../inc/class-destination-sugarsync. php:137 +#: ../inc/pro/class-destination-sugarsync.php:27 ../inc/pro/class- +#: destination-sugarsync.php:101 +msgid "Create Sugarsync account" +msgstr "SugarSync-Konto erstellen" -#: ../inc/class-page-editjob.php:840 -msgid "December" -msgstr "Dezember" +#: ../inc/class-destination-sugarsync.php:57 +msgid "SugarSync Root" +msgstr "SugarSync-Wurzelverzeichnis" -#: ../inc/class-page-editjob.php:845 -msgid "Day of Week:" -msgstr "Wochentag:" +#: ../inc/class-destination-sugarsync.php:30 ../inc/pro/class-destination- +#: sugarsync.php:17 +msgid "Email address:" +msgstr "E-Mail-Adresse" -#: ../inc/class-page-editjob.php:881 -msgid "Save changes" -msgstr "Änderungen speichern" +#: ../inc/class-destination-sugarsync.php:227 +msgid "%d. Try to send backup to SugarSync …" +msgstr "%d. Versuche, ein Backup zu SugarSync zu senden …" -#: ../inc/pro/class-destination-msazure.php:17 -msgid "Account Name:" -msgstr "Kontoname/ Benutzername:" +#: ../inc/class-jobtype-dbcheck.php:39 +msgid "WordPress tables only" +msgstr "Nur WordPress Tabellen" -#: ../inc/pro/class-destination-msazure.php:19 ../inc/pro/class-destination-s3-v1. -#: php:36 ../inc/pro/class-destination-s3.php:38 ../inc/pro/class-destination- -#: glacier.php:165 -msgid "Access Key:" -msgstr "Zugangsschlüssel (Access Key):" +#: ../inc/class-jobtype-dbcheck.php:54 ../inc/pro/class-jobtype-dbcheck.php:25 +msgid "Try to repair defect table" +msgstr "Versuche, definierte Tabellen zu reparieren" -#: ../inc/pro/class-destination-msazure.php:21 ../inc/pro/class-destination-rsc. -#: php:38 -msgid "Container:" -msgstr "Container:" +#: ../inc/class-jobtype-dbdump.php:13 +msgid "DB Backup" +msgstr "Datenbank-Backup" -#: ../inc/pro/class-destination-msazure.php:28 ../inc/pro/class-destination-rsc. -#: php:47 -msgid "Create container:" -msgstr "Container erstellen:" +#: ../inc/class-jobtype-wpexp.php:61 +msgid "XML Export file name" +msgstr "XML Export Datei Name" -#: ../inc/pro/class-destination-msazure.php:30 ../inc/pro/class-destination-rsc. -#: php:49 -msgid "Folder in container:" -msgstr "Ordner im Container:" +#: ../inc/class-jobtype-wpplugin.php:45 +msgid "Plugin list file name" +msgstr "Dateiname der Plugin-Liste" -#: ../inc/pro/class-destination-msazure.php:101 -#, php-format -msgid "%d. Trying to sync files with Microsoft Azure (Blob) …" -msgstr "%d. Versuche Dateien mit Microsoft Azure (Blob) zu synchronisieren …" +#: ../inc/class-destination-rsc.php:250 +msgid "%d. Trying to send backup file to Rackspace cloud …" +msgstr "%d. Versuche, ein Backup zur Rackspace Cloud zu senden …" -#: ../inc/pro/class-destination-msazure.php:136 -msgid "Retrieving file list from MS Azure." -msgstr "Rufe Dateiliste von MS Azure ab." +#: ../inc/class-destination-rsc.php:70 ../inc/pro/class-destination-rsc.php:34 +msgid "London (LON)" +msgstr "London (LON)" -#: ../inc/pro/class-destination-msazure.php:152 -msgid "Upload changed files to MS Azure." -msgstr "Upload der geänderten Dateien zu MS Azure." +#: ../inc/class-destination-rsc.php:69 ../inc/pro/class-destination-rsc.php:33 +msgid "Sydney (SYD)" +msgstr "Sydney (SYD)" -#: ../inc/pro/class-destination-msazure.php:164 -#, php-format -msgid "File %s uploaded to MS Azure." -msgstr "Datei %s zu MS Azure hochgeladen." +#: ../inc/class-destination-rsc.php:276 +msgid "Upload to Rackspace cloud started …" +msgstr "Upload zur Rackspace Cloud nun gestartet …" -#: ../inc/pro/class-destination-msazure.php:190 -#, php-format -msgid "Extra file %s uploaded to MS Azure." -msgstr "Extra Datei %s zu MS Azure hochgeladen." +#: ../inc/class-destination-email.php:418 +msgid "If this message reaches your inbox, sending backup archives via email should work for you." +msgstr "Wenn dich diese Nachricht erreicht, funktioniert das Senden der Sicherungsarchive per E-Mail." -#: ../inc/pro/class-destination-msazure.php:203 -msgid "Delete nonexistent files on MS Azure." -msgstr "Lösche nicht existierende Dateien auf MS Azure." +#: ../backwpup.php:327 +msgid "Backup sent via email" +msgstr "Backup als E-Mail versendet" -#: ../inc/pro/class-destination-msazure.php:206 -#, php-format -msgid "File %s deleted from MS Azure." -msgstr "Datei %s von MS Azure gelöscht." +#: ../backwpup.php:480 +msgid "Missing class \"%s\"." +msgstr "Fehlende Klasse \"%s\"." -#: ../inc/pro/class-wizard-systemtest.php:14 -msgid "System Test" -msgstr "System Test" +#: ../inc/class-admin.php:137 ../inc/class-help.php:29 +msgid "https://marketpress.com/documentation/backwpup-pro/" +msgstr "https://marketpress.de/dokumentation/backwpup-pro/" -#: ../inc/pro/class-wizard-systemtest.php:15 -msgid "Wizard to test if BackWPup can work properly" -msgstr "Dieser Assistent testet, ob BackWPup problemlos arbeiten kann." +#: ../inc/class-admin.php:139 ../inc/class-help.php:26 +msgid "Pro Support" +msgstr "Pro-Support" -#: ../inc/pro/class-wizard-systemtest.php:32 -msgid "Run tests" -msgstr "Starte die Tests" +#: ../inc/class-admin.php:141 ../inc/class-help.php:28 +msgid "http://wordpress.org/support/plugin/backwpup/" +msgstr "http://wordpress.org/support/plugin/backwpup/" -#: ../inc/pro/class-wizard-systemtest.php:45 -msgid "Environment" -msgstr "Voraussetzungen" +#: ../inc/class-admin.php:244 ../inc/class-admin.php:244 +msgid "About" +msgstr "Über" -#: ../inc/pro/class-wizard-systemtest.php:45 -msgid "System Environment" -msgstr "System Voraussetzungen" +#: ../inc/class-admin.php:281 ../inc/class-admin.php:287 +msgid "Cheating, huh?" +msgstr "Mogeln, wie?" -#: ../inc/pro/class-wizard-systemtest.php:59 -msgid "Test if BackWPup can work without problems." -msgstr "Teste, ob BackWPup problemlos funktioniert." +#: ../inc/class-admin.php:402 ../inc/class-admin.php:402 +msgid "MarketPress" +msgstr "MarketPress" -#: ../inc/pro/class-wizard-systemtest.php:99 -#, php-format -msgid "" -"You must run WordPress version 3.4 or higher to use this plugin. You are " -"using version %s now." -msgstr "" -"Um dieses Plugin nutzen zu können, benötigst du mindestens WordPress 3.4, du " -"verwendest derzeit die Version %s." +#: ../inc/class-page-about.php:689 ../inc/class-admin.php:404 +msgid "http://marketpress.com/product/backwpup-pro/" +msgstr "http://marketpress.de/product/backwpup-pro/" -#: ../inc/pro/class-wizard-systemtest.php:104 -#, php-format -msgid "" -"You must run PHP version 5.2.6 or higher to use this plugin. You are using " -"version %s now." -msgstr "" -"Es wird die PHP Version 5.2.6 oder höher benötigt um dieses Plugin nutzen zu " -"können. Du benutzt Version %s." +#: ../inc/class-admin.php:423 +msgid "version %s" +msgstr "Version %s" -#: ../inc/pro/class-wizard-systemtest.php:108 -#, php-format -msgid "" -"We recommend to run a PHP version above 5.3.2 to get the full plugin " -"functionality. You are using version %s now." -msgstr "" -"Wir empfehlen eine PHP Version von 5.3.2 oder höher um die volle " -"Funktionalität des Plugins nutzen zu können. Du nutzt Version %s." +#: ../inc/class-admin.php:566 +msgid "BackWPup Role" +msgstr "BackWPup Rolle" -#: ../inc/pro/class-wizard-systemtest.php:113 -#, php-format -msgid "" -"You must have the MySQLi extension installed and a MySQL server version of 5." -"0.7 or higher to use this plugin. You are using version %s now." -msgstr "" -"Um dieses Plugin nutzen zu können, muss die MySQLi Erweiterung und der MySQL " -"Server der Version 5.0.7 oder höher vorhanden sein. Du nutzt Version %s." +#: ../inc/class-admin.php:544 +msgid "Important: before updating, please back up your database and files with %2$s. For help with updates, visit the Updating WordPress Codex page." +msgstr "Wichtig: Bitte erstelle ein Backup von der Datenbank und den Dateien mit %2$s vor der Installation dieses Plugins. Um Hilfe für die Updates zu erhalten, besuche bitte die Updating WordPress Codex-Seite." -#: ../inc/pro/class-wizard-systemtest.php:118 -msgid "PHP cURL extension must be installed to use the full plugin functionality." -msgstr "" -"Die cURL-Erweiterung für PHP muss installiert sein, um das Plugin im Vollem " -"Umfang zu nutzen." +#: ../inc/class-admin.php:548 ../inc/class-admin.php:552 +msgid "Important: before installing this plugin, please back up your database and files with %2$s." +msgstr "Wichtig: Bitte erstelle ein Backup von der Datenbank und den Dateien mit %2$s vor der Installation dieses Plugins." -#: ../inc/pro/class-wizard-systemtest.php:122 -#, php-format -msgctxt "%1 = extension name, %2 = file suffix" -msgid "We recommend to install the %1$s extension to generate %2$s archives." -msgstr "Wir empfehlen die %1$s Erweiterung um %2$s Archive zu generieren." +#: ../inc/class-create-archive.php:71 +msgid "The file name of an archive cannot be empty." +msgstr "Der Dateiname eines Archivs kann nicht leer sein." -#: ../inc/pro/class-wizard-systemtest.php:146 -#, php-format -msgctxt "Link to PHP manual" -msgid "Please disable the deprecated PHP safe mode." -msgstr "Bitte schalte den veralteten PHP Safe-Mode." +#: ../inc/class-create-archive.php:79 +msgctxt "%s = Folder name" +msgid "Folder %s for archive not found" +msgstr "Ordner %s für Archiv nicht gefunden" -#: ../inc/pro/class-wizard-systemtest.php:154 -msgid "" -"We recommend to install the PHP FTP extension to use the FTP backup " -"destination." -msgstr "" -"Wir empfehlen die PHP FTP Erweiterung zu installieren um FTP als Backup-Ziel " -"nutzen zu können." +#: ../inc/class-create-archive.php:85 ../inc/class-create-archive.php:120 .. +#: /inc/class-create-archive.php:137 ../inc/class-mysqldump.php:130 +msgid "Functions for gz compression not available" +msgstr "Die Funktionen für die Gzip-Kompression sind nicht verfügbar." -#: ../inc/pro/class-wizard-systemtest.php:174 -#, php-format -msgid "The HTTP response test result is an error: \"%s\"." -msgstr "Das Ergebnis des HTTP-Response-Tests ist ein Fehler: \"%s\"." +#: ../inc/class-create-archive.php:92 ../inc/class-create-archive.php:143 +msgid "Functions for bz2 compression not available" +msgstr "Die Funktionen für die Bz2-Kompression sind nicht verfügbar." -#: ../inc/pro/class-wizard-systemtest.php:178 -#, php-format -msgid "" -"The HTTP response test result is a wrong HTTP status: %s. It should be " -"status 200." -msgstr "" -"Der HTTP-Response-Test hat einen falschen HTTP-Status ergeben: %s. Es sollte " -"Status 200 sein." +#: ../inc/class-create-archive.php:116 +msgctxt "ZipArchive open() result" +msgid "Cannot create zip archive: %d" +msgstr "Konte ZIP-Datei %d nicht erstellen" -#: ../inc/pro/class-wizard-systemtest.php:196 -msgid "WP-Cron seems to be broken. But it is needed to run scheduled jobs." -msgstr "" -"WP-Cron scheint beschädigt zu sein. Aber es wird benötigt um Aufträge " -"planmäßig ausführen zu können." +#: ../inc/class-create-archive.php:149 +msgctxt "%s = file name" +msgid "Method to archive file %s not detected" +msgstr "Methode zum Archivieren der Datei %s nicht gefunden" -#: ../inc/pro/class-wizard-systemtest.php:201 -msgid "All tests passed without errors." -msgstr "Alle Tests fehlerfrei bestanden." +#: ../inc/class-create-archive.php:154 +msgid "Cannot open archive file" +msgstr "Kann Archivdatei nicht öffnen" -#: ../inc/pro/class-wizard-systemtest.php:204 -msgid "" -"There is no error, but some warnings. BackWPup will work, but with " -"limitations." -msgstr "Keine Fehler, nur Warnungen. BackWPup funktioniert mit Einschränkungen." +#: ../inc/class-create-archive.php:174 ../inc/class-create-archive.php:379 +msgid "PclZip archive add error: %s" +msgstr "Fehler beim Hinzufügen zum PclZip-Archive: %s" -#: ../inc/pro/class-wizard-systemtest.php:207 -msgid "There are errors. Please correct them, or BackWPup cannot work." -msgstr "" -"Es sind Fehler aufgetreten. Bitte behebe sie, damit BackWPup ordnungsgemäß " -"funktioniert." +#: ../inc/class-create-archive.php:238 +msgid "File name cannot be empty" +msgstr "Der Dateiname kann nicht leer sein." -#: ../inc/pro/class-jobtype-dbdump.php:89 -msgid "Backup only WordPress Database tables" -msgstr "Nur die WordPress Datenbank Tabellen sichern" +#: ../inc/class-create-archive.php:247 +msgctxt "File to add to archive" +msgid "File %s does not exist or is not readable" +msgstr "Datei %s existiert nicht oder ist nicht lesbar" -#: ../inc/pro/class-jobtype-dbdump.php:109 -msgid "Database connection" -msgstr "Datenbank Verbindung" +#: ../inc/class-create-archive.php:278 ../inc/class-create-archive.php:294 .. +#: /inc/class-create-archive.php:422 ../inc/class-create-archive.php:426 +msgid "This archive method can only add one file" +msgstr "Diese Archive-Methode kann nur eine einziges Datei sichern." -#: ../inc/pro/class-jobtype-dbdump.php:113 -msgid "Use WordPress database connection." -msgstr "Nutze WordPress-Datenbankverbindung" +#: ../inc/class-create-archive.php:283 ../inc/class-create-archive.php:299 +msgid "Cannot open source file %s to archive" +msgstr "Konnte Quelle %s zum Archivieren nicht öffnen" -#: ../inc/pro/class-jobtype-dbdump.php:117 -msgid "Host:" -msgstr "Host (Server):" +#: ../inc/class-create-archive.php:332 ../inc/class-create-archive.php:358 .. +#: /inc/class-create-archive.php:367 ../inc/class-create-archive.php:437 +msgid "Cannot add \"%s\" to zip archive!" +msgstr "\"%s\" kann dem ZIP-Archiv nicht hinzugefügt werden!" -#: ../inc/pro/class-jobtype-dbdump.php:120 -msgid "User:" -msgstr "Benutzer: " +#: ../inc/class-create-archive.php:404 +msgid "Folder name cannot be empty" +msgstr "Der Verzeichnis Name darf nicht leer sein" -#: ../inc/pro/class-jobtype-dbdump.php:127 -msgid "Charset:" -msgstr "Charset: " +#: ../inc/class-create-archive.php:409 +msgctxt "Folder path to add to archive" +msgid "Folder %s does not exist or is not readable" +msgstr "Verzeichnis %s existiert nicht oder ist nicht lesbar" -#: ../inc/pro/class-jobtype-dbdump.php:138 -msgid "Database:" -msgstr "Datenbank:" +#: ../inc/class-create-archive.php:459 +msgctxt "Text of ZipArchive status Message" +msgid "ZipArchive returns status: %s" +msgstr "Das Zip-Archive liefert den Status: %s" -#: ../inc/pro/class-jobtype-dbdump.php:166 -msgid "Database Backup type" -msgstr "Datenbank Backup Typ" +#: ../inc/class-create-archive.php:489 +msgid "File name \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "Dateiname \"%1$s\" ist zu lang, um korrekt im %2$s Archiv zu speichern." -#: ../inc/pro/class-jobtype-dbdump.php:170 -msgid "SQL File (with mysqli)" -msgstr "SQL-Datei (mit mysqli)" +#: ../inc/class-create-archive.php:492 +msgid "File path \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "Dateipfad \"%1$s\" ist zu lang, um korrekt in %2$s Archiv zu speichern" -#: ../inc/pro/class-jobtype-dbdump.php:171 -msgid "SQL File (with mysqldump)" -msgstr "SQL-Datei (mit mysqldump)" +#: ../inc/class-create-archive.php:600 +msgid "Folder name \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "Verzeichnis Name \"%1$s\" ist zu lang um ihn koreckt zu speichern im %2$s Archiv" -#: ../inc/pro/class-jobtype-dbdump.php:172 -msgid "XML File (phpMyAdmin schema)" -msgstr "XML Datei (phpMyAdmin Schema)" +#: ../inc/pro/class-destination-rsc.php:29 +msgid "Select region:" +msgstr "Region wählen:" -#: ../inc/pro/class-jobtype-dbdump.php:178 -msgid "Path to mysqldump file" -msgstr "Pfad zur mysqldump Datei" +#: ../inc/pro/class-destination-rsc.php:136 +msgid "%d. Trying to sync files to Rackspace cloud …" +msgstr "%d. Versuche Dateien mit der Rackspace Cloud zu synchronisieren …" -#: ../inc/pro/class-jobtype-dbdump.php:180 -msgid "" -"Path to mysqldump file, so a backup can be made with it. If it is correct " -"and shell_exec is active, the backup will be generated with a " -"system command. If shell_exec ist not active, this is disabled" -msgstr "" -"Pfad zur MySQL-Dump Datei zum erstellen eines Backups. Wenn diese in Ordnung " -"ist und shell_exec aktiviert wurde, wird ein Backup per " -"Systembefehl generiert. Wenn shell_exec nicht aktiviert wurde, ist " -"dieser Befehl deaktiviert." +#: ../inc/pro/class-destination-rsc.php:156 +msgid "Connected to Rackspace cloud files container %s." +msgstr "Verbunden mit Rackspace Cloud Datei-Container %s." -#: ../inc/pro/class-jobtype-dbdump.php:556 -#, php-format -msgid "Added database backup \"%1$s\" with %2$s to backup file list" -msgstr "Datenbank-Backup \"%1$s\" mit %2$s zur Backup-Datei-Liste hinzugefügt" +#: ../inc/pro/class-destination-rsc.php:170 +msgid "Retrieving files list from Rackspace Cloud." +msgstr "Rufe Dateiliste von Rackspace Cloud ab." -#: ../inc/pro/class-jobtype-dbdump.php:577 -#, php-format -msgid "%d. Try to backup MySQL system …" -msgstr "%d. Versuche, das MySQL-System zu sichern …" +#: ../inc/pro/class-destination-rsc.php:201 +msgid "Upload changed files to Rackspace Cloud." +msgstr "Upload der geänderten Dateien zur Rackspace Cloud." -#: ../inc/pro/class-jobtype-dbdump.php:584 -msgid "Executing of system commands not allowed. Please use backup with mysqli." -msgstr "Ausführung von Systembefehlen nicht erlaubt. Bitte nutze Backup mit mysqli." +#: ../inc/pro/class-destination-rsc.php:219 +msgid "File %s uploaded to Rackspace Cloud." +msgstr "Datei %s zu zur Rackspace Cloud hochgeladen." -#: ../inc/pro/class-jobtype-dbdump.php:589 -#, php-format -msgid "%s file not in open basedir of PHP." -msgstr "Datei %s nicht im open basedir von PHP." +#: ../inc/pro/class-destination-rsc.php:252 +msgid "Extra file %s uploaded to Rackspace Cloud." +msgstr "Extra Datei %s zur Rackspace Cloud hochgeladen." -#: ../inc/pro/class-jobtype-dbdump.php:594 -#, php-format -msgid "%s file not found. Please correct the path for the mysqldump file." -msgstr "Datei %s nicht gefunden. Bitte korrigiere den Pfad für die mysqldump-Datei." +#: ../inc/pro/class-destination-rsc.php:269 +msgid "File %s deleted from Rackspace Cloud." +msgstr "File %s von Rackspace Cloud gelöscht." -#: ../inc/pro/class-jobtype-dbdump.php:674 -#, php-format -msgctxt "Executed exec() command" -msgid "CLI Exec: %s" -msgstr "CLI Exec: %s" +#: ../inc/pro/class-destination-s3-v1.php:17 +#: ../inc/pro/class-destination-s3.php:17 +msgid "Select a S3 service:" +msgstr "Wähle einen S3 Service:" -#: ../inc/pro/class-jobtype-dbdump.php:685 -msgid "Usage error." -msgstr "Usage-Fehler" +#: ../inc/pro/class-destination-s3-v1.php:33 +#: ../inc/pro/class-destination-s3.php:35 +msgid "or set an S3 Server URL:" +msgstr "oder setze eine S3 Server URL:" -#: ../inc/pro/class-jobtype-dbdump.php:686 -msgid "" -"MySQL Server Error. This could be an issue with permissions. Try using " -"database backup with mysqli." -msgstr "" -"Fehler des MySQL-Servers. Dies könnte ein Problem mit Berechtigungen sein. " -"Versuche ein Datenbank mit mysqli." +#: ../inc/pro/class-destination-s3-v1.php:157 +#: ../inc/pro/class-destination-s3.php: 159 +msgid "%d. Trying to sync files to S3 Service …" +msgstr "%d. Versuche Dateien mit dem S3 Service zu synchronisieren …" -#: ../inc/pro/class-jobtype-dbdump.php:687 -msgid "Error during consistency checks." -msgstr "Fehler während Konsistenzprüfung." +#: ../inc/pro/class-destination-s3-v1.php:196 +#: ../inc/pro/class-destination-s3.php: 193 +msgid "Retrieving file list from S3." +msgstr "Rufe Dateiliste von S3 ab." -#: ../inc/pro/class-jobtype-dbdump.php:688 -msgid "Not enough memory." -msgstr "Nicht genug Speicher." +#: ../inc/pro/class-destination-s3-v1.php:252 +#: ../inc/pro/class-destination-s3.php: 251 +msgid "Upload changed files to S3." +msgstr "Upload der geänderten Dateien zu S3." -#: ../inc/pro/class-jobtype-dbdump.php:689 -msgid "Error during writing of SQL backup file." -msgstr "Fehler beim Schreiben der SQL-Backup-Datei." - -#: ../inc/pro/class-jobtype-dbdump.php:690 -msgid "Illegal table" -msgstr "Ungültige Tabelle" - -#: ../inc/pro/class-jobtype-dbdump.php:695 -#, php-format -msgid "mysqldump returned: (%d) %s" -msgstr "mysqldump hat zurückgegeben: (%d) %s" - -#: ../inc/pro/class-jobtype-dbdump.php:708 -msgid "Can not create mysql backup with mysqldump command" -msgstr "Keine Datenbanksicherung mit System-Kommando mysqldump möglich" - -#: ../inc/pro/class-jobtype-dbdump.php:754 -#, php-format -msgid "%d. Try to backup database as XML …" -msgstr "%d. Versuche, Datenbank als XML zu sichern …" - -#: ../inc/pro/class-jobtype-dbdump.php:811 -msgid "No tables for XML backup" -msgstr "Es gibt keine Tabellen für einen XML Backup" - -#: ../inc/pro/class-jobtype-dbdump.php:847 -#, php-format -msgid "Dump database create view \"%s\"" -msgstr "Datenbank Backup CREATE VIEW \"%s\"" - -#: ../inc/pro/class-jobtype-dbdump.php:865 -#, php-format -msgid "Backup database structure \"%s\" to XML" -msgstr "Backup der Datenbank Struktur \"%s\" für XML" - -#: ../inc/pro/class-jobtype-dbdump.php:907 -#, php-format -msgid "Backup table \"%s\" data to XML" -msgstr "Sichere Daten der Tabelle \"%s\" als XML" +#: ../inc/pro/class-destination-s3-v1.php:264 +#: ../inc/pro/class-destination-s3.php: 266 +msgid "File %s uploaded to S3." +msgstr "Datei %s zu S3 hochgeladen." -#: ../inc/pro/class-jobtype-dbdump.php:975 -#, php-format -msgid "Added database XML dump \"%1$s\" with %2$s to backup file list" -msgstr "XML Datenbank Backup \"%1$s\" mit %2$s zur Backup Datei Liste hinzugefügt" +#: ../inc/pro/class-destination-s3-v1.php:289 +#: ../inc/pro/class-destination-s3.php: 294 +msgid "Extra file %s uploaded to S3." +msgstr "Extra Datei %s zu S3 hochgeladen." -#: ../inc/pro/class-jobtype-dbdump.php:978 -msgid "Database XML backup done!" -msgstr "Datenbank XML Backup erstellt!" +#: ../inc/pro/class-destination-s3-v1.php:302 +#: ../inc/pro/class-destination-s3.php: 307 +msgid "Delete nonexistent files on S3" +msgstr "Lösche nicht existierende Dateien von S3" -#: ../inc/pro/class-export-jobs.php:12 ../inc/pro/class-export-jobs.php:23 -msgid "Export" -msgstr "Export" +#: ../inc/pro/class-destination-s3-v1.php:305 +#: ../inc/pro/class-destination-s3.php: 314 +msgid "File %s deleted from S3." +msgstr "Datei %s von S3 gelöscht." #: ../inc/pro/class-jobtype-file.php:19 msgid "Backup WordPress main files" @@ -4733,73 +4007,58 @@ msgstr "Backup der Blog-Themes" msgid "Backup blog uploads folder" msgstr "Backup der Blog-Uploads Ordner" -#: ../inc/pro/class-settings-apikeys.php:42 -msgid "Hash key" -msgstr "Hash key" - -#: ../inc/pro/class-settings-apikeys.php:43 -msgid "" -"Hash Key for BackWPup. It will be used to have hashes in folder and file " -"names. It must at least 6 chars long." -msgstr "" -"Hash Key für BackWPup. Es wird für Hashes in Ordner- und Dateinamen " -"verwendet und muss mindestens 6 Zeichen lang sein." - -#: ../inc/pro/class-settings-apikeys.php:46 -msgid "Hash key:" -msgstr "Hash key:" +#: ../inc/pro/class-jobtype-wpexp.php:17 +msgid "Items to export:" +msgstr "Zu exportierendes Item:" -#: ../inc/pro/class-settings-apikeys.php:59 -msgid "Dropbox API Keys" -msgstr "Dropbox API Keys" +#: ../inc/pro/class-marketpress-documentation.php:218 ../inc/pro/class- +#: marketpress-documentation.php:334 +msgctxt "%s = Remote Code" +msgid "Could not connect to remote host, code %d. Please try again later." +msgstr "Verbindung zum Remote Host nicht möglich, Code %d. Bitte versuche es später noch einmal." -#: ../inc/pro/class-settings-apikeys.php:60 -msgid "" -"If you want to set your own Dropbox API Keys, you can do it here. Leave " -"empty for default." -msgstr "" -"Wenn du deinen eigenen Dropbox API Schlüssel setzen willst, kannst du es " -"hier tun. Lass es leer für Standard-Einstellungen." +#: ../inc/pro/class-marketpress-documentation.php:230 ../inc/pro/class- +#: marketpress-documentation.php:346 +msgid "Could not find content for this page. Please try again later." +msgstr "Für diese Seite konnten kein Inhalte gefunden werden. Bitte versuche es später nocheinmal." -#: ../inc/pro/class-settings-apikeys.php:63 -msgid "Full Dropbox App key:" -msgstr "Voller Dropbox app Key" +#: ../inc/pro/class-page-wizard.php:122 +msgid "No BackWPup Wizard Session found!" +msgstr "Keine BackWPup-Assistent-Sitzung gefunden!" -#: ../inc/pro/class-settings-apikeys.php:71 -msgid "Full Dropbox App secret:" -msgstr "Voller Dropbox App secret:" +#: ../inc/pro/class-page-wizard.php:134 ../inc/pro/class-page-wizard.php:442 +msgid "Cancel" +msgstr "Abbrechen" -#: ../inc/pro/class-settings-apikeys.php:79 -msgid "Sandbox App key:" -msgstr "Sandbox App key:" +#: ../inc/pro/class-page-wizard.php:335 +msgctxt "Plugin Name" +msgid "%s Wizards" +msgstr "%s Assistenten" -#: ../inc/pro/class-settings-apikeys.php:87 -msgid "Sandbox App secret:" -msgstr "Sandbox App secret:" +#: ../inc/pro/class-page-wizard.php:373 +msgctxt "Plugin Name" +msgid "%s Wizard:" +msgstr "%s Assistent:" -#: ../inc/pro/class-settings-apikeys.php:100 -msgid "SugarSync API Keys" -msgstr "SugarSync API Keys" +#: ../inc/pro/class-page-wizard.php:445 +msgid "Back to overview" +msgstr "Zurück zur Übersicht" -#: ../inc/pro/class-settings-apikeys.php:101 -msgid "" -"If you want to set your own SugarSync API keys you can do that here. Leave " -"empty for default." -msgstr "" -"Wenn du deinen eigenen SugarSync API Schlüssel setzen willst, kannst du es " -"hier tun. Lass es leer für Standard-Einstellungen." +#: ../inc/pro/class-settings-apikeys.php:43 +msgid "Hash Key for BackWPup. It will be used to have hashes in folder and file names. It must at least 6 chars long." +msgstr "Hash Key für BackWPup. Es wird für Hashes in Ordner- und Dateinamen verwendet und muss mindestens 6 Zeichen lang sein." -#: ../inc/pro/class-settings-apikeys.php:104 -msgid "Access Key ID:" -msgstr "Access Key ID (Zugangsschlüssel-ID):" +#: ../inc/pro/class-settings-apikeys.php:46 +msgid "Hash key:" +msgstr "Hash key:" -#: ../inc/pro/class-settings-apikeys.php:112 -msgid "Private Access Key:" -msgstr "Private Access Key:" +#: ../inc/pro/class-settings-apikeys.php:60 +msgid "If you want to set your own Dropbox API Keys, you can do it here. Leave empty for default." +msgstr "Wenn du deinen eigenen Dropbox API Schlüssel setzen willst, kannst du es hier tun. Lass es leer für Standard-Einstellungen." -#: ../inc/pro/class-settings-apikeys.php:119 -msgid "App ID:" -msgstr "App ID:" +#: ../inc/pro/class-settings-apikeys.php:101 +msgid "If you want to set your own SugarSync API keys you can do that here. Leave empty for default." +msgstr "Wenn du deinen eigenen SugarSync API Schlüssel setzen willst, kannst du es hier tun. Lass es leer für Standard-Einstellungen." #: ../inc/pro/class-settings-apikeys.php:132 msgid "Google API Keys" @@ -4821,26 +4080,49 @@ msgstr "Redirect URIs:" msgid "Add this URI in a new line to the field." msgstr "Füge diese URI in einer neuen Zeile zum Feld hinzu." -#: ../inc/pro/class-wizard-jobimport.php:14 -msgid "XML job import" -msgstr "XML Auftrag Import" +#: ../inc/pro/class-wizard-job.php:15 +msgid "Create a job" +msgstr "Job erstellen" -#: ../inc/pro/class-wizard-jobimport.php:15 -msgid "Wizard for importing BackWPup jobs from an XML file" -msgstr "Assistent zum Importieren von BackWPup Aufträgen aus einer XML Datei" +#: ../inc/pro/class-wizard-job.php:16 +msgid "Choose a job" +msgstr "Job auswählen" -#: ../inc/pro/class-wizard-jobimport.php:32 ../inc/pro/class-wizard-jobimport.php: -#: 98 -msgid "Import" -msgstr "Import" +#: ../inc/pro/class-wizard-job.php:41 +msgid "Select a task for your job." +msgstr "Wähle eine Aufgabe für deinen Auftrag." -#: ../inc/pro/class-wizard-jobimport.php:45 -msgid "Import File" -msgstr "Import-Datei" +#: ../inc/pro/class-wizard-job.php:57 +msgid "Where would you like to store the backup file?" +msgstr "Wo wollen Sie die Backup-Datei speichern?" -#: ../inc/pro/class-wizard-jobimport.php:45 -msgid "Upload XML job file for import" -msgstr "XML Arbeitsauftrag Datei hochladen zum Importieren" +#: ../inc/pro/class-wizard-job.php:67 +msgid "When would you like to start the job?" +msgstr "Wann soll der Auftrag gestartet werden?" + +#: ../inc/pro/class-wizard-job.php:236 +msgid "Select one or more tasks for your backup job." +msgstr "Wähle eine zusätzliche Aufgabe für deinen Backup-Auftrag." + +#: ../inc/pro/class-wizard-job.php:693 ../inc/pro/class-wizard-job.php:694 +msgid "Database Check (Weekly)" +msgstr "Datenbank Überprüfung (wöchentlich)" + +#: ../inc/pro/class-wizard-job.php:733 +msgid "Essential files + list of plugins" +msgstr "Wichtige Dateien + Pluginliste" + +#: ../inc/pro/class-wizard-job.php:734 +msgid "Backup essential files and folders, plus a list of installed plugins." +msgstr "Backup von wichtigen Dateien und Ordner, plus einer Liste von installierten Plugins." + +#: ../inc/pro/class-wizard-job.php:749 ../inc/pro/class-wizard-job.php:750 +msgid "Custom configuration" +msgstr "Angepasste Konfiguration" + +#: ../inc/pro/class-wizard-jobimport.php:15 +msgid "Wizard for importing BackWPup jobs from an XML file" +msgstr "Assistent zum Importieren von BackWPup Aufträgen aus einer XML Datei" #: ../inc/pro/class-wizard-jobimport.php:46 msgid "Select items to import" @@ -4851,205 +4133,146 @@ msgid "Select which job should be imported or overwritten." msgstr "Wähle einen Auftrag, der importiert oder überschrieben werden soll." #: ../inc/pro/class-wizard-jobimport.php:67 -msgid "" -"Please upload your BackWPup job XML export file and we’ll import the " -"jobs into BackWPup." -msgstr "" -"Bitte lade deine BackWPup-Auftrags-XML-Export-Datei hoch und wir importieren " -"sie in BackWPup." - -#: ../inc/pro/class-wizard-jobimport.php:69 -msgid "Choose a file from your computer:" -msgstr "Wähle eine Datei von deinem Computer:" - -#: ../inc/pro/class-wizard-jobimport.php:69 -#, php-format -msgid "Maximum size: %s" -msgstr "Maximale Größe: %s" - -#: ../inc/pro/class-wizard-jobimport.php:91 -msgid "Import Jobs" -msgstr "Importiere Aufträge" - -#: ../inc/pro/class-wizard-jobimport.php:94 -msgid "Import Type" -msgstr "Import-Typ" - -#: ../inc/pro/class-wizard-jobimport.php:94 -msgid "No Import" -msgstr "Kein Import" - -#: ../inc/pro/class-wizard-jobimport.php:96 -msgid "Overwrite" -msgstr "Überschreiben" - -#: ../inc/pro/class-wizard-jobimport.php:96 -msgid "Append" -msgstr "Anhängen" - -#: ../inc/pro/class-wizard-jobimport.php:110 -msgid "Import Config" -msgstr "Konfiguration importieren" - -#: ../inc/pro/class-wizard-jobimport.php:113 -msgid "Import BackWPup configuration" -msgstr "Importiere BackWPup Konfiguration" - -#: ../inc/pro/class-wizard-jobimport.php:138 -msgid "" -"File is empty. Please upload something more substantial. This error could " -"also caused by uploads being disabled in your php.ini or by post_max_size " -"being defined as smaller than upload_max_filesize in php.ini." -msgstr "" -"Datei ist leer. Bitte lade etwas mit Substanz hoch. Dieser Fehler kann " -"begründet sein weil uploads in der php.ini oder durch post_max_size kleiner " -"definiert sind als upload_max_filesize in php.ini." +msgid "Please upload your BackWPup job XML export file and we’ll import the jobs into BackWPup." +msgstr "Bitte lade deine BackWPup-Auftrags-XML-Export-Datei hoch und wir importieren sie in BackWPup." #: ../inc/pro/class-wizard-jobimport.php:153 -#, php-format -msgid "" -"The export file could not be found at %s. This is likely due to " -"an issue with permissions." -msgstr "" -"Die Export-Datei konnte nicht gefunden werden %s. Das liegt " -"möglicherweise an Problemen mit der Berechtigung." +msgid "The export file could not be found at %s. This is likely due to an issue with permissions." +msgstr "Die Export-Datei konnte nicht gefunden werden %s. Das liegt möglicherweise an Problemen mit der Berechtigung." #: ../inc/pro/class-wizard-jobimport.php:160 msgid "Sorry, there has been a phrase error." msgstr "Sorry, es gab ein Problem mit dem Begriff." -#: ../inc/pro/class-wizard-jobimport.php:167 -#, php-format -msgid "" -"This Export file (version %s) may not be supported by this version of the " -"importer." -msgstr "" -"Die Export Datei (version %s) wird wahrscheinlich nicht von dieser Version " -"des Importers unterstützt" - #: ../inc/pro/class-wizard-jobimport.php:173 msgid "This is not a BackWPup XML file" msgstr "Das ist keine BackWPup XML Datei" -#: ../inc/pro/class-wizard-jobimport.php:236 -#, php-format -msgid "Job %1$s with id %2$d imported" -msgstr "Job %1$s mit ID %2$d wurde importiert" +#: ../inc/pro/class-wizard-systemtest.php:59 +msgid "Test if BackWPup can work without problems." +msgstr "Teste, ob BackWPup problemlos funktioniert." -#: ../inc/pro/class-wizard-jobimport.php:244 -msgid "BackWPup config imported" -msgstr "BackWPup Konfiguration wurde importiert" +#: ../inc/pro/class-wizard-systemtest.php:99 +msgid "You must run WordPress version 3.4 or higher to use this plugin. You are using version %s now." +msgstr "Um dieses Plugin nutzen zu können, benötigst du mindestens WordPress 3.4, du verwendest derzeit die Version %s." -#: ../inc/pro/class-destination-s3-v1.php:17 ../inc/pro/class-destination-s3.php:17 -msgid "Select a S3 service:" -msgstr "Wähle einen S3 Service:" +#: ../inc/pro/class-wizard-systemtest.php:104 +msgid "You must run PHP version 5.2.6 or higher to use this plugin. You are using version %s now." +msgstr "Es wird die PHP Version 5.2.6 oder höher benötigt um dieses Plugin nutzen zu können. Du benutzt Version %s." -#: ../inc/pro/class-destination-s3-v1.php:29 -msgid "Hosteurope Cloud Storage" -msgstr "Hosteurope Cloud Storage" +#: ../inc/pro/class-wizard-systemtest.php:108 +msgid "We recommend to run a PHP version above 5.3.2 to get the full plugin functionality. You are using version %s now." +msgstr "Wir empfehlen eine PHP Version von 5.3.2 oder höher um die volle Funktionalität des Plugins nutzen zu können. Du nutzt Version %s." -#: ../inc/pro/class-destination-s3-v1.php:33 ../inc/pro/class-destination-s3.php:35 -msgid "or set an S3 Server URL:" -msgstr "oder setze eine S3 Server URL:" +#: ../inc/pro/class-wizard-systemtest.php:113 +msgid "You must have the MySQLi extension installed and a MySQL server version of 5.0.7 or higher to use this plugin. You are using version %s now." +msgstr "Um dieses Plugin nutzen zu können, muss die MySQLi Erweiterung und der MySQL Server der Version 5.0.7 oder höher vorhanden sein. Du nutzt Version %s." -#: ../inc/pro/class-destination-s3-v1.php:39 ../inc/pro/class-destination-s3.php: -#: 41 ../inc/pro/class-destination-glacier.php:167 -msgid "Secret Key:" -msgstr "Secret Key:" +#: ../inc/pro/class-wizard-systemtest.php:122 +msgctxt "%1 = extension name, %2 = file suffix" +msgid "We recommend to install the %1$s extension to generate %2$s archives." +msgstr "Wir empfehlen die %1$s Erweiterung um %2$s Archive zu generieren." -#: ../inc/pro/class-destination-s3-v1.php:42 ../inc/pro/class-destination-s3.php:44 -msgid "Bucket:" -msgstr "Bucket:" +#: ../inc/pro/class-wizard-systemtest.php:146 +msgctxt "Link to PHP manual" +msgid "Please disable the deprecated PHP safe mode." +msgstr "Bitte schalte den veralteten PHP Safe-Mode." -#: ../inc/pro/class-destination-s3-v1.php:52 ../inc/pro/class-destination-s3.php:54 -msgid "New Bucket:" -msgstr "Neues Bucket: " +#: ../inc/class-page-settings.php:416 +msgid "PHP version" +msgstr "PHP-Version" -#: ../inc/pro/class-destination-s3-v1.php:54 ../inc/pro/class-destination-s3.php:56 -msgid "Folder in bucket:" -msgstr "Ordner im Bucket:" +#: ../inc/class-page-settings.php:417 +msgid "MySQL version" +msgstr "MySQL-Version" -#: ../inc/pro/class-destination-s3-v1.php:134 ../inc/pro/class-destination-s3.php: -#: 135 -#, php-format -msgid "Bucket %1$s created in %2$s." -msgstr "Bucket %1$s in %2$s erstellt." +#: ../inc/class-page-settings.php:420 ../inc/class-page-settings.php:424 +msgid "cURL version" +msgstr "cURL-Version" -#: ../inc/pro/class-destination-s3-v1.php:157 ../inc/pro/class-destination-s3.php: -#: 159 -#, php-format -msgid "%d. Trying to sync files to S3 Service …" -msgstr "%d. Versuche Dateien mit dem S3 Service zu synchronisieren …" +#: ../inc/class-page-settings.php:421 +msgid "cURL SSL version" +msgstr "cURL-SSL-Version" -#: ../inc/pro/class-destination-s3-v1.php:196 ../inc/pro/class-destination-s3.php: -#: 193 -msgid "Retrieving file list from S3." -msgstr "Rufe Dateiliste von S3 ab." +#: ../inc/class-page-settings.php:426 +msgid "WP-Cron url:" +msgstr "WP-Cron URL:" -#: ../inc/pro/class-destination-s3-v1.php:252 ../inc/pro/class-destination-s3.php: -#: 251 -msgid "Upload changed files to S3." -msgstr "Upload der geänderten Dateien zu S3." +#: ../inc/class-page-settings.php:428 +msgid "Server self connect:" +msgstr "Verbindung zum Server selbst:" -#: ../inc/pro/class-destination-s3-v1.php:264 ../inc/pro/class-destination-s3.php: -#: 266 -#, php-format -msgid "File %s uploaded to S3." -msgstr "Datei %s zu S3 hochgeladen." +#: ../inc/class-page-settings.php:470 +msgid "Maximum execution time" +msgstr "Max. Ausführungszeit" -#: ../inc/pro/class-destination-s3-v1.php:289 ../inc/pro/class-destination-s3.php: -#: 294 -#, php-format -msgid "Extra file %s uploaded to S3." -msgstr "Extra Datei %s zu S3 hochgeladen." +#: ../inc/class-page-settings.php:476 ../inc/class-page-settings.php:478 +msgid "Disabled WP Cron" +msgstr "WP Cron abgeschaltet" -#: ../inc/pro/class-destination-s3-v1.php:302 ../inc/pro/class-destination-s3.php: -#: 307 -msgid "Delete nonexistent files on S3" -msgstr "Lösche nicht existierende Dateien von S3" +#: ../inc/class-page-settings.php:494 +msgid "WP memory limit" +msgstr "WordPress-Memory-Limit" -#: ../inc/pro/class-destination-s3-v1.php:305 ../inc/pro/class-destination-s3.php: -#: 314 -#, php-format -msgid "File %s deleted from S3." -msgstr "Datei %s von S3 gelöscht." +#: ../inc/class-page-settings.php:495 +msgid "WP maximum memory limit" +msgstr "Maximales WordPress-Memory-Limit" -#: ../inc/pro/class-destination-sugarsync.php:25 ../inc/pro/class-destination- -#: sugarsync.php:85 -msgid "Sugarsync authenticate!" -msgstr "Sugarsync Authentifizierung!" +#: ../inc/class-page-settings.php:520 +msgid "Reset all settings to default" +msgstr "Alle Einstellungen zurücksetzen" -#: ../inc/pro/class-destination-sugarsync.php:31 ../inc/pro/class-destination- -#: dropbox.php:34 ../inc/pro/class-destination-gdrive.php:269 ../inc/pro/class- -#: destination-gdrive.php:275 -msgid "Login:" -msgstr "Anmelden:" +#: ../inc/class-wp-cli.php:23 +msgid "A job is already running." +msgstr "Ein Auftrag läuft gerade." -#: ../inc/pro/class-destination-sugarsync.php:36 -msgid "Root:" -msgstr "Root:" +#: ../inc/class-wp-cli.php:35 +msgid "No job ID specified!" +msgstr "Keine Auftragsnummer angegeben!" -#: ../inc/pro/class-destination-sugarsync.php:58 ../inc/pro/class-destination- -#: dropbox.php:38 ../inc/pro/class-destination-gdrive.php:280 -msgid "Folder:" -msgstr "Ordner:" +#: ../inc/class-wp-cli.php:41 +msgid "Job ID does not exist!" +msgstr "Auftragsnummer existiert nicht!" -#: ../inc/pro/class-destination-sugarsync.php:61 ../inc/pro/class-destination-ftp. -#: php:39 -msgid "Maximum number of backup files to keep in folder:" -msgstr "Maximale Anzahl an Backup-Dateien im Ordner:" +#: ../inc/class-wp-cli.php:54 +msgid "Nothing to abort!" +msgstr "Es gibt nichts abzubrechen!" -#: ../inc/pro/class-destination-sugarsync.php:63 ../inc/pro/class-destination-ftp. -#: php:42 -msgid "(Oldest files will be deleted first.)" -msgstr "(Älteste Dateien werden zuerst gelöscht.)" +#: ../inc/pro/class-marketpress-autoupdate.php:344 +msgctxt "%s = plugin name" +msgid "Your license for the plugin %s is not valid. The auto-update has been deactivated. Please insert a valid key on MarketPress Dashboard. Or if you want to add an other valid code use the form below." +msgstr "Dein Lizenzschlüssel für das Plugin %s ist ungültig. Automatische Updates wurden deaktiviert. Gib bitte einen gültigen Schlüssel im MarketPress Dashboard ein. Wenn du einen anderen gültigen Schlüssel hinzufügen möchtest, nutze bitte das Formular (unten)." -#: ../inc/pro/class-destination-folder.php:18 -msgid "Absolute path to folder for backup files:" -msgstr "Absoluter Ordner-Pfad für Backup-Dateien:" +#: ../inc/pro/class-marketpress-autoupdate.php:366 +msgctxt "%s = plugin name" +msgid "Your license for the plugin %s is not valid. The auto-update has been deactivated." +msgstr "Deine Lizenz für das Plugin %s ist ungültig. Automatische Updates wurden deaktiviert." + +#: ../inc/pro/class-destination-dropbox.php:105 +msgid "%d. Try to sync files to Dropbox …" +msgstr "%d. Versuche Dateien mit Dropbox zu synchronisieren …" + +#: ../inc/pro/class-destination-dropbox.php:145 +msgid "Retrieving file list from Dropbox" +msgstr "Empfange Dateiliste von Dropbox" + +#: ../inc/pro/class-destination-dropbox.php:208 +msgid "Extra file %s uploaded to Dropbox" +msgstr "Extra Datei %s zu Dropbox hochgeladen" + +#: ../inc/pro/class-destination-dropbox.php:217 +msgid "Delete not existing files from Dropbox" +msgstr "Lösche nicht existierende Dateien aus Dropbox" + +#: ../inc/pro/class-destination-dropbox.php:224 +msgid "Folder %s deleted from Dropbox" +msgstr "Ordner %s aus Dropbox gelöscht" + +#: ../inc/pro/class-destination-dropbox.php:242 +msgid "File %s deleted from Dropbox" +msgstr "Datei %s aus Dropbox gelöscht" #: ../inc/pro/class-destination-folder.php:69 -#, php-format msgid "%d. Try to sync files to folder …" msgstr "%d. Versuche Dateien mit Ordner zu synchronisieren …" @@ -5061,723 +4284,782 @@ msgstr "Ruft Datei-Liste vom Ordner ab" msgid "Copy changed files to folder" msgstr "Kopiere geänderte Dateien in den Ordner" -#: ../inc/pro/class-destination-folder.php:92 -#, php-format -msgid "File %s copied" -msgstr "Datei %s kopiert" - #: ../inc/pro/class-destination-folder.php:105 msgid "Delete not existing files from folder" msgstr "Lösche nicht existierende Dateien aus dem Ordner" #: ../inc/pro/class-destination-folder.php:113 -#, php-format msgid "Extra file %s copied" msgstr "Extra Datei %s kopiert" #: ../inc/pro/class-destination-folder.php:129 -#, php-format msgid "File %s deleted from folder" msgstr "File %s aus Ordner gelöscht" -#: ../inc/pro/class-destination-folder.php:186 -#, php-format -msgid "Empty folder %s deleted" -msgstr "Leerer Ordner %s gelöscht" +#: ../inc/pro/class-destination-ftp.php:33 +msgid "Folder on server:" +msgstr "Ordner auf dem Server:" -#: ../inc/pro/class-destination-dropbox.php:24 -msgid "Auth Code:" -msgstr "Auth Code:" +#: ../inc/pro/class-destination-sugarsync.php:61 +#: ../inc/pro/class-destination-ftp. php:39 +msgid "Maximum number of backup files to keep in folder:" +msgstr "Maximale Anzahl an Backup-Dateien im Ordner:" -#: ../inc/pro/class-destination-dropbox.php:27 -msgid "Get auth code" -msgstr "Hole Authentifizierungscode" +#: ../inc/pro/class-destination-msazure.php:28 +#: ../inc/pro/class-destination-rsc. php:47 +msgid "Create container:" +msgstr "Container erstellen:" -#: ../inc/pro/class-destination-dropbox.php:105 -#, php-format -msgid "%d. Try to sync files to Dropbox …" -msgstr "%d. Versuche Dateien mit Dropbox zu synchronisieren …" +#: ../inc/pro/class-destination-msazure.php:101 +msgid "%d. Trying to sync files with Microsoft Azure (Blob) …" +msgstr "%d. Versuche Dateien mit Microsoft Azure (Blob) zu synchronisieren …" -#: ../inc/pro/class-destination-dropbox.php:145 -msgid "Retrieving file list from Dropbox" -msgstr "Empfange Dateiliste von Dropbox" +#: ../inc/pro/class-destination-msazure.php:136 +msgid "Retrieving file list from MS Azure." +msgstr "Rufe Dateiliste von MS Azure ab." -#: ../inc/pro/class-destination-dropbox.php:159 -msgid "Upload changed files to Dropbox" -msgstr "Lade geänderte Datei in die Dropbox" +#: ../inc/pro/class-destination-msazure.php:152 +msgid "Upload changed files to MS Azure." +msgstr "Upload der geänderten Dateien zu MS Azure." -#: ../inc/pro/class-destination-dropbox.php:181 -#, php-format -msgid "File %s uploaded to Dropbox" -msgstr "Datei %s zu Dropbox hochgeladen" +#: ../inc/pro/class-destination-msazure.php:164 +msgid "File %s uploaded to MS Azure." +msgstr "Datei %s zu MS Azure hochgeladen." -#: ../inc/pro/class-destination-dropbox.php:208 -#, php-format -msgid "Extra file %s uploaded to Dropbox" -msgstr "Extra Datei %s zu Dropbox hochgeladen" +#: ../inc/pro/class-destination-msazure.php:190 +msgid "Extra file %s uploaded to MS Azure." +msgstr "Extra Datei %s zu MS Azure hochgeladen." -#: ../inc/pro/class-destination-dropbox.php:217 -msgid "Delete not existing files from Dropbox" -msgstr "Lösche nicht existierende Dateien aus Dropbox" +#: ../inc/pro/class-destination-msazure.php:203 +msgid "Delete nonexistent files on MS Azure." +msgstr "Lösche nicht existierende Dateien auf MS Azure." -#: ../inc/pro/class-destination-dropbox.php:224 -#, php-format -msgid "Folder %s deleted from Dropbox" -msgstr "Ordner %s aus Dropbox gelöscht" +#: ../inc/pro/class-destination-msazure.php:206 +msgid "File %s deleted from MS Azure." +msgstr "Datei %s von MS Azure gelöscht." -#: ../inc/pro/class-destination-dropbox.php:242 -#, php-format -msgid "File %s deleted from Dropbox" -msgstr "Datei %s aus Dropbox gelöscht" +#: ../inc/pro/class-destination-gdrive.php:653 +msgid "One file deleted from Google Drive" +msgid_plural "%d files deleted on Google Drive" +msgstr[0] "Eine Datei von Google Drive gelöscht" +msgstr[1] "%d Dateien von Google Drive gelöscht" -#: ../inc/pro/class-page-wizard.php:122 -msgid "No BackWPup Wizard Session found!" -msgstr "Keine BackWPup-Assistent-Sitzung gefunden!" +#: ../inc/pro/class-destination-gdrive.php:659 ../inc/pro/class-destination- +#: gdrive.php:877 +msgid "Google Drive API: %s" +msgstr "Google Drive API: %s" -#: ../inc/pro/class-page-wizard.php:134 ../inc/pro/class-page-wizard.php:442 -msgid "Cancel" -msgstr "Abbrechen" +#: ../inc/pro/class-destination-gdrive.php:705 +msgid "%d. Try to sync files to Google Drive …" +msgstr "%d. Versuche Dateien mit Google Drive zu synchronisieren …" -#: ../inc/pro/class-page-wizard.php:169 ../inc/pro/class-page-wizard.php:437 .. -#: inc/pro/class-page-wizard.php:470 -msgid "Next ›" -msgstr "Weiter ›" +#: ../inc/pro/class-destination-gdrive.php:727 +msgid "Syncing changed files to Google Drive" +msgstr "Synchronisiere geänderte Dateien mit Google Drive" -#: ../inc/pro/class-page-wizard.php:186 ../inc/pro/class-page-wizard.php:433 -msgid "‹ Previous" -msgstr "‹ Zurück" +#: ../inc/pro/class-destination-gdrive.php:756 +msgid "File %s updated on Google Drive" +msgstr "Datei %s auf Google Drive aktualisiert" -#: ../inc/pro/class-page-wizard.php:335 -#, php-format -msgctxt "Plugin Name" -msgid "%s Wizards" -msgstr "%s Assistenten" +#: ../inc/pro/class-destination-gdrive.php:776 +msgid "File %s uploaded to Google Drive" +msgstr "Datei %s zu Google Drive hochgeladen" -#: ../inc/pro/class-page-wizard.php:373 -#, php-format -msgctxt "Plugin Name" -msgid "%s Wizard:" -msgstr "%s Assistent:" +#: ../inc/pro/class-destination-gdrive.php:845 +msgid "Extra file %s updated on Google Drive" +msgstr "Extra Datei %s auf Google Drive aktualisiert" -#: ../inc/pro/class-page-wizard.php:445 -msgid "Back to overview" -msgstr "Zurück zur Übersicht" +#: ../inc/pro/class-destination-gdrive.php:866 +msgid "Extra file %s uploaded to Google Drive" +msgstr "Extra Datei %s auf Google Drive hochgeladen" -#: ../inc/pro/class-destination-ftp.php:17 -msgid "Hostname:" -msgstr "Hostname:" +#: ../inc/pro/class-destination-glacier.php:26 +msgid "Amazon Glacier" +msgstr "Amazon Glacier" -#: ../inc/pro/class-destination-ftp.php:25 ../inc/pro/class-destination-rsc.php:23 -msgid "Username:" -msgstr "Benutzername:" +#: ../inc/pro/class-destination-glacier.php:32 ../inc/pro/class-destination- +#: glacier.php:154 +msgid "Amazon Glacier Region" +msgstr "Amazon Glacier Region" -#: ../inc/pro/class-destination-ftp.php:33 -msgid "Folder on server:" -msgstr "Ordner auf dem Server:" +#: ../inc/pro/class-destination-glacier.php:33 ../inc/pro/class-destination- +#: glacier.php:155 +msgid "US Standard" +msgstr "US Standard" -#: ../inc/pro/class-destination-rsc.php:26 -msgid "API Key:" -msgstr "API-Schlüssel" +#: ../inc/pro/class-destination-glacier.php:34 ../inc/pro/class-destination- +#: glacier.php:156 +msgid "US West (Northern California)" +msgstr "US West (Northern California)" -#: ../inc/pro/class-destination-rsc.php:29 -msgid "Select region:" -msgstr "Region wählen:" +#: ../inc/pro/class-destination-glacier.php:35 ../inc/pro/class-destination- +#: glacier.php:157 +msgid "US West (Oregon)" +msgstr "US West (Oregon)" -#: ../inc/pro/class-destination-rsc.php:136 -#, php-format -msgid "%d. Trying to sync files to Rackspace cloud …" -msgstr "%d. Versuche Dateien mit der Rackspace Cloud zu synchronisieren …" +#: ../inc/pro/class-destination-glacier.php:36 ../inc/pro/class-destination- +#: glacier.php:158 +msgid "EU (Ireland)" +msgstr "EU (Ireland)" -#: ../inc/pro/class-destination-rsc.php:156 -#, php-format -msgid "Connected to Rackspace cloud files container %s." -msgstr "Verbunden mit Rackspace Cloud Datei-Container %s." +#: ../inc/pro/class-destination-glacier.php:38 ../inc/pro/class-destination- +#: glacier.php:160 +msgid "Asia Pacific (Tokyo)" +msgstr "Asia Pacific (Tokyo)" -#: ../inc/pro/class-destination-rsc.php:170 -msgid "Retrieving files list from Rackspace Cloud." -msgstr "Rufe Dateiliste von Rackspace Cloud ab." +#: ../inc/pro/class-destination-glacier.php:39 ../inc/pro/class-destination- +#: glacier.php:161 +msgid "Asia Pacific (Singapore)" +msgstr "Asia Pacific (Singapore)" -#: ../inc/pro/class-destination-rsc.php:201 -msgid "Upload changed files to Rackspace Cloud." -msgstr "Upload der geänderten Dateien zur Rackspace Cloud." +#: ../inc/pro/class-destination-glacier.php:40 ../inc/pro/class-destination- +#: glacier.php:162 +msgid "Asia Pacific (Sydney)" +msgstr "Asia Pacific (Sydney)" -#: ../inc/pro/class-destination-rsc.php:219 -#, php-format -msgid "File %s uploaded to Rackspace Cloud." -msgstr "Datei %s zu zur Rackspace Cloud hochgeladen." +#: ../inc/pro/class-destination-glacier.php:41 ../inc/pro/class-destination- +#: glacier.php:163 +msgid "South America (Sao Paulo)" +msgstr "South America (Sao Paulo)" -#: ../inc/pro/class-destination-rsc.php:252 -#, php-format -msgid "Extra file %s uploaded to Rackspace Cloud." -msgstr "Extra Datei %s zur Rackspace Cloud hochgeladen." +#: ../inc/pro/class-destination-glacier.php:48 +msgid "Amazon Access Keys" +msgstr "Amazon Zugriffsschlüssel" -#: ../inc/pro/class-destination-rsc.php:265 -msgid "Delete nonexistent files on Rackspace Cloud." -msgstr "Lösche nicht existierende Dateien von Rackspace Cloud" +#: ../inc/pro/class-destination-glacier.php:67 +msgid "Vault" +msgstr "Tresor" -#: ../inc/pro/class-destination-rsc.php:269 -#, php-format -msgid "File %s deleted from Rackspace Cloud." -msgstr "File %s von Rackspace Cloud gelöscht." +#: ../inc/pro/class-destination-glacier.php:71 +msgid "Vault selection" +msgstr "Tresorauswahl" -#: ../inc/pro/class-marketpress-documentation.php:175 -msgid "Loading Menu ..." -msgstr "Lade Menü..." +#: ../inc/pro/class-destination-glacier.php:83 +msgid "Create a new vault" +msgstr "Neuen Tresor erstellen" -#: ../inc/pro/class-marketpress-documentation.php:218 ../inc/pro/class- -#: marketpress-documentation.php:334 -#, php-format -msgctxt "%s = Remote Code" -msgid "Could not connect to remote host, code %d. Please try again later." -msgstr "" -"Verbindung zum Remote Host nicht möglich, Code %d. Bitte versuche es später " -"noch einmal." +#: ../inc/pro/class-destination-glacier.php:90 +msgid "Glacier Backup settings" +msgstr "Glacier Backup Einstellungen" -#: ../inc/pro/class-marketpress-documentation.php:230 ../inc/pro/class- -#: marketpress-documentation.php:346 -msgid "Could not find content for this page. Please try again later." -msgstr "" -"Für diese Seite konnten kein Inhalte gefunden werden. Bitte versuche es " -"später nocheinmal." +#: ../inc/pro/class-destination-glacier.php:130 ../inc/pro/class-destination- +#: glacier.php:216 +msgid "Vault %1$s created." +msgstr "Tresor %1$s erstellt." -#: ../inc/pro/class-marketpress-documentation.php:236 ../inc/pro/class- -#: marketpress-documentation.php:351 -msgid "Could not connect to remote host. Please try again later." -msgstr "Konnte nicht zum Remote-Host verbinden. Bitte versuche es später noch einmal." +#: ../inc/pro/class-destination-glacier.php:132 ../inc/pro/class-destination- +#: glacier.php:218 +msgid "Vault %s could not be created." +msgstr "Tresor %s konnte nicht erstellt werden." -#: ../inc/pro/class-marketpress-documentation.php:282 ../inc/pro/class- -#: marketpress-documentation.php:290 -msgid "Loading Content ..." -msgstr "Lade Inhalt..." +#: ../inc/pro/class-destination-glacier.php:153 +msgid "Select an Amazon Glacier region:" +msgstr "Wähle Amazon Glacier Region:" -#: ../inc/pro/class-jobtype-dbcheck.php:21 -msgid "Check only WordPress Database tables" -msgstr "Teste nur die WordPress Datenbank Tabellen" +#: ../inc/pro/class-destination-glacier.php:169 +msgid "Vault:" +msgstr "Tresor:" -#: ../inc/pro/class-jobtype-wpexp.php:17 -msgid "Items to export:" -msgstr "Zu exportierendes Item:" +#: ../inc/pro/class-destination-glacier.php:178 +msgid "New Vault:" +msgstr "Neuer Tresor:" -#: ../inc/pro/class-destination-gdrive.php:37 ../inc/pro/class-destination-gdrive. -#: php:256 -#, php-format -msgid "" -"Looks like you haven’t set up any API keys yet. Head over to Settings | API-Keys and get Google Drive all set up, then come " -"back here." -msgstr "" -"Sieht so aus, als hättest du bis jetzt noch keine API-Schlüssel erstellt. " -"Gehe zu Einstellungen | API-Schlüssel und setze die " -"Verbindung zu Google Drive auf, kann komm’ hierhin zurück." +#: ../inc/pro/class-destination-glacier.php:259 ../inc/pro/class-destination- +#: glacier.php:375 ../inc/pro/class-destination-glacier.php:394 +#: ../inc/pro/class- destination-glacier.php:434 +msgid "AWS API: %s" +msgstr "AWS API: %s" -#: ../inc/pro/class-destination-gdrive.php:51 ../inc/pro/class-destination-gdrive. -#: php:271 -msgid "Authenticate" -msgstr "Authentifizieren" +#: ../inc/pro/class-destination-glacier.php:283 +msgid "%d. Trying to send backup file to Amazon Glacier …" +msgstr "%d. Versuche Backup-Datei zu Amazon Glacier zu senden …" -#: ../inc/pro/class-destination-gdrive.php:57 ../inc/pro/class-destination-gdrive. -#: php:277 -msgid "Reauthenticate" -msgstr "Neu authentifizieren" +#: ../inc/pro/class-destination-glacier.php:298 +msgid "Glacier vault \"%s\" does not exist!" +msgstr "Glacier Tresor \"%s\" existiert nicht!" -#: ../inc/pro/class-destination-gdrive.php:67 -msgid "Folder in Google Drive" -msgstr "Ordner in Google Drive" +#: ../inc/pro/class-destination-glacier.php:304 +msgid "Starting upload to Amazon Glacier …" +msgstr "Upload zu Amazon Glacier wird gestartet …" -#: ../inc/pro/class-destination-gdrive.php:87 -msgid "" -"Consider using trash to delete files. If trash is not enabled, files will be " -"deleted permanently." -msgstr "" -"Überlege dir, den Papierkorb zu nutzen um Dateien zu löschen. Bei " -"deaktiviertem Papierkorb werden Dateien unwiderruflich gelöscht." +#: ../inc/pro/class-destination-glacier.php:357 +msgid "Archive ID: %s" +msgstr "Archiv ID: %s" -#: ../inc/pro/class-destination-gdrive.php:141 ../inc/pro/class-destination- -#: gdrive.php:168 -msgid "GDrive: Authenticated." -msgstr "GDrive: Authentifiziert." +#: ../inc/pro/class-destination-glacier.php:424 +msgid "Cannot delete archive from %s." +msgstr "Kann das Archiv aus %s nicht löschen." -#: ../inc/pro/class-destination-gdrive.php:145 ../inc/pro/class-destination- -#: gdrive.php:172 -msgid "GDrive: No refresh token received. Try to Authenticate again!" -msgstr "" -"GDrive: Keinen refresh Token erhalten. Versuche dich erneut zu " -"Authentifizieren!" +#: ../inc/pro/class-destination-glacier.php:428 +msgid "One file deleted on vault." +msgid_plural "%d files deleted on vault" +msgstr[0] "Eine Datei aus Tresor entfernt." +msgstr[1] "%d Dateien aus Tresor entfernt" -#: ../inc/pro/class-destination-gdrive.php:152 ../inc/pro/class-destination- -#: gdrive.php:177 ../inc/pro/class-destination-gdrive.php:201 ../inc/pro/class- -#: destination-gdrive.php:223 -#, php-format -msgid "GDrive API: %s" -msgstr "GDrive API: %s" +#: ../inc/pro/class-destination-glacier.php:542 +msgid "No vault found!" +msgstr "Kein Tresor gefunden!" -#: ../inc/pro/class-destination-gdrive.php:382 -#, php-format -msgid "%d. Try to send backup file to Google Drive …" -msgstr "%d. Versuche das Backup zu Google Drive zu senden …" +#: ../inc/pro/class-destination-glacier.php:368 ../inc/pro/class-pro.php:102 +msgid "Glacier" +msgstr "Glacier" -#: ../inc/pro/class-destination-gdrive.php:407 -msgid "Uploading to Google Drive …" -msgstr "Upload zu Google Drive …" +#: ../inc/pro/class-pro.php:121 +msgid "GDrive" +msgstr "GDrive" -#: ../inc/pro/class-destination-gdrive.php:467 -msgid "Google Drive API: could not create resumable file" -msgstr "Google Drive API: kann keine fortsetzbare Datei generieren" +#: ../inc/pro/class-wizard-job.php:407 +msgid "Tar (fast and memory less) uncompressed" +msgstr "Tar (schnell und speicherschonend) unkomprimiert" -#: ../inc/pro/class-destination-gdrive.php:513 -msgid "Can not resume transfer backup to Google Drive!" -msgstr "Kann den Backup-Transfer zu Google Drive nicht fortsetzen!" +#: ../inc/class-page-jobs.php:278 ../inc/class-page-jobs.php:287 +msgid "Cron: %s" +msgstr "Cron: %s" -#: ../inc/pro/class-destination-gdrive.php:582 -#, php-format -msgid "Error transfering file chunks to %s." -msgstr "Fehler beim Übertragen von Datei-Teilen zu %s." +#: ../inc/pro/class-jobtype-dbdump.php:166 +msgid "Database Backup type" +msgstr "Datenbank Backup Typ" -#: ../inc/pro/class-destination-gdrive.php:583 ../inc/pro/class-destination- -#: gdrive.php:609 -msgid "Google Drive" -msgstr "Google Drive" +#: ../inc/class-page-settings.php:149 +msgid "Show BackWPup links in admin bar." +msgstr "BackWPup-Links in der Adminbar anzeigen." -#: ../inc/pro/class-destination-gdrive.php:653 -#, php-format -msgid "One file deleted from Google Drive" -msgid_plural "%d files deleted on Google Drive" -msgstr[0] "Eine Datei von Google Drive gelöscht" -msgstr[1] "%d Dateien von Google Drive gelöscht" +#: ../inc/class-page-settings.php:445 +msgid "Temp folder:" +msgstr "Temp Verzeichnis:" + +#: ../inc/pro/class-settings-apikeys.php:42 +msgid "Hash key" +msgstr "Hash key" + +#: ../inc/pro/class-destination-folder.php:18 +msgid "Absolute path to folder for backup files:" +msgstr "Absoluter Ordner-Pfad für Backup-Dateien:" + +#: ../inc/pro/class-jobtype-dbdump.php:172 +msgid "XML File (phpMyAdmin schema)" +msgstr "XML Datei (phpMyAdmin Schema)" + +#: ../inc/pro/class-jobtype-dbdump.php:178 +msgid "Path to mysqldump file" +msgstr "Pfad zur mysqldump Datei" + +#: ../inc/pro/class-jobtype-dbdump.php:180 +msgid "Path to mysqldump file, so a backup can be made with it. If it is correct and shell_exec is active, the backup will be generated with a system command. If shell_exec ist not active, this is disabled" +msgstr "Pfad zur MySQL-Dump Datei zum erstellen eines Backups. Wenn diese in Ordnung ist und shell_exec aktiviert wurde, wird ein Backup per Systembefehl generiert. Wenn shell_exec nicht aktiviert wurde, ist dieser Befehl deaktiviert." + +#: ../inc/class-page-jobs.php:271 +msgid "Running for: %s seconds" +msgstr "Läuft seit %s Sekunden" + +#: ../inc/class-page-editjob.php:836 +msgid "August" +msgstr "August" + +#: ../inc/class-page-editjob.php:881 +msgid "Save changes" +msgstr "Änderungen speichern" + +#: ../inc/class-page-jobs.php:278 +msgid "%1$s at %2$s by WP-Cron" +msgstr "%1$s um %2$s mit WP-Cron" + +#: ../inc/class-page-jobs.php:315 +msgid "Runtime: %d seconds" +msgstr "Ausführungszeit: %d Sekunden" + +#: ../inc/class-page-jobs.php:319 +msgid "not yet" +msgstr "noch nicht" + +#: ../inc/class-page-jobs.php:323 +msgid "Download last backup" +msgstr "Letztes Backup herunterladen" + +#: ../inc/class-page-jobs.php:433 ../inc/class-page-settings.php:432 +msgid "The HTTP response test get an error \"%s\"" +msgstr "Der HTTP Antwort Test bekommt diesen Fehler \"%s\"" + +#: ../inc/class-page-jobs.php:437 ../inc/class-page-settings.php:434 +msgid "The HTTP response test get a false http status (%s)" +msgstr "Der HTTP Antwort Test bekommt den falschen http Status (%s)" + +#: ../inc/class-page-jobs.php:467 +msgid "Job \"%s\" started." +msgstr "Auftrag \"%s\" wurde gestartet." + +#: ../inc/class-page-jobs.php:592 +msgid "%s Jobs" +msgstr "%s Aufträge" + +#: ../inc/class-page-jobs.php:612 +msgid "Job currently running: %s" +msgstr "Aktueller Auftrag wird bearbeitet: %s" + +#: ../inc/class-page-jobs.php:617 +msgid "Close working screen" +msgstr "Arbeitsfläche schließen" + +#: ../inc/class-page-jobs.php:617 +msgid "close" +msgstr "schließen" + +#: ../inc/class-page-logs.php:215 +msgid "1 ERROR" +msgid_plural "%d ERRORS" +msgstr[0] "1 FEHLER" +msgstr[1] "%d FEHLER" + +#: ../inc/class-page-logs.php:217 +msgid "1 WARNING" +msgid_plural "%d WARNINGS" +msgstr[0] "1 WARNUNG" +msgstr[1] "%d WARNUNGEN" + +#: ../inc/class-page-logs.php:236 +msgid "Log only" +msgstr "Nur Log" + +#: ../inc/class-page-logs.php:369 +msgid "%s Logs" +msgstr "%s Logs" + +#: ../inc/class-page-settings.php:60 +msgid "Settings reset to default" +msgstr "Die Einstellungen wurden zurückgesetzt." + +#: ../inc/class-page-settings.php:118 +msgid "%s Settings" +msgstr "%s Einstellungen" + +#: ../inc/class-page-settings.php:137 +msgid "Display Settings" +msgstr "Einstellungen anzeigen" + +#: ../inc/class-page-settings.php:138 +msgid "Do you want to see BackWPup in the WordPress admin bar?" +msgstr "Möchten Sie BackWPup-Menüpunkte in der WordPress-Adminbar sehen?" + +#: ../inc/class-page-settings.php:141 +msgid "Admin bar" +msgstr "Adminbar" + +#: ../inc/class-page-settings.php:154 ../inc/class-page-settings.php:157 +msgid "Folder sizes" +msgstr "Verzeichnisgrößen" + +#: ../inc/class-page-settings.php:167 +msgid "Security" +msgstr "Sicherheit" + +#: ../inc/class-page-settings.php:168 +msgid "Security option for BackWPup" +msgstr "Sicherheitseinstellungen für BackWPup" + +#: ../inc/class-page-settings.php:171 ../inc/class-page-settings.php:174 +msgid "Protect folders" +msgstr "Ordner schützen" + +#: ../inc/class-page-settings.php:179 +msgid "Protect BackWPup folders ( Temp, Log and Backups ) with .htaccess and index.php" +msgstr "Schütze BackWPup-Verzeichnis (Temp, Log und Backups) mit den Dateien .htaccess und index.php" + +#: ../inc/class-page-settings.php:192 +msgid "Every time BackWPup runs a backup job, a log file is being generated. Choose where to store your log files and how many of them." +msgstr "Jedes Mal, wenn BackWPup einen Auftrag ausführt, wird eine Protokolldatei erzeugt. Wählen Sie aus, wo und wie viele dieser Protokolldateien Sie speichern möchten." + +#: ../inc/class-page-settings.php:195 +msgid "Log file folder" +msgstr "Protokolldateien-Ordner" + +#: ../inc/class-page-settings.php:203 +msgid "Maximum number of log files in folder" +msgstr "Anzahl der Dateien, die im Ordner behalten werden" + +#: ../inc/class-page-settings.php:206 +msgid "Oldest files will be deleted first." +msgstr "(Älteste Dateien werden zuerst gelöscht.)" + +#: ../inc/class-page-settings.php:219 +msgid "Compress log files with GZip." +msgstr "Komprimiere Logdateien mit Gzip." -#: ../inc/pro/class-destination-gdrive.php:659 ../inc/pro/class-destination- -#: gdrive.php:877 -#, php-format -msgid "Google Drive API: %s" -msgstr "Google Drive API: %s" +#: ../inc/class-page-settings.php:245 +msgid "There are a couple of general options for backup jobs. Set them here." +msgstr "Es gibt einige allgemeine Optionen für Backup-Aufträge, die Sie hier setzen können." -#: ../inc/pro/class-destination-gdrive.php:705 -#, php-format -msgid "%d. Try to sync files to Google Drive …" -msgstr "%d. Versuche Dateien mit Google Drive zu synchronisieren …" +#: ../inc/class-page-settings.php:249 +msgid "Maximum number of retries for job steps" +msgstr "Maximale Anzahl für Neuversuche der Arbeitsschritte" -#: ../inc/pro/class-destination-gdrive.php:727 -msgid "Syncing changed files to Google Drive" -msgstr "Synchronisiere geänderte Dateien mit Google Drive" +#: ../inc/class-page-settings.php:257 +msgid "Maximum script execution time" +msgstr "Maximale Script Ausführungszeit" -#: ../inc/pro/class-destination-gdrive.php:756 -#, php-format -msgid "File %s updated on Google Drive" -msgstr "Datei %s auf Google Drive aktualisiert" +#: ../inc/class-page-settings.php:260 +msgid "Maximum PHP Script execution time" +msgstr "Maximale PHP-Script Ausführungszeit" -#: ../inc/pro/class-destination-gdrive.php:776 -#, php-format -msgid "File %s uploaded to Google Drive" -msgstr "Datei %s zu Google Drive hochgeladen" +#: ../inc/class-page-settings.php:265 +msgid "seconds. 0 = disabled." +msgstr "Sekunden. 0 = deaktiviert." -#: ../inc/pro/class-destination-gdrive.php:797 -#, php-format -msgid "File %s moved to trash in Google Drive" -msgstr "Datei %s in den Papierkorb bei Google Drive verschoben" +#: ../inc/class-page-settings.php:278 +msgid "Auto" +msgstr "Auto" -#: ../inc/pro/class-destination-gdrive.php:800 -#, php-format -msgid "File %s deleted permanently in Google Drive" -msgstr "Datei %s unwiderruflich gelöscht aus Google Drive" +#: ../inc/class-page-settings.php:279 +msgid "ZipArchive" +msgstr "ZipArchive" -#: ../inc/pro/class-destination-gdrive.php:845 -#, php-format -msgid "Extra file %s updated on Google Drive" -msgstr "Extra Datei %s auf Google Drive aktualisiert" +#: ../inc/class-page-settings.php:280 +msgid "PclZip" +msgstr "PclZip" -#: ../inc/pro/class-destination-gdrive.php:866 -#, php-format -msgid "Extra file %s uploaded to Google Drive" -msgstr "Extra Datei %s auf Google Drive hochgeladen" +#: ../inc/class-page-settings.php:277 +msgid "Auto = Uses PHP class ZipArchive if available; otherwise uses PclZip.
ZipArchive = Uses less memory, but many open files at a time.
PclZip = Uses more memory, but only 2 open files at a time." +msgstr "Auto = Nutzt die PHP-Klasse ZipArchive falls verfügbar; andernfalls wird PclZip genutzt.
ZipArchive = Benötigt weniger Memory, aber viele offene Dateien gleichzeitig.
PclZip = Benötigt mehr Memory, aber nur 2 zur gleichen Zeit offene Dateien." -#: ../inc/pro/class-destination-glacier.php:26 -msgid "Amazon Glacier" -msgstr "Amazon Glacier" +#: ../inc/class-page-settings.php:288 +msgid "Key to start jobs externally with an URL" +msgstr "Schlüssel für den Start eines Auftrags über eine externe URL" -#: ../inc/pro/class-destination-glacier.php:30 -msgid "Select a region:" -msgstr "Wähle eine Region:" +#: ../inc/class-page-settings.php:291 +msgid "empty = deactivated. Will be used to protect job starts from unauthorized person." +msgstr "leer = deaktiviert. Wird verwendet, damit niemand sonst die Auftragsstart-URLs nutzen kann." -#: ../inc/pro/class-destination-glacier.php:32 ../inc/pro/class-destination- -#: glacier.php:154 -msgid "Amazon Glacier Region" -msgstr "Amazon Glacier Region" +#: ../inc/class-page-settings.php:296 ../inc/class-page-settings.php:299 +msgid "Reduce server load" +msgstr "Reduziere Server-Auslastung" -#: ../inc/pro/class-destination-glacier.php:33 ../inc/pro/class-destination- -#: glacier.php:155 -msgid "US Standard" -msgstr "US Standard" +#: ../inc/class-page-settings.php:306 +msgid "maximum" +msgstr "maximum" -#: ../inc/pro/class-destination-glacier.php:34 ../inc/pro/class-destination- -#: glacier.php:156 -msgid "US West (Northern California)" -msgstr "US West (Northern California)" +#: ../inc/class-page-settings.php:409 ../inc/class-page-settings.php:410 +msgid "Setting" +msgstr "Einstellung" -#: ../inc/pro/class-destination-glacier.php:35 ../inc/pro/class-destination- -#: glacier.php:157 -msgid "US West (Oregon)" -msgstr "US West (Oregon)" +#: ../inc/class-page-settings.php:411 +msgid "WordPress version" +msgstr "WordPress-Version" -#: ../inc/pro/class-destination-glacier.php:36 ../inc/pro/class-destination- -#: glacier.php:158 -msgid "EU (Ireland)" -msgstr "EU (Ireland)" +#: ../inc/class-page-settings.php:413 +msgid "BackWPup version" +msgstr "BackWPup-Version" -#: ../inc/pro/class-destination-glacier.php:37 ../inc/pro/class-destination- -#: glacier.php:159 -msgid "EU (Germany)" -msgstr "EU (Germany)" +#: ../inc/class-page-settings.php:415 +msgid "BackWPup Pro version" +msgstr "BackWPup-Pro-Version" -#: ../inc/pro/class-destination-glacier.php:38 ../inc/pro/class-destination- -#: glacier.php:160 -msgid "Asia Pacific (Tokyo)" -msgstr "Asia Pacific (Tokyo)" +#: ../inc/pro/class-jobtype-dbdump.php:89 +msgid "Backup only WordPress Database tables" +msgstr "Nur die WordPress Datenbank Tabellen sichern" -#: ../inc/pro/class-destination-glacier.php:39 ../inc/pro/class-destination- -#: glacier.php:161 -msgid "Asia Pacific (Singapore)" -msgstr "Asia Pacific (Singapore)" +#: ../inc/class-jobtype-dbdump.php:15 +msgid "Creates an .sql database backup file" +msgstr "Erstellt ein Datenbank-Backup (.sql, .xml)" -#: ../inc/pro/class-destination-glacier.php:40 ../inc/pro/class-destination- -#: glacier.php:162 -msgid "Asia Pacific (Sydney)" -msgstr "Asia Pacific (Sydney)" +#: ../inc/pro/class-jobtype-dbdump.php:978 +msgid "Database XML backup done!" +msgstr "Datenbank XML Backup erstellt!" -#: ../inc/pro/class-destination-glacier.php:41 ../inc/pro/class-destination- -#: glacier.php:163 -msgid "South America (Sao Paulo)" -msgstr "South America (Sao Paulo)" +#: ../inc/class-page-about.php:418 ../inc/class-page-about.php:428 +msgid "Use your backup archives to save your entire WordPress installation including /wp-content/. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin or a plugin like Adminer to restore your database backup files." +msgstr "Benutze deine Backup-Archive, um deine gesamte WordPress-Installation zu sichern, einschließlich /wp-content/. Lade sie zu einem externen Dienst hoch, wenn du deine Backups nicht auf demselben Server speichern möchtest. Mit einem einzigen Backup-Archiv kannst du deine Installation wiederherstellen. Benutze ein serverseitiges Tool wie phpMyAdmin, oder ein Plugin wie Adminer, um deine Datenbanksicherung wiederherzustellen." -#: ../inc/pro/class-destination-glacier.php:42 -msgid "China (Beijing)" -msgstr "China (Beijing)" +#: ../inc/class-mysqldump.php:443 +msgid "Length for table backup is not correctly set: %1$s " +msgstr "Länge des Tabellen Backups ist nicht richtig gesetzt: %1$s " -#: ../inc/pro/class-destination-glacier.php:48 -msgid "Amazon Access Keys" -msgstr "Amazon Zugriffsschlüssel" +#: ../inc/class-jobtype-dbdump.php:256 ../inc/pro/class-jobtype-dbdump.php:562 +#: .. /inc/pro/class-jobtype-dbdump.php:739 +msgid "Database backup done!" +msgstr "Datenbank-Backup fertig!" -#: ../inc/pro/class-destination-glacier.php:67 -msgid "Vault" -msgstr "Tresor" +#: ../inc/pro/class-jobtype-dbdump.php:811 +msgid "No tables for XML backup" +msgstr "Es gibt keine Tabellen für einen XML Backup" -#: ../inc/pro/class-destination-glacier.php:71 -msgid "Vault selection" -msgstr "Tresorauswahl" +#: ../inc/class-jobtype-dbdump.php:183 ../inc/pro/class-jobtype-dbdump.php:486 +msgid "No tables to backup." +msgstr "Es gibt keine Tabellen zu sichern" -#: ../inc/pro/class-destination-glacier.php:83 -msgid "Create a new vault" -msgstr "Neuen Tresor erstellen" +#: ../inc/class-mysqldump.php:439 +msgid "Start for table backup is not correctly set: %1$s " +msgstr "Start für den Tabellen Backup ist nicht richtig gesetzt: %1$s " -#: ../inc/pro/class-destination-glacier.php:90 -msgid "Glacier Backup settings" -msgstr "Glacier Backup Einstellungen" +#: ../inc/pro/class-jobtype-dbdump.php:556 +msgid "Added database backup \"%1$s\" with %2$s to backup file list" +msgstr "Datenbank-Backup \"%1$s\" mit %2$s zur Backup-Datei-Liste hinzugefügt" -#: ../inc/pro/class-destination-glacier.php:97 ../inc/pro/class-destination- -#: glacier.php:181 -msgid "" -"Number of files to keep in folder. (Archives deleted before 3 months after " -"they have been stored may cause extra costs when deleted.)" -msgstr "" -"Anzahl der im Ordner verbleibenden Dateien. (Archive, die vor Ablauf von 3 " -"Monaten gelöscht werden, können zusätzliche Kosten verursachen.)" +#: ../inc/class-page-backwpup.php:77 ../inc/class-page-backwpup.php:86 +msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin or a plugin like Adminer to restore your database backup files." +msgstr "Mit einem einzigen Backup-Archiv kannst du deine Installation wiederherstellen. Benutze ein serverseitiges Tool wie phpMyAdmin, oder ein Plugin wie Adminer, um deine Datenbanksicherung wiederherzustellen." -#: ../inc/pro/class-destination-glacier.php:130 ../inc/pro/class-destination- -#: glacier.php:216 -#, php-format -msgid "Vault %1$s created." -msgstr "Tresor %1$s erstellt." +#: ../inc/class-page-settings.php:449 +msgid "Temporary folder %s is not writable." +msgstr "Temporärer Ordner %s ist nicht beschreibbar." -#: ../inc/pro/class-destination-glacier.php:132 ../inc/pro/class-destination- -#: glacier.php:218 -#, php-format -msgid "Vault %s could not be created." -msgstr "Tresor %s konnte nicht erstellt werden." +#: ../inc/pro/class-jobtype-dbdump.php:754 +msgid "%d. Try to backup database as XML …" +msgstr "%d. Versuche, Datenbank als XML zu sichern …" -#: ../inc/pro/class-destination-glacier.php:153 -msgid "Select an Amazon Glacier region:" -msgstr "Wähle Amazon Glacier Region:" +#: ../inc/class-page-settings.php:162 +msgid "Display folder sizes in the files tab when editing a job. (Might increase loading time of files tab.)" +msgstr "Ordnergrößen im Tab Dateien anzeigen, wenn ein Auftrag bearbeitet wird. (Kann die Ladezeit des Tab erhöhen.)" -#: ../inc/pro/class-destination-glacier.php:169 -msgid "Vault:" -msgstr "Tresor:" +#: ../inc/class-job.php:2069 +msgctxt "Archive compression method" +msgid "Compressing files as %s. Please be patient, this may take a moment." +msgstr "Komprimiere Dateien als %s. Bitte habe einen Moment Geduld." -#: ../inc/pro/class-destination-glacier.php:178 -msgid "New Vault:" -msgstr "Neuer Tresor:" +#: ../inc/class-admin.php:404 +msgid "Get BackWPup Pro now." +msgstr "Wechsle jetzt zu BackWPup Pro." -#: ../inc/pro/class-destination-glacier.php:259 ../inc/pro/class-destination- -#: glacier.php:375 ../inc/pro/class-destination-glacier.php:394 ../inc/pro/class- -#: destination-glacier.php:434 -#, php-format -msgid "AWS API: %s" -msgstr "AWS API: %s" +#: ../inc/class-job.php:375 +msgid "[INFO] Maximum PHP script execution time is %1$d seconds" +msgstr "[INFO] Maximum PHP script execution time ist %1$d Sekunden" -#: ../inc/pro/class-destination-glacier.php:283 -#, php-format -msgid "%d. Trying to send backup file to Amazon Glacier …" -msgstr "%d. Versuche Backup-Datei zu Amazon Glacier zu senden …" +#: ../inc/class-page-about.php:417 ../inc/class-page-backwpup.php:75 +msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze." +msgstr "Die Assistenten in BackWPup machen das Planen und terminieren deiner Sicherungen zu einem Spaziergang." -#: ../inc/pro/class-destination-glacier.php:296 -#, php-format -msgid "Connected to Glacier vault \"%1$s\" with %2$d archives and size of %3$d" -msgstr "Verbunden mit Glacier-Vault \"%1$s\" mit %2$d archives einer Größe von %3$d" +#: ../inc/class-page-about.php:419 +msgid "Ready to set up a backup job? You can use the wizards or plan your backup in expert mode." +msgstr "Bereit, einen Backup-Auftrag anzulegen? Benutze die Assistenten, oder plane dein Backup im Expertenmodus." -#: ../inc/pro/class-destination-glacier.php:298 -#, php-format -msgid "Glacier vault \"%s\" does not exist!" -msgstr "Glacier Tresor \"%s\" existiert nicht!" +#: ../inc/class-page-about.php:429 +msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save." +msgstr "Bereit, einen Backup-Auftrag anzulegen? Benutze einen der Assistenten, um deine Sicherung zu planen." -#: ../inc/pro/class-destination-glacier.php:304 -msgid "Starting upload to Amazon Glacier …" -msgstr "Upload zu Amazon Glacier wird gestartet …" +#: ../inc/class-page-backups.php:418 +msgid "Backup Files" +msgstr "Backup-Dateien" -#: ../inc/pro/class-destination-glacier.php:357 -#, php-format -msgid "Archive ID: %s" -msgstr "Archiv ID: %s" +#: ../inc/class-page-backwpup.php:75 ../inc/class-page-backwpup.php:84 +msgid "Use your backup archives to save your entire WordPress installation including /wp-content/. Push them to an external storage service if you don’t want to save the backups on the same server." +msgstr "Benutze deine Backup-Archive, um deine gesamte WordPress-Installation zu sichern, einschließlich /wp-content/. Lade sie zu einem externen Dienst hoch, wenn du deine Backups nicht auf demselben Server speichern möchtest." -#: ../inc/pro/class-destination-glacier.php:368 ../inc/pro/class-pro.php:102 -msgid "Glacier" -msgstr "Glacier" +#: ../inc/class-page-backwpup.php:79 +msgid "Use one of the wizards to plan a backup, or use expert mode for full control over all options." +msgstr "Verwende einen der Assistenten, um dein Backup zu planen, oder den Expertenmodus für die volle Übersicht über alle Optionen." -#: ../inc/pro/class-destination-glacier.php:424 -#, php-format -msgid "Cannot delete archive from %s." -msgstr "Kann das Archiv aus %s nicht löschen." +#: ../inc/class-page-backwpup.php:79 ../inc/class-page-backwpup.php:89 +msgid "Please note: You are solely responsible for the security of your data; the authors of this plugin are not." +msgstr "Bitte beachte: Für die Sicherheit deiner Daten bist du allein verantwortlich; die Autoren dieses Plugins sind es nicht." -#: ../inc/pro/class-destination-glacier.php:428 -#, php-format -msgid "One file deleted on vault." -msgid_plural "%d files deleted on vault" -msgstr[0] "Eine Datei aus Tresor entfernt." -msgstr[1] "%d Dateien aus Tresor entfernt" +#: ../inc/class-page-backwpup.php:84 +msgid "Use the short links in the First steps box to plan and schedule backup jobs." +msgstr "Benutze die Schnellverweise in Erste Schritte, um einen Backup-Auftrag zu planen und zu terminieren." -#: ../inc/pro/class-destination-glacier.php:542 -msgid "No vault found!" -msgstr "Kein Tresor gefunden!" +#: ../inc/class-page-backwpup.php:88 +msgid "Add a new backup job and plan what you want to save." +msgstr "Erstelle einen Backup-Auftrag und plane deine Sicherung." -#: ../inc/pro/class-jobtype-wpplugin.php:13 -msgid "Nothing to configure" -msgstr "Nichts zu konfiguieren" +#: ../inc/class-page-backwpup.php:232 +msgctxt "Pro teaser box" +msgid "Thank you for using BackWPup!" +msgstr "Danke, dass du BackWPup benutzt!" -#: ../inc/pro/class-marketpress-autoupdate.php:344 -#, php-format -msgctxt "%s = plugin name" -msgid "" -"Your license for the plugin %s is not valid. The auto-update has been " -"deactivated. Please insert a valid key on MarketPress Dashboard. Or if you " -"want to add an other valid code use the form below." -msgstr "" -"Dein Lizenzschlüssel für das Plugin %s ist ungültig. Automatische Updates " -"wurden deaktiviert. Gib bitte einen gültigen Schlüssel im MarketPress " -"Dashboard ein. Wenn du einen anderen gültigen Schlüssel hinzufügen möchtest, " -"nutze bitte das Formular (unten)." +#: ../inc/class-page-backwpup.php:235 +msgctxt "Pro teaser box" +msgid "Get access to:" +msgstr "Erhalte Zugang zu:" -#: ../inc/pro/class-marketpress-autoupdate.php:356 -msgid "" -"You are currently using a valid key for this plugin. You are able to renew " -"the key in MarketPress Dashboard. Or if you want to add another valid code " -"use the form below." -msgstr "" -"Du verwendest derzeit einen gültigen Lizenzschlüssel für dieses Plugin. Du " -"kannst die Lizenzen im MarketPress Dashboard erneuern. Oder einen anderen " -"gültigen Schlüssel eintragen." +#: ../inc/class-page-backwpup.php:237 +msgctxt "Pro teaser box" +msgid "First-class dedicated support at MarketPress Helpdesk." +msgstr "Erstklassigem persönlichen Support im Helpdesk bei MarketPress." -#: ../inc/pro/class-marketpress-autoupdate.php:366 -#, php-format -msgctxt "%s = plugin name" -msgid "" -"Your license for the plugin %s is not valid. The auto-update has been " -"deactivated." -msgstr "" -"Deine Lizenz für das Plugin %s ist ungültig. Automatische Updates wurden " -"deaktiviert." +#: ../inc/class-page-backwpup.php:238 +msgctxt "Pro teaser box" +msgid "Differential backups to Google Drive and other cloud storage service." +msgstr "Differenzielle Backups zu Google Drive anderen Cloud-Storage-Diensten." -#: ../inc/pro/class-marketpress-autoupdate.php:379 -#, php-format -msgid "" -"You are currently using a valid key for this plugin. You are able to renew " -"the key below or you can delete the key by clicking here." -msgstr "" -"Du verwendest einen gültigen Lizenzschlüssel für dieses Plugin. Du kannst " -"den Schlüssel unten erneuern oder Löschen zum Löschen hier " -"klicken." +#: ../inc/class-page-backwpup.php:239 +msgctxt "Pro teaser box" +msgid "Easy-peasy wizards to create and schedule backup jobs." +msgstr "Kinderleichte Assistenten zum Erstellen und Planen von Backup-Aufträgen." -#: ../inc/pro/class-marketpress-autoupdate.php:386 -msgid "License Key" -msgstr "Lizenzschlüssel" +#: ../inc/class-page-backwpup.php:240 +msgctxt "Pro teaser box, link text" +msgid "And more…" +msgstr "Und mehr…" -#: ../inc/pro/class-marketpress-autoupdate.php:389 -msgid "Activate" -msgstr "Aktivieren" +#: ../inc/class-page-backwpup.php:242 +msgctxt "Pro teaser box, link title" +msgid "Get BackWPup Pro now" +msgstr "Wechsle jetzt zu BackWPup Pro" -#: ../inc/pro/class-marketpress-autoupdate.php:558 -msgid "The License has been deleted." -msgstr "Die Lizenz wurde gelöscht." +#: ../inc/class-page-backwpup.php:242 +msgctxt "Pro teaser box, link text" +msgid "Get BackWPup Pro now" +msgstr "Wechsle jetzt zu BackWPup Pro" -#: ../inc/pro/class-marketpress-autoupdate.php:565 -msgid "Plugin successfully activated." -msgstr "Plugin erfolgreich aktiviert." +#: ../inc/class-page-logs.php:194 ../inc/class-page-jobs.php:172 +msgid "Job ID: %d" +msgstr "Auftrags-ID: %d" -#: ../inc/pro/class-marketpress-autoupdate.php:572 -msgid "The entered license key is wrong." -msgstr "Der eingegebene Lizenzschlüssel ist falsch." +#: ../inc/class-page-jobs.php:784 +msgid "Job completed" +msgstr "Auftrag vollständig" -#: ../inc/pro/class-marketpress-autoupdate.php:579 -msgid "" -"You have reached the limit of urls. Please update your license at marketpress.com." -msgstr "" -"Du hast das Limit der URLs erreicht. Bitte aktualisiere deine Lizenz auf marketpress.de." +#: ../inc/pro/class-destination-gdrive.php:37 +#: ../inc/pro/class-destination-gdrive. php:256 +msgid "Looks like you haven’t set up any API keys yet. Head over to Settings | API-Keys and get Google Drive all set up, then come back here." +msgstr "Sieht so aus, als hättest du bis jetzt noch keine API-Schlüssel erstellt. Gehe zu Einstellungen | API-Schlüssel und setze die Verbindung zu Google Drive auf, kann komm’ hierhin zurück." -#: ../inc/pro/class-marketpress-autoupdate.php:586 -msgid "" -"Something went wrong. Please try again later or contact the MarketPress Team." -msgstr "" -"Etwas ist falsch gelaufen. Bitte versuche es erneut oder kontaktiere das MarketPress Team." +#: ../inc/pro/class-destination-gdrive.php:67 +msgid "Folder in Google Drive" +msgstr "Ordner in Google Drive" -#: ../inc/pro/class-marketpress-autoupdate.php:593 -msgid "" -"Due to a wrong license you are not allowed to activate this plugin. Please " -"update your license at marketpress.com." -msgstr "" -"Dir ist nicht erlaubt, das Plugin zu aktivieren, mit einer falschen Lizenz. " -"Bitte aktualisiere deine Lizenz auf MarketPress.de." +#: ../inc/pro/class-page-wizard.php:169 ../inc/pro/class-page-wizard.php:437 .. +#: /inc/pro/class-page-wizard.php:470 +msgid "Next ›" +msgstr "Weiter ›" -#: ../inc/pro/class-wizard-job.php:15 -msgid "Create a job" -msgstr "Job erstellen" +#: ../inc/pro/class-page-wizard.php:186 ../inc/pro/class-page-wizard.php:433 +msgid "‹ Previous" +msgstr "‹ Zurück" -#: ../inc/pro/class-wizard-job.php:16 -msgid "Choose a job" -msgstr "Job auswählen" +#: ../inc/class-destination-dropbox.php:277 +#: ../inc/pro/class-destination-gdrive. php:609 +#: ../inc/pro/class-destination-glacier.php:367 +msgid "Error transfering backup to %s." +msgstr "Fehler beim Übertragen des Backups zu %s." -#: ../inc/pro/class-wizard-job.php:41 -msgid "Job Types" -msgstr "Arbeitsauftrag Typen" +#: ../inc/pro/class-destination-gdrive.php:582 +msgid "Error transfering file chunks to %s." +msgstr "Fehler beim Übertragen von Datei-Teilen zu %s." -#: ../inc/pro/class-wizard-job.php:41 -msgid "Select a task for your job." -msgstr "Wähle eine Aufgabe für deinen Auftrag." +#: ../inc/pro/class-destination-gdrive.php:583 ../inc/pro/class-destination- +#: gdrive.php:609 +msgid "Google Drive" +msgstr "Google Drive" -#: ../inc/pro/class-wizard-job.php:55 -msgid "Archive Settings" -msgstr "Archiv Einstellungen" +#: ../inc/pro/class-destination-glacier.php:97 ../inc/pro/class-destination- +#: glacier.php:181 +msgid "Number of files to keep in folder. (Archives deleted before 3 months after they have been stored may cause extra costs when deleted.)" +msgstr "Anzahl der im Ordner verbleibenden Dateien. (Archive, die vor Ablauf von 3 Monaten gelöscht werden, können zusätzliche Kosten verursachen.)" -#: ../inc/pro/class-wizard-job.php:55 -msgid "Settings for the Backup Archive" -msgstr "Einstellungen für das Backup Archiv" +#: ../inc/class-jobtype-dbdump.php:155 ../inc/pro/class-jobtype-dbdump.php:453 +msgid "%d. Try to backup database …" +msgstr "%d. Versuche, die Datenbank zu sichern …" -#: ../inc/pro/class-wizard-job.php:57 -msgid "Where would you like to store the backup file?" -msgstr "Wo wollen Sie die Backup-Datei speichern?" +#: ../inc/class-page-backwpup.php:74 ../inc/class-page-backwpup.php:83 +msgctxt "Dashboard heading" +msgid "Planning backups" +msgstr "Backups planen" -#: ../inc/pro/class-wizard-job.php:67 ../inc/pro/class-wizard-job.php:292 -msgid "Scheduling" -msgstr "Planung" +#: ../inc/class-page-backwpup.php:76 ../inc/class-page-backwpup.php:85 +msgctxt "Dashboard heading" +msgid "Restoring backups" +msgstr "Backups wiederherstellen" -#: ../inc/pro/class-wizard-job.php:67 -msgid "When would you like to start the job?" -msgstr "Wann soll der Auftrag gestartet werden?" +#: ../inc/class-page-backwpup.php:78 ../inc/class-page-backwpup.php:87 +msgctxt "Dashboard heading" +msgid "Ready to set up a backup job?" +msgstr "Bereit, einen Backup-Auftrag zu erstellen?" -#: ../inc/pro/class-wizard-job.php:236 -msgid "Select one or more tasks for your backup job." -msgstr "Wähle eine zusätzliche Aufgabe für deinen Backup-Auftrag." +#: ../inc/class-page-settings.php:263 +msgid "Job will restart before hitting maximum execution time. It will not work with CLI and not on every step during execution. If ALTERNATE_WP_CRON has been defined, WordPress Cron will be used." +msgstr "Auftrag wird neu gestartet, bevor die Maximal Execution Time erreicht wird. Es funktioniert nicht in Verbindung mit CLI. Wenn ALTERNATE_WP_CRON definiert wurde, wird der WordPress-Cron verwendet." -#: ../inc/pro/class-wizard-job.php:293 -msgid "Activate scheduling" -msgstr "Aktive Planung" +#: ../inc/pro/class-jobtype-dbdump.php:577 +msgid "%d. Try to backup MySQL system …" +msgstr "%d. Versuche, das MySQL-System zu sichern …" -#: ../inc/pro/class-wizard-job.php:387 -msgid "Sync file by file to destination" -msgstr "Synchronisiere Datei für Datei zum Zielverzeichnis" +#: ../inc/pro/class-wizard-systemtest.php:118 +msgid "PHP cURL extension must be installed to use the full plugin functionality." +msgstr "Die cURL-Erweiterung für PHP muss installiert sein, um das Plugin im Vollem Umfang zu nutzen." -#: ../inc/pro/class-wizard-job.php:398 -msgid "Select a compression type for the backup archive" -msgstr "Wähle einen Kompressions-Typ für das Backup Archiv" +#: ../inc/pro/class-wizard-systemtest.php:178 +msgid "The HTTP response test result is a wrong HTTP status: %s. It should be status 200." +msgstr "Der HTTP-Response-Test hat einen falschen HTTP-Status ergeben: %s. Es sollte Status 200 sein." -#: ../inc/pro/class-wizard-job.php:401 -msgid "Archive compression type" -msgstr "Archiv Kompressions-Typ" +#: ../inc/class-destination-email.php:79 +msgid "- Use site settings: retrieve the email settings of your site.
-PHP mail(): needs more PHP memory" +msgstr "- Verwende Seiteneinstellungen: Rufe die E-Mail-Einstellungen von deiner Seite ab.
-PHP mail():benötigt mehr PHP-Speicher" -#: ../inc/pro/class-wizard-job.php:404 -msgid "" -"PHP Zip functions will be used if available (memory lees). Else PCLZip Class " -"will used." -msgstr "" -"PHP Zip Funktionen wird verwendent, sofern verfügbar (memory lees). " -"Ansosnten wird PCLZip Class verwendet." +#: ../inc/class-page-jobs.php:615 +msgid "Log of running job" +msgstr "Protokoll des laufenden Auftrags" -#: ../inc/pro/class-wizard-job.php:406 ../inc/pro/class-wizard-job.php:411 .. -#: inc/pro/class-wizard-job.php:415 -msgid "Disabled because missing PHP function." -msgstr "Aufgrund fehlender PHP Funktion deaktiviert." +#: ../inc/class-page-settings.php:437 +#: ../inc/pro/class-wizard-systemtest.php:183 +msgid "The BackWPup HTTP response header returns a false value: \"%s\"" +msgstr "Der HTTP Response Header in BackWPup gibt einen fehlerhaften Wert zurück: \"%s\"" -#: ../inc/pro/class-wizard-job.php:407 -msgid "Tar (fast and memory less) uncompressed" -msgstr "Tar (schnell und speicherschonend) unkomprimiert" +#: ../inc/class-page-settings.php:455 +msgid "Log folder:" +msgstr "Protokoll-Ordner:" -#: ../inc/pro/class-wizard-job.php:409 -msgid "A tared and GZipped archive (fast and memory less)" -msgstr "Ein .tar und .gz Archiv (schnell und schlank)" +#: ../inc/class-page-settings.php:459 +msgid "Log folder %s is not writable." +msgstr "Protokoll-Ordner %s ist nicht beschreibbar." -#: ../inc/pro/class-wizard-job.php:413 -msgid "A tared and BZipped archive (fast and memory less)" -msgstr "Ein .tar und .bz Archiv (schnell und schlank)" +#: ../inc/pro/class-destination-gdrive.php:797 +msgid "File %s moved to trash in Google Drive" +msgstr "Datei %s in den Papierkorb bei Google Drive verschoben" -#: ../inc/pro/class-wizard-job.php:435 -msgid "Where to store the files" -msgstr "Wo die Dateien abgelegt werden" +#: ../inc/pro/class-destination-glacier.php:30 +msgid "Select a region:" +msgstr "Wähle eine Region:" -#: ../inc/pro/class-wizard-job.php:619 -#, php-format -msgid "Wizard: %1$s" -msgstr "Assistent: %1$s" +#: ../inc/pro/class-destination-glacier.php:296 +msgid "Connected to Glacier vault \"%1$s\" with %2$d archives and size of %3$d" +msgstr "Verbunden mit Glacier-Vault \"%1$s\" mit %2$d archives einer Größe von %3$d" #: ../inc/pro/class-wizard-job.php:638 -#, php-format msgid "New job %s generated." msgstr "Neuer Auftrag %s erstellt." -#: ../inc/pro/class-wizard-job.php:650 -msgid "Create Job" -msgstr "Erstelle Auftrag" +msgid "WordPress Backup Plugin" +msgstr "WordPress Backup Plugin" -#: ../inc/pro/class-wizard-job.php:675 ../inc/pro/class-wizard-job.php:676 -msgid "Database Backup and XML Export (Daily)" -msgstr "DB Sicherung & XML Export (täglich)" +msgid "Inpsyde GmbH" +msgstr "Inpsyde GmbH" -#: ../inc/pro/class-wizard-job.php:693 ../inc/pro/class-wizard-job.php:694 -msgid "Database Check (Weekly)" -msgstr "Datenbank Überprüfung (wöchentlich)" +msgid "http://inpsyde.com" +msgstr "http://inpsyde.com" -#: ../inc/pro/class-wizard-job.php:718 ../inc/pro/class-wizard-job.php:719 -msgid "Backup all files" -msgstr "Sicherung aller Dateien" +#: ../inc/class-page-about.php:602 ../inc/pro/class-pro.php:122 +msgid "Backup to Google Drive" +msgstr "Backup zu Google Drive" -#: ../inc/pro/class-wizard-job.php:733 -msgid "Essential files + list of plugins" -msgstr "Wichtige Dateien + Pluginliste" +#: ../inc/class-page-about.php:607 ../inc/pro/class-pro.php:103 +msgid "Backup to Amazon Glacier" +msgstr "Backup zu Amazon Glacier" -#: ../inc/pro/class-wizard-job.php:734 -msgid "Backup essential files and folders, plus a list of installed plugins." -msgstr "" -"Backup von wichtigen Dateien und Ordner, plus einer Liste von installierten " -"Plugins." +#: ../inc/class-page-jobs.php:187 +msgid "Last log" +msgstr "Letztes Log" -#: ../inc/pro/class-wizard-job.php:749 ../inc/pro/class-wizard-job.php:750 -msgid "Custom configuration" -msgstr "Angepasste Konfiguration" +#: ../inc/pro/class-destination-gdrive.php:152 ../inc/pro/class-destination- +#: gdrive.php:177 ../inc/pro/class-destination-gdrive.php:201 ../inc/pro/class- +#: destination-gdrive.php:223 +msgid "GDrive API: %s" +msgstr "GDrive API: %s" -#: ../inc/pro/class-pro.php:121 -msgid "GDrive" -msgstr "GDrive" +#: ../inc/pro/class-destination-gdrive.php:141 ../inc/pro/class-destination- +#: gdrive.php:168 +msgid "GDrive: Authenticated." +msgstr "GDrive: Authentifiziert." -#: ../inc/pro/class-pro.php:174 ../inc/pro/class-pro.php:174 ../inc/pro/class-pro. -#: php:210 -msgid "Wizards" -msgstr "Assistenten" +#: ../inc/pro/class-destination-gdrive.php:382 +msgid "%d. Try to send backup file to Google Drive …" +msgstr "%d. Versuche das Backup zu Google Drive zu senden …" + +#: ../inc/pro/class-destination-gdrive.php:407 +msgid "Uploading to Google Drive …" +msgstr "Upload zu Google Drive …" + +#: ../inc/pro/class-destination-gdrive.php:467 +msgid "Google Drive API: could not create resumable file" +msgstr "Google Drive API: kann keine fortsetzbare Datei generieren" + +#: ../inc/pro/class-destination-gdrive.php:513 +msgid "Can not resume transfer backup to Google Drive!" +msgstr "Kann den Backup-Transfer zu Google Drive nicht fortsetzen!" \ No newline at end of file diff --git a/languages/backwpup-sv_SE.mo b/languages/backwpup-sv_SE.mo new file mode 100644 index 0000000000000000000000000000000000000000..b977da085fb6198c92eb05ba4042e68732abe689 GIT binary patch literal 99642 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 QKmV(-F=KQ!tkk&qe^o!rzyJUM literal 0 HcmV?d00001 diff --git a/languages/backwpup-sv_SE.po b/languages/backwpup-sv_SE.po new file mode 100644 index 00000000..505274d7 --- /dev/null +++ b/languages/backwpup-sv_SE.po @@ -0,0 +1,5983 @@ +msgid "" +msgstr "" +"Project-Id-Version: BackWPup Pro v3.1.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-11-12 13:25+0100\n" +"PO-Revision-Date: 2015-08-31 18:13+0200\n" +"Last-Translator: P. E.\n" +"Language-Team: P. E.\n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Poedit 1.8.4\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" +"X-Poedit-Basepath: .\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: ..\n" + +# @ backwpup +#: ../backwpup.php:42 +msgid "BackWPup requires PHP version 5.2.7 with spl extension or greater and WordPress 3.4 or greater." +msgstr "BackWPup kräver PHP version 5.2.7 med spl-utökning eller senare samt WordPress 3.4 eller senare." + +# @ backwpup +#: ../backwpup.php:289 +msgid "Folder" +msgstr "Mapp" + +# @ backwpup +#: ../backwpup.php:290 +msgid "Backup to Folder" +msgstr "Backup till mapp" + +# @ backwpup +#: ../backwpup.php:305 +msgid "Email" +msgstr "E-post" + +# @ backwpup +#: ../backwpup.php:306 +msgid "Backup sent via email" +msgstr "Backup skickas via e-post" + +# @ backwpup +#: ../backwpup.php:321 +msgid "FTP" +msgstr "FTP" + +# @ backwpup +#: ../backwpup.php:322 +msgid "Backup to FTP" +msgstr "Backup till FTP" + +# @ backwpup +#: ../backwpup.php:337 +msgid "Dropbox" +msgstr "Dropbox" + +# @ backwpup +#: ../backwpup.php:338 +msgid "Backup to Dropbox" +msgstr "Backup till Dropbox" + +# @ backwpup +#: ../backwpup.php:354 ../backwpup.php:373 +msgid "S3 Service" +msgstr "S3-tjänst" + +# @ backwpup +#: ../backwpup.php:355 +msgid "Backup to an S3 Service" +msgstr "Backup till en S3-tjänst" + +# @ backwpup +#: ../backwpup.php:374 +msgid "Backup to an S3 Service v1" +msgstr "Backup till en S3-tjänst v1" + +# @ backwpup +#: ../backwpup.php:390 +msgid "MS Azure" +msgstr "MS Azure" + +# @ backwpup +#: ../backwpup.php:391 +msgid "Backup to Microsoft Azure (Blob)" +msgstr "Backup till Microsoft Azure (Blob)" + +# @ backwpup +#: ../backwpup.php:406 +msgid "RSC" +msgstr "RSC" + +# @ backwpup +#: ../backwpup.php:407 +msgid "Backup to Rackspace Cloud Files" +msgstr "Backup till Rackspace Cloud Files" + +# @ backwpup +#: ../backwpup.php:423 +msgid "SugarSync" +msgstr "SugarSync" + +# @ backwpup +#: ../backwpup.php:424 +msgid "Backup to SugarSync" +msgstr "Backup till SugarSync" + +# @ backwpup +#: ../backwpup.php:443 +#, php-format +msgid "PHP Version %1$s is to low, you need Version %2$s or above." +msgstr "PHP-version %1$s är för gammal, du behöver Version %2$s eller senare." + +# @ backwpup +#: ../backwpup.php:450 +#, php-format +msgid "Missing function \"%s\"." +msgstr "Saknad funktion \"%s\"." + +# @ backwpup +#: ../backwpup.php:459 +#, php-format +msgid "Missing class \"%s\"." +msgstr "Saknad klass \"%s\"." + +# @ backwpup +#: ../inc/class-destination-folder.php:26 ../inc/class-destination-ftp.php:52 +msgid "Backup settings" +msgstr "Backup-inställningar" + +# @ backwpup +#: ../inc/class-destination-folder.php:30 +msgid "Folder to store backups in" +msgstr "Mapp att spara backup-filer i" + +# @ backwpup +#: ../inc/class-destination-folder.php:36 ../inc/class-destination-ftp.php:62 +msgid "File Deletion" +msgstr "Filborttagning" + +# @ backwpup +#: ../inc/class-destination-folder.php:42 ../inc/class-destination-s3.php:160 +msgid "Number of files to keep in folder." +msgstr "Antal filer att lagra i mapp." + +# @ backwpup +#: ../inc/class-destination-folder.php:46 ../inc/class-destination-s3.php:164 +#: ../inc/class-destination-ftp.php:72 +msgid "Do not delete files while syncing to destination!" +msgstr "Ta ej bort filer medans synkning mot målmapp sker!" + +# @ backwpup +#: ../inc/class-destination-folder.php:194 +#, php-format +msgid "One backup file deleted" +msgid_plural "%d backup files deleted" +msgstr[0] "En backup-fil togs bort" +msgstr[1] "%d backup-filer togs bort" + +# @ backwpup +#: ../inc/class-destination-s3.php:74 +msgid "Select a S3 service" +msgstr "Välj en S3-tjänst" + +# @ backwpup +#: ../inc/class-destination-s3.php:76 +msgid "Amazon S3 Region" +msgstr "Amazon S3-region" + +# @ backwpup +#: ../inc/class-destination-s3.php:77 +msgid "Amazon S3: US Standard" +msgstr "Amazon S3: US Standard" + +# @ backwpup +#: ../inc/class-destination-s3.php:78 +msgid "Amazon S3: US West (Northern California)" +msgstr "Amazon S3: US Väst (Norra Kalifornien)" + +# @ backwpup +#: ../inc/class-destination-s3.php:79 +msgid "Amazon S3: US West (Oregon)" +msgstr "Amazon S3: US Väst (Oregon)" + +# @ backwpup +#: ../inc/class-destination-s3.php:80 +msgid "Amazon S3: EU (Ireland)" +msgstr "Amazon S3: EU (Irland)" + +# @ backwpup +#: ../inc/class-destination-s3.php:81 +msgid "Amazon S3: EU (Germany)" +msgstr "Amazon S3: EU (Tyskland)" + +# @ backwpup +#: ../inc/class-destination-s3.php:82 +msgid "Amazon S3: Asia Pacific (Tokyo)" +msgstr "Amazon S3: Asien Stilla Havet (Tokyo)" + +# @ backwpup +#: ../inc/class-destination-s3.php:83 +msgid "Amazon S3: Asia Pacific (Singapore)" +msgstr "Amazon S3: Asien Stilla Havet (Singapore)" + +# @ backwpup +#: ../inc/class-destination-s3.php:84 +msgid "Amazon S3: Asia Pacific (Sydney)" +msgstr "Amazon S3: Asien Stilla Havet (Sydney)" + +# @ backwpup +#: ../inc/class-destination-s3.php:85 +msgid "Amazon S3: South America (Sao Paulo)" +msgstr "Amazon S3: Sydamerika (Sao Paulo)" + +# @ backwpup +#: ../inc/class-destination-s3.php:86 +msgid "Amazon S3: China (Beijing)" +msgstr "Amazon S3: Kina (Beijing)" + +# @ backwpup +#: ../inc/class-destination-s3.php:87 +msgid "Google Storage (Interoperable Access)" +msgstr "Google Storage (Interoperabel Åtkomst)" + +# @ backwpup +#: ../inc/class-destination-s3.php:88 +msgid "Dream Host Cloud Storage" +msgstr "Dream Host Molnlagring" + +# @ backwpup +#: ../inc/class-destination-s3.php:89 +msgid "GreenQloud Storage Qloud" +msgstr "GreenQloud Storage Qloud" + +# @ backwpup +#: ../inc/class-destination-s3.php:94 +msgid "Or a S3 Server URL" +msgstr "Eller en S3-server URL" + +# @ backwpup +#: ../inc/class-destination-s3.php:101 +msgid "S3 Access Keys" +msgstr "S3 Åtkomstnycklar" + +# @ backwpup +#: ../inc/class-destination-s3.php:105 +msgid "Access Key" +msgstr "Åtkomstnyckel" + +# @ backwpup +#: ../inc/class-destination-s3.php:112 +msgid "Secret Key" +msgstr "Hemlig Nyckel" + +# @ backwpup +#: ../inc/class-destination-s3.php:120 +msgid "S3 Bucket" +msgstr "S3-hink" + +# @ backwpup +#: ../inc/class-destination-s3.php:124 +msgid "Bucket selection" +msgstr "Hinkval" + +# @ backwpup +#: ../inc/class-destination-s3.php:137 +msgid "Create a new bucket" +msgstr "Skapa en ny hink" + +# @ backwpup +#: ../inc/class-destination-s3.php:144 +msgid "S3 Backup settings" +msgstr "S3 Backup-inställningar" + +# @ backwpup +#: ../inc/class-destination-s3.php:148 +msgid "Folder in bucket" +msgstr "Mapp i hink" + +# @ backwpup +#: ../inc/class-destination-s3.php:154 +msgid "File deletion" +msgstr "Filborttagning" + +# @ backwpup +#: ../inc/class-destination-s3.php:170 +msgid "Multipart Upload" +msgstr "Flerdelsuppladdning (multipart)" + +# @ backwpup +#: ../inc/class-destination-s3.php:174 +msgid "Use multipart upload for uploading a file" +msgstr "Använd flerdelsuppladdning (multipart) för att ladda upp en fil" + +# @ backwpup +#: ../inc/class-destination-s3.php:180 +msgid "Amazon specific settings" +msgstr "Inställningar specifika för Amazon" + +# @ backwpup +#: ../inc/class-destination-s3.php:184 ../inc/class-destination-s3.php:186 +msgid "Amazon: Storage Class" +msgstr "Amazon: Lagringsklass" + +# @ backwpup +#: ../inc/class-destination-s3.php:187 +msgid "none" +msgstr "inget" + +# @ backwpup +#: ../inc/class-destination-s3.php:188 +msgid "Reduced Redundancy" +msgstr "Reducerad Redundans" + +# @ backwpup +#: ../inc/class-destination-s3.php:193 +msgid "Server side encryption" +msgstr "Kryptering på servern" + +# @ backwpup +#: ../inc/class-destination-s3.php:197 +msgid "Save files encrypted (AES256) on server." +msgstr "Spara filer krypterade (AES256) på servern." + +# @ backwpup +#: ../inc/class-destination-s3.php:253 +#, php-format +msgid "Bucket %1$s created in %2$s." +msgstr "Hink %1$s skapad i %2$s." + +# @ backwpup +#: ../inc/class-destination-s3.php:255 +#, php-format +msgid "Bucket %s could not be created." +msgstr "Hink %s kunde ej skapas." + +# @ backwpup +#: ../inc/class-destination-s3.php:257 +#, php-format +msgid " %s is not a valid bucket name." +msgstr "%s är ej ett giltigt hinknamn." + +# @ backwpup +#: ../inc/class-destination-s3.php:297 ../inc/class-destination-s3.php:418 +#: ../inc/class-destination-s3.php:471 ../inc/class-destination-s3.php:501 +#: ../inc/class-destination-s3.php:561 +#, php-format +msgid "S3 Service API: %s" +msgstr "API för S3-tjänst: %s" + +# @ backwpup +#: ../inc/class-destination-s3.php:361 +#, php-format +msgid "%d. Trying to send backup file to S3 Service …" +msgstr "%d. Försöker skicka backup-fil till S3-tjänst …" + +# @ backwpup +#: ../inc/class-destination-s3.php:374 +#, php-format +msgid "Connected to S3 Bucket \"%1$s\" in %2$s" +msgstr "Ansluten till S3-hink \"%1$s\" i %2$s" + +# @ backwpup +#: ../inc/class-destination-s3.php:377 +#, php-format +msgid "S3 Bucket \"%s\" does not exist!" +msgstr "Amazon S3-hink \"%s\" existerar ej!" + +# @ backwpup +#: ../inc/class-destination-s3.php:384 +msgid "Checking for not aborted multipart Uploads …" +msgstr "Söker efter ej avbrutna flerdelsuppladdningar (multipart) …" + +# @ backwpup +#: ../inc/class-destination-s3.php:390 +#, php-format +msgid "Upload for %s aborted." +msgstr "Uppladdning för %s avbruten." + +# @ backwpup +#: ../inc/class-destination-s3.php:396 +msgid "Starting upload to S3 Service …" +msgstr "Påbörjar uppladdning till S3-tjänst …" + +# @ backwpup +#: ../inc/class-destination-s3.php:492 +#, php-format +msgid "Backup transferred to %s." +msgstr "Backup-fil överförd till %s." + +# @ backwpup +#: ../inc/class-destination-s3.php:497 +#, php-format +msgid "Cannot transfer backup to S3! (%1$d) %2$s" +msgstr "Kan ej överföra backup-fil till S3! (%1$d) %2$s" + +# @ backwpup +#: ../inc/class-destination-s3.php:525 +#, php-format +msgid "Storage Class: %s" +msgstr "Lagringsklass: %s" + +# @ backwpup +#: ../inc/class-destination-s3.php:551 +#, php-format +msgid "Cannot delete backup from %s." +msgstr "Kan ej ta bort backup-fil från %s." + +# @ backwpup +#: ../inc/class-destination-s3.php:555 +#, php-format +msgid "One file deleted on S3 Bucket." +msgid_plural "%d files deleted on S3 Bucket" +msgstr[0] "En fil borttagen från S3-hink." +msgstr[1] "%d filer borttagna från S3-hink." + +# @ backwpup +#: ../inc/class-destination-s3.php:658 +msgid "Missing access key!" +msgstr "Saknad åtkomstnyckel!" + +# @ backwpup +#: ../inc/class-destination-s3.php:660 +msgid "Missing secret access key!" +msgstr "Saknad hemlig åtkomstnyckel!" + +# @ backwpup +#: ../inc/class-destination-s3.php:666 +msgid "No bucket found!" +msgstr "Ingen hink hittades!" + +# @ backwpup +#: ../inc/class-page-about.php:394 +#, php-format +msgid "%s Welcome" +msgstr "%s Välkommen" + +# @ backwpup +#: ../inc/class-page-about.php:401 +msgid "Heads up! You have updated from version 2.x" +msgstr "Observera! Du har uppdaterat från version 2.x" + +# @ backwpup +#: ../inc/class-page-about.php:402 +#, php-format +msgid "Please check your settings after updating from version 2.x:" +msgstr "Vänligen kontrollera dina inställningar efter uppdatering från version 2.x:" + +# @ backwpup +#: ../inc/class-page-about.php:403 +msgid "Dropbox authentication must be re-entered" +msgstr "Dropbox-autentisering måste anges igen" + +# @ backwpup +#: ../inc/class-page-about.php:404 +msgid "SugarSync authentication must be re-entered" +msgstr "SugarSync-autentisering måste anges igen" + +# @ backwpup +#: ../inc/class-page-about.php:405 +msgid "S3 Settings" +msgstr "S3-inställningar" + +# @ backwpup +#: ../inc/class-page-about.php:406 +msgid "Google Storage is now a part of S3 service settings" +msgstr "Google Storage är nu en del av inställningarna för S3" + +# @ backwpup +#: ../inc/class-page-about.php:407 +msgid "All your passwords" +msgstr "Alla dina lösenord" + +# @ backwpup +#: ../inc/class-page-about.php:416 +msgid "Welcome to BackWPup Pro" +msgstr "Välkommen till BackWPup Pro" + +# @ backwpup +#: ../inc/class-page-about.php:417 +msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze." +msgstr "BackWPup:s jobbguider gör planering och schemaläggning av dina backup-jobb till en lätt match." + +# @ backwpup +#: ../inc/class-page-about.php:418 ../inc/class-page-about.php:428 +msgid "Use your backup archives to save your entire WordPress installation including /wp-content/. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin or a plugin like Adminer to restore your database backup files." +msgstr "Använd dina backup-arkiv för att spara hela din WordPress-installation inklusive /wp-content/. Spara dem till en extern lagringstjänst om du inte vill lagra backup-filerna på samma server. Du kan återskapa en installation från ett enskilt backup-arkiv. Använd ett verktyg som phpMyAdmin eller ett tillägg som Adminer för att återställa dina databas-backup-filer." + +# @ backwpup +#: ../inc/class-page-about.php:419 +#, php-format +msgid "Ready to set up a backup job? You can use the wizards or plan your backup in expert mode." +msgstr "Redo att konfigurera ett backup-jobb? Du kan använda guiderna eller planera din backup i expertläget." + +# @ backwpup +#: ../inc/class-page-about.php:426 +msgid "Welcome to BackWPup" +msgstr "Välkommen till BackWPup" + +# @ backwpup +#: ../inc/class-page-about.php:429 +msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save." +msgstr "Redo att konfigurera ett backup-jobb? Använd en av guiderna för att planera vad du vill spara." + +# @ backwpup +#: ../inc/class-page-about.php:446 +msgid "Please activate your license" +msgstr "Vänligen aktivera din licens" + +# @ backwpup +#: ../inc/class-page-about.php:447 +msgid "Please go to your plugin page and active the license to have the autoupdates enabled." +msgstr "Vänligen gå till sidan för tillägg och aktivera licensen för att möjliggöra auto-uppdateringar." + +# @ backwpup +#: ../inc/class-page-about.php:456 +msgid "Save your database" +msgstr "Spara din databas" + +# @ backwpup +#: ../inc/class-page-about.php:459 +msgid "Save your database regularly" +msgstr "Spara din databas regelbundet" + +# @ backwpup +#: ../inc/class-page-about.php:460 +#, php-format +msgid "With BackWPup you can schedule the database backup to run automatically. With a single backup file you can restore your database. You should set up a backup job, so you will never forget it. There is also an option to repair and optimize the database after each backup." +msgstr "Med BackWPup kan du schemalägga databas-backupen för automatisk körning. Du kan återställa din databas från en enskild backup-fil. Du bör konfigurera ett backup-jobb, så att du inte glömmer det. Det finns också möjlighet att reparera och optimera databasen efter varje backup." + +# @ backwpup +#: ../inc/class-page-about.php:465 ../inc/class-page-about.php:469 +msgid "WordPress XML Export" +msgstr "WordPress XML-export" + +# @ backwpup +#: ../inc/class-page-about.php:466 +msgid "You can choose the built-in WordPress export format in addition or exclusive to save your data. This works in automated backups too of course. The advantage is: you can import these files into a blog with the regular WordPress importer." +msgstr "Du kan välja det inbyggda WordPress-exportformatet, utöver eller uteslutande, för att spara din data. Detta fungerar naturligtvis även för automatiska backuper. Fördelen är att du kan importera dessa filer till en blogg med WordPress vanliga importverktyg. " + +# @ backwpup +#: ../inc/class-page-about.php:474 +msgid "Save all data from the webserver" +msgstr "Spara all data från webbservern" + +# @ backwpup +#: ../inc/class-page-about.php:477 +msgid "Save all files" +msgstr "Spara alla filer" + +# @ backwpup +#: ../inc/class-page-about.php:478 +#, php-format +msgid "You can backup all your attachments, also all system files, plugins and themes in a single file. You can create a job to update a backup copy of your file system only when files are changed." +msgstr "Du kan ta backup på alla dina bilagor, samt alla systemfiler, tillägg och teman i en enda fil. Du kan skapa ett jobb som uppdaterar en backup av ditt filsystem endast när filer ändras." + +# @ backwpup +#: ../inc/class-page-about.php:483 ../inc/class-page-about.php:487 +msgid "Security!" +msgstr "Säkerhet!" + +# @ backwpup +#: ../inc/class-page-about.php:484 +msgid "By default everything is encrypted: connections to external services, local files and access to directories." +msgstr "Allting krypteras som standard: anslutningar till externa tjänster, lokala filer samt tillgång till kataloger." + +# @ backwpup +#: ../inc/class-page-about.php:492 ../inc/class-page-about.php:495 +msgid "Cloud Support" +msgstr "Moln-stöd" + +# @ backwpup +#: ../inc/class-page-about.php:496 +msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant." +msgstr "BackWPup stöder flera molntjänster parallellt. Detta säkerställer redundanta backuper." + +# @ backwpup +#: ../inc/class-page-about.php:504 +msgid "Features / differences between Free and Pro" +msgstr "Funktioner / Skillnader mellan Gratis och Pro" + +# @ backwpup +#: ../inc/class-page-about.php:507 +msgid "Features" +msgstr "Funktioner" + +# @ backwpup +#: ../inc/class-page-about.php:508 +msgid "FREE" +msgstr "GRATIS" + +# @ backwpup +#: ../inc/class-page-about.php:509 +msgid "PRO" +msgstr "PRO" + +# @ backwpup +#: ../inc/class-page-about.php:512 +msgid "Complete database backup" +msgstr "Fullständig databas-backup" + +# @ backwpup +#: ../inc/class-page-about.php:517 +msgid "Complete file backup" +msgstr "Fullständig fil-backup" + +# @ backwpup +#: ../inc/class-page-about.php:522 +msgid "Database check" +msgstr "Databaskontroll" + +# @ backwpup +#: ../inc/class-page-about.php:527 +msgid "Data compression" +msgstr "Datakomprimering" + +# @ backwpup +#: ../inc/class-page-about.php:532 +msgid "WordPress XML export" +msgstr "WordPress XML-export" + +# @ backwpup +#: ../inc/class-page-about.php:537 +msgid "List of installed plugins" +msgstr "Lista över installerade tillägg" + +# @ backwpup +#: ../inc/class-page-about.php:542 +msgid "Backup archives management" +msgstr "Hantering av backup-arkiv" + +# @ backwpup +#: ../inc/class-page-about.php:547 +msgid "Log file management" +msgstr "Hantering av loggfil" + +# @ backwpup +#: ../inc/class-page-about.php:552 +msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI" +msgstr "Starta jobb via WP-Cron, URL, System, Backend eller WP-CLI" + +# @ backwpup +#: ../inc/class-page-about.php:557 +msgid "Log report via email" +msgstr "Loggrapport via e-post" + +# @ backwpup +#: ../inc/class-page-about.php:562 +msgid "Backup to Microsoft Azure" +msgstr "Backup till Microsoft Azure" + +# @ backwpup +#: ../inc/class-page-about.php:567 +msgid "Backup as email" +msgstr "Backup som e-post" + +# @ backwpup +#: ../inc/class-page-about.php:572 +msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)" +msgstr "Backup till S3-tjänster (Amazon, Google Storage, Hosteurope och fler)" + +# @ backwpup +#: ../inc/class-page-about.php:587 +msgid "Backup to FTP server" +msgstr "Backup till FTP-server" + +# @ backwpup +#: ../inc/class-page-about.php:592 +msgid "Backup to your web space" +msgstr "Backup till ditt webbutrymme" + +# @ backwpup +#: ../inc/class-page-about.php:602 +msgid "Backup to Google Drive" +msgstr "Backup till Google Drive" + +# @ backwpup +#: ../inc/class-page-about.php:607 +msgid "Backup to Amazon Glacier" +msgstr "Backup till Amazon Glacier" + +# @ backwpup +#: ../inc/class-page-about.php:612 +msgid "Custom API keys for DropBox and SugarSync" +msgstr "Anpassade API-nycklar för DropBox och SugarSync" + +# @ backwpup +#: ../inc/class-page-about.php:617 +msgid "XML database backup as PHPMyAdmin schema" +msgstr "XML databas-backup som PHPMyAdmin schema" + +# @ backwpup +#: ../inc/class-page-about.php:622 +msgid "Database backup as mysqldump per command line" +msgstr "Databas-backup som mysqldump per kommandorad" + +# @ backwpup +#: ../inc/class-page-about.php:627 +msgid "Database backup for additional MySQL databases" +msgstr "Databas-backup för ytterligare MySQL-databaser" + +# @ backwpup +#: ../inc/class-page-about.php:632 +msgid "Import and export job settings as XML" +msgstr "Importera och exportera jobbinställningar som XML" + +# @ backwpup +#: ../inc/class-page-about.php:637 +msgid "Wizard for system tests" +msgstr "Guide för systemtest" + +# @ backwpup +#: ../inc/class-page-about.php:642 +msgid "Wizard for scheduled backup jobs" +msgstr "Guide för schemalagda backup-jobb" + +# @ backwpup +#: ../inc/class-page-about.php:647 +msgid "Wizard to import settings and backup jobs" +msgstr "Guide för import av inställningar och backup-jobb" + +# @ backwpup +#: ../inc/class-page-about.php:652 +msgid "Differential backup of changed directories to Dropbox" +msgstr "Differentiell backup av ändrade kataloger till Dropbox" + +# @ backwpup +#: ../inc/class-page-about.php:657 +msgid "Differential backup of changed directories to Rackspace Cloud Files" +msgstr "Differentiell backup av ändrade kataloger till Rackspace Cloud Files" + +# @ backwpup +#: ../inc/class-page-about.php:662 +msgid "Differential backup of changed directories to S3" +msgstr "Differentiell backup av ändrade kataloger till S3" + +# @ backwpup +#: ../inc/class-page-about.php:667 +msgid "Differential backup of changed directories to MS Azure" +msgstr "Differentiell backup av ändrade kataloger till MS Azure" + +# @ backwpup +#: ../inc/class-page-about.php:672 +msgid "Premium support" +msgstr "Premium support" + +# @ backwpup +#: ../inc/class-page-about.php:677 +msgid "Dynamically loaded documentation" +msgstr "Dynamiskt laddad dokumentation" + +# @ backwpup +#: ../inc/class-page-about.php:682 +msgid "Automatic update from MarketPress" +msgstr "Automatisk uppdatering från MarketPress" + +# @ backwpup +#: ../inc/class-page-about.php:689 +msgid "http://marketpress.com/product/backwpup-pro/" +msgstr "http://marketpress.com/product/backwpup-pro/" + +# @ backwpup +#: ../inc/class-page-about.php:689 +msgid "GET PRO" +msgstr "SKAFFA PRO" + +# @ backwpup +#: ../inc/class-install.php:71 +msgid "BackWPup Admin" +msgstr "BackWPup Admin" + +# @ backwpup +#: ../inc/class-install.php:84 +msgid "BackWPup jobs checker" +msgstr "BackWPup jobbkontrollant" + +# @ backwpup +#: ../inc/class-install.php:97 +msgid "BackWPup jobs helper" +msgstr "BackWPup jobbassistent" + +# @ backwpup +#: ../inc/class-help.php:15 +msgid "Plugin Info" +msgstr "Tilläggsinfo" + +# @ backwpup +#: ../inc/class-help.php:17 +#, php-format +msgctxt "Plugin name and link; Plugin Version" +msgid "%1$s version %2$s. A project by Inpsyde GmbH." +msgstr "%1$s version %2$s. Ett projekt från Inpsyde GmbH." + +# @ backwpup +#: ../inc/class-help.php:18 +msgid "BackWPup comes with ABSOLUTELY NO WARRANTY. This is a free software, and you are welcome to redistribute it under certain conditions." +msgstr "BackWPup kommer HELT UTAN GARANTIER. Detta är en gratis mjukvara, och du är välkommen att distribuera den vidare med vissa förbehåll." + +# @ backwpup +#: ../inc/class-help.php:21 +msgid "For more information:" +msgstr "För ytterligare information:" + +# @ backwpup +#: ../inc/class-help.php:23 +msgid "Plugin on wordpress.org" +msgstr "Tillägg på wordpress.org" + +# @ backwpup +#: ../inc/class-help.php:24 +msgid "https://marketpress.com/news/" +msgstr "https://marketpress.com/news/" + +# @ backwpup +#: ../inc/class-help.php:24 +msgid "News" +msgstr "Nyheter" + +# @ backwpup +#: ../inc/class-help.php:26 +msgid "https://marketpress.com/support/forum/plugins/backwpup-pro/" +msgstr "https://marketpress.com/support/forum/plugins/backwpup-pro/" + +# @ backwpup +#: ../inc/class-help.php:26 +msgid "Pro Support" +msgstr "Pro Support" + +# @ backwpup +#: ../inc/class-help.php:28 +msgid "http://wordpress.org/support/plugin/backwpup/" +msgstr "http://wordpress.org/support/plugin/backwpup/" + +# @ backwpup +#: ../inc/class-help.php:28 +msgid "Support" +msgstr "Support" + +# @ backwpup +#: ../inc/class-help.php:29 +msgid "https://marketpress.com/documentation/backwpup-pro/" +msgstr "https://marketpress.com/documentation/backwpup-pro/" + +# @ backwpup +#: ../inc/class-help.php:29 +msgid "Manual" +msgstr "Manual" + +# @ backwpup +#: ../inc/class-destination-ftp.php:23 +msgid "FTP server and login" +msgstr "FTP-server och inloggning" + +# @ backwpup +#: ../inc/class-destination-ftp.php:27 +msgid "FTP server" +msgstr "FTP-server" + +# @ backwpup +#: ../inc/class-destination-ftp.php:31 +msgid "Port:" +msgstr "Port:" + +# @ backwpup +#: ../inc/class-destination-ftp.php:37 +msgid "Username" +msgstr "Användarnamn" + +# @ backwpup +#: ../inc/class-destination-ftp.php:44 +msgid "Password" +msgstr "Lösenord" + +# @ backwpup +#: ../inc/class-destination-ftp.php:56 +msgid "Folder to store files in" +msgstr "Mapp att lagra filer i" + +# @ backwpup +#: ../inc/class-destination-ftp.php:68 +msgid "Maximum number of files to keep in folder." +msgstr "Maximalt antal filer att lagra i mapp." + +# @ backwpup +#: ../inc/class-destination-ftp.php:78 +msgid "FTP specific settings" +msgstr "FTP-specifika inställningar" + +# @ backwpup +#: ../inc/class-destination-ftp.php:82 +msgid "Timeout for FTP connection" +msgstr "Tidsgräns för FTP-anslutning" + +# @ backwpup +#: ../inc/class-destination-ftp.php:86 +msgid "seconds" +msgstr "sekunder" + +# @ backwpup +#: ../inc/class-destination-ftp.php:90 +msgid "SSL-FTP connection" +msgstr "SSL-FTP-anslutning" + +# @ backwpup +#: ../inc/class-destination-ftp.php:94 +msgid "Use explicit SSL-FTP connection." +msgstr "Använd explicit SSL-FTP-anslutning" + +# @ backwpup +#: ../inc/class-destination-ftp.php:99 +msgid "FTP Passive Mode" +msgstr "Passivt Läge för FTP" + +# @ backwpup +#: ../inc/class-destination-ftp.php:103 +msgid "Use FTP Passive Mode." +msgstr "Använd Passivt Läge för FTP." + +# @ backwpup +#: ../inc/class-destination-ftp.php:179 +msgid "FTP: Login failure!" +msgstr "FTP: Inloggning misslyckades!" + +# @ backwpup +#: ../inc/class-destination-ftp.php:203 +#, php-format +msgid "%d. Try to send backup file to an FTP server …" +msgstr "%d. Försök skicka backup-filen till en FTP-server …" + +# @ backwpup +#: ../inc/class-destination-ftp.php:209 +#, php-format +msgid "Connected via explicit SSL-FTP to server: %s" +msgstr "Ansluten via explicit SSL-FTP till server: %s" + +# @ backwpup +#: ../inc/class-destination-ftp.php:211 +#, php-format +msgid "Cannot connect via explicit SSL-FTP to server: %s" +msgstr "Kan ej ansluta via explicit SSL-FTP till server: %s" + +# @ backwpup +#: ../inc/class-destination-ftp.php:217 +msgid "PHP function to connect with explicit SSL-FTP to server does not exist!" +msgstr "PHP-funktion för att ansluta med explicit SSL-FTP till servern finns ej!" + +# @ backwpup +#: ../inc/class-destination-ftp.php:225 +#, php-format +msgid "Connected to FTP server: %s" +msgstr "Ansluten till FTP-server: %s" + +# @ backwpup +#: ../inc/class-destination-ftp.php:227 +#, php-format +msgid "Cannot connect to FTP server: %s" +msgstr "Kan ej ansluta till FTP-server: %s" + +# @ backwpup +#: ../inc/class-destination-ftp.php:234 ../inc/class-destination-ftp.php:242 +#: ../inc/class-destination-ftp.php:253 ../inc/class-destination-ftp.php:300 +#, php-format +msgid "FTP client command: %s" +msgstr "FTP-klient kommando: %s" + +# @ backwpup +#: ../inc/class-destination-ftp.php:236 +#, php-format +msgid "FTP server response: %s" +msgstr "FTP-server svar: %s" + +# @ backwpup +#: ../inc/class-destination-ftp.php:240 ../inc/class-destination-ftp.php:244 +#: ../inc/class-destination-ftp.php:256 ../inc/class-destination-ftp.php:258 +#: ../inc/class-destination-ftp.php:303 ../inc/class-destination-ftp.php:305 +#: ../inc/class-destination-ftp.php:309 ../inc/class-destination-ftp.php:311 +#, php-format +msgid "FTP server reply: %s" +msgstr "FTP-server svar: %s" + +# @ backwpup +#: ../inc/class-destination-ftp.php:258 +msgid "Error getting SYSTYPE" +msgstr "Fel vid förfrågan om SYSTYPE" + +# @ backwpup +#: ../inc/class-destination-ftp.php:276 +#, php-format +msgid "FTP Folder \"%s\" created!" +msgstr "FTP-mapp \"%s\" skapad!" + +# @ backwpup +#: ../inc/class-destination-ftp.php:280 +#, php-format +msgid "FTP Folder \"%s\" cannot be created!" +msgstr "FTP-mapp \"%s\" kan ej skapas!" + +# @ backwpup +#: ../inc/class-destination-ftp.php:291 +#, php-format +msgid "FTP current folder is: %s" +msgstr "Aktuell FTP-mapp är: %s" + +# @ backwpup +#: ../inc/class-destination-ftp.php:303 +msgid "Entering passive mode" +msgstr "Övergår till passivt läge" + +# @ backwpup +#: ../inc/class-destination-ftp.php:305 +msgid "Cannot enter passive mode" +msgstr "Kan ej övergå till passivt läge" + +# @ backwpup +#: ../inc/class-destination-ftp.php:309 +msgid "Entering normal mode" +msgstr "Övergår till normalt läge" + +# @ backwpup +#: ../inc/class-destination-ftp.php:311 +msgid "Cannot enter normal mode" +msgstr "Kan ej övergå till normalt läge" + +# @ backwpup +#: ../inc/class-destination-ftp.php:315 +msgid "Starting upload to FTP  …" +msgstr "Påbörjar uppladdning till FTP  …" + +# @ backwpup +#: ../inc/class-destination-ftp.php:327 +msgid "Cannot transfer backup to FTP server!" +msgstr "Kan ej överföra backup-fil till FTP-server!" + +# @ backwpup +#: ../inc/class-destination-ftp.php:333 +#, php-format +msgid "Backup transferred to FTP server: %s" +msgstr "Backup-fil överförd till FTP-server: %s" + +# @ backwpup +#: ../inc/class-destination-ftp.php:379 +#, php-format +msgid "Cannot delete \"%s\" on FTP server!" +msgstr "Kan ej ta bort \"%s\" från FTP-server!" + +# @ backwpup +#: ../inc/class-destination-ftp.php:382 +#, php-format +msgid "One file deleted on FTP server" +msgid_plural "%d files deleted on FTP server" +msgstr[0] "En fil borttagen från FTP-server" +msgstr[1] "%d filer borttagna från FTP-server" + +# @ backwpup +#: ../inc/class-jobtype-file.php:15 +msgid "Files" +msgstr "Filer" + +# @ backwpup +#: ../inc/class-jobtype-file.php:16 +msgid "File backup" +msgstr "Filbackup" + +# @ backwpup +#: ../inc/class-jobtype-file.php:64 +msgid "Folders to backup" +msgstr "Mappar att ta backup på" + +# @ backwpup +#: ../inc/class-jobtype-file.php:68 +msgid "Backup root folder" +msgstr "Ta backup på rotmapp" + +# @ backwpup +#: ../inc/class-jobtype-file.php:79 ../inc/class-jobtype-file.php:116 +#: ../inc/class-jobtype-file.php:153 ../inc/class-jobtype-file.php:190 +#: ../inc/class-jobtype-file.php:227 +#, php-format +msgid "Path as set by user (symlink?): %s" +msgstr "Sökväg som den satts av användaren (symlink?): %s" + +# @ backwpup +#: ../inc/class-jobtype-file.php:82 ../inc/class-jobtype-file.php:119 +#: ../inc/class-jobtype-file.php:156 ../inc/class-jobtype-file.php:193 +#: ../inc/class-jobtype-file.php:230 +msgid "Exclude:" +msgstr "Exkludera:" + +# @ backwpup +#: ../inc/class-jobtype-file.php:93 ../inc/class-jobtype-file.php:130 +#: ../inc/class-jobtype-file.php:167 ../inc/class-jobtype-file.php:204 +#: ../inc/class-jobtype-file.php:241 +msgid "Excluded by .donotbackup file!" +msgstr "Exkluderas av filen .donotbackup!" + +# @ backwpup +#: ../inc/class-jobtype-file.php:105 +msgid "Backup content folder" +msgstr "Ta backup på innehållsmapp" + +# @ backwpup +#: ../inc/class-jobtype-file.php:142 +msgid "Backup plugins" +msgstr "Ta backup på tillägg" + +# @ backwpup +#: ../inc/class-jobtype-file.php:179 +msgid "Backup themes" +msgstr "Ta backup på teman" + +# @ backwpup +#: ../inc/class-jobtype-file.php:216 +msgid "Backup uploads folder" +msgstr "Ta backup på mapp för uppladdning" + +# @ backwpup +#: ../inc/class-jobtype-file.php:253 +msgid "Extra folders to backup" +msgstr "Ytterligare mappar att ta backup på" + +# @ backwpup +#: ../inc/class-jobtype-file.php:260 +msgid "Exclude from backup" +msgstr "Exkludera från backup" + +# @ backwpup +#: ../inc/class-jobtype-file.php:264 +msgid "Thumbnails in uploads" +msgstr "Miniatyrer i uppladdningar" + +# @ backwpup +#: ../inc/class-jobtype-file.php:268 +msgid "Don't backup thumbnails from the site's uploads folder." +msgstr "Ta ej backup på miniatyrer i webbplatsens mapp för uppladdning." + +# @ backwpup +#: ../inc/class-jobtype-file.php:268 +msgid "All images with -???x???. will be excluded. Use a plugin like Regenerate Thumbnails to rebuild them after a restore." +msgstr "Alla bilder med -???x???. kommer att exkluderas. Använd ett tillägg som Regenerate Thumbnails för att återskapa dem efter en återställning." + +# @ backwpup +#: ../inc/class-jobtype-file.php:272 +msgid "Exclude files/folders from backup" +msgstr "Exkludera filer/mappar från backup" + +# @ backwpup +#: ../inc/class-jobtype-file.php:279 +msgid "Special option" +msgstr "Specialalternativ" + +# @ backwpup +#: ../inc/class-jobtype-file.php:283 +msgid "Include special files" +msgstr "Inkludera speciella filer" + +# @ backwpup +#: ../inc/class-jobtype-file.php:287 +msgid "Backup wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico from root." +msgstr "Ta backup på wp-config.php, robots.txt, .htaccess, .htpasswd samt favicon.ico från roten." + +# @ backwpup +#: ../inc/class-jobtype-file.php:287 +msgid "If the WordPress root folder is not included in this backup job, check this option to additionally include wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico into the backup. Your wp-config.php will be included even if you placed it in the parent directory of your root folder." +msgstr "Om WordPress rotmapp ej inkluderas i detta backup-jobb, markera detta alternativ för att också inkludera wp-config.php, robots.txt, .htaccess, .htpasswd samt favicon.ico i backupen. Din wp-config.php kommer att inkluderas även om du placerat den ett steg upp från rotmappen." + +# @ backwpup +#: ../inc/class-jobtype-file.php:364 +#, php-format +msgid "%d. Trying to make a list of folders to back up …" +msgstr "%d. Försöker skapa en lista över mappar att ta backup på …" + +# @ backwpup +#: ../inc/class-jobtype-file.php:483 ../inc/class-jobtype-file.php:490 +#: ../inc/class-jobtype-file.php:497 ../inc/class-jobtype-file.php:503 +#: ../inc/class-jobtype-file.php:509 ../inc/class-jobtype-file.php:515 +#, php-format +msgid "Added \"%s\" to backup file list" +msgstr "Lade till \"%s\" till listan över filer att ta backup på" + +# @ backwpup +#: ../inc/class-jobtype-file.php:520 +msgid "No files/folder for the backup." +msgstr "Inga filer/mappar att ta backup på." + +# @ backwpup +#: ../inc/class-jobtype-file.php:522 +#, php-format +msgid "%1$d folders to backup." +msgstr "%1$d mappar att ta backup på." + +# @ backwpup +#: ../inc/class-jobtype-file.php:561 +#, php-format +msgid "Folder \"%s\" is not readable!" +msgstr "Mappen \"%s\" är ej läsbar!" + +# @ backwpup +#: ../inc/class-create-archive.php:71 +msgid "The file name of an archive cannot be empty." +msgstr "Ett arkivs filnamn får inte vara blankt." + +# @ backwpup +#: ../inc/class-create-archive.php:79 +#, php-format +msgctxt "%s = Folder name" +msgid "Folder %s for archive not found" +msgstr "Mapp %s för arkiv ej funnen" + +# @ backwpup +#: ../inc/class-create-archive.php:85 ../inc/class-create-archive.php:120 +#: ../inc/class-create-archive.php:137 ../inc/class-mysqldump.php:125 +msgid "Functions for gz compression not available" +msgstr "Funktioner för gz-kompression ej tillgängliga" + +# @ backwpup +#: ../inc/class-create-archive.php:92 ../inc/class-create-archive.php:143 +msgid "Functions for bz2 compression not available" +msgstr "Funktioner för bz2-kompression ej tillgängliga" + +# @ backwpup +#: ../inc/class-create-archive.php:116 +#, php-format +msgctxt "ZipArchive open() result" +msgid "Cannot create zip archive: %d" +msgstr "Kan ej skapa ZIP-arkiv: %d" + +# @ backwpup +#: ../inc/class-create-archive.php:149 +#, php-format +msgctxt "%s = file name" +msgid "Method to archive file %s not detected" +msgstr "Arkiveringsmetod för fil %s ej funnen" + +# @ backwpup +#: ../inc/class-create-archive.php:154 +msgid "Cannot open archive file" +msgstr "Kan ej öppna arkivfil" + +# @ backwpup +#: ../inc/class-create-archive.php:174 ../inc/class-create-archive.php:349 +#, php-format +msgid "PclZip archive add error: %s" +msgstr "Fel vid lägg till i PclZip-arkiv: %s" + +# @ backwpup +#: ../inc/class-create-archive.php:189 +msgid "ZIP archive cannot be closed correctly." +msgstr "ZIP-arkivet kan inte stängas korrekt." + +# @ backwpup +#: ../inc/class-create-archive.php:244 +msgid "File name cannot be empty" +msgstr "Filnamn får inte vara blankt." + +# @ backwpup +#: ../inc/class-create-archive.php:253 +#, php-format +msgctxt "File to add to archive" +msgid "File %s does not exist or is not readable" +msgstr "Fil %s existerar ej eller är ej läsbar" + +# @ backwpup +#: ../inc/class-create-archive.php:266 ../inc/class-create-archive.php:282 +#: ../inc/class-create-archive.php:392 ../inc/class-create-archive.php:396 +msgid "This archive method can only add one file" +msgstr "Denna arkiveringsmetod kan endast lägga till en fil" + +# @ backwpup +#: ../inc/class-create-archive.php:271 ../inc/class-create-archive.php:287 +#, php-format +msgid "Cannot open source file %s to archive" +msgstr "Kan ej öppna källfil %s till arkiv" + +# @ backwpup +#: ../inc/class-create-archive.php:311 +msgid "ZipArchive can not closed correctly" +msgstr "ZIP-arkivet kan inte stängas korrekt" + +# @ backwpup +#: ../inc/class-create-archive.php:330 ../inc/class-create-archive.php:338 +#: ../inc/class-create-archive.php:407 +#, php-format +msgid "Cannot add \"%s\" to zip archive!" +msgstr "Kan ej lägga till \"%s\" till ZIP-arkiv!" + +# @ backwpup +#: ../inc/class-create-archive.php:374 +msgid "Folder name cannot be empty" +msgstr "Mappnamn får ej vara blankt" + +# @ backwpup +#: ../inc/class-create-archive.php:379 +#, php-format +msgctxt "Folder path to add to archive" +msgid "Folder %s does not exist or is not readable" +msgstr "Mapp %s existerar ej eller är ej läsbar" + +# @ backwpup +#: ../inc/class-create-archive.php:429 +#, php-format +msgctxt "Text of ZipArchive status Message" +msgid "ZipArchive returns status: %s" +msgstr "ZipArchive returnerar status: %s" + +# @ backwpup +#: ../inc/class-create-archive.php:459 +#, php-format +msgid "File name \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "Filnamn \"%1$s\" är för långt för att sparas korrekt i arkiv %2$s!" + +# @ backwpup +#: ../inc/class-create-archive.php:462 +#, php-format +msgid "File path \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "Filsökväg \"%1$s\" är för lång för att sparas korrekt i arkiv %2$s!" + +# @ backwpup +#: ../inc/class-create-archive.php:474 +#, php-format +msgid "Cannot open source file %s for archiving" +msgstr "Kan ej öppna källfil %s för arkivering" + +# @ backwpup +#: ../inc/class-create-archive.php:479 ../inc/class-create-archive.php:480 +#: ../inc/class-create-archive.php:579 ../inc/class-create-archive.php:580 +msgid "Unknown" +msgstr "Okänt" + +# @ backwpup +#: ../inc/class-create-archive.php:570 +#, php-format +msgid "Folder name \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "Mappnamn \"%1$s\" är för långt för att sparas korrekt i arkiv %2$s!" + +# @ backwpup +#: ../inc/class-create-archive.php:573 +#, php-format +msgid "Folder path \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "Mappsökväg \"%1$s\" är för lång för att sparas korrekt i arkiv %2$s!" + +# @ backwpup +#: ../inc/class-create-archive.php:651 +#, php-format +msgid "If %s will be added to your backup archive, the archive will be too large for many file systems (over 2GB). You might want to consider splitting the backup job in multiple jobs with less files each." +msgstr "Om %s skall läggas till ditt backup-arkiv så blir arkivet för stort för många filsystem (större än 2GB). Du bör kanske överväga att dela upp backup-jobbet i flera jobb med färre filer i varje." + +# @ backwpup +#: ../inc/class-cron.php:62 +msgid "Aborted, because no progress for one hour!" +msgstr "Avbröts, p.g.a. inga framsteg på en timme!" + +# @ backwpup +#: ../inc/class-page-backups.php:173 +msgid "No files could be found. (List will be generated during next backup.)" +msgstr "Inga filer kunde hittas. (Lista kommer att genereras vid nästa backup.)" + +# @ backwpup +#: ../inc/class-page-backups.php:185 ../inc/class-page-backups.php:304 +#: ../inc/class-page-logs.php:114 ../inc/class-page-logs.php:192 +msgid "Delete" +msgstr "Ta Bort" + +# @ backwpup +#: ../inc/class-page-backups.php:219 +msgid "Change destination" +msgstr "Ändra mål" + +# @ backwpup +#: ../inc/class-page-backups.php:258 ../inc/class-page-logs.php:125 +msgid "Time" +msgstr "Tid" + +# @ backwpup +#: ../inc/class-page-backups.php:259 +msgid "File" +msgstr "Fil" + +# @ backwpup +#: ../inc/class-page-backups.php:261 ../inc/class-page-logs.php:129 +msgid "Size" +msgstr "Storlek" + +# @ backwpup +#: ../inc/class-page-backups.php:304 +msgid "" +"You are about to delete this backup archive. \n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Du håller på att ta bort detta backup-arkiv. \n" +" 'Avbryt' för att avbryta, 'OK' för att ta bort." + +# @ backwpup +#: ../inc/class-page-backups.php:306 ../inc/class-page-logs.php:193 +msgid "Download" +msgstr "Ladda Ned" + +# @ backwpup +#: ../inc/class-page-backups.php:335 +msgid "?" +msgstr "?" + +# @ backwpup +#: ../inc/class-page-backups.php:348 ../inc/class-page-logs.php:153 +#, php-format +msgid "%1$s at %2$s" +msgstr "%1$s vid %2$s" + +# @ backwpup +#: ../inc/class-page-backups.php:365 ../inc/class-page-backups.php:392 +msgid "Sorry, you don't have permissions to do that." +msgstr "Ledsen, du har ej tillstånd att göra det där." + +# @ backwpup +#: ../inc/class-page-backups.php:413 +msgid "Backup Files" +msgstr "Backup-filer" + +# @ backwpup +#: ../inc/class-page-backups.php:461 +#, php-format +msgid "%s Manage Backup Archives" +msgstr "%s Hantera Backup-arkiv" + +# @ backwpup +#: ../inc/class-wp-cli.php:17 +msgid "A job is already running." +msgstr "Ett jobb körs redan." + +# @ backwpup +#: ../inc/class-wp-cli.php:20 +msgid "No job ID specified!" +msgstr "Inget jobb-ID har angetts!" + +# @ backwpup +#: ../inc/class-wp-cli.php:24 +msgid "Job ID does not exist!" +msgstr "Jobb-ID existerar ej!" + +# @ backwpup +#: ../inc/class-wp-cli.php:38 +msgid "Nothing to abort!" +msgstr "Ingenting att avbryta!" + +# @ backwpup +#: ../inc/class-wp-cli.php:42 +msgid "Job will be terminated." +msgstr "Jobbet kommer att avbrytas." + +# @ backwpup +#: ../inc/class-wp-cli.php:54 +msgid "List of jobs" +msgstr "Jobblista" + +# @ backwpup +#: ../inc/class-wp-cli.php:57 ../inc/class-wp-cli.php:76 +#, php-format +msgid "ID: %1$d Name: %2$s" +msgstr "ID: %1$d Namn: %2$s" + +# @ backwpup +#: ../inc/class-wp-cli.php:73 +msgid "No job running" +msgstr "Inget jobb körs" + +# @ backwpup +#: ../inc/class-wp-cli.php:74 +msgid "Running job" +msgstr "Jobb körs" + +# @ backwpup +#: ../inc/class-wp-cli.php:77 +#, php-format +msgid "Warnings: %1$d Errors: %2$d" +msgstr "Varningar: %1$d Fel: %2$d" + +# @ backwpup +#: ../inc/class-wp-cli.php:78 +#, php-format +msgid "Steps in percent: %1$d percent of step: %2$d" +msgstr "Steg i procent: %1$d procent av steg: %2$d" + +# @ backwpup +#: ../inc/class-wp-cli.php:79 +#, php-format +msgid "On step: %s" +msgstr "På steg: %s" + +# @ backwpup +#: ../inc/class-wp-cli.php:80 +#, php-format +msgid "Last message: %s" +msgstr "Senaste meddelandet: %s" + +# @ backwpup +#: ../inc/class-option.php:102 +msgid "New Job" +msgstr "Nytt Jobb" + +# @ backwpup +#: ../inc/class-page-logs.php:102 +msgid "No Logs." +msgstr "Inga Loggar." + +# @ backwpup +#: ../inc/class-page-logs.php:126 +msgid "Job" +msgstr "Jobb" + +# @ backwpup +#: ../inc/class-page-logs.php:127 +msgid "Status" +msgstr "Status" + +# @ backwpup +#: ../inc/class-page-logs.php:128 +msgid "Type" +msgstr "Typ" + +# @ backwpup +#: ../inc/class-page-logs.php:130 +msgid "Runtime" +msgstr "Körtid" + +# @ backwpup +#: ../inc/class-page-logs.php:188 +#, php-format +msgid "Job ID: %d" +msgstr "Jobb-ID: %d" + +# @ backwpup +#: ../inc/class-page-logs.php:190 +msgid "View" +msgstr "Visa" + +# @ backwpup +#: ../inc/class-page-logs.php:209 +#, php-format +msgid "1 ERROR" +msgid_plural "%d ERRORS" +msgstr[0] "1 FEL" +msgstr[1] "%d FEL" + +# @ backwpup +#: ../inc/class-page-logs.php:211 +#, php-format +msgid "1 WARNING" +msgid_plural "%d WARNINGS" +msgstr[0] "1 VARNING" +msgstr[1] "%d VARNINGAR" + +# @ backwpup +#: ../inc/class-page-logs.php:213 +msgid "O.K." +msgstr "O.K." + +# @ backwpup +#: ../inc/class-page-logs.php:230 +msgid "Log only" +msgstr "Endast logg" + +# @ backwpup +#: ../inc/class-page-logs.php:301 ../inc/class-admin.php:202 +msgid "Logs" +msgstr "Loggar" + +# @ backwpup +#: ../inc/class-page-logs.php:364 +#, php-format +msgid "%s Logs" +msgstr "%s Loggar" + +# @ backwpup +#: ../inc/class-mysqldump.php:55 +msgid "No MySQLi extension found. Please install it." +msgstr "Ingen MySQLi-utökning funnen. Vänligen installera denna." + +# @ backwpup +#: ../inc/class-mysqldump.php:93 +msgid "Cannot init MySQLi database connection" +msgstr "Kan ej initiera MySQLi databasanslutning" + +# @ backwpup +#: ../inc/class-mysqldump.php:97 +#, php-format +msgid "Setting of MySQLi init command \"%s\" failed" +msgstr "MySQLi init kommando \"%s\" kunde inte sättas" + +# @ backwpup +#: ../inc/class-mysqldump.php:101 +msgid "Setting of MySQLi connection timeout failed" +msgstr "MySQLi-anslutningens tidsgräns kunde inte sättas" + +# @ backwpup +#: ../inc/class-mysqldump.php:105 +#, php-format +msgid "Cannot connect to MySQL database %1$d: %2$s" +msgstr "Kan ej ansluta till MySQL-databas %1$d: %2$s" + +# @ backwpup +#: ../inc/class-mysqldump.php:111 +#, php-format +msgctxt "Database Charset" +msgid "Cannot set DB charset to %s" +msgstr "Kan ej sätta DB teckenuppsättning till %s" + +# @ backwpup +#: ../inc/class-mysqldump.php:138 +msgid "Cannot open SQL backup file" +msgstr "Kan ej öppna SQL backup-fil" + +# @ backwpup +#: ../inc/class-mysqldump.php:144 ../inc/class-mysqldump.php:155 +#: ../inc/class-mysqldump.php:237 ../inc/class-mysqldump.php:250 +#: ../inc/class-mysqldump.php:264 ../inc/class-mysqldump.php:277 +#: ../inc/class-mysqldump.php:320 ../inc/class-mysqldump.php:342 +#: ../inc/class-mysqldump.php:404 +#, php-format +msgid "Database error %1$s for query %2$s" +msgstr "Databasfel %1$s för fråga %2$s" + +# @ backwpup +#: ../inc/class-mysqldump.php:388 +#, php-format +msgid "Start for table backup is not correctly set: %1$s " +msgstr "Start för tabellbackup är ej korrekt satt: %1$s " + +# @ backwpup +#: ../inc/class-mysqldump.php:392 +#, php-format +msgid "Length for table backup is not correctly set: %1$s " +msgstr "Längd för tabellbackup är ej korrekt satt: %1$s " + +# @ backwpup +#: ../inc/class-mysqldump.php:460 +msgid "Error while writing file!" +msgstr "Fel när fil skrevs!" + +# @ backwpup +#: ../inc/class-admin.php:137 +msgid "Documentation" +msgstr "Dokumentation" + +# @ backwpup +#: ../inc/class-admin.php:154 +msgid "BackWPup Dashboard" +msgstr "BackWPup Panel" + +# @ backwpup +#: ../inc/class-admin.php:154 +msgid "Dashboard" +msgstr "Panel" + +# @ backwpup +#: ../inc/class-admin.php:171 +msgid "Jobs" +msgstr "Jobb" + +# @ backwpup +#: ../inc/class-admin.php:186 +msgid "Add new job" +msgstr "Skapa nytt jobb" + +# @ backwpup +#: ../inc/class-admin.php:217 +msgid "Backups" +msgstr "Backuper" + +# @ backwpup +#: ../inc/class-admin.php:232 +msgid "Settings" +msgstr "Inställningar" + +# @ backwpup +#: ../inc/class-admin.php:245 +msgid "About" +msgstr "Om" + +# @ backwpup +#: ../inc/class-admin.php:282 ../inc/class-admin.php:288 +msgid "Cheating, huh?" +msgstr "Fuskar du, va?" + +# @ backwpup +#: ../inc/class-admin.php:400 +msgid "http://marketpress.com" +msgstr "http://marketpress.com" + +# @ backwpup +#: ../inc/class-admin.php:400 +msgid "MarketPress" +msgstr "MarketPress" + +# @ backwpup +#: ../inc/class-admin.php:402 +#, php-format +msgid "Get BackWPup Pro now." +msgstr "Skaffa BackWPup Pro nu." + +# @ backwpup +#: ../inc/class-admin.php:421 +#, php-format +msgid "version %s" +msgstr "version %s" + +# @ backwpup +#: ../inc/class-admin.php:445 ../inc/class-admin.php:545 +msgid "BackWPup Role" +msgstr "BackWPup Roll" + +# @ backwpup +#: ../inc/class-admin.php:449 +msgid "— No role for BackWPup —" +msgstr "— Ingen roll för BackWPup —" + +# @ backwpup +#: ../inc/class-admin.php:459 +msgid "Role that the user have on BackWPup" +msgstr "Roll användaren har för BackWPup" + +# @ backwpup +#: ../inc/class-admin.php:509 +#, php-format +msgid "Important: before updating, please back up your database and files with %2$s. For help with updates, visit the Updating WordPress Codex page." +msgstr "Viktigt: innan du uppdaterar, vänligen ta backup på din databas och dina filer med %2$s. För hjälp med uppdateringar, besök Codex-sidan Updating WordPress." + +# @ backwpup +#: ../inc/class-admin.php:512 ../inc/class-admin.php:515 +#, php-format +msgid "Important: before installing this plugin, please back up your database and files with %2$s." +msgstr "Viktigt: innan du installerar detta tillägg, vänligen ta backup på din databas och dina filer med %2$s." + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:13 +msgid "XML export" +msgstr "XML-export" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:46 +msgid "Items to export" +msgstr "Objekt att exportera" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:49 +msgid "All content" +msgstr "Allt innehåll" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:50 +msgid "Posts" +msgstr "Inlägg" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:51 +msgid "Pages" +msgstr "Sidor" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:61 +msgid "XML Export file name" +msgstr "Filnamn för XML-export" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:69 +msgid "File compression" +msgstr "Filkomprimering" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:75 ../inc/class-jobtype-wpexp.php:77 +#: ../inc/class-jobtype-dbdump.php:105 ../inc/class-jobtype-dbdump.php:107 +msgid "GZip" +msgstr "GZip" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:79 ../inc/class-jobtype-wpexp.php:81 +msgid "BZip2" +msgstr "BZip2" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:111 +#, php-format +msgid "%d. Trying to create a WordPress export to XML file …" +msgstr "%d. Försöker skapa en WordPress XML-export-fil …" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:126 +#, php-format +msgid "WP Export: Post type “%s” does not allow export." +msgstr "WP-export: Inläggstyp “%s” tillåter ej export." + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:171 ../inc/class-jobtype-wpexp.php:185 +#: ../inc/class-jobtype-wpexp.php:214 ../inc/class-jobtype-wpexp.php:235 +#: ../inc/class-jobtype-wpexp.php:268 ../inc/class-jobtype-wpexp.php:288 +#: ../inc/class-jobtype-wpexp.php:377 ../inc/class-jobtype-wpexp.php:386 +msgid "WP Export file could not written." +msgstr "WP-exportfil kunde ej skrivas." + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:401 +msgid "Check WP Export file …" +msgstr "Kontrollera WP-exportfil …" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:421 +#, php-format +msgid "XML WARNING (%s): %s" +msgstr "XML VARNING (%s): %s" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:424 +#, php-format +msgid "XML RECOVERABLE (%s): %s" +msgstr "XML ÅTERHÄMTNINGSBART (%s): %s" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:427 +#, php-format +msgid "XML ERROR (%s): %s" +msgstr "XML FEL (%s): %s" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:437 +msgid "There was an error when reading this WXR file" +msgstr "Ett fel uppstod vid läsning av denna WXR-fil" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:443 ../inc/class-jobtype-wpexp.php:450 +msgid "This does not appear to be a WXR file, missing/invalid WXR version number" +msgstr "Detta verkar ej vara en WXR-fil, saknar/ogiltigt WXR versionsnummer" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:459 +msgid "WP Export file is a valid WXR file." +msgstr "WP-exportfil är en giltig WXR-fil." + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:461 +msgid "WP Export file can not checked, because no XML extension loaded with the file can checked." +msgstr "WP-exportfil kan ej kontrolleras, p.g.a. att inget XML-filltillägg laddat med filen kan kontrolleras." + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:473 +msgid "Compressing file …" +msgstr "Komprimerar fil …" + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:480 +msgid "Compressing done." +msgstr "Komprimering klar." + +# @ backwpup +#: ../inc/class-jobtype-wpexp.php:501 +#, php-format +msgid "Added XML export \"%1$s\" with %2$s to backup file list." +msgstr "Lade till XML-export \"%1$s\" med %2$s till backup-fillista." + +# @ backwpup +#: ../inc/class-job.php:180 +msgid "Starting job" +msgstr "Påbörjar jobb" + +# @ backwpup +#: ../inc/class-job.php:199 +msgid "Job Start" +msgstr "Jobbstart" + +# @ backwpup +#: ../inc/class-job.php:219 +msgid "Creates manifest file" +msgstr "Skapar manifest-fil" + +# @ backwpup +#: ../inc/class-job.php:238 +msgid "Creates archive" +msgstr "Skapar arkiv" + +# @ backwpup +#: ../inc/class-job.php:277 +msgid "End of Job" +msgstr "Jobb Slut" + +# @ backwpup +#: ../inc/class-job.php:287 +#, php-format +msgid "BackWPup log for %1$s from %2$s at %3$s" +msgstr "BackWPup-lobb för %1$s från %2$s vid %3$s" + +# @ backwpup +#: ../inc/class-job.php:305 +#, php-format +msgctxt "Plugin name; Plugin Version" +msgid "[INFO] %1$s version %2$s; A project of Inpsyde GmbH" +msgstr "[INFO] %1$s version %2$s; Ett projekt från Inpsyde GmbH" + +# @ backwpup +#: ../inc/class-job.php:306 +#, php-format +msgctxt "WordPress Version" +msgid "[INFO] WordPress version %s" +msgstr "[INFO] WordPress-version %s" + +# @ backwpup +#: ../inc/class-job.php:307 +#, php-format +msgid "[INFO] Blog url: %s" +msgstr "[INFO] Blogg-url: %s" + +# @ backwpup +#: ../inc/class-job.php:308 +#, php-format +msgid "[INFO] BackWPup job: %1$s; %2$s" +msgstr "[INFO] BackWPup-jobb: %1$s; %2$s" + +# @ backwpup +#: ../inc/class-job.php:320 +msgid "Not scheduled!" +msgstr "Ej schemalagt!" + +# @ backwpup +#: ../inc/class-job.php:323 +#, php-format +msgid "[INFO] BackWPup cron: %s; Next: %s " +msgstr "[INFO] BackWPup cron: %s; Nästa: %s " + +# @ backwpup +#: ../inc/class-job.php:326 +msgid "[INFO] BackWPup job start with link is active" +msgstr "[INFO] BackWPup jobbstart via länk är aktivt" + +# @ backwpup +#: ../inc/class-job.php:328 +msgid "[INFO] BackWPup no automatic job start configured" +msgstr "[INFO] BackWPup ingen automatisk jobbstart är konfigurerad" + +# @ backwpup +#: ../inc/class-job.php:330 +msgid "[INFO] BackWPup job started from wp-cron" +msgstr "[INFO] BackWPup jobb startat från wp-cron" + +# @ backwpup +#: ../inc/class-job.php:332 +msgid "[INFO] BackWPup job started manually" +msgstr "[INFO] BackWPup jobb startat manuellt" + +# @ backwpup +#: ../inc/class-job.php:334 +msgid "[INFO] BackWPup job started from external url" +msgstr "[INFO] BackWPup jobb startat från extern url" + +# @ backwpup +#: ../inc/class-job.php:336 +msgid "[INFO] BackWPup job started form commandline interface" +msgstr "[INFO] BackWPup jobb startat från kommandorad" + +# @ backwpup +#: ../inc/class-job.php:342 +msgid "[INFO] PHP ver.:" +msgstr "[INFO] PHP-ver.:" + +# @ backwpup +#: ../inc/class-job.php:343 +#, php-format +msgid "[INFO] Maximum PHP script execution time is %1$d seconds" +msgstr "[INFO] Maximal körtid för PHP-skript är %1$d sekunder" + +# @ backwpup +#: ../inc/class-job.php:347 +#, php-format +msgid "[INFO] Script restart time is configured to %1$d seconds" +msgstr "[INFO] Tid för omstart av skript är konfigurerad till %1$d sekunder" + +# @ backwpup +#: ../inc/class-job.php:350 +#, php-format +msgid "[INFO] MySQL ver.: %s" +msgstr "[INFO] MySQL-ver.: %s" + +# @ backwpup +#: ../inc/class-job.php:352 +#, php-format +msgid "[INFO] Web Server: %s" +msgstr "[INFO] Webbserver: %s" + +# @ backwpup +#: ../inc/class-job.php:355 +#, php-format +msgid "[INFO] curl ver.: %1$s; %2$s" +msgstr "[INFO] curl-ver.: %1$s; %2$s" + +# @ backwpup +#: ../inc/class-job.php:357 +#, php-format +msgid "[INFO] Temp folder is: %s" +msgstr "[INFO] Temp-mapp är: %s" + +# @ backwpup +#: ../inc/class-job.php:358 +#, php-format +msgid "[INFO] Logfile is: %s" +msgstr "[INFO] Loggfil är: %s" + +# @ backwpup +#: ../inc/class-job.php:359 +#, php-format +msgid "[INFO] Backup type is: %s" +msgstr "[INFO] Backup-typ är: %s" + +# @ backwpup +#: ../inc/class-job.php:361 +#, php-format +msgid "[INFO] Backup file is: %s" +msgstr "[INFO] Backup-fil är: %s" + +# @ backwpup +#: ../inc/class-job.php:376 +msgid "No destination correctly defined for backup! Please correct job settings." +msgstr "Inget mål har definierats korrekt för backupen! Vänligen åtgärda jobbinställningarna." + +# @ backwpup +#: ../inc/class-job.php:552 +msgid "Wrong BackWPup JobID" +msgstr "Fel BackWPup Jobb-ID" + +# @ backwpup +#: ../inc/class-job.php:555 +msgid "Log folder does not exist or is not writable for BackWPup" +msgstr "Logg-mappen existerar ej eller är ej skrivbar för BackWPup" + +# @ backwpup +#: ../inc/class-job.php:557 +msgid "Temp folder does not exist or is not writable for BackWPup" +msgstr "Temp-mappen existerar ej eller är ej skrivbar för BackWPup" + +# @ backwpup +#: ../inc/class-job.php:560 +msgid "A BackWPup job is already running" +msgstr "Ett BackWPup-jobb körs redan" + +# @ backwpup +#: ../inc/class-job.php:563 +msgid "Job started" +msgstr "Jobb påbörjat" + +# @ backwpup +#: ../inc/class-job.php:637 +msgid "Job restarts due to inactivity for more than 5 minutes." +msgstr "Jobb startas om p.g.a. längre än 5 minuters inaktivitet." + +# @ backwpup +#: ../inc/class-job.php:727 +msgid "Step aborted: too many attempts!" +msgstr "Steg skippas: för många försök!" + +# @ backwpup +#: ../inc/class-job.php:808 +msgid "Restart will be executed now." +msgstr "Omstart kommer att göras nu." + +# @ backwpup +#: ../inc/class-job.php:842 +#, php-format +msgid "Restart after %1$d seconds." +msgstr "Starta om efter %1$d sekunder." + +# @ backwpup +#: ../inc/class-job.php:969 +#, php-format +msgid "Signal %d is sent to script!" +msgstr "Signal %d skickas till skript!" + +# @ backwpup +#: ../inc/class-job.php:994 +#, php-format +msgid "Folder %1$s not allowed, please use another folder." +msgstr "Mapp %1$s tillåts ej, vänligen använd en annan mapp." + +# @ backwpup +#: ../inc/class-job.php:1000 +#, php-format +msgid "Cannot create folder: %1$s" +msgstr "Kan ej skapa mapp: %1$s" + +# @ backwpup +#: ../inc/class-job.php:1007 +#, php-format +msgid "Folder \"%1$s\" is not writable" +msgstr "Mapp \"%1$s\" är ej skrivbar" + +# @ backwpup +#: ../inc/class-job.php:1019 +msgid "BackWPup will not backup folders and subfolders when this file is inside." +msgstr "BackWPup kommer ej att ta backup på mappar och undermappar när denna fil finns inuti." + +# @ backwpup +#: ../inc/class-job.php:1031 +#, php-format +msgid "Exception caught in %1$s: %2$s" +msgstr "Undantag uppfångat i %1$s: %2$s" + +# @ backwpup +#: ../inc/class-job.php:1088 +msgid "WARNING:" +msgstr "VARNING:" + +# @ backwpup +#: ../inc/class-job.php:1097 +msgid "ERROR:" +msgstr "FEL:" + +# @ backwpup +#: ../inc/class-job.php:1101 +msgid "DEPRECATED:" +msgstr "TAGET UR BRUK:" + +# @ backwpup +#: ../inc/class-job.php:1104 +msgid "STRICT NOTICE:" +msgstr "STRIKT NOTIS:" + +# @ backwpup +#: ../inc/class-job.php:1109 +msgid "RECOVERABLE ERROR:" +msgstr "ÅTERHÄMTNINGSBART FEL:" + +# @ backwpup +#: ../inc/class-job.php:1229 +msgid "Cannot write progress to working file. Job will be aborted." +msgstr "Kan ej skriva förlopp till arbetsfil. Jobbet kommer att avbrytas." + +# @ backwpup +#: ../inc/class-job.php:1247 +msgid "Aborted by user!" +msgstr "Avbröts av användare!" + +# @ backwpup +#: ../inc/class-job.php:1272 +#, php-format +msgid "One old log deleted" +msgid_plural "%d old logs deleted" +msgstr[0] "En gammal loggfil borttagen" +msgstr[1] "%d gamla loggfiler borttagna" + +# @ backwpup +#: ../inc/class-job.php:1278 +#, php-format +msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution." +msgstr "Jobb har avslutats med fel på %s sekunder. Du måste åtgärda felen för korrekt exekvering." + +# @ backwpup +#: ../inc/class-job.php:1280 +#, php-format +msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution." +msgstr "Jobb har slutförts med varningar på %s sekunder. Vänligen åtgärda varningarna för korrekt exekvering." + +# @ backwpup +#: ../inc/class-job.php:1282 +#, php-format +msgid "Job done in %s seconds." +msgstr "Jobb slutfört på %s sekunder." + +# @ backwpup +#: ../inc/class-job.php:1325 +msgid "SUCCESSFUL" +msgstr "LYCKADES" + +# @ backwpup +#: ../inc/class-job.php:1328 +msgid "WARNING" +msgstr "VARNING" + +# @ backwpup +#: ../inc/class-job.php:1332 +msgid "ERROR" +msgstr "FEL" + +# @ backwpup +#: ../inc/class-job.php:1336 +#, php-format +msgid "[%3$s] BackWPup log %1$s: %2$s" +msgstr "[%3$s] BackWPup logg %1$s: %2$s" + +# @ backwpup +#: ../inc/class-job.php:1704 +#, php-format +msgctxt "Folder name" +msgid "Folder %s not exists" +msgstr "Mapp %s existerar ej" + +# @ backwpup +#: ../inc/class-job.php:1709 +#, php-format +msgctxt "Folder name" +msgid "Folder %s not readable" +msgstr "Mapp %s är ej läsbar" + +# @ backwpup +#: ../inc/class-job.php:1726 +#, php-format +msgid "Link \"%s\" not following." +msgstr "Länk \"%s\" är bruten." + +# @ backwpup +#: ../inc/class-job.php:1728 +#, php-format +msgid "File \"%s\" is not readable!" +msgstr "Fil \"%s\" är ej läsbar!" + +# @ backwpup +#: ../inc/class-job.php:1732 +#, php-format +msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue." +msgstr "Filstorlek på “%s” kan ej hämtas. Filen kan vara för stor och läggs därför ej till kön." + +# @ backwpup +#: ../inc/class-job.php:1754 +#, php-format +msgid "%d. Trying to generate a manifest file …" +msgstr "%d. Försöker skapa en manifest-fil …" + +# @ backwpup +#: ../inc/class-job.php:1804 +msgid "You may have noticed the manifest.json file in this archive." +msgstr "Du har kanske noterat filen manifest.json i detta arkiv." + +# @ backwpup +#: ../inc/class-job.php:1805 +msgid "manifest.json might be needed for later restoring a backup from this archive." +msgstr "manifest.json kan behövas senare för återställning av backup från detta arkiv." + +# @ backwpup +#: ../inc/class-job.php:1806 +msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored." +msgstr "Vänligen lämna manifest.json på sin plats och orörd. I annat fall kan den säkert ignoreras." + +# @ backwpup +#: ../inc/class-job.php:1819 +#, php-format +msgid "Added manifest.json file with %1$s to backup file list." +msgstr "Lade med %1$s filen manifest.json till backup-fillistan." + +# @ backwpup +#: ../inc/class-job.php:1849 +#, php-format +msgid "%d. Trying to create backup archive …" +msgstr "%d. Försöker skapa backup-arkiv …" + +# @ backwpup +#: ../inc/class-job.php:1856 +#, php-format +msgctxt "Archive compression method" +msgid "Compressing files as %s. Please be patient, this may take a moment." +msgstr "Komprimerar filer som %s. Ha tålamod, detta kan ta en stund.." + +# @ backwpup +#: ../inc/class-job.php:1870 ../inc/class-job.php:1919 +msgid "Cannot create backup archive correctly. Aborting creation." +msgstr "Kan ej skapa backup-arkiv korrekt. Avbryter skapande." + +# @ backwpup +#: ../inc/class-job.php:1916 +msgid "Aborting creation." +msgstr "Avbryter skapande." + +# @ backwpup +#: ../inc/class-job.php:1934 +msgid "Backup archive created." +msgstr "Backup-arkiv skapat." + +# @ backwpup +#: ../inc/class-job.php:1943 +#, php-format +msgid "Archive size is %s." +msgstr "Arkivstorlek är %s." + +# @ backwpup +#: ../inc/class-job.php:1944 +#, php-format +msgid "%1$d Files with %2$s in Archive." +msgstr "%1$d Filer med %2$s i Arkiv." + +# @ backwpup +#: ../inc/class-destination-msazure.php:25 +msgid "MS Azure access keys" +msgstr "MS Azure åtkomstnycklar" + +# @ backwpup +#: ../inc/class-destination-msazure.php:29 +msgid "Account name" +msgstr "Kontonamn" + +# @ backwpup +#: ../inc/class-destination-msazure.php:36 +msgid "Access key" +msgstr "Åtkomstnyckel" + +# @ backwpup +#: ../inc/class-destination-msazure.php:44 +msgid "Blob container" +msgstr "Blob-behållare" + +# @ backwpup +#: ../inc/class-destination-msazure.php:48 +msgid "Container selection" +msgstr "Behållarval" + +# @ backwpup +#: ../inc/class-destination-msazure.php:60 +msgid "Create a new container" +msgstr "Skapa en ny behållare" + +# @ backwpup +#: ../inc/class-destination-msazure.php:71 +msgid "Folder in container" +msgstr "Mapp i behållare" + +# @ backwpup +#: ../inc/class-destination-msazure.php:125 +#, php-format +msgid "MS Azure container \"%s\" created." +msgstr "MS Azure-behållare \"%s\" skapad." + +# @ backwpup +#: ../inc/class-destination-msazure.php:128 +#, php-format +msgid "MS Azure container create: %s" +msgstr "MS Azure-behållare skapad: %s" + +# @ backwpup +#: ../inc/class-destination-msazure.php:204 +#, php-format +msgid "%d. Try sending backup to a Microsoft Azure (Blob) …" +msgstr "%d. Försök skicka backupen till en Microsoft Azure (Blob) …" + +# @ backwpup +#: ../inc/class-destination-msazure.php:226 +#, php-format +msgid "MS Azure container \"%s\" does not exist!" +msgstr "MS Azure-behållare \"%s\" existerar ej!" + +# @ backwpup +#: ../inc/class-destination-msazure.php:230 +#, php-format +msgid "Connected to MS Azure container \"%s\"." +msgstr "Ansluten till MS Azure-behållare \"%s\"." + +# @ backwpup +#: ../inc/class-destination-msazure.php:233 +msgid "Starting upload to MS Azure …" +msgstr "Påbörjar uppladdning till MS Azure …" + +# @ backwpup +#: ../inc/class-destination-msazure.php:268 +#: ../inc/class-destination-dropbox.php:263 +#, php-format +msgid "Backup transferred to %s" +msgstr "Backup överförd till %s" + +# @ backwpup +#: ../inc/class-destination-msazure.php:273 +#: ../inc/class-destination-msazure.php:329 +#, php-format +msgid "Microsoft Azure API: %s" +msgstr "API för Microsoft Azure: %s" + +# @ backwpup +#: ../inc/class-destination-msazure.php:322 +#, php-format +msgid "One file deleted on Microsoft Azure container." +msgid_plural "%d files deleted on Microsoft Azure container." +msgstr[0] "En fil borttagen från Microsoft Azure-behållare." +msgstr[1] "%d filer borttagna från Microsoft Azure-behållare." + +# @ backwpup +#: ../inc/class-destination-msazure.php:415 +msgid "Missing account name!" +msgstr "Kontonamn saknas!" + +# @ backwpup +#: ../inc/class-destination-msazure.php:421 +msgid "No container found!" +msgstr "Ingen behållare hittades!" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:36 +#: ../inc/class-destination-dropbox.php:325 +#, php-format +msgid "Dropbox API: %s" +msgstr "API för Dropbox: %s" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:51 +msgid "Login" +msgstr "Logga in" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:55 +msgid "Authentication" +msgstr "Autentisering" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:57 +msgid "Not authenticated!" +msgstr "Ej autentiserad!" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:58 +msgid "Create Account" +msgstr "Skapa Konto" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:60 +msgid "Authenticated!" +msgstr "Autentiserad!" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:61 +msgid "Delete Dropbox Authentication" +msgstr "Ta bort Dropbox-autentisering" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:68 +msgid "App Access to Dropbox" +msgstr "App-åtkomst till Dropbox" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:71 +msgid "Get Dropbox App auth code" +msgstr "Skaffa Dropbox App-autentiseringskod" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:72 +msgid "Allows restricted access to Apps/BackWPup folder only." +msgstr "Tillåter begränsad åtkomst till mappen Apps/BackWPup endast." + +# @ backwpup +#: ../inc/class-destination-dropbox.php:77 +msgid "— OR —" +msgstr "— ELLER —" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:80 +msgid "Full Access to Dropbox" +msgstr "Fullständig Åtkomst till Dropbox" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:82 +msgid "BackWPup will have full read and write access to your entire Dropbox. You can specify your backup destination wherever you want, just be aware that ANY files or folders inside of your Dropbox can be overridden or deleted by BackWPup." +msgstr "BackWPup kommer att ha fullständiga läs- och skrivrättigheter till hela din Dropbox. Du kan specificera ditt backup-mål var du vill, var bara medveten om att ALLA filer och mappar i din Dropbox kan skrivas över eller tas bort av BackWPup." + +# @ backwpup +#: ../inc/class-destination-dropbox.php:83 +msgid "Get full Dropbox auth code " +msgstr "Skaffa en fullständig autentiseringskod för Dropbox" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:84 +msgid "Allows full access to your entire Dropbox." +msgstr "Tillåter full åtkomst till hela din Dropbox." + +# @ backwpup +#: ../inc/class-destination-dropbox.php:95 +msgid "Destination Folder" +msgstr "Målmapp" + +# @ theme_hamburg_textdomain +#: ../inc/class-destination-dropbox.php:98 +msgid "Folder inside your Dropbox where your backup archives will be stored." +msgstr "Mapp i din Dropbox där dina backup-arkiv skall lagras." + +# @ backwpup +#: ../inc/class-destination-dropbox.php:225 +#, php-format +msgid "%d. Try to send backup file to Dropbox …" +msgstr "%d. Försök skicka backup-fil till Dropbox …" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:243 +#, php-format +msgid "Authenticated with Dropbox of user %s" +msgstr "Autentiserad hos Dropbox som användare %s" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:246 +#, php-format +msgid "%s available on your Dropbox" +msgstr "%s tillgängligt i din Dropbox" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:248 +msgid "Not Authenticated with Dropbox!" +msgstr "Ej Autentiserad hos Dropbox!" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:251 +msgid "Uploading to Dropbox …" +msgstr "Laddar upp till Dropbox …" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:267 +msgid "Uploaded file size and local file size don't match." +msgstr "Uppladdad filstorlek och lokal filstorlek matchar ej." + +# @ backwpup +#: ../inc/class-destination-dropbox.php:271 +#, php-format +msgid "Error transfering backup to %s." +msgstr "Fel vid överföring av backup-fil %s." + +# @ backwpup +#: ../inc/class-destination-dropbox.php:316 +#, php-format +msgid "Error while deleting file from Dropbox: %s" +msgstr "Fel vid borttagning av fil från Dropbox: %s" + +# @ backwpup +#: ../inc/class-destination-dropbox.php:319 +#, php-format +msgid "One file deleted from Dropbox" +msgid_plural "%d files deleted on Dropbox" +msgstr[0] "En fil borttagen från Dropbox" +msgstr[1] "%d filer borttagna från Dropbox" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:13 +msgid "DB Backup" +msgstr "DB-backup" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:14 +msgid "Database backup" +msgstr "Databas-backup" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:15 +msgid "Creates an .sql database backup file" +msgstr "Skapar en .sql databas-backupfil" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:61 +msgid "Settings for database backup" +msgstr "Inställningar för databas-backup" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:65 +msgid "Tables to backup" +msgstr "Tabeller att ta backup på" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:67 +msgid "all" +msgstr "alla" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:91 +msgid "Backup file name" +msgstr "Filnamn för backup" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:99 +msgid "Backup file compression" +msgstr "Komprimeringsmetod för backupfil" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:155 +#, php-format +msgid "%d. Try to backup database …" +msgstr "%d. Försök ta backup på databas …" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:169 +#, php-format +msgid "Connected to database %1$s on %2$s" +msgstr "Ansluten till databas %1$s på %2$s" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:182 +msgid "No tables to backup." +msgstr "Inga tabeller att ta backup på" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:204 +#, php-format +msgid "Backup database table \"%s\" with \"%s\" records" +msgstr "Ta backup på databastabell \"%s\" med \"%s\" poster" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:243 +msgid "MySQL backup file not created" +msgstr "MySQL-backupfil skapades ej" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:249 +#, php-format +msgid "Added database dump \"%1$s\" with %2$s to backup file list" +msgstr "Lade till databasdumpning \"%1$s\" med %2$s till backup-fillista" + +# @ backwpup +#: ../inc/class-jobtype-dbdump.php:255 +msgid "Database backup done!" +msgstr "Databas-backup klar!" + +# @ backwpup +#: ../inc/class-adminbar.php:53 +msgid "running" +msgstr "körs" + +# @ backwpup +#: ../inc/class-adminbar.php:69 +msgid "Now Running" +msgstr "Körs Nu" + +# @ backwpup +#: ../inc/class-adminbar.php:75 +msgid "Abort!" +msgstr "Avbryt!" + +# @ backwpup +#: ../inc/class-adminbar.php:92 +msgid "Add new" +msgstr "Lägg till nytt" + +# @ backwpup +#: ../inc/class-adminbar.php:130 +msgid "Run Now" +msgstr "Kör Nu" + +# @ backwpup +#: ../inc/class-destination-s3-v1.php:249 +#, php-format +msgid "Bucket %1$s created." +msgstr "Hink %1$s skapad." + +# @ backwpup +#: ../inc/class-destination-rsc.php:41 +msgid "Rack Space Cloud Keys" +msgstr "Nycklar för Rack Space Cloud" + +# @ backwpup +#: ../inc/class-destination-rsc.php:52 +msgid "API Key" +msgstr "API-nyckel" + +# @ backwpup +#: ../inc/class-destination-rsc.php:60 +msgid "Select region" +msgstr "Välj region" + +# @ backwpup +#: ../inc/class-destination-rsc.php:64 ../inc/class-destination-rsc.php:66 +msgid "Rackspace Cloud Files Region" +msgstr "Filregion för Rackspace Cloud Files" + +# @ backwpup +#: ../inc/class-destination-rsc.php:67 +msgid "Dallas (DFW)" +msgstr "Dallas (DFW)" + +# @ backwpup +#: ../inc/class-destination-rsc.php:68 +msgid "Chicago (ORD)" +msgstr "Chicago (ORD)" + +# @ backwpup +#: ../inc/class-destination-rsc.php:69 +msgid "Sydney (SYD)" +msgstr "Sydney (SYD)" + +# @ backwpup +#: ../inc/class-destination-rsc.php:70 +msgid "London (LON)" +msgstr "London (LON)" + +# @ backwpup +#: ../inc/class-destination-rsc.php:71 +msgid "Northern Virginia (IAD)" +msgstr "Northern Virginia (IAD)" + +# @ backwpup +#: ../inc/class-destination-rsc.php:72 +msgid "Hong Kong (HKG)" +msgstr "Hong Kong (HKG)" + +# @ backwpup +#: ../inc/class-destination-rsc.php:155 +#, php-format +msgid "Rackspace Cloud container \"%s\" created." +msgstr "Rackspace Cloud-behållare \"%s\" skapad." + +# @ backwpup +#: ../inc/class-destination-rsc.php:159 ../inc/class-destination-rsc.php:267 +#: ../inc/class-destination-rsc.php:302 ../inc/class-destination-rsc.php:347 +#, php-format +msgid "Rackspace Cloud API: %s" +msgstr "API för Rackspace Cloud: %s" + +# @ backwpup +#: ../inc/class-destination-rsc.php:250 +#, php-format +msgid "%d. Trying to send backup file to Rackspace cloud …" +msgstr "%d. Försöker skicka backup-fil till Rackspace Cloud …" + +# @ backwpup +#: ../inc/class-destination-rsc.php:264 +#, php-format +msgid "Connected to Rackspace cloud files container %s" +msgstr "Ansluten till Rackspace Cloud Files behållare %s" + +# @ backwpup +#: ../inc/class-destination-rsc.php:276 +msgid "Upload to Rackspace cloud started …" +msgstr "Uppladdning till Rackspace Cloud påbörjad …" + +# @ backwpup +#: ../inc/class-destination-rsc.php:292 +msgid "Backup File transferred to RSC://" +msgstr "Backup-arkiv överfört till RSC://" + +# @ backwpup +#: ../inc/class-destination-rsc.php:296 +msgid "Cannot transfer backup to Rackspace cloud." +msgstr "Kan ej överföra backup-fil till Rackspace Cloud." + +# @ backwpup +#: ../inc/class-destination-rsc.php:341 +#, php-format +msgid "One file deleted on Rackspace cloud container." +msgid_plural "%d files deleted on Rackspace cloud container." +msgstr[0] "En fil borttagen från Rackspace Cloud-behållare." +msgstr[1] "%d filer borttagna från Rackspace Cloud-behållare." + +# @ backwpup +#: ../inc/class-destination-rsc.php:444 +msgid "Missing username!" +msgstr "Användarnamn saknas!" + +# @ backwpup +#: ../inc/class-destination-rsc.php:446 +msgid "Missing API Key!" +msgstr "API-nyckel saknas!" + +# @ backwpup +#: ../inc/class-destination-rsc.php:450 +msgid "A container could not be found!" +msgstr "Ingen behållare kunde hittas!" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:13 +msgid "DB Check" +msgstr "DB-kontroll" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:14 +msgid "Check database tables" +msgstr "Kontroll av databastabeller" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:35 +msgid "Settings for database check" +msgstr "Inställningar för databaskontroll" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:39 +msgid "WordPress tables only" +msgstr "Endast WordPress-tabeller" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:44 +msgid "Check WordPress database tables only" +msgstr "Kontrollera endast WordPress databastabeller" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:49 +msgid "Repair" +msgstr "Reparera" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:54 +msgid "Try to repair defect table" +msgstr "Försök reparera skadad tabell" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:79 +#, php-format +msgid "%d. Trying to check database …" +msgstr "%d. Försöker kontrollera databas …" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:111 +#, php-format +msgid "Table %1$s is a view. Not checked." +msgstr "Tabell %1$s är en vy. Ej kontrollerad." + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:116 +#, php-format +msgid "Table %1$s is not a MyISAM/InnoDB table. Not checked." +msgstr "Tabell %1$s är ingen MyISAM/InnoDB-tabell. Ej kontrollerad." + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:123 ../inc/class-jobtype-dbcheck.php:125 +#: ../inc/class-jobtype-dbcheck.php:127 +#, php-format +msgid "Result of table check for %1$s is: %2$s" +msgstr "Resultat av tabellkontroll för %1$s är: %2$s" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:133 ../inc/class-jobtype-dbcheck.php:135 +#: ../inc/class-jobtype-dbcheck.php:137 +#, php-format +msgid "Result of table repair for %1$s is: %2$s" +msgstr "Resultat av tabellreparation för %1$s är: %2$s" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:142 +msgid "Database check done!" +msgstr "Databaskontroll klar!" + +# @ backwpup +#: ../inc/class-jobtype-dbcheck.php:145 +msgid "No tables to check." +msgstr "Inga tabeller att kontrollera." + +# @ backwpup +#: ../inc/class-page-settings.php:60 +msgid "Settings reset to default" +msgstr "Inställningar återställda till förvalda." + +# @ backwpup +#: ../inc/class-page-settings.php:101 +msgid "Settings saved" +msgstr "Inställningar sparade" + +# @ backwpup +#: ../inc/class-page-settings.php:112 +#, php-format +msgid "%s Settings" +msgstr "%s Inställningar" + +# @ backwpup +#: ../inc/class-page-settings.php:114 ../inc/class-page-editjob.php:386 +msgid "General" +msgstr "Generellt" + +# @ backwpup +#: ../inc/class-page-settings.php:114 +msgid "Network" +msgstr "Nätverk" + +# @ backwpup +#: ../inc/class-page-settings.php:114 +msgid "API Keys" +msgstr "API-nycklar" + +# @ backwpup +#: ../inc/class-page-settings.php:114 +msgid "Information" +msgstr "Information" + +# @ backwpup +#: ../inc/class-page-settings.php:131 +msgid "Display Settings" +msgstr "Visningsinställningar" + +# @ backwpup +#: ../inc/class-page-settings.php:132 +msgid "Do you want to see BackWPup in the WordPress admin bar?" +msgstr "Vill du se BackWPup i WordPress verktygsrad?" + +# @ backwpup +#: ../inc/class-page-settings.php:135 +msgid "Admin bar" +msgstr "Verktygsrad" + +# @ backwpup +#: ../inc/class-page-settings.php:138 +msgid "Admin Bar" +msgstr "Verktygsrad" + +# @ backwpup +#: ../inc/class-page-settings.php:143 +msgid "Show BackWPup links in admin bar." +msgstr "Visa BackWPup-länkar i verktygsraden." + +# @ backwpup +#: ../inc/class-page-settings.php:148 ../inc/class-page-settings.php:151 +msgid "Folder sizes" +msgstr "Mappstorlekar" + +# @ backwpup +#: ../inc/class-page-settings.php:156 +msgid "Display folder sizes in the files tab when editing a job. (Might increase loading time of files tab.)" +msgstr "Visa mappstorlekar i filtabben när ett jobb redigeras (kan öka laddningstiden för filtabben). " + +# @ backwpup +#: ../inc/class-page-settings.php:161 +msgid "Security" +msgstr "Säkerhet" + +# @ backwpup +#: ../inc/class-page-settings.php:162 +msgid "Security option for BackWPup" +msgstr "Säkerhetsalternativ för BackWPup" + +# @ backwpup +#: ../inc/class-page-settings.php:165 ../inc/class-page-settings.php:168 +msgid "Protect folders" +msgstr "Projektmappar" + +# @ backwpup +#: ../inc/class-page-settings.php:173 +msgid "Protect BackWPup folders ( Temp, Log and Backups ) with .htaccess and index.php" +msgstr "Skydda BackWPup-mappar (Temp, Log och Backups) med .htaccess och index.php" + +# @ backwpup +#: ../inc/class-page-settings.php:186 +msgid "Every time BackWPup runs a backup job, a log file is being generated. Choose where to store your log files and how many of them." +msgstr "Varje gång BackWPup kör ett backup-jobb så genereras en loggfil. Välj var dina loggfiler skall lagras, samt hur många." + +# @ backwpup +#: ../inc/class-page-settings.php:189 +msgid "Log file folder" +msgstr "Loggfilsmapp" + +# @ backwpup +#: ../inc/class-page-settings.php:197 +msgid "Maximum number of log files in folder" +msgstr "Maximalt antal loggfiler i mapp" + +# @ backwpup +#: ../inc/class-page-settings.php:205 ../inc/class-page-settings.php:208 +msgid "Compression" +msgstr "Komprimering" + +# @ backwpup +#: ../inc/class-page-settings.php:213 +msgid "Compress log files with GZip." +msgstr "Komprimera loggfiler med Gzip." + +# @ backwpup +#: ../inc/class-page-settings.php:222 +msgid "There are a couple of general options for backup jobs. Set them here." +msgstr "Det finns några generella alternativ för backup-jobb. Gör dessa val här." + +# @ backwpup +#: ../inc/class-page-settings.php:226 +msgid "Maximum number of retries for job steps" +msgstr "Maximalt antal försök för jobbsteg" + +# @ backwpup +#: ../inc/class-page-settings.php:234 +msgid "Maximum script execution time" +msgstr "Maximal skriptkörningstid" + +# @ backwpup +#: ../inc/class-page-settings.php:237 +msgid "Maximum PHP Script execution time" +msgstr "Maximal körningstid för PHP-skript" + +# @ backwpup +#: ../inc/class-page-settings.php:242 +msgid "seconds. 0 = disabled." +msgstr "sekunder. 0 = deaktiverat." + +# @ backwpup +#: ../inc/class-page-settings.php:248 ../inc/class-page-settings.php:251 +msgid "Method for creating ZIP-file archives" +msgstr "Metod för att skapa ZIP-arkivfiler" + +# @ backwpup +#: ../inc/class-page-settings.php:255 +msgid "Auto" +msgstr "Auto" + +# @ backwpup +#: ../inc/class-page-settings.php:256 +msgid "ZipArchive" +msgstr "ZipArchive" + +# @ backwpup +#: ../inc/class-page-settings.php:257 +msgid "PclZip" +msgstr "PclZip" + +# @ backwpup +#: ../inc/class-page-settings.php:265 +msgid "Key to start jobs externally with an URL" +msgstr "Nyckel för att starta jobb externt via en URL" + +# @ backwpup +#: ../inc/class-page-settings.php:273 +msgid "No translation" +msgstr "Ingen översättning" + +# @ backwpup +#: ../inc/class-page-settings.php:276 +msgid "No Translation" +msgstr "Ingen Översättning" + +# @ backwpup +#: ../inc/class-page-settings.php:281 +msgid "No translation for the job, the log will be written in English" +msgstr "Ingen översättning av jobbet. Loggen kommer att skrivas på Engelska" + +# @ backwpup +#: ../inc/class-page-settings.php:287 ../inc/class-page-settings.php:290 +msgid "Reduce server load" +msgstr "Reducera serverbelastning" + +# @ backwpup +#: ../inc/class-page-settings.php:294 +msgid "disabled" +msgstr "deaktiverat" + +# @ backwpup +#: ../inc/class-page-settings.php:295 +msgid "minimum" +msgstr "minimum" + +# @ backwpup +#: ../inc/class-page-settings.php:296 +msgid "medium" +msgstr "medium" + +# @ backwpup +#: ../inc/class-page-settings.php:297 +msgid "maximum" +msgstr "maximum" + +# @ backwpup +#: ../inc/class-page-settings.php:310 +msgid "Is your blog protected with HTTP basic authentication (.htaccess)? If yes, please set the username and password for authentication here." +msgstr "Är din blogg skyddad med standard HTTP-autentisering (.htaccess)? Om ja, vänligen ange användarnamn och lösenord för autentisering här." + +# @ backwpup +#: ../inc/class-page-settings.php:313 +msgid "Username:" +msgstr "Användarnamn:" + +# @ backwpup +#: ../inc/class-page-settings.php:321 ../inc/class-destination-sugarsync.php:34 +msgid "Password:" +msgstr "Lösenord:" + +# @ backwpup +#: ../inc/class-page-settings.php:341 ../inc/class-page-settings.php:342 +msgid "Setting" +msgstr "Inställning" + +# @ backwpup +#: ../inc/class-page-settings.php:341 ../inc/class-page-settings.php:342 +msgid "Value" +msgstr "Värde" + +# @ backwpup +#: ../inc/class-page-settings.php:343 +msgid "WordPress version" +msgstr "WordPress-version" + +# @ backwpup +#: ../inc/class-page-settings.php:345 +msgid "BackWPup version" +msgstr "BackWPup-version" + +# @ backwpup +#: ../inc/class-page-settings.php:345 +msgid "Get pro." +msgstr "Skaffa pro." + +# @ backwpup +#: ../inc/class-page-settings.php:347 +msgid "BackWPup Pro version" +msgstr "BackWPup Pro-version" + +# @ backwpup +#: ../inc/class-page-settings.php:348 +msgid "PHP version" +msgstr "PHP-version" + +# @ backwpup +#: ../inc/class-page-settings.php:349 +msgid "MySQL version" +msgstr "MySQL-version" + +# @ backwpup +#: ../inc/class-page-settings.php:352 ../inc/class-page-settings.php:356 +msgid "cURL version" +msgstr "cURL-version" + +# @ backwpup +#: ../inc/class-page-settings.php:353 +msgid "cURL SSL version" +msgstr "cURL SSL-version" + +# @ backwpup +#: ../inc/class-page-settings.php:356 +msgid "unavailable" +msgstr "ej tillgänglig" + +# @ backwpup +#: ../inc/class-page-settings.php:358 +msgid "WP-Cron url:" +msgstr "WP-Cron url:" + +# @ backwpup +#: ../inc/class-page-settings.php:360 +msgid "Server self connect:" +msgstr "Server självanslutning:" + +# @ backwpup +#: ../inc/class-page-settings.php:364 ../inc/class-page-jobs.php:347 +#, php-format +msgid "The HTTP response test get an error \"%s\"" +msgstr "HTTP-svarstestet resulterade i följande fel \"%s\"" + +# @ backwpup +#: ../inc/class-page-settings.php:366 ../inc/class-page-jobs.php:349 +#, php-format +msgid "The HTTP response test get a false http status (%s)" +msgstr "En falsk http-status mottogs vid HTTP-svarstestet (%s)" + +# @ backwpup +#: ../inc/class-page-settings.php:369 +#: ../inc/pro/class-wizard-systemtest.php:180 +#, php-format +msgid "The BackWPup HTTP response header returns a false value: \"%s\"" +msgstr "BackWPup:s HTTP-svarshuvud returnerar ett falskt värde: \"%s\"" + +# @ backwpup +#: ../inc/class-page-settings.php:372 +msgid "Response Test O.K." +msgstr "Svarstest O.K." + +# @ backwpup +#: ../inc/class-page-settings.php:377 +msgid "Temp folder:" +msgstr "Temp-mapp:" + +# @ backwpup +#: ../inc/class-page-settings.php:379 +#, php-format +msgid "Temp folder %s doesn't exist." +msgstr "Temp-mapp %s existerar ej." + +# @ backwpup +#: ../inc/class-page-settings.php:381 +#, php-format +msgid "Temporary folder %s is not writable." +msgstr "Temporär mapp %s är ej skrivbar." + +# @ backwpup +#: ../inc/class-page-settings.php:386 +msgid "Log folder:" +msgstr "Logg-mapp:" + +# @ backwpup +#: ../inc/class-page-settings.php:388 +#, php-format +msgid "Logs folder %s not exist." +msgstr "Logg-mapp %s existerar ej." + +# @ backwpup +#: ../inc/class-page-settings.php:390 +#, php-format +msgid "Log folder %s is not writable." +msgstr "Logg-mapp %s är ej skrivbar." + +# @ backwpup +#: ../inc/class-page-settings.php:394 +msgid "Server" +msgstr "Server" + +# @ backwpup +#: ../inc/class-page-settings.php:395 +msgid "Operating System" +msgstr "Operativsystem" + +# @ backwpup +#: ../inc/class-page-settings.php:396 +msgid "PHP SAPI" +msgstr "PHP SAPI" + +# @ backwpup +#: ../inc/class-page-settings.php:397 +msgid "Current PHP user" +msgstr "Nuvarande PHP-användare" + +# @ backwpup +#: ../inc/class-page-settings.php:398 ../inc/class-page-settings.php:402 +#: ../inc/class-page-settings.php:406 +msgid "On" +msgstr "På" + +# @ backwpup +#: ../inc/class-page-settings.php:398 ../inc/class-page-settings.php:404 +#: ../inc/class-page-settings.php:408 +msgid "Off" +msgstr "Av" + +# @ backwpup +#: ../inc/class-page-settings.php:399 +msgid "Safe Mode" +msgstr "Felsäkert läge" + +# @ backwpup +#: ../inc/class-page-settings.php:400 +msgid "Maximum execution time" +msgstr "Maximal exekveringstid" + +# @ backwpup +#: ../inc/class-page-settings.php:402 ../inc/class-page-settings.php:404 +msgid "Alternative WP Cron" +msgstr "Alternativ WP Cron" + +# @ backwpup +#: ../inc/class-page-settings.php:406 ../inc/class-page-settings.php:408 +msgid "Disabled WP Cron" +msgstr "Deaktiverad WP Cron" + +# @ backwpup +#: ../inc/class-page-settings.php:410 ../inc/class-page-settings.php:412 +msgid "CHMOD Dir" +msgstr "CHMOD Katalog" + +# @ backwpup +#: ../inc/class-page-settings.php:414 +msgid "Server Time" +msgstr "Servertid" + +# @ backwpup +#: ../inc/class-page-settings.php:415 +msgid "Blog Time" +msgstr "Bloggtid" + +# @ backwpup +#: ../inc/class-page-settings.php:416 +msgid "Blog Timezone" +msgstr "Bloggens Tidszon" + +# @ backwpup +#: ../inc/class-page-settings.php:417 +msgid "Blog Time offset" +msgstr "Bloggens Tidsutjämning" + +# @ backwpup +#: ../inc/class-page-settings.php:417 +#, php-format +msgid "%s hours" +msgstr "%s timmar" + +# @ backwpup +#: ../inc/class-page-settings.php:418 +msgid "Blog language" +msgstr "Bloggspråk" + +# @ backwpup +#: ../inc/class-page-settings.php:419 +msgid "MySQL Client encoding" +msgstr "MySQL Klientkodning" + +# @ backwpup +#: ../inc/class-page-settings.php:422 +msgid "Blog charset" +msgstr "Bloggens teckenuppsättning" + +# @ backwpup +#: ../inc/class-page-settings.php:423 +msgid "PHP Memory limit" +msgstr "PHP Minnesgräns" + +# @ backwpup +#: ../inc/class-page-settings.php:424 +msgid "WP memory limit" +msgstr "WP minnesgräns" + +# @ backwpup +#: ../inc/class-page-settings.php:425 +msgid "WP maximum memory limit" +msgstr "WP maximal minnesanvändning" + +# @ backwpup +#: ../inc/class-page-settings.php:426 +msgid "Memory in use" +msgstr "Minne som används" + +# @ backwpup +#: ../inc/class-page-settings.php:431 +msgid "Disabled PHP Functions:" +msgstr "Deaktiverade PHP-funktioner:" + +# @ backwpup +#: ../inc/class-page-settings.php:436 +msgid "Loaded PHP Extensions:" +msgstr "Laddade PHP-utökningar:" + +# @ backwpup +#: ../inc/class-page-settings.php:448 +msgid "Save Changes" +msgstr "Spara Ändringar" + +# @ backwpup +#: ../inc/class-page-settings.php:450 +msgid "Reset all settings to default" +msgstr "Återställ alla inställningar till förvalda" + +# @ backwpup +#: ../inc/class-page-editjob.php:37 +msgid "Overview" +msgstr "Översikt" + +# @ backwpup +#: ../inc/class-page-editjob.php:102 +#, php-format +msgid "Job with ID %d" +msgstr "Jobb med ID %d" + +# @ backwpup +#: ../inc/class-page-editjob.php:191 +#, php-format +msgid "Changes for job %s saved." +msgstr "Ändringar i jobb %s sparade." + +# @ backwpup +#: ../inc/class-page-editjob.php:192 +msgid "Jobs overview" +msgstr "Jobböversikt" + +# @ backwpup +#: ../inc/class-page-editjob.php:192 ../inc/class-page-jobs.php:117 +msgid "Run now" +msgstr "Kör nu" + +# @ backwpup +#: ../inc/class-page-editjob.php:331 +msgid "Working as Cron schedule:" +msgstr "Arbetar som Cron tidsplan:" + +# @ backwpup +#: ../inc/class-page-editjob.php:340 +#, php-format +msgid "ATTENTION: Job runs every %d minutes!" +msgstr "OBSERVERA: Jobb körs med %d minuters intervall!" + +# @ backwpup +#: ../inc/class-page-editjob.php:346 +#, php-format +msgid "ATTENTION: Job runs every %d hours!" +msgstr "OBSERVERA: Jobb körs med %d timmars intervall!" + +# @ backwpup +#: ../inc/class-page-editjob.php:350 +msgid "ATTENTION: Can't calculate cron!" +msgstr "OBSERVERA: Kan ej beräkna cron!" + +# @ backwpup +#: ../inc/class-page-editjob.php:353 +msgid "Next runtime:" +msgstr "Nästa körtid:" + +# @ backwpup +#: ../inc/class-page-editjob.php:386 +msgid "Schedule" +msgstr "Tidsplan" + +# @ backwpup +#: ../inc/class-page-editjob.php:401 +#, php-format +msgid "To: %s" +msgstr "Till: %s" + +# @ backwpup +#: ../inc/class-page-editjob.php:407 +#, php-format +msgid "%s Job:" +msgstr "%s Jobb: " + +# @ backwpup +#: ../inc/class-page-editjob.php:434 ../inc/class-page-jobs.php:76 +msgid "Job Name" +msgstr "Jobbnamn" + +# @ backwpup +#: ../inc/class-page-editjob.php:438 +msgid "Please name this job." +msgstr "Vänligen namnge detta jobb." + +# @ backwpup +#: ../inc/class-page-editjob.php:446 +msgid "Job Tasks" +msgstr "Jobbets Arbetsuppgifter" + +# @ backwpup +#: ../inc/class-page-editjob.php:450 +msgid "This job is a …" +msgstr "Detta jobb är en …" + +# @ backwpup +#: ../inc/class-page-editjob.php:453 +msgid "Job tasks" +msgstr "Jobbets arbetsuppgifter" + +# @ backwpup +#: ../inc/class-page-editjob.php:471 +msgid "Backup File Creation" +msgstr "Skapande Av Backup-fil" + +# @ backwpup +#: ../inc/class-page-editjob.php:476 ../inc/class-page-editjob.php:479 +msgid "Backup type" +msgstr "Backup-typ" + +# @ backwpup +#: ../inc/class-page-editjob.php:483 +msgid "Synchronize file by file to destination" +msgstr "Synkronisera fil för fil med mål" + +# @ backwpup +#: ../inc/class-page-editjob.php:487 +msgid "Create a backup archive" +msgstr "Skapa backup-arkiv" + +# @ backwpup +#: ../inc/class-page-editjob.php:493 +msgid "Archive name" +msgstr "Arkivnamn" + +# @ backwpup +#: ../inc/class-page-editjob.php:525 ../inc/class-page-editjob.php:528 +msgid "Archive Format" +msgstr "Arkivformat" + +# @ backwpup +#: ../inc/class-page-editjob.php:531 +msgid "PHP Zip functions will be used if available (needs less memory). Otherwise the PCLZip class will be used." +msgstr "PHP Zip-funktioner kommer att användas om tillgängliga (kräver mindre minne). I annat fall kommer PCLZip-klassen att användas." + +# @ backwpup +#: ../inc/class-page-editjob.php:531 ../inc/class-page-editjob.php:533 +msgid "Zip" +msgstr "Zip" + +# @ backwpup +#: ../inc/class-page-editjob.php:533 ../inc/class-page-editjob.php:538 +#: ../inc/class-page-editjob.php:542 +msgid "Disabled due to missing PHP function." +msgstr "Deaktiverat p.g.a. saknad PHP-funktion." + +# @ backwpup +#: ../inc/class-page-editjob.php:534 +msgid "A tarballed, not compressed archive (fast and less memory)" +msgstr "Ett Tar-arkiv, ej komprimerat (snabbt och mindre minneskrävande)" + +# @ backwpup +#: ../inc/class-page-editjob.php:534 +msgid "Tar" +msgstr "Tar" + +# @ backwpup +#: ../inc/class-page-editjob.php:536 +msgid "A tarballed, GZipped archive (fast and less memory)" +msgstr "Ett Tar Gz-arkiv (snabbt och mindre minneskrävande)" + +# @ backwpup +#: ../inc/class-page-editjob.php:536 ../inc/class-page-editjob.php:538 +msgid "Tar GZip" +msgstr "Tar GZip" + +# @ backwpup +#: ../inc/class-page-editjob.php:540 +msgid "A tarballed, BZipped archive (fast and less memory)" +msgstr "Ett Tar Bz-arkiv (snabbt och mindre minneskrävande)" + +# @ backwpup +#: ../inc/class-page-editjob.php:540 ../inc/class-page-editjob.php:542 +msgid "Tar BZip2" +msgstr "Tar BZip2" + +# @ backwpup +#: ../inc/class-page-editjob.php:548 +msgid "Job Destination" +msgstr "Jobbmål" + +# @ backwpup +#: ../inc/class-page-editjob.php:552 ../inc/class-page-editjob.php:555 +msgid "Where should your backup file be stored?" +msgstr "Var skall dina backup-filer lagras?" + +# @ backwpup +#: ../inc/class-page-editjob.php:576 +msgid "Log Files" +msgstr "Loggfiler" + +# @ backwpup +#: ../inc/class-page-editjob.php:580 +msgid "Send log to email address" +msgstr "Skicka logg till e-postadress" + +# @ backwpup +#: ../inc/class-page-editjob.php:588 +msgid "Email FROM field" +msgstr "E-postmeddelandets FRÅN-fält" + +# @ backwpup +#: ../inc/class-page-editjob.php:596 +msgid "Errors only" +msgstr "Endast fel" + +# @ backwpup +#: ../inc/class-page-editjob.php:601 +msgid "Send email with log only when errors occur during job execution." +msgstr "Skicka e-post med logg endast om fel uppstår under jobbkörning." + +# @ backwpup +#: ../inc/class-page-editjob.php:612 +msgid "Job Schedule" +msgstr "Jobbtidsplan" + +# @ backwpup +#: ../inc/class-page-editjob.php:616 ../inc/class-page-editjob.php:619 +msgid "Start job" +msgstr "Starta jobb" + +# @ backwpup +#: ../inc/class-page-editjob.php:623 +msgid "manually only" +msgstr "endast manuellt" + +# @ backwpup +#: ../inc/class-page-editjob.php:627 +msgid "with WordPress cron" +msgstr "med WordPress cron" + +# @ backwpup +#: ../inc/class-page-editjob.php:634 +msgid "with a link" +msgstr "via en länk" + +# @ backwpup +#: ../inc/class-page-editjob.php:640 +msgid "Start job with CLI" +msgstr "Starta jobb med CLI" + +# @ backwpup +#: ../inc/class-page-editjob.php:643 +#, php-format +msgid "Use WP-CLI to run jobs from commandline or get the start script." +msgstr "Använd WP-CLI för att köra jobb från kommandoraden eller hämta detta start-skript." + +# @ backwpup +#: ../inc/class-page-editjob.php:648 +msgid "Schedule execution time" +msgstr "Schemalägg körtid" + +# @ backwpup +#: ../inc/class-page-editjob.php:652 ../inc/class-page-editjob.php:655 +msgid "Scheduler type" +msgstr "Typ av schemaläggare" + +# @ backwpup +#: ../inc/class-page-editjob.php:659 +msgid "basic" +msgstr "enkel" + +# @ backwpup +#: ../inc/class-page-editjob.php:663 +msgid "advanced" +msgstr "avancerad" + +# @ backwpup +#: ../inc/class-page-editjob.php:692 ../inc/class-page-editjob.php:760 +msgid "Scheduler" +msgstr "Schemaläggare" + +# @ backwpup +#: ../inc/class-page-editjob.php:702 +msgid "Hour" +msgstr "Timme" + +# @ backwpup +#: ../inc/class-page-editjob.php:705 +msgid "Minute" +msgstr "Minut" + +# @ backwpup +#: ../inc/class-page-editjob.php:709 +msgid "monthly" +msgstr "månatlig" + +# @ backwpup +#: ../inc/class-page-editjob.php:711 +msgid "on" +msgstr "på" + +# @ backwpup +#: ../inc/class-page-editjob.php:721 +msgid "weekly" +msgstr "veckolig" + +# @ backwpup +#: ../inc/class-page-editjob.php:723 ../inc/class-page-editjob.php:830 +msgid "Sunday" +msgstr "Söndag" + +# @ backwpup +#: ../inc/class-page-editjob.php:724 ../inc/class-page-editjob.php:831 +msgid "Monday" +msgstr "Måndag" + +# @ backwpup +#: ../inc/class-page-editjob.php:725 ../inc/class-page-editjob.php:832 +msgid "Tuesday" +msgstr "Tisdag" + +# @ backwpup +#: ../inc/class-page-editjob.php:726 ../inc/class-page-editjob.php:833 +msgid "Wednesday" +msgstr "Onsdag" + +# @ backwpup +#: ../inc/class-page-editjob.php:727 ../inc/class-page-editjob.php:834 +msgid "Thursday" +msgstr "Torsdag" + +# @ backwpup +#: ../inc/class-page-editjob.php:728 ../inc/class-page-editjob.php:835 +msgid "Friday" +msgstr "Fredag" + +# @ backwpup +#: ../inc/class-page-editjob.php:729 ../inc/class-page-editjob.php:836 +msgid "Saturday" +msgstr "Lördag" + +# @ backwpup +#: ../inc/class-page-editjob.php:739 +msgid "daily" +msgstr "dagligen" + +# @ backwpup +#: ../inc/class-page-editjob.php:749 +msgid "hourly" +msgstr "timvis" + +# @ backwpup +#: ../inc/class-page-editjob.php:763 +msgid "Minutes:" +msgstr "Minuter:" + +# @ backwpup +#: ../inc/class-page-editjob.php:765 ../inc/class-page-editjob.php:778 +#: ../inc/class-page-editjob.php:790 ../inc/class-page-editjob.php:804 +#: ../inc/class-page-editjob.php:826 +msgid "Any (*)" +msgstr "Alla (*)" + +# @ backwpup +#: ../inc/class-page-editjob.php:775 +msgid "Hours:" +msgstr "Timmar:" + +# @ backwpup +#: ../inc/class-page-editjob.php:788 +msgid "Day of Month:" +msgstr "Dag i Månad:" + +# @ backwpup +#: ../inc/class-page-editjob.php:802 +msgid "Month:" +msgstr "Månad:" + +# @ backwpup +#: ../inc/class-page-editjob.php:808 +msgid "January" +msgstr "Januari" + +# @ backwpup +#: ../inc/class-page-editjob.php:809 +msgid "February" +msgstr "Februari" + +# @ backwpup +#: ../inc/class-page-editjob.php:810 +msgid "March" +msgstr "Mars" + +# @ backwpup +#: ../inc/class-page-editjob.php:811 +msgid "April" +msgstr "April" + +# @ backwpup +#: ../inc/class-page-editjob.php:812 +msgid "May" +msgstr "Maj" + +# @ backwpup +#: ../inc/class-page-editjob.php:813 +msgid "June" +msgstr "Juni" + +# @ backwpup +#: ../inc/class-page-editjob.php:814 +msgid "July" +msgstr "Juli" + +# @ backwpup +#: ../inc/class-page-editjob.php:815 +msgid "August" +msgstr "Augusti" + +# @ backwpup +#: ../inc/class-page-editjob.php:816 +msgid "September" +msgstr "September" + +# @ backwpup +#: ../inc/class-page-editjob.php:817 +msgid "October" +msgstr "Oktober" + +# @ backwpup +#: ../inc/class-page-editjob.php:818 +msgid "November" +msgstr "November" + +# @ backwpup +#: ../inc/class-page-editjob.php:819 +msgid "December" +msgstr "December" + +# @ backwpup +#: ../inc/class-page-editjob.php:824 +msgid "Day of Week:" +msgstr "Veckodag:" + +# @ backwpup +#: ../inc/class-page-editjob.php:860 +msgid "Save changes" +msgstr "Spara ändringar" + +# @ backwpup +#: ../inc/class-jobtype-wpplugin.php:13 +msgid "Plugins" +msgstr "Tillägg" + +# @ backwpup +#: ../inc/class-jobtype-wpplugin.php:14 +msgid "Installed plugins list" +msgstr "Lista över installerade tillägg" + +# @ backwpup +#: ../inc/class-jobtype-wpplugin.php:45 +msgid "Plugin list file name" +msgstr "Tilläggslistans filnamn" + +# @ backwpup +#: ../inc/class-jobtype-wpplugin.php:93 +#, php-format +msgid "%d. Trying to generate a file with installed plugin names …" +msgstr "%d. Föröker generera en fil med namn på installerade tillägg …" + +# @ backwpup +#: ../inc/class-jobtype-wpplugin.php:120 +msgid "All plugin information:" +msgstr "Information om alla tillägg:" + +# @ backwpup +#: ../inc/class-jobtype-wpplugin.php:122 +#, php-format +msgid "from %s" +msgstr "från %s" + +# @ backwpup +#: ../inc/class-jobtype-wpplugin.php:124 +msgid "Active plugins:" +msgstr "Aktiva tillägg:" + +# @ backwpup +#: ../inc/class-jobtype-wpplugin.php:130 +msgid "Inactive plugins:" +msgstr "Inaktiva tillägg:" + +# @ backwpup +#: ../inc/class-jobtype-wpplugin.php:142 +#, php-format +msgid "Added plugin list file \"%1$s\" with %2$s to backup file list." +msgstr "Lade till lista över tillägg \"%1$s\" med %2$s till fillista för backup." + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:22 +msgid "Sugarsync Login" +msgstr "SugarSync Inloggning" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:30 +msgid "Email address:" +msgstr "E-postadress:" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:40 +#: ../inc/class-destination-sugarsync.php:121 +msgid "Authenticate with Sugarsync!" +msgstr "Autentisera med SugarSync!" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:42 +#: ../inc/class-destination-sugarsync.php:137 +msgid "Create Sugarsync account" +msgstr "Skapa SugarSync-konto" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:51 +#: ../inc/class-destination-sugarsync.php:133 +msgid "Delete Sugarsync authentication!" +msgstr "Ta bort SugarSync autentisering!" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:57 +msgid "SugarSync Root" +msgstr "SugarSync-rot" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:61 +msgid "Sync folder selection" +msgstr "Synka mappval" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:69 +msgid "No Syncfolders found!" +msgstr "Inga Synkmappar hittades!" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:90 +msgid "Folder in root" +msgstr "Mapp i rot" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:227 +#, php-format +msgid "%d. Try to send backup to SugarSync …" +msgstr "%d. Försök skicka backup-fil till SugarSync …" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:234 +#, php-format +msgid "Authenticated to SugarSync with nickname %s" +msgstr "Autentiserad hos SugarSync med smeknamn %s" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:237 +#, php-format +msgctxt "Available space on SugarSync" +msgid "Not enough disk space available on SugarSync. Available: %s." +msgstr "Ej tillräckligt med diskutrymme tillgängligt hos SugarSync. Tillgängligt: %s." + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:243 +#, php-format +msgid "%s available at SugarSync" +msgstr "%s tillgängligt hos SugarSync" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:250 +msgid "Starting upload to SugarSync …" +msgstr "Påbörjar uppladdning till SugarSync …" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:260 +msgid "Cannot transfer backup to SugarSync!" +msgstr "Kan ej överföra backkup-filen till SugarSync!" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:299 +#, php-format +msgid "One file deleted on SugarSync folder" +msgid_plural "%d files deleted on SugarSync folder" +msgstr[0] "En fil borttagen från SugarSync-mapp" +msgstr[1] "%d filer borttagna från SugarSync-mapp" + +# @ backwpup +#: ../inc/class-destination-sugarsync.php:305 +#, php-format +msgid "SugarSync API: %s" +msgstr "API för SugarSync: %s" + +# @ backwpup +#: ../inc/class-page-jobs.php:52 +msgid "No Jobs." +msgstr "Inga Jobb." + +# @ backwpup +#: ../inc/class-page-jobs.php:78 +msgid "Destinations" +msgstr "Målmappar" + +# @ backwpup +#: ../inc/class-page-jobs.php:79 +msgid "Next Run" +msgstr "Nästa Körning" + +# @ backwpup +#: ../inc/class-page-jobs.php:80 +msgid "Last Run" +msgstr "Senaste Körning" + +# @ backwpup +#: ../inc/class-page-jobs.php:111 +msgid "Edit" +msgstr "Redigera" + +# @ backwpup +#: ../inc/class-page-jobs.php:112 +msgid "Copy" +msgstr "Kopiera" + +# @ backwpup +#: ../inc/class-page-jobs.php:123 +msgid "Last log" +msgstr "Senaste logg" + +# @ backwpup +#: ../inc/class-page-jobs.php:185 +msgid "Not needed or set" +msgstr "Ej behövd eller satt" + +# @ backwpup +#: ../inc/class-page-jobs.php:207 +#, php-format +msgid "Running for: %s seconds" +msgstr "Körtid hittils: %s sekunder" + +# @ backwpup +#: ../inc/class-page-jobs.php:213 +#, php-format +msgid "Cron: %s" +msgstr "Cron: %s" + +# @ backwpup +#: ../inc/class-page-jobs.php:213 +#, php-format +msgid "%1$s at %2$s by WP-Cron" +msgstr "%1$s vid %2$s med WP-Cron" + +# @ backwpup +#: ../inc/class-page-jobs.php:218 +msgid "Inactive" +msgstr "Inaktiv" + +# @ backwpup +#: ../inc/class-page-jobs.php:240 +#, php-format +msgid "Runtime: %d seconds" +msgstr "Körtid: %d sekunder" + +# @ backwpup +#: ../inc/class-page-jobs.php:243 +msgid "not yet" +msgstr "inte än" + +# @ backwpup +#: ../inc/class-page-jobs.php:247 +msgid "Download last backup" +msgstr "Ladda ned den senaste backupen" + +# @ backwpup +#: ../inc/class-page-jobs.php:252 +msgid "Log" +msgstr "Logg" + +# @ backwpup +#: ../inc/class-page-jobs.php:295 +msgid "Copy of" +msgstr "Kopia av" + +# @ backwpup +#: ../inc/class-page-jobs.php:367 +#, php-format +msgid "Job “%s” has started, but not responded for 10 seconds." +msgstr "Jobb “%s” har påbörjats, men har ej svarat på 10 sekunder." + +# @ backwpup +#: ../inc/class-page-jobs.php:372 +#, php-format +msgid "Job \"%s\" started." +msgstr "Jobb \"%s\" har påbörjats." + +# @ backwpup +#: ../inc/class-page-jobs.php:497 +#, php-format +msgid "%s Jobs" +msgstr "%s Jobb" + +# @ backwpup +#: ../inc/class-page-jobs.php:517 +#, php-format +msgid "Job currently running: %s" +msgstr "Jobb som körs just nu: %s" + +# @ backwpup +#: ../inc/class-page-jobs.php:518 +msgid "Warnings:" +msgstr "Varningar:" + +# @ backwpup +#: ../inc/class-page-jobs.php:519 +msgid "Errors:" +msgstr "Fel:" + +# @ backwpup +#: ../inc/class-page-jobs.php:520 +msgid "Log of running job" +msgstr "Logg för jobb som körs just nu" + +# @ backwpup +#: ../inc/class-page-jobs.php:520 +msgid "Display working log" +msgstr "Visa arbetslogg" + +# @ backwpup +#: ../inc/class-page-jobs.php:521 ../inc/class-page-backwpup.php:349 +msgid "Abort" +msgstr "Avbryt" + +# @ backwpup +#: ../inc/class-page-jobs.php:522 +msgid "Close working screen" +msgstr "Stäng arbetsskärm" + +# @ backwpup +#: ../inc/class-page-jobs.php:522 +msgid "close" +msgstr "stäng" + +# @ backwpup +#: ../inc/class-page-jobs.php:672 +msgid "Job completed" +msgstr "Jobb slutfört" + +# @ backwpup +#: ../inc/class-page-jobs.php:676 +#, php-format +msgid "Job has done with warnings in %s seconds. Please resolve them for correct execution." +msgstr "Jobb slutfört med varningar på %s sekunder. Vänligen åtgärda varningarna för korrekt exekvering." + +# @ backwpup +#: ../inc/class-page-backwpup.php:67 +#, php-format +msgid "%s Dashboard" +msgstr "%s Panel" + +# @ backwpup +#: ../inc/class-page-backwpup.php:74 ../inc/class-page-backwpup.php:83 +msgctxt "Dashboard heading" +msgid "Planning backups" +msgstr "Planering av backuper" + +# @ backwpup +#: ../inc/class-page-backwpup.php:75 ../inc/class-page-backwpup.php:84 +msgid "Use your backup archives to save your entire WordPress installation including /wp-content/. Push them to an external storage service if you don’t want to save the backups on the same server." +msgstr "Använd dina backup-arkiv för att spara hela din WordPress-installation inklusive /wp-content/. Spara dem till en extern lagringstjänst om du inte vill lagra backuperna på samma server." + +# @ backwpup +#: ../inc/class-page-backwpup.php:76 ../inc/class-page-backwpup.php:85 +msgctxt "Dashboard heading" +msgid "Restoring backups" +msgstr "Återställning av backuper" + +# @ backwpup +#: ../inc/class-page-backwpup.php:77 ../inc/class-page-backwpup.php:86 +msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin or a plugin like Adminer to restore your database backup files." +msgstr "Du kan återställa en installation från ett enskilt backup-arkiv. Använd et verktyg som phpMyAdmin eller ett tillägg som Adminer för att återställa dina databas-backupfiler." + +# @ backwpup +#: ../inc/class-page-backwpup.php:78 ../inc/class-page-backwpup.php:87 +msgctxt "Dashboard heading" +msgid "Ready to set up a backup job?" +msgstr "Redo att konfigurera ett backup-jobb?" + +# @ backwpup +#: ../inc/class-page-backwpup.php:79 +#, php-format +msgid "Use one of the wizards to plan a backup, or use expert mode for full control over all options." +msgstr "Använd en av guiderna för att planera en backup, eller använd expertläget för full kontroll över alla alternativ." + +# @ backwpup +#: ../inc/class-page-backwpup.php:79 ../inc/class-page-backwpup.php:89 +msgid "Please note: You are solely responsible for the security of your data; the authors of this plugin are not." +msgstr "Observera: Du är själv ansvarig för din datas säkerhet; skaparna av detta tillägg är det ej." + +# @ backwpup +#: ../inc/class-page-backwpup.php:84 +msgid "Use the short links in the First steps box to plan and schedule backup jobs." +msgstr "Använd de korta länkarna i rutan Börja här för att planera och schemalägga backup-jobb." + +# @ backwpup +#: ../inc/class-page-backwpup.php:88 +#, php-format +msgid "Add a new backup job and plan what you want to save." +msgstr "Lägg till ett nytt backup-jobb och planera vad du vill spara." + +# @ backwpup +#: ../inc/class-page-backwpup.php:96 +msgid "First Steps" +msgstr "Börja Här" + +# @ backwpup +#: ../inc/class-page-backwpup.php:100 +msgid "Test the installation" +msgstr "Testa installationen" + +# @ backwpup +#: ../inc/class-page-backwpup.php:101 ../inc/class-page-backwpup.php:104 +msgid "Create a Job" +msgstr "Skapa ett Jobb" + +# @ backwpup +#: ../inc/class-page-backwpup.php:103 +msgid "Check the installation" +msgstr "Kontrollera installationen" + +# @ backwpup +#: ../inc/class-page-backwpup.php:106 +msgid "Run the created job" +msgstr "Kör det skapade jobbet" + +# @ backwpup +#: ../inc/class-page-backwpup.php:107 +msgid "Check the job log" +msgstr "Kontrollera jobb-loggen" + +# @ backwpup +#: ../inc/class-page-backwpup.php:115 +msgid "One click backup" +msgstr "Backup på ett klick" + +# @ backwpup +#: ../inc/class-page-backwpup.php:117 +msgid "Generate a database backup of WordPress tables and download it right away!" +msgstr "Generera en databas-backup av WordPress tabeller och ladda ned den direkt!" + +# @ backwpup +#: ../inc/class-page-backwpup.php:117 +msgid "Download database backup" +msgstr "Ladda ned databas-backup" + +# @ backwpup +#: ../inc/class-page-backwpup.php:123 +msgid "BackWPup News" +msgstr "BackWPup Nyheter" + +# @ backwpup +#: ../inc/class-page-backwpup.php:128 +msgctxt "BackWPup News RSS Feed URL" +msgid "http://marketpress.com/news/plugins/backwpup/feed/" +msgstr "http://marketpress.com/news/plugins/backwpup/feed/" + +# @ backwpup +#: ../inc/class-page-backwpup.php:133 +#, php-format +msgid "RSS Error: %s" +msgstr "RSS-fel: %s" + +# @ backwpup +#: ../inc/class-page-backwpup.php:138 +msgid "An error has occurred, which probably means the feed is down. Try again later." +msgstr "Ett fel har uppstått, vilket antagligen betyder att nyhetsflödet är nere. Försök igen senare." + +# @ backwpup +#: ../inc/class-page-backwpup.php:153 +msgid "Untitled" +msgstr "Utan titel" + +# @ backwpup +#: ../inc/class-page-backwpup.php:216 +msgid "Start wizard" +msgstr "Kör guide" + +# @ backwpup +#: ../inc/class-page-backwpup.php:232 +msgctxt "Pro teaser box" +msgid "Thank you for using BackWPup!" +msgstr "Tack för att du använder BackWPup!" + +# @ backwpup +#: ../inc/class-page-backwpup.php:235 +msgctxt "Pro teaser box" +msgid "Get access to:" +msgstr "Få tillgång till:" + +# @ backwpup +#: ../inc/class-page-backwpup.php:237 +msgctxt "Pro teaser box" +msgid "First-class dedicated support at MarketPress Helpdesk." +msgstr "Förstklassig dedikerad support från MarketPress Supportavdelning." + +# @ backwpup +#: ../inc/class-page-backwpup.php:238 +msgctxt "Pro teaser box" +msgid "Differential backups to Google Drive and other cloud storage service." +msgstr "Differentiell backup till Google Drive och andra molnlagringstjänster." + +# @ backwpup +#: ../inc/class-page-backwpup.php:239 +msgctxt "Pro teaser box" +msgid "Easy-peasy wizards to create and schedule backup jobs." +msgstr "Superenkla guider för att skapa och schemalägga backup-jobb." + +# @ backwpup +#: ../inc/class-page-backwpup.php:240 +msgctxt "Pro teaser box, link text" +msgid "And more…" +msgstr "Och mer…" + +# @ backwpup +#: ../inc/class-page-backwpup.php:242 +msgctxt "Pro teaser box, link title" +msgid "Get BackWPup Pro now" +msgstr "Skaffa BackWPup Pro nu" + +# @ backwpup +#: ../inc/class-page-backwpup.php:242 +msgctxt "Pro teaser box, link text" +msgid "Get BackWPup Pro now" +msgstr "Skaffa BackWPup Pro nu" + +# @ backwpup +#: ../inc/class-page-backwpup.php:260 +msgid "Last logs" +msgstr "Senaste loggar" + +# @ backwpup +#: ../inc/class-page-backwpup.php:262 +msgid "Result" +msgstr "Resultat" + +# @ backwpup +#: ../inc/class-page-backwpup.php:292 +#, php-format +msgid "%d ERROR" +msgid_plural "%d ERRORS" +msgstr[0] "%d FEL" +msgstr[1] "%d FEL" + +# @ backwpup +#: ../inc/class-page-backwpup.php:294 +#, php-format +msgid "%d WARNING" +msgid_plural "%d WARNINGS" +msgstr[0] "%d VARNING" +msgstr[1] "%d VARNINGAR" + +# @ backwpup +#: ../inc/class-page-backwpup.php:296 +msgid "OK" +msgstr "OK" + +# @ backwpup +#: ../inc/class-page-backwpup.php:320 +msgid "Next scheduled jobs" +msgstr "Nästkommande schemalagda jobb" + +# @ backwpup +#: ../inc/class-page-backwpup.php:347 +#, php-format +msgid "working since %d seconds" +msgstr "arbetar sedan %d sekunder" + +# @ backwpup +#: ../inc/class-page-backwpup.php:365 +msgid "Edit Job" +msgstr "Redigera Jobb" + +# @ backwpup +#: ../inc/class-destination-email.php:38 ../inc/class-destination-email.php:41 +msgid "Email address" +msgstr "E-postadress" + +# @ backwpup +#: ../inc/class-destination-email.php:48 ../inc/class-destination-email.php:50 +msgid "Send test email" +msgstr "Skicka e-posttest" + +# @ backwpup +#: ../inc/class-destination-email.php:55 +msgid "Send email settings" +msgstr "Inställningar för att skicka e-post" + +# @ backwpup +#: ../inc/class-destination-email.php:58 +msgid "Maximum file size" +msgstr "Maximal filstorlek" + +# @ backwpup +#: ../inc/class-destination-email.php:59 +msgid "MB" +msgstr "MB" + +# @ backwpup +#: ../inc/class-destination-email.php:63 +msgid "Sender email address" +msgstr "Avsändares e-postadress" + +# @ backwpup +#: ../inc/class-destination-email.php:70 +msgid "Sender name" +msgstr "Avsändares namn" + +# @ backwpup +#: ../inc/class-destination-email.php:77 +msgid "Sending method" +msgstr "Metod för att skicka e-post" + +# @ backwpup +#: ../inc/class-destination-email.php:81 +msgid "Use site settings" +msgstr "Använd webbplatsens inställningar" + +# @ backwpup +#: ../inc/class-destination-email.php:82 +msgid "PHP: mail()" +msgstr "PHP: mail()" + +# @ backwpup +#: ../inc/class-destination-email.php:83 +msgid "Sendmail" +msgstr "Sendmail" + +# @ backwpup +#: ../inc/class-destination-email.php:84 +msgid "SMTP" +msgstr "SMTP" + +# @ backwpup +#: ../inc/class-destination-email.php:91 +msgid "Sendmail path" +msgstr "Sendmail sökväg" + +# @ backwpup +#: ../inc/class-destination-email.php:99 +msgid "SMTP host name" +msgstr "SMTP värdnamn" + +# @ backwpup +#: ../inc/class-destination-email.php:110 +msgid "SMTP secure connection" +msgstr "SMTP säker anslutning" + +# @ backwpup +#: ../inc/class-destination-email.php:115 +msgid "SSL" +msgstr "SSL" + +# @ backwpup +#: ../inc/class-destination-email.php:116 +msgid "TLS" +msgstr "TLS" + +# @ backwpup +#: ../inc/class-destination-email.php:121 +msgid "SMTP username" +msgstr "SMTP användarnamn" + +# @ backwpup +#: ../inc/class-destination-email.php:128 +msgid "SMTP password" +msgstr "SMTP lösenord" + +# @ backwpup +#: ../inc/class-destination-email.php:204 +#, php-format +msgid "%d. Try to send backup with email …" +msgstr "%d. Försök att skicka backup via e-post …" + +# @ backwpup +#: ../inc/class-destination-email.php:209 +msgid "Backup archive too big to be sent by email!" +msgstr "Backup-arkiv för stort för att skickas med e-post!" + +# @ backwpup +#: ../inc/class-destination-email.php:216 +#, php-format +msgid "Sending email to %s…" +msgstr "Skickar e-post till %s…" + +# @ backwpup +#: ../inc/class-destination-email.php:292 +#, php-format +msgid "BackWPup archive from %1$s: %2$s" +msgstr "BackWPup-arkiv från %1$s: %2$s" + +# @ backwpup +#: ../inc/class-destination-email.php:295 +#, php-format +msgid "Backup archive: %s" +msgstr "Backup-arkiv: %s" + +# @ backwpup +#: ../inc/class-destination-email.php:309 +#: ../inc/class-destination-email.php:431 +msgid "Error while sending email!" +msgstr "Fel när e-post skulle skickas!" + +# @ backwpup +#: ../inc/class-destination-email.php:315 +#: ../inc/class-destination-email.php:433 +msgid "Email sent." +msgstr "E-post skickad." + +# @ backwpup +#: ../inc/class-destination-email.php:415 +msgid "BackWPup archive sending TEST Message" +msgstr "BackWPup-arkiv skickar TEST-meddelande" + +# @ backwpup +#: ../inc/class-destination-email.php:418 +msgid "If this message reaches your inbox, sending backup archives via email should work for you." +msgstr "Om detta meddelande når din inkorg så borde det fungera för dig att skicka backup-arkiv också." + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:42 +msgid "Hash key" +msgstr "Hash-nyckel" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:43 +msgid "Hash Key for BackWPup. It will be used to have hashes in folder and file names. It must at least 6 chars long." +msgstr "Hash-nyckel för BackWPup. Den kommer att användas för att hasha mapp- och filnamn. Nyckeln måste vara minst 6 tecken lång." + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:46 +msgid "Hash key:" +msgstr "Hash-nyckel:" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:59 +msgid "Dropbox API Keys" +msgstr "Dropbox API-nycklar" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:60 +msgid "If you want to set your own Dropbox API Keys, you can do it here. Leave empty for default." +msgstr "Om du vill sätta dina egna Dropbox API-nycklar så kan du göra det här. Lämna tomt för standard." + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:63 +msgid "Full Dropbox App key:" +msgstr "Fullständig Dropbox App-nyckel:" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:71 +msgid "Full Dropbox App secret:" +msgstr "Fullständig Dropbox App-hemlighet:" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:79 +msgid "Sandbox App key:" +msgstr "Sandbox App-nyckel:" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:87 +msgid "Sandbox App secret:" +msgstr "Sandbox App-hemlighet:" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:100 +msgid "SugarSync API Keys" +msgstr "SugarSync API-nycklar" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:101 +msgid "If you want to set your own SugarSync API keys you can do that here. Leave empty for default." +msgstr "Om du vill sätta dina egna SugarSync API-nycklar så kan du göra det här. Lämna tomt för standard." + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:104 +msgid "Access Key ID:" +msgstr "Åtkomstnyckel-ID:" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:112 +msgid "Private Access Key:" +msgstr "Privat Åtkomstnyckel:" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:119 +msgid "App ID:" +msgstr "App-ID:" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:132 +msgid "Google API Keys" +msgstr "Google API-nycklar" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:136 +msgid "Client ID:" +msgstr "Klient-ID:" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:144 +msgid "Client secret:" +msgstr "Klienthemlighet:" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:151 +msgid "Redirect URIs:" +msgstr "Omdirigera URI:er:" + +# @ backwpup +#: ../inc/pro/class-settings-apikeys.php:155 +msgid "Add this URI in a new line to the field." +msgstr "Lägg denna URI på en ny rad i fältet." + +# @ backwpup +#: ../inc/pro/class-destination-folder.php:18 +msgid "Absolute path to folder for backup files:" +msgstr "Absolut sökväg till mapp för backup-filer:" + +# @ backwpup +#: ../inc/pro/class-destination-folder.php:72 +#, php-format +msgid "%d. Try to sync files to folder …" +msgstr "%d. Försök att synka filer till mapp …" + +# @ backwpup +#: ../inc/pro/class-destination-folder.php:76 +msgid "Retrieving file list from folder" +msgstr "Hämtar fillista från mapp" + +# @ backwpup +#: ../inc/pro/class-destination-folder.php:82 +msgid "Copy changed files to folder" +msgstr "Kopiera ändrade filer till mapp" + +# @ backwpup +#: ../inc/pro/class-destination-folder.php:95 +#, php-format +msgid "File %s copied" +msgstr "Fil %s kopierad" + +# @ backwpup +#: ../inc/pro/class-destination-folder.php:108 +msgid "Delete not existing files from folder" +msgstr "Ta bort icke-existerande filer från mapp" + +# @ backwpup +#: ../inc/pro/class-destination-folder.php:116 +#, php-format +msgid "Extra file %s copied" +msgstr "Extrafil %s kopierad" + +# @ backwpup +#: ../inc/pro/class-destination-folder.php:129 +#, php-format +msgid "File %s deleted from folder" +msgstr "Fil %s borttagen från mapp" + +# @ backwpup +#: ../inc/pro/class-destination-folder.php:186 +#, php-format +msgid "Empty folder %s deleted" +msgstr "Tom mapp %s borttagen" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:14 +msgid "XML job import" +msgstr "Import av XML-jobb" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:15 +msgid "Wizard for importing BackWPup jobs from an XML file" +msgstr "Guide för import av BackWPup-jobb från en XML-fil" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:32 +#: ../inc/pro/class-wizard-jobimport.php:93 +msgid "Import" +msgstr "Import" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:41 +msgid "Import File" +msgstr "Importfil" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:41 +msgid "Upload XML job file for import" +msgstr "Ladda upp XML-jobbfil för import" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:42 +msgid "Select items to import" +msgstr "Välj objekt att importera" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:42 +msgid "Select which job should be imported or overwritten." +msgstr "Välj vilket jobb som skall importeras eller skrivas över." + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:62 +msgid "Please upload your BackWPup job XML export file and we’ll import the jobs into BackWPup." +msgstr "Vänligen ladda upp din XML-exportfil för BackWPup-jobb så importerar vi jobben till BackWPup ." + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:64 +msgid "Choose a file from your computer:" +msgstr "Välj en fil från din dator:" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:64 +#, php-format +msgid "Maximum size: %s" +msgstr "Maximal storlek: %s" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:86 +msgid "Import Jobs" +msgstr "Importera Jobb" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:89 +msgid "Import Type" +msgstr "Importtyp" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:89 +msgid "No Import" +msgstr "Ingen Import" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:91 +msgid "Overwrite" +msgstr "Skriv över" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:91 +msgid "Append" +msgstr "Tillfoga" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:105 +msgid "Import Config" +msgstr "Importkonfiguration" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:108 +msgid "Import BackWPup configuration" +msgstr "Importera BackWPup-konfiguration" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:129 +msgid "File is empty. Please upload something more substantial. This error could also caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini." +msgstr "Filen är tom. Vänligen ladda upp något mer substantiellt. Detta fel kan också uppstå om uppladdning är deaktiverat i din php.ini eller om post_max_size är mindre än upload_max_filesize i php.ini." + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:144 +#, php-format +msgid "The export file could not be found at %s. This is likely due to an issue with permissions." +msgstr "Exportfilen kunde inte hittas i %s. Detta beror troligen på ett problem med tillstånd." + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:151 +msgid "Sorry, there has been a phrase error." +msgstr "Ursäkta, ett begreppsfel uppstod." + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:158 +#, php-format +msgid "This Export file (version %s) may not be supported by this version of the importer." +msgstr "Denna exportfil (version %s) kanske inte stöds i denna version av importverktyget." + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:164 +msgid "This is not a BackWPup XML file" +msgstr "Detta är ej en BackWPup XML-fil" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:225 +#, php-format +msgid "Job %1$s with id %2$d imported" +msgstr "Jobb %1$s med ID %2$d importerad" + +# @ backwpup +#: ../inc/pro/class-wizard-jobimport.php:233 +msgid "BackWPup config imported" +msgstr "BackWPup-konfiguration importerad" + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:14 +msgid "System Test" +msgstr "Systemtest" + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:15 +msgid "Wizard to test if BackWPup can work properly" +msgstr "Guide för att testa om BackWPup kan köras korrekt." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:32 +msgid "Run tests" +msgstr "Kör testen" + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:41 +msgid "Environment" +msgstr "Miljö" + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:41 +msgid "System Environment" +msgstr "Systemmiljö" + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:54 +msgid "Test if BackWPup can work without problems." +msgstr "Testa om BackWPup kan köras utan problem." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:86 +#, php-format +msgid "You must run WordPress version 3.4 or higher to use this plugin. You are using version %s now." +msgstr "Du måste köra WordPress version 3.4 eller senare för att använda detta tillägg. Du använder version %s just nu." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:91 +#, php-format +msgid "You must run PHP version 5.2.6 or higher to use this plugin. You are using version %s now." +msgstr "Du måste köra PHP version 5.2.6 eller senare för att använda detta tillägg. Du använder version %s just nu." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:95 +#, php-format +msgid "We recommend to run a PHP version above 5.3.2 to get the full plugin functionality. You are using version %s now." +msgstr "Vi rekommenderar att du kör en PHP-version senare än 5.3.2 för att få tillgång till tilläggets hela funktionalitet. Du använder version %s just nu." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:100 +#, php-format +msgid "You must have the MySQLi extension installed and a MySQL server version of 5.0.7 or higher to use this plugin. You are using version %s now." +msgstr "Du måste ha MySQLi-utökningen installerad, samt version 5.0.7 av MySQL-server eller senare för att kunna använda detta tillägg. Du använder version %s just nu." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:105 +msgid "PHP cURL extension must be installed to use the full plugin functionality." +msgstr "PHP cURL-utökningen måste finnas installerad för att du skall kunna använda tilläggets fulla funktionalitet." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:110 +#, php-format +msgctxt "%1 = extension name, %2 = file suffix" +msgid "We recommend to install the %1$s extension to generate %2$s archives." +msgstr "Vi rekemmederar att du installerar utökningen %1$s för generering av %2$s-arkiv." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:133 +#, php-format +msgctxt "Link to PHP manual" +msgid "Please disable the deprecated PHP safe mode." +msgstr "Vänligen deaktivera PHP Safe-Mode som är taget ur bruk." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:141 +msgid "We recommend to install the PHP FTP extension to use the FTP backup destination." +msgstr "Vi rekommenderar att du installerar FTP-utökningen för PHP om du vill använda FTP som mål för backupen." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:149 +#, php-format +msgid "Temp folder %s is not read or writable. Please set proper writing permissions." +msgstr "Temp-mapp %s är ej läs- eller skrivbar. Vänligen sätt korrekta skrivtillstånd." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:154 +#, php-format +msgid "Temp folder %s does not exist and cannot be created. Please create it and set proper writing permissions." +msgstr "Temp-mapp %s existerar ej och kan ej skapas. Vänligen skapa den och tilldela den korrekta skrivtillstånd." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:161 +#, php-format +msgid "Log folder %s is not readable or writable. Please set proper writing permissions." +msgstr "Loggmapp %s är ej läsbar eller skrivbar. Vänligen sätt korrekta skrivtillstånd." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:165 +#, php-format +msgid "Log folder %s does not exist and cannot be created. Please create it and set proper writing permissions." +msgstr "Loggmapp %s existerar ej och kan ej skapas. Vänligen skapa den och tilldela den korrekta skrivtillstånd." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:171 +#, php-format +msgid "The HTTP response test result is an error: \"%s\"." +msgstr "HTTP-svarstestet resulterade i ett fel: \"%s\"." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:175 +#, php-format +msgid "The HTTP response test result is a wrong HTTP status: %s. It should be status 200." +msgstr "HTTP-svarstestet resulterade i en felaktig HTTP-status: %s. Det skall vara status 200." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:193 +msgid "WP-Cron seems to be broken. But it is needed to run scheduled jobs." +msgstr "WP-Cron verkar ej fungera. Men det behövs för körning av schemalagda jobb." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:198 +msgid "All tests passed without errors." +msgstr "Alla test passerade utan fel." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:201 +msgid "There is no error, but some warnings. BackWPup will work, but with limitations." +msgstr "Inget fel, men några varningar. BackWPup kommer att fungera, men med begränsningar." + +# @ backwpup +#: ../inc/pro/class-wizard-systemtest.php:204 +msgid "There are errors. Please correct them, or BackWPup cannot work." +msgstr "Det finns fel. Vänligen åtgärda dem, annars kommer BackWPup ej att fungera." + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:17 +#: ../inc/pro/class-destination-s3-v1.php:17 +msgid "Select a S3 service:" +msgstr "Välj en S3-tjänst:" + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:33 +#: ../inc/pro/class-destination-s3-v1.php:33 +msgid "or set an S3 Server URL:" +msgstr "eller ange en URL till en S3-server:" + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:36 +#: ../inc/pro/class-destination-msazure.php:19 +#: ../inc/pro/class-destination-s3-v1.php:36 +msgid "Access Key:" +msgstr "Åtkomstnyckel:" + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:39 +#: ../inc/pro/class-destination-s3-v1.php:39 +msgid "Secret Key:" +msgstr "Hemlig Nyckel:" + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:42 +#: ../inc/pro/class-destination-s3-v1.php:42 +msgid "Bucket:" +msgstr "Hink:" + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:52 +#: ../inc/pro/class-destination-s3-v1.php:52 +msgid "New Bucket:" +msgstr "Ny Hink: " + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:54 +#: ../inc/pro/class-destination-s3-v1.php:54 +msgid "Folder in bucket:" +msgstr "Mapp i hink:" + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:154 +#: ../inc/pro/class-destination-s3-v1.php:156 +#, php-format +msgid "%d. Trying to sync files to S3 Service …" +msgstr "%d. Försöker synka filer mot S3-tjänst …" + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:188 +#: ../inc/pro/class-destination-s3-v1.php:195 +msgid "Retrieving file list from S3." +msgstr "Hämtar fillista från S3." + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:246 +#: ../inc/pro/class-destination-s3-v1.php:251 +msgid "Upload changed files to S3." +msgstr "Ladda upp ändrade filer till S3." + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:261 +#: ../inc/pro/class-destination-s3-v1.php:263 +#, php-format +msgid "File %s uploaded to S3." +msgstr "Fil %s uppladdad till S3." + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:289 +#: ../inc/pro/class-destination-s3-v1.php:288 +#, php-format +msgid "Extra file %s uploaded to S3." +msgstr "Extrafil %s uppladdad till S3." + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:302 +#: ../inc/pro/class-destination-s3-v1.php:301 +msgid "Delete nonexistent files on S3" +msgstr "Ta bort icke-existerande filer från S3" + +# @ backwpup +#: ../inc/pro/class-destination-s3.php:309 +#: ../inc/pro/class-destination-s3-v1.php:304 +#, php-format +msgid "File %s deleted from S3." +msgstr "Fil %s borttagen från S3." + +# @ backwpup +#: ../inc/pro/class-destination-ftp.php:17 +msgid "Hostname:" +msgstr "Värdnamn:" + +# @ backwpup +#: ../inc/pro/class-destination-ftp.php:33 +msgid "Folder on server:" +msgstr "Mapp på server:" + +# @ backwpup +#: ../inc/pro/class-destination-ftp.php:39 +msgid "Maximum number of backup files to keep in folder:" +msgstr "Maximalt antal backup-filer att lagra i mapp:" + +# @ backwpup +#: ../inc/pro/class-destination-ftp.php:42 +msgid "(Oldest files will be deleted first.)" +msgstr "(Äldsta filerna tas bort först.)" + +# @ backwpup +#: ../inc/pro/class-jobtype-file.php:19 +msgid "Backup WordPress main files" +msgstr "Ta backup på WordPress huvudfiler" + +# @ backwpup +#: ../inc/pro/class-jobtype-file.php:23 +msgid "Backup blog content folder" +msgstr "Ta backup på bloggens innehållsmapp" + +# @ backwpup +#: ../inc/pro/class-jobtype-file.php:27 +msgid "Backup blog plugins" +msgstr "Ta backup på bloggens tillägg" + +# @ backwpup +#: ../inc/pro/class-jobtype-file.php:31 +msgid "Backup blog themes" +msgstr "Ta backup på bloggens teman" + +# @ backwpup +#: ../inc/pro/class-jobtype-file.php:35 +msgid "Backup blog uploads folder" +msgstr "Ta backup på bloggens uppladdningsmapp" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:15 +msgid "Create a job" +msgstr "Skapa ett jobb" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:16 +msgid "Choose a job" +msgstr "Välj ett jobb" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:37 +msgid "Job Types" +msgstr "Jobbtyper" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:37 +msgid "Select a task for your job." +msgstr "Välj en arbetsuppgift åt ditt jobb." + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:51 +msgid "Archive Settings" +msgstr "Arkivinställningar" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:51 +msgid "Settings for the Backup Archive" +msgstr "Inställningar för Backup-arkivet" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:53 +msgid "Where would you like to store the backup file?" +msgstr "Var vill du lagra backup-filen?" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:63 ../inc/pro/class-wizard-job.php:272 +msgid "Scheduling" +msgstr "Schemaläggning" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:63 +msgid "When would you like to start the job?" +msgstr "När vill du köra jobbet?" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:218 +msgid "Select one or more tasks for your backup job." +msgstr "Välj en eller fler arbetsuppgifter åt ditt backup-jobb." + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:273 +msgid "Activate scheduling" +msgstr "Aktivera schemaläggning" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:365 +msgid "Sync file by file to destination" +msgstr "Synka fil för fil mot mål" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:376 +msgid "Select a compression type for the backup archive" +msgstr "Välj en komprimeringstyp för backup-arkivet" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:379 +msgid "Archive compression type" +msgstr "Komprimeringstyp för arkiv" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:411 +msgid "Where to store the files" +msgstr "Var filerna skall lagras" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:586 +#, php-format +msgid "Wizard: %1$s" +msgstr "Guide: %1$s" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:605 +#, php-format +msgid "New job %s generated." +msgstr "Nytt jobb %s genererat." + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:617 +msgid "Create Job" +msgstr "Skapa Jobb" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:642 ../inc/pro/class-wizard-job.php:643 +msgid "Database Backup and XML Export (Daily)" +msgstr "Databas-backup samt XML-export (Dagligen)" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:660 ../inc/pro/class-wizard-job.php:661 +msgid "Database Check (Weekly)" +msgstr "Databaskontroll (Veckolig)" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:685 ../inc/pro/class-wizard-job.php:686 +msgid "Backup all files" +msgstr "Ta backup på alla filer" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:700 +msgid "Essential files + list of plugins" +msgstr "Nödvändiga filer + lista över tillägg" + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:701 +msgid "Backup essential files and folders, plus a list of installed plugins." +msgstr "Ta backup på nödvändiga filer och mappar, plus en lista över installerade tillägg." + +# @ backwpup +#: ../inc/pro/class-wizard-job.php:716 ../inc/pro/class-wizard-job.php:717 +msgid "Custom configuration" +msgstr "Anpassad konfiguration" + +# @ backwpup +#: ../inc/pro/class-pro.php:102 +msgid "Glacier" +msgstr "Glacier" + +# @ backwpup +#: ../inc/pro/class-pro.php:121 +msgid "GDrive" +msgstr "GDrive" + +# @ backwpup +#: ../inc/pro/class-pro.php:174 ../inc/pro/class-pro.php:210 +msgid "Wizards" +msgstr "Guider" + +# @ backwpup +#: ../inc/pro/class-jobtype-wpexp.php:17 +msgid "Items to export:" +msgstr "Objekt att exportera:" + +# @ backwpup +#: ../inc/pro/class-destination-msazure.php:17 +msgid "Account Name:" +msgstr "Kontonamn:" + +# @ backwpup +#: ../inc/pro/class-destination-msazure.php:21 +#: ../inc/pro/class-destination-rsc.php:38 +msgid "Container:" +msgstr "Behållare:" + +# @ backwpup +#: ../inc/pro/class-destination-msazure.php:28 +#: ../inc/pro/class-destination-rsc.php:47 +msgid "Create container:" +msgstr "Skapa behållare:" + +# @ backwpup +#: ../inc/pro/class-destination-msazure.php:30 +#: ../inc/pro/class-destination-rsc.php:49 +msgid "Folder in container:" +msgstr "Mapp i behållare:" + +# @ backwpup +#: ../inc/pro/class-destination-msazure.php:100 +#, php-format +msgid "%d. Trying to sync files with Microsoft Azure (Blob) …" +msgstr "%d. Försöker synka filer mot Microsoft Azure (Blob) …" + +# @ backwpup +#: ../inc/pro/class-destination-msazure.php:135 +msgid "Retrieving file list from MS Azure." +msgstr "Hämtar fillista från MS Azure." + +# @ backwpup +#: ../inc/pro/class-destination-msazure.php:151 +msgid "Upload changed files to MS Azure." +msgstr "Ladda upp ändrade filer till MS Azure." + +# @ backwpup +#: ../inc/pro/class-destination-msazure.php:163 +#, php-format +msgid "File %s uploaded to MS Azure." +msgstr "Fil %s uppladdad till MS Azure." + +# @ backwpup +#: ../inc/pro/class-destination-msazure.php:189 +#, php-format +msgid "Extra file %s uploaded to MS Azure." +msgstr "Extrafil %s uppladdad till MS Azure." + +# @ backwpup +#: ../inc/pro/class-destination-msazure.php:202 +msgid "Delete nonexistent files on MS Azure." +msgstr "Ta bort icke-existerande filer från MS Azure." + +# @ backwpup +#: ../inc/pro/class-destination-msazure.php:205 +#, php-format +msgid "File %s deleted from MS Azure." +msgstr "Fil %s borttagen från MS Azure." + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:24 +msgid "Auth Code:" +msgstr "Autentiseringskod:" + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:27 +msgid "Get auth code" +msgstr "Skaffa autentiseringskod" + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:34 +#: ../inc/pro/class-destination-gdrive.php:249 +#: ../inc/pro/class-destination-gdrive.php:255 +msgid "Login:" +msgstr "Inloggning:" + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:38 +#: ../inc/pro/class-destination-gdrive.php:260 +msgid "Folder:" +msgstr "Mapp:" + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:105 +#, php-format +msgid "%d. Try to sync files to Dropbox …" +msgstr "%d. Försök synka filer mot Dropbox …" + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:138 +msgid "Retrieving file list from Dropbox" +msgstr "Hämtar fillista från Dropbox" + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:152 +msgid "Upload changed files to Dropbox" +msgstr "Ladda upp ändrade filer till Dropbox" + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:174 +#, php-format +msgid "File %s uploaded to Dropbox" +msgstr "Fil %s uppladdad till Dropbox" + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:201 +#, php-format +msgid "Extra file %s uploaded to Dropbox" +msgstr "Extrafil %s uppladdad till Dropbox" + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:210 +msgid "Delete not existing files from Dropbox" +msgstr "Ta bort icke-existerande filer från Dropbox" + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:217 +#, php-format +msgid "Folder %s deleted from Dropbox" +msgstr "Mapp %s borttagen från Dropbox" + +# @ backwpup +#: ../inc/pro/class-destination-dropbox.php:235 +#, php-format +msgid "File %s deleted from Dropbox" +msgstr "Fil %s borttagen från Dropbox" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:89 +msgid "Backup only WordPress Database tables" +msgstr "Ta endast backup på WordPress databastabeller" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:109 +msgid "Database connection" +msgstr "Databaskoppling" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:113 +msgid "Use WordPress database connection." +msgstr "Använd WordPress databaskoppling." + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:117 +msgid "Host:" +msgstr "Värd:" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:120 +msgid "User:" +msgstr "Användare: " + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:127 +msgid "Charset:" +msgstr "Teckenuppsättning: " + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:138 +msgid "Database:" +msgstr "Databas:" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:166 +msgid "Database Backup type" +msgstr "Typ av Databas-backup" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:170 +msgid "SQL File (with mysqli)" +msgstr "SQL-fil (med mysqli)" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:171 +msgid "SQL File (with mysqldump)" +msgstr "SQL-fil (med mysqldump)" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:172 +msgid "XML File (phpMyAdmin schema)" +msgstr "XML-fil (phpMyAdmin schema)" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:178 +msgid "Path to mysqldump file" +msgstr "Sökväg till mysqldump-fil" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:555 +#, php-format +msgid "Added database backup \"%1$s\" with %2$s to backup file list" +msgstr "Lade till databas-backup \"%1$s\" med %2$s till fillista för backup" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:576 +#, php-format +msgid "%d. Try to backup MySQL system …" +msgstr "%d. Försök ta backup på MySQL-system …" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:583 +msgid "Executing of system commands not allowed. Please use backup with mysqli." +msgstr "Exekvering av systemkommandon är ej tillåtet. Vänligen använd mysqli för backup." + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:588 +#, php-format +msgid "%s file not in open basedir of PHP." +msgstr "Fil %s ej i PHP:s open basedir." + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:593 +#, php-format +msgid "%s file not found. Please correct the path for the mysqldump file." +msgstr "Fil %s hittades ej. Vänligen korrigera sökvägen för mysqldump-filen." + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:670 +#, php-format +msgctxt "Executed exec() command" +msgid "CLI Exec: %s" +msgstr "CLI Exec: %s" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:676 +msgid "Usage error." +msgstr "Användningsfel." + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:677 +msgid "MySQL Server Error. This could be an issue with permissions. Try using database backup with mysqli." +msgstr "MySQL-serverfel. Detta kan vara ett problem med tillstånd. Försök använda mysqli för databas-backup." + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:678 +msgid "Error during consistency checks." +msgstr "Fel vid konsistenskontroller." + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:679 +msgid "Not enough memory." +msgstr "Ej tillräckligt med minne." + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:680 +msgid "Error during writing of SQL backup file." +msgstr "Fel vid skrivning av SQL-backup-fil." + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:681 +msgid "Illegal table" +msgstr "Ogiltig tabell" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:686 +#, php-format +msgid "mysqldump returned: (%d) %s" +msgstr "mysqldump returnerade: (%d) %s" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:699 +msgid "Can not create mysql backup with mysqldump command" +msgstr "Kan ej skapa mysql-backup med kommandot mysqldump" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:747 +#, php-format +msgid "%d. Try to backup database as XML …" +msgstr "%d. Försök ta backup på databas som XML …" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:800 +msgid "No tables for XML backup" +msgstr "Inga tabeller för XML-backup" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:837 +#, php-format +msgid "Dump database create view \"%s\"" +msgstr "Dump av databas till CREATE VIEW \"%s\"" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:854 +#, php-format +msgid "Dump database structure \"%s\"" +msgstr "Dump av databasstruktur \"%s\"" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:894 +#, php-format +msgid "Dump table \"%s\" data" +msgstr "Dump av data från tabell \"%s\"" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:963 +#, php-format +msgid "Added database XML dump \"%1$s\" with %2$s to backup file list" +msgstr "Lade till databas XML-dump \"%1$s\" med %2$s till fillista för backup" + +# @ backwpup +#: ../inc/pro/class-jobtype-dbdump.php:966 +msgid "Database XML backup done!" +msgstr "Databas XML-backup klar!" + +# @ backwpup +#: ../inc/pro/class-destination-s3-v1.php:29 +msgid "Hosteurope Cloud Storage" +msgstr "Hosteurope Molnlagring" + +# @ backwpup +#: ../inc/pro/class-marketpress-documentation.php:175 +msgid "Loading Menu ..." +msgstr "Laddar Meny ..." + +# @ backwpup +#: ../inc/pro/class-marketpress-documentation.php:219 +#: ../inc/pro/class-marketpress-documentation.php:335 +#, php-format +msgctxt "%s = Remote Code" +msgid "Could not connect to remote host, code %d. Please try again later." +msgstr "Kunde ej ansluta till fjärrvärd %d. Vänligen försök igen senare." + +# @ backwpup +#: ../inc/pro/class-marketpress-documentation.php:230 +#: ../inc/pro/class-marketpress-documentation.php:346 +msgid "Could not find content for this page. Please try again later." +msgstr "Kunde ej hitta sidans innehåll. Vänligen försök igen senare." + +# @ backwpup +#: ../inc/pro/class-marketpress-documentation.php:236 +#: ../inc/pro/class-marketpress-documentation.php:351 +msgid "Could not connect to remote host. Please try again later." +msgstr "Kunde ej ansluta till fjärrvärd. Vänligen försök igen senare." + +# @ backwpup +#: ../inc/pro/class-marketpress-documentation.php:282 +#: ../inc/pro/class-marketpress-documentation.php:290 +msgid "Loading Content ..." +msgstr "Laddar Innehåll ..." + +# @ backwpup +#: ../inc/pro/class-page-wizard.php:122 +msgid "No BackWPup Wizard Session found!" +msgstr "Ingen Session funnen för BackWPup-guiden!" + +# @ backwpup +#: ../inc/pro/class-page-wizard.php:134 ../inc/pro/class-page-wizard.php:442 +msgid "Cancel" +msgstr "Avbryt" + +# @ backwpup +#: ../inc/pro/class-page-wizard.php:169 ../inc/pro/class-page-wizard.php:437 +#: ../inc/pro/class-page-wizard.php:470 +msgid "Next ›" +msgstr "Nästa ›" + +# @ backwpup +#: ../inc/pro/class-page-wizard.php:186 ../inc/pro/class-page-wizard.php:433 +msgid "‹ Previous" +msgstr "‹ Föregående" + +# @ backwpup +#: ../inc/pro/class-page-wizard.php:335 +#, php-format +msgctxt "Plugin Name" +msgid "%s Wizards" +msgstr "%s Guider" + +# @ backwpup +#: ../inc/pro/class-page-wizard.php:373 +#, php-format +msgctxt "Plugin Name" +msgid "%s Wizard:" +msgstr "%s Guide:" + +# @ backwpup +#: ../inc/pro/class-page-wizard.php:445 +msgid "Back to overview" +msgstr "Tillbaks till översikt" + +# @ backwpup +#: ../inc/pro/class-destination-rsc.php:26 +msgid "API Key:" +msgstr "API-nyckel" + +# @ backwpup +#: ../inc/pro/class-destination-rsc.php:29 +msgid "Select region:" +msgstr "Väj region:" + +# @ backwpup +#: ../inc/pro/class-destination-rsc.php:134 +#, php-format +msgid "%d. Trying to sync files to Rackspace cloud …" +msgstr "%d. Försöker synka filer mot Rackspace Cloud …" + +# @ backwpup +#: ../inc/pro/class-destination-rsc.php:154 +#, php-format +msgid "Connected to Rackspace cloud files container %s." +msgstr "Ansluten till Rackspace Cloud Files behållare %s." + +# @ backwpup +#: ../inc/pro/class-destination-rsc.php:168 +msgid "Retrieving files list from Rackspace Cloud." +msgstr "Hämtar fillista från Rackspace Cloud." + +# @ backwpup +#: ../inc/pro/class-destination-rsc.php:199 +msgid "Upload changed files to Rackspace Cloud." +msgstr "Ladda upp ändrade filer till Rackspace Cloud." + +# @ backwpup +#: ../inc/pro/class-destination-rsc.php:213 +#, php-format +msgid "File %s uploaded to Rackspace Cloud." +msgstr "Fil %s uppladdad till Rackspace Cloud." + +# @ backwpup +#: ../inc/pro/class-destination-rsc.php:241 +#, php-format +msgid "Extra file %s uploaded to Rackspace Cloud." +msgstr "Extrafil %s uppladdad till Rackspace Cloud." + +# @ backwpup +#: ../inc/pro/class-destination-rsc.php:254 +msgid "Delete nonexistent files on Rackspace Cloud." +msgstr "Ta bort icke-existerande filer från Rackspace Cloud." + +# @ backwpup +#: ../inc/pro/class-destination-rsc.php:258 +#, php-format +msgid "File %s deleted from Rackspace Cloud." +msgstr "Fil %s borttagen från Rackspace Cloud." + +# @ backwpup +#: ../inc/pro/class-jobtype-dbcheck.php:21 +msgid "Check only WordPress Database tables" +msgstr "Kontrollera endast WordPress databastabeller" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:33 +#: ../inc/pro/class-destination-gdrive.php:219 +#, php-format +msgid "Looks like you haven’t set up any API keys yet. Head over to Settings | API-Keys and get Google Drive all set up, then come back here." +msgstr "Det verkar inte som att du har skapat några API-nycklar ännu. Gör ett besök på Inställningar | API-nycklar och konfigurera Google Drive ordentligt. Kom sen tillbaks hit." + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:47 +#: ../inc/pro/class-destination-gdrive.php:251 +msgid "Authenticate" +msgstr "Autentisera" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:53 +#: ../inc/pro/class-destination-gdrive.php:257 +msgid "Reauthenticate" +msgstr "Återautentisera" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:63 +msgid "Folder in Google Drive" +msgstr "Mapp på Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:83 +msgid "Consider using trash to delete files. If trash is not enabled, files will be deleted permanently." +msgstr "Överväg att använda papperskorgen vid borttagning av filer. Om papperskorgen ej är aktiverad så tas filerna bort permanent." + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:132 +#: ../inc/pro/class-destination-gdrive.php:156 +msgid "GDrive: Authenticated." +msgstr "GDrive: Autentiserad." + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:134 +#: ../inc/pro/class-destination-gdrive.php:158 +msgid "GDrive: No refresh token received." +msgstr "GDrive: Ingen uppdateringspollett mottagen." + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:140 +#: ../inc/pro/class-destination-gdrive.php:163 +#: ../inc/pro/class-destination-gdrive.php:184 +#: ../inc/pro/class-destination-gdrive.php:237 +#, php-format +msgid "GDrive API: %s" +msgstr "GDrive API: %s" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:362 +#, php-format +msgid "%d. Try to send backup file to Google Drive …" +msgstr "%d. Försök skicka backup-fil till Google Drive …" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:395 +msgid "Uploading to Google Drive …" +msgstr "Laddar upp till Google Drive …" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:439 +msgid "Google Drive API: could not create resumable file" +msgstr "Google Drive API: kunde ej skapa återupptagningsbar fil" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:473 +msgid "Can not resume transfer backup to Google Drive!" +msgstr "Kan ej återuppta överföring av backup till Google Drive!" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:530 +#, php-format +msgid "Error transfering file chunks to %s." +msgstr "Fel vid överföring av fildelar till %s." + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:530 +#: ../inc/pro/class-destination-gdrive.php:548 +msgid "Google Drive" +msgstr "Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:592 +#, php-format +msgid "One file deleted from Google Drive" +msgid_plural "%d files deleted on Google Drive" +msgstr[0] "En fil borttagen från Google Drive" +msgstr[1] "%d filer borttagna från Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:598 +#: ../inc/pro/class-destination-gdrive.php:836 +#, php-format +msgid "Google Drive API: %s" +msgstr "Google Drive API: %s" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:633 +#, php-format +msgid "%d. Try to sync files to Google Drive …" +msgstr "%d. Försök synka filer mot Google Drive …" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:662 +msgid "Retrieving folder list from Google Drive" +msgstr "Hämtar mapplista från Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:679 +msgid "Syncing changed files to Google Drive" +msgstr "Synkar ändrade filer mot Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:717 +#, php-format +msgid "File %s updated on Google Drive" +msgstr "Fil %s uppdaterad på Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:737 +#, php-format +msgid "File %s uploaded to Google Drive" +msgstr "Fil %s uppladdad till Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:758 +#, php-format +msgid "File %s moved to trash in Google Drive" +msgstr "Fil %s flyttad till papperskorgen i Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:761 +#, php-format +msgid "File %s deleted permanently in Google Drive" +msgstr "Fil %s permanent borttagen från Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:777 +#, php-format +msgid "Folder %s moved to trash in Google Drive" +msgstr "Mapp %s flyttad till papperskorgen i Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:780 +#, php-format +msgid "Folder %s deleted permanently in Google Drive" +msgstr "Mapp %s permanent borttagen från Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:807 +#, php-format +msgid "Extra file %s updated on Google Drive" +msgstr "Extrafil %s uppdaterad på Google Drive" + +# @ backwpup +#: ../inc/pro/class-destination-gdrive.php:826 +#, php-format +msgid "Extra file %s uploaded to Google Drive" +msgstr "Extrafil %s uppladdad till Google Drive" + +# @ backwpup +#: ../inc/pro/class-jobtype-wpplugin.php:13 +msgid "Nothing to configure" +msgstr "Inget att konfigurera" + +# @ backwpup +#: ../inc/pro/class-export-jobs.php:12 ../inc/pro/class-export-jobs.php:23 +msgid "Export" +msgstr "Exportera" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:26 +msgid "Amazon Glacier" +msgstr "Amazon Glacier" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:30 +msgid "Select a region:" +msgstr "Välj en region:" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:32 +#: ../inc/pro/class-destination-glacier.php:154 +msgid "Amazon Glacier Region" +msgstr "Amazon Glacier-region" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:33 +#: ../inc/pro/class-destination-glacier.php:155 +msgid "US Standard" +msgstr "US Standard" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:34 +#: ../inc/pro/class-destination-glacier.php:156 +msgid "US West (Northern California)" +msgstr "US Väst (Norra Kalifornien)" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:35 +#: ../inc/pro/class-destination-glacier.php:157 +msgid "US West (Oregon)" +msgstr "US Väst (Oregon)" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:36 +#: ../inc/pro/class-destination-glacier.php:158 +msgid "EU (Ireland)" +msgstr "EU (Irland)" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:37 +#: ../inc/pro/class-destination-glacier.php:159 +msgid "EU (Germany)" +msgstr "EU (Tyskland)" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:38 +#: ../inc/pro/class-destination-glacier.php:160 +msgid "Asia Pacific (Tokyo)" +msgstr "Asien Stilla Havet (Tokyo)" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:39 +#: ../inc/pro/class-destination-glacier.php:161 +msgid "Asia Pacific (Singapore)" +msgstr "Asien Stilla Havet (Singapore)" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:40 +#: ../inc/pro/class-destination-glacier.php:162 +msgid "Asia Pacific (Sydney)" +msgstr "Asien Stilla Havet (Sydney)" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:41 +#: ../inc/pro/class-destination-glacier.php:163 +msgid "South America (Sao Paulo)" +msgstr "Sydamerika (Sao Paulo)" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:42 +msgid "China (Beijing)" +msgstr "Kina (Beijing)" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:48 +msgid "Amazon Access Keys" +msgstr "Amazon Åtkomstnycklar" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:67 +msgid "Vault" +msgstr "Valv" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:71 +msgid "Vault selection" +msgstr "Valvval" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:83 +msgid "Create a new vault" +msgstr "Skapa ett nytt valv" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:90 +msgid "Glacier Backup settings" +msgstr "Glacier Backup-inställningar" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:97 +#: ../inc/pro/class-destination-glacier.php:181 +msgid "Number of files to keep in folder. (Archives deleted before 3 months after they have been stored may cause extra costs when deleted.)" +msgstr "Antal filer att lagra i mapp. (Arkiv som tas bort tidigare än 3 månader efter att de sparats kan orsaka extra kostnader vid borttagning.)" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:130 +#: ../inc/pro/class-destination-glacier.php:215 +#, php-format +msgid "Vault %1$s created." +msgstr "Valv %1$s skapat." + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:132 +#: ../inc/pro/class-destination-glacier.php:217 +#, php-format +msgid "Vault %s could not be created." +msgstr "Valv %s kunde ej skapas." + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:153 +msgid "Select an Amazon Glacier region:" +msgstr "Välj en Amazon Glacier-region:" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:169 +msgid "Vault:" +msgstr "Valv:" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:178 +msgid "New Vault:" +msgstr "Nytt Valv:" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:258 +#: ../inc/pro/class-destination-glacier.php:374 +#: ../inc/pro/class-destination-glacier.php:390 +#: ../inc/pro/class-destination-glacier.php:430 +#, php-format +msgid "AWS API: %s" +msgstr "AWS API: %s" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:282 +#, php-format +msgid "%d. Trying to send backup file to Amazon Glacier …" +msgstr "%d. Försöker skicka backup-fil till Amazon Glacier …" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:295 +#, php-format +msgid "Connected to Glacier vault \"%1$s\" with %2$d archives and size of %3$d" +msgstr "Ansluten till Glacier-valv \"%1$s\" med %2$d arkiv och en storlek på %3$d" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:297 +#, php-format +msgid "Glacier vault \"%s\" does not exist!" +msgstr "Glacier-valv \"%s\" existerar ej!" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:303 +msgid "Starting upload to Amazon Glacier …" +msgstr "Påbörjar uppladdning till Amazon Glacier …" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:356 +#, php-format +msgid "Archive ID: %s" +msgstr "Arkiv-ID: %s" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:420 +#, php-format +msgid "Cannot delete archive from %s." +msgstr "Kan ej ta bort arkiv från %s." + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:424 +#, php-format +msgid "One file deleted on vault." +msgid_plural "%d files deleted on vault" +msgstr[0] "En fil borttagen från valv." +msgstr[1] "%d filer borttagna från valv" + +# @ backwpup +#: ../inc/pro/class-destination-glacier.php:538 +msgid "No vault found!" +msgstr "Inget valv hittades!" + +# @ backwpup +#: ../inc/pro/class-destination-sugarsync.php:25 +#: ../inc/pro/class-destination-sugarsync.php:84 +msgid "Sugarsync authenticate!" +msgstr "SugarSync-autentisera!" + +# @ backwpup +#: ../inc/pro/class-destination-sugarsync.php:36 +msgid "Root:" +msgstr "Rot:" + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:344 +#, php-format +msgctxt "%s = plugin name" +msgid "Your license for the plugin %s is not valid. The auto-update has been deactivated. Please insert a valid key on MarketPress Dashboard. Or if you want to add an other valid code use the form below." +msgstr "Din licens för tillägget %s är ogiltig. Automatiska uppdateringar har deaktiverats. Vänligen ange en giltig nyckel på MarketPress Panel. Eller om du vill ange en annan giltig kod, använd formuläret nedan." + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:356 +msgid "You are currently using a valid key for this plugin. You are able to renew the key in MarketPress Dashboard. Or if you want to add another valid code use the form below." +msgstr "Du använder för tillfället en giltig nyckel för detta tillägg. Du kan förnya nyckeln på MarketPress Panel. Eller om du vill ange en annan giltig kod, använd formuläret nedan." + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:367 +#, php-format +msgctxt "%s = plugin name" +msgid "Your license for the plugin %s is not valid. The auto-update has been deactivated." +msgstr "Din licens för tillägget %s är ogiltig. Automatiska uppdateringar har deaktiverats." + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:379 +#, php-format +msgid "You are currently using a valid key for this plugin. You are able to renew the key below or you can delete the key by clicking here." +msgstr "Du använder för tillfället en giltig nyckel för detta tillägg. Du kan förnya nyckeln nedan eller så kan du ta bort nyckeln genom att klicka här." + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:386 +msgid "License Key" +msgstr "Licensnyckel" + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:389 +msgid "Activate" +msgstr "Aktivera" + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:558 +msgid "The License has been deleted." +msgstr "Licensen har tagits bort." + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:565 +msgid "Plugin successfully activated." +msgstr "Aktivering av tillägget lyckades." + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:572 +msgid "The entered license key is wrong." +msgstr "Den angivna licensnyckeln är fel." + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:579 +msgid "You have reached the limit of urls. Please update your license at marketpress.com." +msgstr "Du har nått maxgränsen för URL:er. Vänligen uppdatera din licens på marketpress.com." + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:586 +msgid "Something went wrong. Please try again later or contact the MarketPress Team." +msgstr "Någonting gick fel. Vänligen försök igen senare eller kontakta MarketPress-teamet." + +# @ backwpup +#: ../inc/pro/class-marketpress-autoupdate.php:593 +msgid "Due to a wrong license you are not allowed to activate this plugin. Please update your license at marketpress.com." +msgstr "P.g.a. en felaktig licens tillåts du ej aktivera detta tillägg. Vänligen uppdatera din licens på MarketPress.com." diff --git a/languages/backwpup.pot b/languages/backwpup.pot new file mode 100644 index 00000000..f7100840 --- /dev/null +++ b/languages/backwpup.pot @@ -0,0 +1,5519 @@ +# Loco Gettext template +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: BackWPup Pro\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: Tue Aug 25 2015 08:53:55 GMT+0200 (Mitteleuropäische " +"Sommerzeit)\n" +"POT-Revision-Date: Wed Sep 16 2015 08:28:32 GMT+0200 (Mitteleuropäische " +"Sommerzeit)\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: ..\n" +"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;" +"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;" +"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;" +"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;" +"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n" +"X-Generator: Loco - https://localise.biz/" + +#. Name of the plugin +msgid "BackWPup Pro" +msgstr "" + +#. URI of the plugin +msgid "https://marketpress.com/product/backwpup-pro" +msgstr "" + +#. Description of the plugin +msgid "WordPress Backup Plugin" +msgstr "" + +#. Author of the plugin +msgid "Inpsyde GmbH" +msgstr "" + +#. Author URI of the plugin +msgid "http://inpsyde.com" +msgstr "" + +#: ../backwpup.php:42 +msgid "" +"BackWPup requires PHP version 5.2.7 with spl extension or greater and " +"WordPress 3.4 or greater." +msgstr "" + +#: ../backwpup.php:310 ../inc/class-page-backups.php:264 +msgid "Folder" +msgstr "" + +#: ../backwpup.php:311 +msgid "Backup to Folder" +msgstr "" + +#: ../backwpup.php:326 +msgid "Email" +msgstr "" + +#: ../backwpup.php:327 +msgid "Backup sent via email" +msgstr "" + +#: ../backwpup.php:342 +msgid "FTP" +msgstr "" + +#: ../backwpup.php:343 +msgid "Backup to FTP" +msgstr "" + +#: ../backwpup.php:358 ../inc/class-destination-dropbox.php:278 +msgid "Dropbox" +msgstr "" + +#: ../backwpup.php:359 ../inc/class-page-about.php:577 +msgid "Backup to Dropbox" +msgstr "" + +#: ../backwpup.php:375 ../backwpup.php:394 ../inc/class-destination-s3-v1.php:71 . +#: ./inc/class-destination-s3.php:74 +msgid "S3 Service" +msgstr "" + +#: ../backwpup.php:376 +msgid "Backup to an S3 Service" +msgstr "" + +#: ../backwpup.php:395 +msgid "Backup to an S3 Service v1" +msgstr "" + +#: ../backwpup.php:411 +msgid "MS Azure" +msgstr "" + +#: ../backwpup.php:412 +msgid "Backup to Microsoft Azure (Blob)" +msgstr "" + +#: ../backwpup.php:427 +msgid "RSC" +msgstr "" + +#: ../backwpup.php:428 ../inc/class-page-about.php:582 +msgid "Backup to Rackspace Cloud Files" +msgstr "" + +#: ../backwpup.php:444 +msgid "SugarSync" +msgstr "" + +#: ../backwpup.php:445 ../inc/class-page-about.php:597 +msgid "Backup to SugarSync" +msgstr "" + +#: ../backwpup.php:464 +#, php-format +msgid "PHP Version %1$s is to low, you need Version %2$s or above." +msgstr "" + +#: ../backwpup.php:471 +#, php-format +msgid "Missing function \"%s\"." +msgstr "" + +#: ../backwpup.php:480 +#, php-format +msgid "Missing class \"%s\"." +msgstr "" + +#: ../inc/class-page-logs.php:108 +msgid "No Logs." +msgstr "" + +#: ../inc/class-page-logs.php:120 ../inc/class-page-logs.php:198 ../inc/class- +#: page-jobs.php:113 ../inc/class-page-jobs.php:177 ../inc/class-page-backups.php: +#: 189 ../inc/class-page-backups.php:308 +msgid "Delete" +msgstr "" + +#: ../inc/class-page-logs.php:131 ../inc/class-page-backwpup.php:262 ../inc/class- +#: page-backwpup.php:326 ../inc/class-page-backups.php:262 +msgid "Time" +msgstr "" + +#: ../inc/class-page-logs.php:132 ../inc/class-page-backwpup.php:262 ../inc/class- +#: page-backwpup.php:327 +msgid "Job" +msgstr "" + +#: ../inc/class-page-logs.php:133 +msgid "Status" +msgstr "" + +#: ../inc/class-page-logs.php:134 ../inc/class-page-jobs.php:126 ../inc/class- +#: page-editjob.php:718 ../inc/pro/class-wizard-job.php:302 +msgid "Type" +msgstr "" + +#: ../inc/class-page-logs.php:135 ../inc/class-page-backups.php:265 +msgid "Size" +msgstr "" + +#: ../inc/class-page-logs.php:136 +msgid "Runtime" +msgstr "" + +#: ../inc/class-page-logs.php:159 ../inc/class-page-backwpup.php:291 ../inc/class- +#: page-backwpup.php:364 ../inc/class-page-jobs.php:313 ../inc/class-page-backups. +#: php:352 +#, php-format +msgid "%1$s at %2$s" +msgstr "" + +#: ../inc/class-page-logs.php:194 ../inc/class-page-jobs.php:172 +#, php-format +msgid "Job ID: %d" +msgstr "" + +#: ../inc/class-page-logs.php:196 +msgid "View" +msgstr "" + +#: ../inc/class-page-logs.php:199 ../inc/class-page-jobs.php:323 ../inc/class- +#: page-backups.php:310 +msgid "Download" +msgstr "" + +#: ../inc/class-page-logs.php:215 +#, php-format +msgid "1 ERROR" +msgid_plural "%d ERRORS" +msgstr[0] "" +msgstr[1] "" + +#: ../inc/class-page-logs.php:217 +#, php-format +msgid "1 WARNING" +msgid_plural "%d WARNINGS" +msgstr[0] "" +msgstr[1] "" + +#: ../inc/class-page-logs.php:219 +msgid "O.K." +msgstr "" + +#: ../inc/class-page-logs.php:236 +msgid "Log only" +msgstr "" + +#: ../inc/class-page-logs.php:247 ../inc/class-destination-ftp.php:86 .. +#: /inc/class-page-settings.php:470 +msgid "seconds" +msgstr "" + +#: ../inc/class-page-logs.php:306 ../inc/class-admin.php:201 ../inc/class-admin. +#: php:201 ../inc/class-adminbar.php:102 ../inc/class-page-settings.php:120 +msgid "Logs" +msgstr "" + +#: ../inc/class-page-logs.php:369 +#, php-format +msgid "%s Logs" +msgstr "" + +#: ../inc/class-destination-msazure.php:25 +msgid "MS Azure access keys" +msgstr "" + +#: ../inc/class-destination-msazure.php:29 +msgid "Account name" +msgstr "" + +#: ../inc/class-destination-msazure.php:36 +msgid "Access key" +msgstr "" + +#: ../inc/class-destination-msazure.php:44 +msgid "Blob container" +msgstr "" + +#: ../inc/class-destination-msazure.php:48 ../inc/class-destination-rsc.php:77 +msgid "Container selection" +msgstr "" + +#: ../inc/class-destination-msazure.php:59 ../inc/class-destination-rsc.php:89 +msgid "Create a new container" +msgstr "" + +#: ../inc/class-destination-msazure.php:66 ../inc/class-destination-sugarsync.php: +#: 86 ../inc/class-destination-folder.php:29 ../inc/class-destination-dropbox.php: +#: 91 ../inc/class-destination-ftp.php:52 ../inc/class-destination-rsc.php:96 .. +#: /inc/pro/class-destination-gdrive.php:63 +msgid "Backup settings" +msgstr "" + +#: ../inc/class-destination-msazure.php:70 +msgid "Folder in container" +msgstr "" + +#: ../inc/class-destination-msazure.php:76 ../inc/class-destination-s3-v1.php:155 +#: ../inc/class-destination-s3.php:160 ../inc/class-destination-rsc.php:106 .. +#: /inc/pro/class-destination-glacier.php:94 +msgid "File deletion" +msgstr "" + +#: ../inc/class-destination-msazure.php:81 ../inc/class-destination-s3-v1.php:160 +#: ../inc/class-destination-sugarsync.php:101 ../inc/class-destination-folder.php: +#: 44 ../inc/class-destination-ftp.php:67 ../inc/class-destination-s3.php:165 .. +#: /inc/class-destination-rsc.php:111 ../inc/pro/class-destination-msazure.php:35 +#: ../inc/pro/class-destination-s3-v1.php:60 ../inc/pro/class-destination-folder. +#: php:24 ../inc/pro/class-destination-dropbox.php:42 ../inc/pro/class- +#: destination-s3.php:62 ../inc/pro/class-destination-rsc.php:55 ../inc/pro/class- +#: destination-gdrive.php:78 ../inc/pro/class-destination-gdrive.php:284 .. +#: /inc/pro/class-destination-glacier.php:96 ../inc/pro/class-destination-glacier. +#: php:180 +msgid "Oldest files will be deleted first. 0 = no deletion" +msgstr "" + +#: ../inc/class-destination-msazure.php:82 ../inc/class-destination-s3-v1.php:161 +#: ../inc/class-destination-sugarsync.php:102 ../inc/class-destination-folder.php: +#: 45 ../inc/class-destination-dropbox.php:108 ../inc/class-destination-s3.php: +#: 166 ../inc/class-destination-rsc.php:112 ../inc/pro/class-destination-msazure. +#: php:36 ../inc/pro/class-destination-s3-v1.php:61 ../inc/pro/class-destination- +#: folder.php:25 ../inc/pro/class-destination-dropbox.php:43 ../inc/pro/class- +#: destination-s3.php:63 ../inc/pro/class-destination-rsc.php:56 ../inc/pro/class- +#: destination-gdrive.php:79 ../inc/pro/class-destination-gdrive.php:285 +msgid "Number of files to keep in folder." +msgstr "" + +#: ../inc/class-destination-msazure.php:86 ../inc/class-destination-s3-v1.php:165 +#: ../inc/class-destination-sugarsync.php:106 ../inc/class-destination-folder.php: +#: 49 ../inc/class-destination-dropbox.php:112 ../inc/class-destination-ftp.php: +#: 72 ../inc/class-destination-s3.php:170 ../inc/class-destination-rsc.php:116 .. +#: /inc/pro/class-destination-msazure.php:41 ../inc/pro/class-destination-s3-v1. +#: php:66 ../inc/pro/class-destination-sugarsync.php:68 ../inc/pro/class- +#: destination-folder.php:30 ../inc/pro/class-destination-dropbox.php:45 .. +#: /inc/pro/class-destination-ftp.php:46 ../inc/pro/class-destination-s3.php:68 .. +#: /inc/pro/class-destination-rsc.php:61 ../inc/pro/class-destination-gdrive.php: +#: 83 ../inc/pro/class-destination-gdrive.php:287 +msgid "Do not delete files while syncing to destination!" +msgstr "" + +#: ../inc/class-destination-msazure.php:124 ../inc/pro/class-destination-msazure. +#: php:81 +#, php-format +msgid "MS Azure container \"%s\" created." +msgstr "" + +#: ../inc/class-destination-msazure.php:127 ../inc/pro/class-destination-msazure. +#: php:84 +#, php-format +msgid "MS Azure container create: %s" +msgstr "" + +#: ../inc/class-destination-msazure.php:203 +#, php-format +msgid "%d. Try sending backup to a Microsoft Azure (Blob) …" +msgstr "" + +#: ../inc/class-destination-msazure.php:225 ../inc/pro/class-destination-msazure. +#: php:126 +#, php-format +msgid "MS Azure container \"%s\" does not exist!" +msgstr "" + +#: ../inc/class-destination-msazure.php:229 ../inc/pro/class-destination-msazure. +#: php:130 +#, php-format +msgid "Connected to MS Azure container \"%s\"." +msgstr "" + +#: ../inc/class-destination-msazure.php:232 +msgid "Starting upload to MS Azure …" +msgstr "" + +#: ../inc/class-destination-msazure.php:259 ../inc/class-destination-ftp.php:344 . +#: ./inc/class-destination-s3.php:412 ../inc/class-destination-s3.php:498 .. +#: /inc/class-destination-rsc.php:282 ../inc/pro/class-destination-rsc.php:215 .. +#: /inc/pro/class-destination-rsc.php:248 ../inc/pro/class-destination-gdrive.php: +#: 594 ../inc/pro/class-destination-glacier.php:387 +msgid "Can not open source file for transfer." +msgstr "" + +#: ../inc/class-destination-msazure.php:272 ../inc/class-destination-sugarsync. +#: php:257 ../inc/class-destination-dropbox.php:269 ../inc/pro/class-destination- +#: gdrive.php:603 +#, php-format +msgid "Backup transferred to %s" +msgstr "" + +#: ../inc/class-destination-msazure.php:277 ../inc/class-destination-msazure.php: +#: 333 ../inc/pro/class-destination-msazure.php:215 +#, php-format +msgid "Microsoft Azure API: %s" +msgstr "" + +#: ../inc/class-destination-msazure.php:326 +#, php-format +msgid "One file deleted on Microsoft Azure container." +msgid_plural "%d files deleted on Microsoft Azure container." +msgstr[0] "" +msgstr[1] "" + +#: ../inc/class-destination-msazure.php:419 +msgid "Missing account name!" +msgstr "" + +#: ../inc/class-destination-msazure.php:421 ../inc/class-destination-s3-v1.php: +#: 575 ../inc/class-destination-s3.php:675 ../inc/pro/class-destination-glacier. +#: php:536 +msgid "Missing access key!" +msgstr "" + +#: ../inc/class-destination-msazure.php:425 +msgid "No container found!" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:13 +msgid "DB Backup" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:14 +msgid "Database backup" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:15 +msgid "Creates an .sql database backup file" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:61 ../inc/pro/class-jobtype-dbdump.php:84 .. +#: /inc/pro/class-jobtype-dbdump.php:105 +msgid "Settings for database backup" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:65 ../inc/pro/class-jobtype-dbdump.php:151 +msgid "Tables to backup" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:67 ../inc/pro/class-jobtype-dbdump.php:153 +msgid "all" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:68 ../inc/class-jobtype-dbdump.php:103 .. +#: /inc/class-page-backwpup.php:307 ../inc/class-page-backwpup.php:372 .. +#: /inc/class-destination-s3-v1.php:178 ../inc/class-destination-s3.php:193 .. +#: /inc/class-destination-email.php:114 ../inc/class-page-settings.php:345 .. +#: /inc/class-jobtype-wpexp.php:73 ../inc/class-jobtype-wpplugin.php:57 .. +#: /inc/pro/class-jobtype-dbdump.php:154 ../inc/pro/class-jobtype-dbdump.php:198 +msgid "none" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:91 ../inc/pro/class-jobtype-dbdump.php:186 +msgid "Backup file name" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:99 ../inc/pro/class-jobtype-dbdump.php:194 +msgid "Backup file compression" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:105 ../inc/class-jobtype-dbdump.php:107 .. +#: /inc/class-jobtype-wpexp.php:75 ../inc/class-jobtype-wpexp.php:77 ../inc/class- +#: jobtype-wpplugin.php:59 ../inc/class-jobtype-wpplugin.php:61 ../inc/pro/class- +#: jobtype-dbdump.php:200 ../inc/pro/class-jobtype-dbdump.php:202 +msgid "GZip" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:155 ../inc/pro/class-jobtype-dbdump.php:453 +#, php-format +msgid "%d. Try to backup database …" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:169 ../inc/pro/class-jobtype-dbdump.php:472 .. +#: /inc/pro/class-jobtype-dbdump.php:784 +#, php-format +msgid "Connected to database %1$s on %2$s" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:183 ../inc/pro/class-jobtype-dbdump.php:486 +msgid "No tables to backup." +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:206 ../inc/pro/class-jobtype-dbdump.php:512 +#, php-format +msgid "Backup database table \"%s\" with \"%s\" records" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:246 ../inc/pro/class-jobtype-dbdump.php:552 +msgid "MySQL backup file not created" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:250 ../inc/pro/class-jobtype-dbdump.php:736 +#, php-format +msgid "Added database dump \"%1$s\" with %2$s to backup file list" +msgstr "" + +#: ../inc/class-jobtype-dbdump.php:256 ../inc/pro/class-jobtype-dbdump.php:562 .. +#: /inc/pro/class-jobtype-dbdump.php:739 +msgid "Database backup done!" +msgstr "" + +#: ../inc/class-page-about.php:394 +#, php-format +msgid "%s Welcome" +msgstr "" + +#: ../inc/class-page-about.php:401 +msgid "Heads up! You have updated from version 2.x" +msgstr "" + +#: ../inc/class-page-about.php:402 +#, php-format +msgid "Please check your settings after updating from version 2.x:" +msgstr "" + +#: ../inc/class-page-about.php:403 +msgid "Dropbox authentication must be re-entered" +msgstr "" + +#: ../inc/class-page-about.php:404 +msgid "SugarSync authentication must be re-entered" +msgstr "" + +#: ../inc/class-page-about.php:405 +msgid "S3 Settings" +msgstr "" + +#: ../inc/class-page-about.php:406 +msgid "Google Storage is now a part of S3 service settings" +msgstr "" + +#: ../inc/class-page-about.php:407 +msgid "All your passwords" +msgstr "" + +#: ../inc/class-page-about.php:416 +msgid "Welcome to BackWPup Pro" +msgstr "" + +#: ../inc/class-page-about.php:417 ../inc/class-page-backwpup.php:75 +msgid "" +"BackWPup’s job wizards make planning and scheduling your backup jobs a " +"breeze." +msgstr "" + +#: ../inc/class-page-about.php:418 ../inc/class-page-about.php:428 +msgid "" +"Use your backup archives to save your entire WordPress installation " +"including /wp-content/. Push them to an external storage " +"service if you don’t want to save the backups on the same server. With a " +"single backup archive you are able to restore an installation. Use a tool " +"like phpMyAdmin or a plugin like Adminer to restore your database " +"backup files." +msgstr "" + +#: ../inc/class-page-about.php:419 +#, php-format +msgid "" +"Ready to set up a backup job? You can use " +"the wizards or plan your backup in expert mode." +msgstr "" + +#: ../inc/class-page-about.php:426 +msgid "Welcome to BackWPup" +msgstr "" + +#: ../inc/class-page-about.php:429 +msgid "" +"Ready to set up a backup job? Use one of the wizards to plan what you want " +"to save." +msgstr "" + +#: ../inc/class-page-about.php:446 +msgid "Please activate your license" +msgstr "" + +#: ../inc/class-page-about.php:447 +msgid "" +"Please go to your plugin page and active the license to have the autoupdates " +"enabled." +msgstr "" + +#: ../inc/class-page-about.php:456 +msgid "Save your database" +msgstr "" + +#: ../inc/class-page-about.php:459 +msgid "Save your database regularly" +msgstr "" + +#: ../inc/class-page-about.php:460 +#, php-format +msgid "" +"With BackWPup you can schedule the database backup to run automatically. " +"With a single backup file you can restore your database. You should set up a backup job, so you will never forget it. There is " +"also an option to repair and optimize the database after each backup." +msgstr "" + +#: ../inc/class-page-about.php:465 ../inc/class-page-about.php:469 +msgid "WordPress XML Export" +msgstr "" + +#: ../inc/class-page-about.php:466 +msgid "" +"You can choose the built-in WordPress export format in addition or exclusive " +"to save your data. This works in automated backups too of course. The " +"advantage is: you can import these files into a blog with the regular " +"WordPress importer." +msgstr "" + +#: ../inc/class-page-about.php:474 +msgid "Save all data from the webserver" +msgstr "" + +#: ../inc/class-page-about.php:477 +msgid "Save all files" +msgstr "" + +#: ../inc/class-page-about.php:478 +#, php-format +msgid "" +"You can backup all your attachments, also all system files, plugins and " +"themes in a single file. You can create a job to update a " +"backup copy of your file system only when files are changed." +msgstr "" + +#: ../inc/class-page-about.php:483 ../inc/class-page-about.php:487 +msgid "Security!" +msgstr "" + +#: ../inc/class-page-about.php:484 +msgid "" +"By default everything is encrypted: connections to external services, local " +"files and access to directories." +msgstr "" + +#: ../inc/class-page-about.php:492 ../inc/class-page-about.php:495 +msgid "Cloud Support" +msgstr "" + +#: ../inc/class-page-about.php:496 +msgid "" +"BackWPup supports multiple cloud services in parallel. This ensures backups " +"are redundant." +msgstr "" + +#: ../inc/class-page-about.php:504 +msgid "Features / differences between Free and Pro" +msgstr "" + +#: ../inc/class-page-about.php:507 +msgid "Features" +msgstr "" + +#: ../inc/class-page-about.php:508 +msgid "FREE" +msgstr "" + +#: ../inc/class-page-about.php:509 +msgid "PRO" +msgstr "" + +#: ../inc/class-page-about.php:512 +msgid "Complete database backup" +msgstr "" + +#: ../inc/class-page-about.php:517 +msgid "Complete file backup" +msgstr "" + +#: ../inc/class-page-about.php:522 +msgid "Database check" +msgstr "" + +#: ../inc/class-page-about.php:527 +msgid "Data compression" +msgstr "" + +#: ../inc/class-page-about.php:532 ../inc/class-jobtype-wpexp.php:14 +msgid "WordPress XML export" +msgstr "" + +#: ../inc/class-page-about.php:537 +msgid "List of installed plugins" +msgstr "" + +#: ../inc/class-page-about.php:542 +msgid "Backup archives management" +msgstr "" + +#: ../inc/class-page-about.php:547 +msgid "Log file management" +msgstr "" + +#: ../inc/class-page-about.php:552 +msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI" +msgstr "" + +#: ../inc/class-page-about.php:557 +msgid "Log report via email" +msgstr "" + +#: ../inc/class-page-about.php:562 +msgid "Backup to Microsoft Azure" +msgstr "" + +#: ../inc/class-page-about.php:567 +msgid "Backup as email" +msgstr "" + +#: ../inc/class-page-about.php:572 +msgid "" +"Backup to S3 services (Amazon, Google Storage, Hosteurope and " +"more)" +msgstr "" + +#: ../inc/class-page-about.php:587 +msgid "Backup to FTP server" +msgstr "" + +#: ../inc/class-page-about.php:592 +msgid "Backup to your web space" +msgstr "" + +#: ../inc/class-page-about.php:602 ../inc/pro/class-pro.php:122 +msgid "Backup to Google Drive" +msgstr "" + +#: ../inc/class-page-about.php:607 ../inc/pro/class-pro.php:103 +msgid "Backup to Amazon Glacier" +msgstr "" + +#: ../inc/class-page-about.php:612 +msgid "Custom API keys for DropBox and SugarSync" +msgstr "" + +#: ../inc/class-page-about.php:617 +msgid "XML database backup as PHPMyAdmin schema" +msgstr "" + +#: ../inc/class-page-about.php:622 +msgid "Database backup as mysqldump per command line" +msgstr "" + +#: ../inc/class-page-about.php:627 +msgid "Database backup for additional MySQL databases" +msgstr "" + +#: ../inc/class-page-about.php:632 +msgid "Import and export job settings as XML" +msgstr "" + +#: ../inc/class-page-about.php:637 +msgid "Wizard for system tests" +msgstr "" + +#: ../inc/class-page-about.php:642 +msgid "Wizard for scheduled backup jobs" +msgstr "" + +#: ../inc/class-page-about.php:647 +msgid "Wizard to import settings and backup jobs" +msgstr "" + +#: ../inc/class-page-about.php:652 +msgid "Differential backup of changed directories to Dropbox" +msgstr "" + +#: ../inc/class-page-about.php:657 +msgid "Differential backup of changed directories to Rackspace Cloud Files" +msgstr "" + +#: ../inc/class-page-about.php:662 +msgid "Differential backup of changed directories to S3" +msgstr "" + +#: ../inc/class-page-about.php:667 +msgid "Differential backup of changed directories to MS Azure" +msgstr "" + +#: ../inc/class-page-about.php:672 +msgid "Premium support" +msgstr "" + +#: ../inc/class-page-about.php:677 +msgid "Dynamically loaded documentation" +msgstr "" + +#: ../inc/class-page-about.php:682 +msgid "Automatic update from MarketPress" +msgstr "" + +#: ../inc/class-page-about.php:689 ../inc/class-admin.php:404 +msgid "http://marketpress.com/product/backwpup-pro/" +msgstr "" + +#: ../inc/class-page-about.php:689 +msgid "GET PRO" +msgstr "" + +#: ../inc/class-cron.php:64 +msgid "Aborted, because no progress for one hour!" +msgstr "" + +#: ../inc/class-page-backwpup.php:67 +#, php-format +msgid "%s Dashboard" +msgstr "" + +#: ../inc/class-page-backwpup.php:74 ../inc/class-page-backwpup.php:83 +msgctxt "Dashboard heading" +msgid "Planning backups" +msgstr "" + +#: ../inc/class-page-backwpup.php:75 ../inc/class-page-backwpup.php:84 +msgid "" +"Use your backup archives to save your entire WordPress installation " +"including /wp-content/. Push them to an external storage " +"service if you don’t want to save the backups on the same server." +msgstr "" + +#: ../inc/class-page-backwpup.php:76 ../inc/class-page-backwpup.php:85 +msgctxt "Dashboard heading" +msgid "Restoring backups" +msgstr "" + +#: ../inc/class-page-backwpup.php:77 ../inc/class-page-backwpup.php:86 +msgid "" +"With a single backup archive you are able to restore an installation. Use a " +"tool like phpMyAdmin or a plugin like Adminer to restore your database " +"backup files." +msgstr "" + +#: ../inc/class-page-backwpup.php:78 ../inc/class-page-backwpup.php:87 +msgctxt "Dashboard heading" +msgid "Ready to set up a backup job?" +msgstr "" + +#: ../inc/class-page-backwpup.php:79 +#, php-format +msgid "" +"Use one of the wizards to plan a backup, or use expert mode " +"for full control over all options." +msgstr "" + +#: ../inc/class-page-backwpup.php:79 ../inc/class-page-backwpup.php:89 +msgid "" +"Please note: You are solely responsible for the security of your " +"data; the authors of this plugin are not." +msgstr "" + +#: ../inc/class-page-backwpup.php:84 +msgid "" +"Use the short links in the First steps box to plan and " +"schedule backup jobs." +msgstr "" + +#: ../inc/class-page-backwpup.php:88 +#, php-format +msgid "Add a new backup job and plan what you want to save." +msgstr "" + +#: ../inc/class-page-backwpup.php:96 +msgid "First Steps" +msgstr "" + +#: ../inc/class-page-backwpup.php:100 +msgid "Test the installation" +msgstr "" + +#: ../inc/class-page-backwpup.php:101 ../inc/class-page-backwpup.php:104 +msgid "Create a Job" +msgstr "" + +#: ../inc/class-page-backwpup.php:103 +msgid "Check the installation" +msgstr "" + +#: ../inc/class-page-backwpup.php:106 +msgid "Run the created job" +msgstr "" + +#: ../inc/class-page-backwpup.php:107 +msgid "Check the job log" +msgstr "" + +#: ../inc/class-page-backwpup.php:115 +msgid "One click backup" +msgstr "" + +#: ../inc/class-page-backwpup.php:117 +msgid "Generate a database backup of WordPress tables and download it right away!" +msgstr "" + +#: ../inc/class-page-backwpup.php:117 +msgid "Download database backup" +msgstr "" + +#: ../inc/class-page-backwpup.php:123 +msgid "BackWPup News" +msgstr "" + +#: ../inc/class-page-backwpup.php:128 +msgctxt "BackWPup News RSS Feed URL" +msgid "https://marketpress.com/tag/backwpup/feed/" +msgstr "" + +#: ../inc/class-page-backwpup.php:133 +#, php-format +msgid "RSS Error: %s" +msgstr "" + +#: ../inc/class-page-backwpup.php:137 +msgid "" +"An error has occurred, which probably means the feed is down. Try again " +"later." +msgstr "" + +#: ../inc/class-page-backwpup.php:152 +msgid "Untitled" +msgstr "" + +#: ../inc/class-page-backwpup.php:216 ../inc/pro/class-page-wizard.php:358 +msgid "Start wizard" +msgstr "" + +#: ../inc/class-page-backwpup.php:232 +msgctxt "Pro teaser box" +msgid "Thank you for using BackWPup!" +msgstr "" + +#: ../inc/class-page-backwpup.php:235 +msgctxt "Pro teaser box" +msgid "Get access to:" +msgstr "" + +#: ../inc/class-page-backwpup.php:237 +msgctxt "Pro teaser box" +msgid "First-class dedicated support at MarketPress Helpdesk." +msgstr "" + +#: ../inc/class-page-backwpup.php:238 +msgctxt "Pro teaser box" +msgid "Differential backups to Google Drive and other cloud storage service." +msgstr "" + +#: ../inc/class-page-backwpup.php:239 +msgctxt "Pro teaser box" +msgid "Easy-peasy wizards to create and schedule backup jobs." +msgstr "" + +#: ../inc/class-page-backwpup.php:240 +msgctxt "Pro teaser box, link text" +msgid "And more…" +msgstr "" + +#: ../inc/class-page-backwpup.php:242 +msgctxt "Pro teaser box, link title" +msgid "Get BackWPup Pro now" +msgstr "" + +#: ../inc/class-page-backwpup.php:242 +msgctxt "Pro teaser box, link text" +msgid "Get BackWPup Pro now" +msgstr "" + +#: ../inc/class-page-backwpup.php:260 +msgid "Last logs" +msgstr "" + +#: ../inc/class-page-backwpup.php:262 +msgid "Result" +msgstr "" + +#: ../inc/class-page-backwpup.php:295 +#, php-format +msgid "%d ERROR" +msgstr "" + +#: ../inc/class-page-backwpup.php:297 +#, php-format +msgid "%d WARNING" +msgstr "" + +#: ../inc/class-page-backwpup.php:299 +msgid "OK" +msgstr "" + +#: ../inc/class-page-backwpup.php:323 +msgid "Next scheduled jobs" +msgstr "" + +#: ../inc/class-page-backwpup.php:350 +#, php-format +msgid "working since %d seconds" +msgstr "" + +#: ../inc/class-page-backwpup.php:352 ../inc/class-page-jobs.php:616 +msgid "Abort" +msgstr "" + +#: ../inc/class-page-backwpup.php:366 ../inc/class-page-jobs.php:280 ../inc/class- +#: page-jobs.php:289 ../inc/class-job.php:335 +msgid "Not scheduled!" +msgstr "" + +#: ../inc/class-page-backwpup.php:368 +msgid "Edit Job" +msgstr "" + +#: ../inc/class-jobtype-file.php:15 +msgid "Files" +msgstr "" + +#: ../inc/class-jobtype-file.php:16 +msgid "File backup" +msgstr "" + +#: ../inc/class-jobtype-file.php:73 +msgid "Folders to backup" +msgstr "" + +#: ../inc/class-jobtype-file.php:77 +msgid "Backup WordPress install folder" +msgstr "" + +#: ../inc/class-jobtype-file.php:88 ../inc/class-jobtype-file.php:125 .. +#: /inc/class-jobtype-file.php:162 ../inc/class-jobtype-file.php:199 ../inc/class- +#: jobtype-file.php:236 +#, php-format +msgid "Path as set by user (symlink?): %s" +msgstr "" + +#: ../inc/class-jobtype-file.php:91 ../inc/class-jobtype-file.php:128 .. +#: /inc/class-jobtype-file.php:165 ../inc/class-jobtype-file.php:202 ../inc/class- +#: jobtype-file.php:239 +msgid "Exclude:" +msgstr "" + +#: ../inc/class-jobtype-file.php:102 ../inc/class-jobtype-file.php:139 .. +#: /inc/class-jobtype-file.php:176 ../inc/class-jobtype-file.php:213 ../inc/class- +#: jobtype-file.php:250 +msgid "Excluded by .donotbackup file!" +msgstr "" + +#: ../inc/class-jobtype-file.php:114 +msgid "Backup content folder" +msgstr "" + +#: ../inc/class-jobtype-file.php:151 +msgid "Backup plugins" +msgstr "" + +#: ../inc/class-jobtype-file.php:188 +msgid "Backup themes" +msgstr "" + +#: ../inc/class-jobtype-file.php:225 ../inc/pro/class-wizard-job.php:703 .. +#: /inc/pro/class-wizard-job.php:704 +msgid "Backup uploads folder" +msgstr "" + +#: ../inc/class-jobtype-file.php:262 +msgid "Extra folders to backup" +msgstr "" + +#: ../inc/class-jobtype-file.php:264 +msgid "" +"Separate folder names with a line-break or a comma. Folders must be set with " +"their absolute path!" +msgstr "" + +#: ../inc/class-jobtype-file.php:269 +msgid "Exclude from backup" +msgstr "" + +#: ../inc/class-jobtype-file.php:273 +msgid "Thumbnails in uploads" +msgstr "" + +#: ../inc/class-jobtype-file.php:275 +msgid "" +"All images with -???x???. will be excluded. Use a plugin like Regenerate " +"Thumbnails to rebuild them after a restore." +msgstr "" + +#: ../inc/class-jobtype-file.php:277 +msgid "Don't backup thumbnails from the site's uploads folder." +msgstr "" + +#: ../inc/class-jobtype-file.php:281 +msgid "Exclude files/folders from backup" +msgstr "" + +#: ../inc/class-jobtype-file.php:283 +msgid "" +"Separate file / folder name parts with a line-break or a comma. For example " +"/logs/,.log,.tmp" +msgstr "" + +#: ../inc/class-jobtype-file.php:288 +msgid "Special options" +msgstr "" + +#: ../inc/class-jobtype-file.php:292 +msgid "Include special files" +msgstr "" + +#: ../inc/class-jobtype-file.php:294 +msgid "" +"If the WordPress root folder is not included in this backup job, check this " +"option to additionally include wp-config.php, robots.txt, .htaccess, ." +"htpasswd and favicon.ico into the backup. Your wp-config.php will be " +"included even if you placed it in the parent directory of your root folder." +msgstr "" + +#: ../inc/class-jobtype-file.php:296 +msgid "" +"Backup wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico from " +"root." +msgstr "" + +#: ../inc/class-jobtype-file.php:300 +msgid "Use one folder above as WP install folder" +msgstr "" + +#: ../inc/class-jobtype-file.php:304 +msgid "" +"Use one folder above as WordPress install folder! That can be helpful, if " +"you would backup files and folder that are not in the WordPress installation " +"folder. Or if you made a \"Giving WordPress Its Own " +"Directory\" installation. Excludes must be configured again." +msgstr "" + +#: ../inc/class-jobtype-file.php:387 +#, php-format +msgid "%d. Trying to make a list of folders to back up …" +msgstr "" + +#: ../inc/class-jobtype-file.php:503 ../inc/class-jobtype-file.php:508 .. +#: /inc/class-jobtype-file.php:513 ../inc/class-jobtype-file.php:517 ../inc/class- +#: jobtype-file.php:521 ../inc/class-jobtype-file.php:525 +#, php-format +msgid "Added \"%s\" to backup file list" +msgstr "" + +#: ../inc/class-jobtype-file.php:530 +msgid "No files/folder for the backup." +msgstr "" + +#: ../inc/class-jobtype-file.php:532 +#, php-format +msgid "%1$d folders to backup." +msgstr "" + +#: ../inc/class-jobtype-file.php:571 +#, php-format +msgid "Folder \"%s\" is not readable!" +msgstr "" + +#: ../inc/class-wp-cli.php:23 +msgid "A job is already running." +msgstr "" + +#: ../inc/class-wp-cli.php:35 +msgid "No job ID specified!" +msgstr "" + +#: ../inc/class-wp-cli.php:41 +msgid "Job ID does not exist!" +msgstr "" + +#: ../inc/class-wp-cli.php:54 +msgid "Nothing to abort!" +msgstr "" + +#: ../inc/class-wp-cli.php:59 ../inc/class-page-jobs.php:479 +msgid "Job will be terminated." +msgstr "" + +#: ../inc/class-wp-cli.php:105 +msgid "No job running" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:75 ../inc/class-destination-s3.php:78 +msgid "Select a S3 service" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:77 ../inc/class-destination-s3.php:80 .. +#: /inc/pro/class-destination-s3-v1.php:18 ../inc/pro/class-destination-s3.php:18 +msgid "Amazon S3 Region" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:78 ../inc/class-destination-s3.php:81 .. +#: /inc/pro/class-destination-s3-v1.php:19 ../inc/pro/class-destination-s3.php:19 +msgid "Amazon S3: US Standard" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:79 ../inc/class-destination-s3.php:82 .. +#: /inc/pro/class-destination-s3-v1.php:20 ../inc/pro/class-destination-s3.php:20 +msgid "Amazon S3: US West (Northern California)" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:80 ../inc/class-destination-s3.php:83 .. +#: /inc/pro/class-destination-s3-v1.php:21 ../inc/pro/class-destination-s3.php:21 +msgid "Amazon S3: US West (Oregon)" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:81 ../inc/class-destination-s3.php:84 .. +#: /inc/pro/class-destination-s3-v1.php:22 ../inc/pro/class-destination-s3.php:22 +msgid "Amazon S3: EU (Ireland)" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:82 ../inc/class-destination-s3.php:85 .. +#: /inc/pro/class-destination-s3.php:23 +msgid "Amazon S3: EU (Germany)" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:83 ../inc/class-destination-s3.php:86 .. +#: /inc/pro/class-destination-s3-v1.php:23 ../inc/pro/class-destination-s3.php:24 +msgid "Amazon S3: Asia Pacific (Tokyo)" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:84 ../inc/class-destination-s3.php:87 .. +#: /inc/pro/class-destination-s3-v1.php:24 ../inc/pro/class-destination-s3.php:25 +msgid "Amazon S3: Asia Pacific (Singapore)" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:85 ../inc/class-destination-s3.php:88 .. +#: /inc/pro/class-destination-s3-v1.php:25 ../inc/pro/class-destination-s3.php:26 +msgid "Amazon S3: Asia Pacific (Sydney)" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:86 ../inc/class-destination-s3.php:89 .. +#: /inc/pro/class-destination-s3-v1.php:26 ../inc/pro/class-destination-s3.php:27 +msgid "Amazon S3: South America (Sao Paulo)" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:87 ../inc/class-destination-s3.php:90 .. +#: /inc/pro/class-destination-s3-v1.php:27 ../inc/pro/class-destination-s3.php:28 +msgid "Amazon S3: China (Beijing)" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:88 ../inc/pro/class-destination-s3-v1.php:28 +msgid "Google Storage (Interoperable Access)" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:89 ../inc/class-destination-s3.php:94 .. +#: /inc/pro/class-destination-s3-v1.php:30 ../inc/pro/class-destination-s3.php:32 +msgid "Dream Host Cloud Storage" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:90 ../inc/class-destination-s3.php:95 .. +#: /inc/pro/class-destination-s3-v1.php:31 ../inc/pro/class-destination-s3.php:33 +msgid "GreenQloud Storage Qloud" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:95 ../inc/class-destination-s3.php:100 +msgid "Or a S3 Server URL" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:102 ../inc/class-destination-s3.php:107 +msgid "S3 Access Keys" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:106 ../inc/class-destination-s3.php:111 .. +#: /inc/pro/class-destination-glacier.php:52 +msgid "Access Key" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:113 ../inc/class-destination-s3.php:118 .. +#: /inc/pro/class-destination-glacier.php:59 +msgid "Secret Key" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:121 ../inc/class-destination-s3.php:126 +msgid "S3 Bucket" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:125 ../inc/class-destination-s3.php:130 +msgid "Bucket selection" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:138 ../inc/class-destination-s3.php:143 +msgid "Create a new bucket" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:145 ../inc/class-destination-s3.php:150 +msgid "S3 Backup settings" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:149 ../inc/class-destination-s3.php:154 .. +#: /inc/class-destination-rsc.php:100 +msgid "Folder in bucket" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:171 ../inc/class-destination-s3.php:186 +msgid "Amazon specific settings" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:175 ../inc/class-destination-s3-v1.php:177 . +#: ./inc/class-destination-s3.php:190 ../inc/class-destination-s3.php:192 +msgid "Amazon: Storage Class" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:179 ../inc/class-destination-s3.php:194 +msgid "Reduced Redundancy" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:184 ../inc/class-destination-s3.php:199 +msgid "Server side encryption" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:188 ../inc/class-destination-s3.php:203 +msgid "Save files encrypted (AES256) on server." +msgstr "" + +#: ../inc/class-destination-s3-v1.php:249 ../inc/class-destination-s3.php:263 +#, php-format +msgid "Bucket %1$s created." +msgstr "" + +#: ../inc/class-destination-s3-v1.php:251 ../inc/pro/class-destination-s3-v1.php: +#: 136 +#, php-format +msgid "Bucket %s could not be created." +msgstr "" + +#: ../inc/class-destination-s3-v1.php:297 ../inc/class-destination-s3-v1.php:419 . +#: ./inc/class-destination-s3-v1.php:470 ../inc/class-destination-s3.php:306 .. +#: /inc/class-destination-s3.php:431 ../inc/class-destination-s3.php:483 .. +#: /inc/class-destination-s3.php:517 ../inc/class-destination-s3.php:577 .. +#: /inc/pro/class-destination-s3-v1.php:314 ../inc/pro/class-destination-s3.php:323 +#, php-format +msgid "S3 Service API: %s" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:362 ../inc/class-destination-s3.php:370 +#, php-format +msgid "%d. Trying to send backup file to S3 Service …" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:383 ../inc/class-destination-s3.php:383 .. +#: /inc/pro/class-destination-s3-v1.php:182 ../inc/pro/class-destination-s3.php:178 +#, php-format +msgid "Connected to S3 Bucket \"%1$s\" in %2$s" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:386 ../inc/class-destination-s3.php:386 .. +#: /inc/pro/class-destination-s3-v1.php:185 ../inc/pro/class-destination-s3.php:181 +#, php-format +msgid "S3 Bucket \"%s\" does not exist!" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:392 ../inc/class-destination-s3.php:405 +msgid "Starting upload to S3 Service …" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:410 ../inc/class-destination-s3.php:508 .. +#: /inc/pro/class-destination-glacier.php:363 +#, php-format +msgid "Backup transferred to %s." +msgstr "" + +#: ../inc/class-destination-s3-v1.php:415 ../inc/class-destination-s3.php:513 +#, php-format +msgid "Cannot transfer backup to S3! (%1$d) %2$s" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:460 ../inc/class-destination-s3.php:567 +#, php-format +msgid "Cannot delete backup from %s." +msgstr "" + +#: ../inc/class-destination-s3-v1.php:464 ../inc/class-destination-s3.php:571 +#, php-format +msgid "One file deleted on S3 Bucket." +msgid_plural "%d files deleted on S3 Bucket" +msgstr[0] "" +msgstr[1] "" + +#: ../inc/class-destination-s3-v1.php:577 ../inc/class-destination-s3.php:677 .. +#: /inc/pro/class-destination-glacier.php:538 +msgid "Missing secret access key!" +msgstr "" + +#: ../inc/class-destination-s3-v1.php:583 ../inc/class-destination-s3.php:683 +msgid "No bucket found!" +msgstr "" + +#: ../inc/class-create-archive.php:71 +msgid "The file name of an archive cannot be empty." +msgstr "" + +#: ../inc/class-create-archive.php:79 +#, php-format +msgctxt "%s = Folder name" +msgid "Folder %s for archive not found" +msgstr "" + +#: ../inc/class-create-archive.php:85 ../inc/class-create-archive.php:120 .. +#: /inc/class-create-archive.php:137 ../inc/class-mysqldump.php:130 +msgid "Functions for gz compression not available" +msgstr "" + +#: ../inc/class-create-archive.php:92 ../inc/class-create-archive.php:143 +msgid "Functions for bz2 compression not available" +msgstr "" + +#: ../inc/class-create-archive.php:116 +#, php-format +msgctxt "ZipArchive open() result" +msgid "Cannot create zip archive: %d" +msgstr "" + +#: ../inc/class-create-archive.php:149 +#, php-format +msgctxt "%s = file name" +msgid "Method to archive file %s not detected" +msgstr "" + +#: ../inc/class-create-archive.php:154 +msgid "Cannot open archive file" +msgstr "" + +#: ../inc/class-create-archive.php:174 ../inc/class-create-archive.php:379 +#, php-format +msgid "PclZip archive add error: %s" +msgstr "" + +#: ../inc/class-create-archive.php:184 +msgid "ZIP archive cannot be closed correctly." +msgstr "" + +#: ../inc/class-create-archive.php:238 +msgid "File name cannot be empty" +msgstr "" + +#: ../inc/class-create-archive.php:247 +#, php-format +msgctxt "File to add to archive" +msgid "File %s does not exist or is not readable" +msgstr "" + +#: ../inc/class-create-archive.php:278 ../inc/class-create-archive.php:294 .. +#: /inc/class-create-archive.php:422 ../inc/class-create-archive.php:426 +msgid "This archive method can only add one file" +msgstr "" + +#: ../inc/class-create-archive.php:283 ../inc/class-create-archive.php:299 +#, php-format +msgid "Cannot open source file %s to archive" +msgstr "" + +#: ../inc/class-create-archive.php:332 ../inc/class-create-archive.php:358 .. +#: /inc/class-create-archive.php:367 ../inc/class-create-archive.php:437 +#, php-format +msgid "Cannot add \"%s\" to zip archive!" +msgstr "" + +#: ../inc/class-create-archive.php:340 +msgid "ZIP archive cannot be closed correctly" +msgstr "" + +#: ../inc/class-create-archive.php:404 +msgid "Folder name cannot be empty" +msgstr "" + +#: ../inc/class-create-archive.php:409 +#, php-format +msgctxt "Folder path to add to archive" +msgid "Folder %s does not exist or is not readable" +msgstr "" + +#: ../inc/class-create-archive.php:459 +#, php-format +msgctxt "Text of ZipArchive status Message" +msgid "ZipArchive returns status: %s" +msgstr "" + +#: ../inc/class-create-archive.php:489 +#, php-format +msgid "File name \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "" + +#: ../inc/class-create-archive.php:492 +#, php-format +msgid "File path \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "" + +#: ../inc/class-create-archive.php:504 +#, php-format +msgid "Cannot open source file %s for archiving" +msgstr "" + +#: ../inc/class-create-archive.php:509 ../inc/class-create-archive.php:510 .. +#: /inc/class-create-archive.php:609 ../inc/class-create-archive.php:610 +msgid "Unknown" +msgstr "" + +#: ../inc/class-create-archive.php:600 +#, php-format +msgid "Folder name \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "" + +#: ../inc/class-create-archive.php:603 +#, php-format +msgid "Folder path \"%1$s\" is too long to be saved correctly in %2$s archive!" +msgstr "" + +#: ../inc/class-create-archive.php:684 +#, php-format +msgid "" +"If %s will be added to your backup archive, the archive will be too large " +"for for operations with this PHP Version. You might want to consider " +"splitting the backup job in multiple jobs with less files each." +msgstr "" + +#: ../inc/class-admin.php:137 ../inc/class-help.php:29 +msgid "https://marketpress.com/documentation/backwpup-pro/" +msgstr "" + +#: ../inc/class-admin.php:137 ../inc/pro/class-marketpress-documentation.php:149 . +#: ./inc/pro/class-pro.php:188 ../inc/pro/class-pro.php:188 +msgid "Documentation" +msgstr "" + +#: ../inc/class-admin.php:139 ../inc/class-help.php:26 +msgid "https://marketpress.com/support/forum/plugins/backwpup-pro/" +msgstr "" + +#: ../inc/class-admin.php:139 ../inc/class-help.php:26 +msgid "Pro Support" +msgstr "" + +#: ../inc/class-admin.php:141 ../inc/class-help.php:28 +msgid "http://wordpress.org/support/plugin/backwpup/" +msgstr "" + +#: ../inc/class-admin.php:141 ../inc/class-help.php:28 +msgid "Support" +msgstr "" + +#: ../inc/class-admin.php:154 +msgid "BackWPup Dashboard" +msgstr "" + +#: ../inc/class-admin.php:154 +msgid "Dashboard" +msgstr "" + +#: ../inc/class-admin.php:171 ../inc/class-admin.php:171 ../inc/class-adminbar. +#: php:86 ../inc/class-page-settings.php:120 +msgid "Jobs" +msgstr "" + +#: ../inc/class-admin.php:186 ../inc/class-admin.php:186 +msgid "Add new job" +msgstr "" + +#: ../inc/class-admin.php:216 ../inc/class-admin.php:216 ../inc/class-adminbar. +#: php:110 +msgid "Backups" +msgstr "" + +#: ../inc/class-admin.php:231 ../inc/class-admin.php:231 +msgid "Settings" +msgstr "" + +#: ../inc/class-admin.php:244 ../inc/class-admin.php:244 +msgid "About" +msgstr "" + +#: ../inc/class-admin.php:281 ../inc/class-admin.php:287 +msgid "Cheating, huh?" +msgstr "" + +#: ../inc/class-admin.php:402 +msgid "http://marketpress.com" +msgstr "" + +#: ../inc/class-admin.php:402 ../inc/class-admin.php:402 +msgid "MarketPress" +msgstr "" + +#: ../inc/class-admin.php:404 +#, php-format +msgid "Get BackWPup Pro now." +msgstr "" + +#: ../inc/class-admin.php:423 +#, php-format +msgid "version %s" +msgstr "" + +#: ../inc/class-admin.php:468 +msgid "Add BackWPup Role" +msgstr "" + +#: ../inc/class-admin.php:472 +msgid "— No additional role for BackWPup —" +msgstr "" + +#: ../inc/class-admin.php:544 +#, php-format +msgid "" +"Important: before updating, please back up " +"your database and files with %2$s. For help with updates, visit the Updating WordPress " +"Codex page." +msgstr "" + +#: ../inc/class-admin.php:548 ../inc/class-admin.php:552 +#, php-format +msgid "" +"Important: before installing this plugin, please back up your database and files with %2$s." +msgstr "" + +#: ../inc/class-admin.php:566 +msgid "BackWPup Role" +msgstr "" + +#: ../inc/class-admin.php:593 +msgid "Administrator" +msgstr "" + +#: ../inc/class-easycron.php:179 +#, php-format +msgid "EasyCron.com API returns (%s): %s" +msgstr "" + +#: ../inc/class-easycron.php:188 +msgid "EasyCron" +msgstr "" + +#: ../inc/class-easycron.php:189 +msgid "" +"Here you can setup your EasyCron.com API key " +"to use this service." +msgstr "" + +#: ../inc/class-easycron.php:192 +msgid "Api key:" +msgstr "" + +#: ../inc/class-easycron.php:200 +msgid "Trigger WordPress Cron:" +msgstr "" + +#: ../inc/class-easycron.php:204 +msgid "" +"If you check this box, a cron job will be created on EasyCron that all 5 " +"Minutes calls the WordPress cron." +msgstr "" + +#: ../inc/class-destination-sugarsync.php:22 +msgid "Sugarsync Login" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:28 ../inc/class-destination-sugarsync. +#: php:47 ../inc/class-destination-dropbox.php:55 +msgid "Authentication" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:30 ../inc/pro/class-destination- +#: sugarsync.php:17 +msgid "Email address:" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:34 ../inc/pro/class-jobtype-dbdump.php: +#: 123 ../inc/pro/class-destination-sugarsync.php:20 ../inc/pro/class-destination- +#: ftp.php:29 +msgid "Password:" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:40 ../inc/class-destination-sugarsync. +#: php:121 +msgid "Authenticate with Sugarsync!" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:42 ../inc/class-destination-sugarsync. +#: php:137 ../inc/pro/class-destination-sugarsync.php:27 ../inc/pro/class- +#: destination-sugarsync.php:101 +msgid "Create Sugarsync account" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:49 ../inc/class-destination-dropbox.php: +#: 60 ../inc/pro/class-destination-sugarsync.php:32 ../inc/pro/class-destination- +#: dropbox.php:35 ../inc/pro/class-destination-gdrive.php:55 ../inc/pro/class- +#: destination-gdrive.php:276 +msgid "Authenticated!" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:51 ../inc/class-destination-sugarsync. +#: php:133 ../inc/pro/class-destination-sugarsync.php:34 ../inc/pro/class- +#: destination-sugarsync.php:97 +msgid "Delete Sugarsync authentication!" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:57 +msgid "SugarSync Root" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:61 +msgid "Sync folder selection" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:69 ../inc/pro/class-destination- +#: sugarsync.php:43 +msgid "No Syncfolders found!" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:90 +msgid "Folder in root" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:96 ../inc/class-destination-folder.php: +#: 39 ../inc/class-destination-dropbox.php:102 ../inc/class-destination-ftp.php: +#: 62 ../inc/pro/class-destination-gdrive.php:73 +msgid "File Deletion" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:227 +#, php-format +msgid "%d. Try to send backup to SugarSync …" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:234 +#, php-format +msgid "Authenticated to SugarSync with nickname %s" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:237 +#, php-format +msgctxt "Available space on SugarSync" +msgid "Not enough disk space available on SugarSync. Available: %s." +msgstr "" + +#: ../inc/class-destination-sugarsync.php:243 +#, php-format +msgid "%s available at SugarSync" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:250 +msgid "Starting upload to SugarSync …" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:260 +msgid "Cannot transfer backup to SugarSync!" +msgstr "" + +#: ../inc/class-destination-sugarsync.php:299 +#, php-format +msgid "One file deleted on SugarSync folder" +msgid_plural "%d files deleted on SugarSync folder" +msgstr[0] "" +msgstr[1] "" + +#: ../inc/class-destination-sugarsync.php:305 +#, php-format +msgid "SugarSync API: %s" +msgstr "" + +#: ../inc/class-destination-folder.php:33 +msgid "Folder to store backups in" +msgstr "" + +#: ../inc/class-destination-folder.php:196 +#, php-format +msgid "One backup file deleted" +msgid_plural "%d backup files deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../inc/class-destination-dropbox.php:36 ../inc/class-destination-dropbox.php: +#: 332 ../inc/pro/class-destination-dropbox.php:253 +#, php-format +msgid "Dropbox API: %s" +msgstr "" + +#: ../inc/class-destination-dropbox.php:51 ../inc/pro/class-destination-gdrive. +#: php:47 +msgid "Login" +msgstr "" + +#: ../inc/class-destination-dropbox.php:57 ../inc/pro/class-destination-gdrive. +#: php:53 ../inc/pro/class-destination-gdrive.php:270 +msgid "Not authenticated!" +msgstr "" + +#: ../inc/class-destination-dropbox.php:58 ../inc/pro/class-destination-dropbox. +#: php:29 +msgid "Create Account" +msgstr "" + +#: ../inc/class-destination-dropbox.php:61 ../inc/class-destination-dropbox.php:61 +msgid "Delete Dropbox Authentication" +msgstr "" + +#: ../inc/class-destination-dropbox.php:68 +msgid "App Access to Dropbox" +msgstr "" + +#: ../inc/class-destination-dropbox.php:70 +msgid "" +"A dedicated folder named BackWPup will be created inside of the Apps folder " +"in your Dropbox. BackWPup will get read and write access to that folder only." +" You can specify a subfolder as your backup destination for this job in the " +"destination field below." +msgstr "" + +#: ../inc/class-destination-dropbox.php:71 +msgid "Get Dropbox App auth code" +msgstr "" + +#: ../inc/class-destination-dropbox.php:72 +msgid "Allows restricted access to Apps/BackWPup folder only." +msgstr "" + +#: ../inc/class-destination-dropbox.php:77 +msgid "— OR —" +msgstr "" + +#: ../inc/class-destination-dropbox.php:80 +msgid "Full Access to Dropbox" +msgstr "" + +#: ../inc/class-destination-dropbox.php:82 +msgid "" +"BackWPup will have full read and write access to your entire Dropbox. You " +"can specify your backup destination wherever you want, just be aware that " +"ANY files or folders inside of your Dropbox can be overridden or deleted by " +"BackWPup." +msgstr "" + +#: ../inc/class-destination-dropbox.php:83 +msgid "Get full Dropbox auth code " +msgstr "" + +#: ../inc/class-destination-dropbox.php:84 +msgid "Allows full access to your entire Dropbox." +msgstr "" + +#: ../inc/class-destination-dropbox.php:95 +msgid "Destination Folder" +msgstr "" + +#: ../inc/class-destination-dropbox.php:97 +msgid "" +"Specify a subfolder where your backup archives will be stored. If you use " +"the App option from above, this folder will be created inside of " +"Apps/BackWPup. Otherwise it will be created at the root of your Dropbox. " +"Already exisiting folders with the same name will not be overriden." +msgstr "" + +#: ../inc/class-destination-dropbox.php:98 +msgid "Folder inside your Dropbox where your backup archives will be stored." +msgstr "" + +#: ../inc/class-destination-dropbox.php:107 +msgid "Older files will be deleted first. 0 = no files will be deleted." +msgstr "" + +#: ../inc/class-destination-dropbox.php:224 +#, php-format +msgid "%d. Try to send backup file to Dropbox …" +msgstr "" + +#: ../inc/class-destination-dropbox.php:247 ../inc/pro/class-destination-dropbox. +#: php:128 +#, php-format +msgid "Authenticated with Dropbox of user: %s" +msgstr "" + +#: ../inc/class-destination-dropbox.php:251 ../inc/pro/class-destination-dropbox. +#: php:132 +#, php-format +msgid "%s available on your Dropbox" +msgstr "" + +#: ../inc/class-destination-dropbox.php:254 ../inc/pro/class-destination-dropbox. +#: php:135 +msgid "Not Authenticated with Dropbox!" +msgstr "" + +#: ../inc/class-destination-dropbox.php:257 +msgid "Uploading to Dropbox …" +msgstr "" + +#: ../inc/class-destination-dropbox.php:273 ../inc/pro/class-destination-gdrive. +#: php:607 +msgid "Uploaded file size and local file size don't match." +msgstr "" + +#: ../inc/class-destination-dropbox.php:277 ../inc/pro/class-destination-gdrive. +#: php:609 ../inc/pro/class-destination-glacier.php:367 +#, php-format +msgid "Error transfering backup to %s." +msgstr "" + +#: ../inc/class-destination-dropbox.php:323 +#, php-format +msgid "Error while deleting file from Dropbox: %s" +msgstr "" + +#: ../inc/class-destination-dropbox.php:326 +#, php-format +msgid "One file deleted from Dropbox" +msgid_plural "%d files deleted on Dropbox" +msgstr[0] "" +msgstr[1] "" + +#: ../inc/class-destination-ftp.php:23 +msgid "FTP server and login" +msgstr "" + +#: ../inc/class-destination-ftp.php:27 +msgid "FTP server" +msgstr "" + +#: ../inc/class-destination-ftp.php:31 ../inc/class-destination-email.php:104 .. +#: /inc/pro/class-destination-ftp.php:21 +msgid "Port:" +msgstr "" + +#: ../inc/class-destination-ftp.php:37 ../inc/class-destination-rsc.php:45 +msgid "Username" +msgstr "" + +#: ../inc/class-destination-ftp.php:44 +msgid "Password" +msgstr "" + +#: ../inc/class-destination-ftp.php:56 +msgid "Folder to store files in" +msgstr "" + +#: ../inc/class-destination-ftp.php:68 +msgid "Maximum number of files to keep in folder." +msgstr "" + +#: ../inc/class-destination-ftp.php:78 +msgid "FTP specific settings" +msgstr "" + +#: ../inc/class-destination-ftp.php:82 +msgid "Timeout for FTP connection" +msgstr "" + +#: ../inc/class-destination-ftp.php:90 +msgid "SSL-FTP connection" +msgstr "" + +#: ../inc/class-destination-ftp.php:94 +msgid "Use explicit SSL-FTP connection." +msgstr "" + +#: ../inc/class-destination-ftp.php:99 +msgid "FTP Passive Mode" +msgstr "" + +#: ../inc/class-destination-ftp.php:103 +msgid "Use FTP Passive Mode." +msgstr "" + +#: ../inc/class-destination-ftp.php:179 +msgid "FTP: Login failure!" +msgstr "" + +#: ../inc/class-destination-ftp.php:203 +#, php-format +msgid "%d. Try to send backup file to an FTP server …" +msgstr "" + +#: ../inc/class-destination-ftp.php:209 +#, php-format +msgid "Connected via explicit SSL-FTP to server: %s" +msgstr "" + +#: ../inc/class-destination-ftp.php:211 +#, php-format +msgid "Cannot connect via explicit SSL-FTP to server: %s" +msgstr "" + +#: ../inc/class-destination-ftp.php:217 +msgid "PHP function to connect with explicit SSL-FTP to server does not exist!" +msgstr "" + +#: ../inc/class-destination-ftp.php:225 +#, php-format +msgid "Connected to FTP server: %s" +msgstr "" + +#: ../inc/class-destination-ftp.php:227 +#, php-format +msgid "Cannot connect to FTP server: %s" +msgstr "" + +#: ../inc/class-destination-ftp.php:234 ../inc/class-destination-ftp.php:242 .. +#: /inc/class-destination-ftp.php:258 ../inc/class-destination-ftp.php:305 +#, php-format +msgid "FTP client command: %s" +msgstr "" + +#: ../inc/class-destination-ftp.php:236 +#, php-format +msgid "FTP server response: %s" +msgstr "" + +#: ../inc/class-destination-ftp.php:240 ../inc/class-destination-ftp.php:245 .. +#: /inc/class-destination-ftp.php:248 ../inc/class-destination-ftp.php:261 .. +#: /inc/class-destination-ftp.php:263 ../inc/class-destination-ftp.php:308 .. +#: /inc/class-destination-ftp.php:310 ../inc/class-destination-ftp.php:314 .. +#: /inc/class-destination-ftp.php:316 +#, php-format +msgid "FTP server reply: %s" +msgstr "" + +#: ../inc/class-destination-ftp.php:263 +msgid "Error getting SYSTYPE" +msgstr "" + +#: ../inc/class-destination-ftp.php:281 +#, php-format +msgid "FTP Folder \"%s\" created!" +msgstr "" + +#: ../inc/class-destination-ftp.php:285 +#, php-format +msgid "FTP Folder \"%s\" cannot be created!" +msgstr "" + +#: ../inc/class-destination-ftp.php:296 +#, php-format +msgid "FTP current folder is: %s" +msgstr "" + +#: ../inc/class-destination-ftp.php:308 +msgid "Entering passive mode" +msgstr "" + +#: ../inc/class-destination-ftp.php:310 +msgid "Cannot enter passive mode" +msgstr "" + +#: ../inc/class-destination-ftp.php:314 +msgid "Entering normal mode" +msgstr "" + +#: ../inc/class-destination-ftp.php:316 +msgid "Cannot enter normal mode" +msgstr "" + +#: ../inc/class-destination-ftp.php:320 +msgid "Starting upload to FTP  …" +msgstr "" + +#: ../inc/class-destination-ftp.php:332 +msgid "Cannot transfer backup to FTP server!" +msgstr "" + +#: ../inc/class-destination-ftp.php:337 +#, php-format +msgid "Backup transferred to FTP server: %s" +msgstr "" + +#: ../inc/class-destination-ftp.php:388 +#, php-format +msgid "Cannot delete \"%s\" on FTP server!" +msgstr "" + +#: ../inc/class-destination-ftp.php:391 +#, php-format +msgid "One file deleted on FTP server" +msgid_plural "%d files deleted on FTP server" +msgstr[0] "" +msgstr[1] "" + +#: ../inc/class-destination-s3.php:91 ../inc/pro/class-destination-s3.php:29 +msgid "Google Storage: EU" +msgstr "" + +#: ../inc/class-destination-s3.php:92 ../inc/pro/class-destination-s3.php:30 +msgid "Google Storage: USA" +msgstr "" + +#: ../inc/class-destination-s3.php:93 ../inc/pro/class-destination-s3.php:31 +msgid "Google Storage: Asia" +msgstr "" + +#: ../inc/class-destination-s3.php:176 +msgid "Multipart Upload" +msgstr "" + +#: ../inc/class-destination-s3.php:178 +msgid "" +"Multipart splits file into multiple chunks while uploading. This is " +"necessary for displaying the upload process and to transfer bigger files. " +"Works without a problem on Amazon. Other services might have issues." +msgstr "" + +#: ../inc/class-destination-s3.php:180 +msgid "Use multipart upload for uploading a file" +msgstr "" + +#: ../inc/class-destination-s3.php:265 ../inc/pro/class-destination-s3.php:137 +#, php-format +msgid " %s is not a valid bucket name." +msgstr "" + +#: ../inc/class-destination-s3.php:393 +msgid "Checking for not aborted multipart Uploads …" +msgstr "" + +#: ../inc/class-destination-s3.php:399 +#, php-format +msgid "Upload for %s aborted." +msgstr "" + +#: ../inc/class-destination-s3.php:541 +#, php-format +msgid "Storage Class: %s" +msgstr "" + +#: ../inc/class-file.php:148 +#, php-format +msgid "Folder %1$s not allowed, please use another folder." +msgstr "" + +#: ../inc/class-file.php:153 +#, php-format +msgid "Folder %1$s is not in open basedir, please use another folder." +msgstr "" + +#: ../inc/class-file.php:159 +#, php-format +msgid "Cannot create folder: %1$s" +msgstr "" + +#: ../inc/class-file.php:165 +#, php-format +msgid "Folder \"%1$s\" is not writable" +msgstr "" + +#: ../inc/class-file.php:194 +msgid "" +"BackWPup will not backup folders and its sub folders when this file is " +"inside." +msgstr "" + +#: ../inc/class-page-jobs.php:100 +msgid "No Jobs." +msgstr "" + +#: ../inc/class-page-jobs.php:125 ../inc/class-page-editjob.php:438 +msgid "Job Name" +msgstr "" + +#: ../inc/class-page-jobs.php:127 ../inc/pro/class-wizard-job.php:57 .. +#: /inc/pro/class-wizard-job.php:438 +msgid "Destinations" +msgstr "" + +#: ../inc/class-page-jobs.php:128 +msgid "Next Run" +msgstr "" + +#: ../inc/class-page-jobs.php:129 +msgid "Last Run" +msgstr "" + +#: ../inc/class-page-jobs.php:175 +msgid "Edit" +msgstr "" + +#: ../inc/class-page-jobs.php:176 +msgid "Copy" +msgstr "" + +#: ../inc/class-page-jobs.php:181 ../inc/class-page-editjob.php:195 +msgid "Run now" +msgstr "" + +#: ../inc/class-page-jobs.php:187 +msgid "Last log" +msgstr "" + +#: ../inc/class-page-jobs.php:249 +msgid "Not needed or set" +msgstr "" + +#: ../inc/class-page-jobs.php:271 +#, php-format +msgid "Running for: %s seconds" +msgstr "" + +#: ../inc/class-page-jobs.php:278 ../inc/class-page-jobs.php:287 +#, php-format +msgid "Cron: %s" +msgstr "" + +#: ../inc/class-page-jobs.php:278 +#, php-format +msgid "%1$s at %2$s by WP-Cron" +msgstr "" + +#: ../inc/class-page-jobs.php:287 +#, php-format +msgid "%1$s at %2$s by EasyCron" +msgstr "" + +#: ../inc/class-page-jobs.php:293 +msgid "Inactive" +msgstr "" + +#: ../inc/class-page-jobs.php:315 +#, php-format +msgid "Runtime: %d seconds" +msgstr "" + +#: ../inc/class-page-jobs.php:319 +msgid "not yet" +msgstr "" + +#: ../inc/class-page-jobs.php:323 +msgid "Download last backup" +msgstr "" + +#: ../inc/class-page-jobs.php:330 +msgid "Log" +msgstr "" + +#: ../inc/class-page-jobs.php:373 +msgid "Copy of" +msgstr "" + +#: ../inc/class-page-jobs.php:388 ../inc/class-page-backups.php:368 ../inc/class- +#: page-backups.php:396 ../inc/class-page-editjob.php:35 +msgid "Sorry, you don't have permissions to do that." +msgstr "" + +#: ../inc/class-page-jobs.php:420 +#, php-format +msgid "The job \"%s\" destination \"%s\" is not configured properly" +msgstr "" + +#: ../inc/class-page-jobs.php:425 +#, php-format +msgid "The job \"%s\" needs properly configured destinations to run!" +msgstr "" + +#: ../inc/class-page-jobs.php:433 ../inc/class-page-settings.php:432 +#, php-format +msgid "The HTTP response test get an error \"%s\"" +msgstr "" + +#: ../inc/class-page-jobs.php:437 ../inc/class-page-settings.php:434 +#, php-format +msgid "The HTTP response test get a false http status (%s)" +msgstr "" + +#: ../inc/class-page-jobs.php:441 +#, php-format +msgid "Not expected HTTP response body: %s" +msgstr "" + +#: ../inc/class-page-jobs.php:462 +#, php-format +msgid "Job “%s” has started, but not responded for 10 seconds." +msgstr "" + +#: ../inc/class-page-jobs.php:467 +#, php-format +msgid "Job \"%s\" started." +msgstr "" + +#: ../inc/class-page-jobs.php:592 +#, php-format +msgid "%s Jobs" +msgstr "" + +#: ../inc/class-page-jobs.php:592 ../inc/class-adminbar.php:94 +msgid "Add new" +msgstr "" + +#: ../inc/class-page-jobs.php:612 +#, php-format +msgid "Job currently running: %s" +msgstr "" + +#: ../inc/class-page-jobs.php:613 +msgid "Warnings:" +msgstr "" + +#: ../inc/class-page-jobs.php:614 +msgid "Errors:" +msgstr "" + +#: ../inc/class-page-jobs.php:615 +msgid "Log of running job" +msgstr "" + +#: ../inc/class-page-jobs.php:615 +msgid "Display working log" +msgstr "" + +#: ../inc/class-page-jobs.php:617 +msgid "Close working screen" +msgstr "" + +#: ../inc/class-page-jobs.php:617 +msgid "close" +msgstr "" + +#: ../inc/class-page-jobs.php:784 +msgid "Job completed" +msgstr "" + +#: ../inc/class-page-jobs.php:786 ../inc/class-job.php:1273 +msgid "ERROR:" +msgstr "" + +#: ../inc/class-page-jobs.php:786 ../inc/class-job.php:1486 +#, php-format +msgid "" +"Job has ended with errors in %s seconds. You must resolve the errors for " +"correct execution." +msgstr "" + +#: ../inc/class-page-jobs.php:788 ../inc/class-job.php:1264 +msgid "WARNING:" +msgstr "" + +#: ../inc/class-page-jobs.php:788 +#, php-format +msgid "" +"Job has done with warnings in %s seconds. Please resolve them for correct " +"execution." +msgstr "" + +#: ../inc/class-page-jobs.php:790 ../inc/class-job.php:1490 +#, php-format +msgid "Job done in %s seconds." +msgstr "" + +#: ../inc/class-destination-email.php:38 ../inc/class-destination-email.php:41 .. +#: /inc/pro/class-destination-email.php:16 ../inc/pro/class-destination-email.php: +#: 18 +msgid "Email address" +msgstr "" + +#: ../inc/class-destination-email.php:43 ../inc/pro/class-destination-email.php:19 +msgid "Email address to which Backups are sent." +msgstr "" + +#: ../inc/class-destination-email.php:48 ../inc/class-destination-email.php:50 .. +#: /inc/pro/class-destination-email.php:24 ../inc/pro/class-destination-email.php: +#: 25 +msgid "Send test email" +msgstr "" + +#: ../inc/class-destination-email.php:55 +msgid "Send email settings" +msgstr "" + +#: ../inc/class-destination-email.php:58 +msgid "Maximum file size" +msgstr "" + +#: ../inc/class-destination-email.php:59 +msgid "Maximum file size to be included in an email. 0 = unlimited" +msgstr "" + +#: ../inc/class-destination-email.php:59 +msgid "MB" +msgstr "" + +#: ../inc/class-destination-email.php:63 ../inc/class-destination-email.php:64 +msgid "Sender email address" +msgstr "" + +#: ../inc/class-destination-email.php:70 +msgid "Sender name" +msgstr "" + +#: ../inc/class-destination-email.php:71 +msgid "Name of email sender" +msgstr "" + +#: ../inc/class-destination-email.php:77 +msgid "Sending method" +msgstr "" + +#: ../inc/class-destination-email.php:79 +msgid "" +"- Use site settings: retrieve the email settings of your site.
-PHP " +"mail(): needs more PHP memory" +msgstr "" + +#: ../inc/class-destination-email.php:81 +msgid "Use site settings" +msgstr "" + +#: ../inc/class-destination-email.php:82 +msgid "PHP: mail()" +msgstr "" + +#: ../inc/class-destination-email.php:83 +msgid "Sendmail" +msgstr "" + +#: ../inc/class-destination-email.php:84 +msgid "SMTP" +msgstr "" + +#: ../inc/class-destination-email.php:91 +msgid "Sendmail path" +msgstr "" + +#: ../inc/class-destination-email.php:99 +msgid "SMTP host name" +msgstr "" + +#: ../inc/class-destination-email.php:110 +msgid "SMTP secure connection" +msgstr "" + +#: ../inc/class-destination-email.php:115 +msgid "SSL" +msgstr "" + +#: ../inc/class-destination-email.php:116 +msgid "TLS" +msgstr "" + +#: ../inc/class-destination-email.php:121 +msgid "SMTP username" +msgstr "" + +#: ../inc/class-destination-email.php:128 +msgid "SMTP password" +msgstr "" + +#: ../inc/class-destination-email.php:204 +#, php-format +msgid "%d. Try to send backup with email …" +msgstr "" + +#: ../inc/class-destination-email.php:209 +msgid "Backup archive too big to be sent by email!" +msgstr "" + +#: ../inc/class-destination-email.php:216 +#, php-format +msgid "Sending email to %s…" +msgstr "" + +#: ../inc/class-destination-email.php:292 +#, php-format +msgid "BackWPup archive from %1$s: %2$s" +msgstr "" + +#: ../inc/class-destination-email.php:295 +#, php-format +msgid "Backup archive: %s" +msgstr "" + +#: ../inc/class-destination-email.php:309 ../inc/class-destination-email.php:431 +msgid "Error while sending email!" +msgstr "" + +#: ../inc/class-destination-email.php:315 ../inc/class-destination-email.php:433 +msgid "Email sent." +msgstr "" + +#: ../inc/class-destination-email.php:415 +msgid "BackWPup archive sending TEST Message" +msgstr "" + +#: ../inc/class-destination-email.php:418 +msgid "" +"If this message reaches your inbox, sending backup archives via email should " +"work for you." +msgstr "" + +#: ../inc/class-help.php:15 +msgid "Plugin Info" +msgstr "" + +#: ../inc/class-help.php:17 +#, php-format +msgctxt "Plugin name and link; Plugin Version" +msgid "" +"%1$s version %2$s. A project by Inpsyde " +"GmbH." +msgstr "" + +#: ../inc/class-help.php:18 +msgid "" +"BackWPup comes with ABSOLUTELY NO WARRANTY. This is a free software, and you " +"are welcome to redistribute it under certain conditions." +msgstr "" + +#: ../inc/class-help.php:21 +msgid "For more information:" +msgstr "" + +#: ../inc/class-help.php:23 +msgid "Plugin on wordpress.org" +msgstr "" + +#: ../inc/class-help.php:24 +msgid "https://marketpress.com/news/" +msgstr "" + +#: ../inc/class-help.php:24 +msgid "News" +msgstr "" + +#: ../inc/class-help.php:29 +msgid "Manual" +msgstr "" + +#: ../inc/class-destination-rsc.php:41 +msgid "Rack Space Cloud Keys" +msgstr "" + +#: ../inc/class-destination-rsc.php:52 +msgid "API Key" +msgstr "" + +#: ../inc/class-destination-rsc.php:60 +msgid "Select region" +msgstr "" + +#: ../inc/class-destination-rsc.php:64 ../inc/class-destination-rsc.php:66 .. +#: /inc/pro/class-destination-rsc.php:30 +msgid "Rackspace Cloud Files Region" +msgstr "" + +#: ../inc/class-destination-rsc.php:67 ../inc/pro/class-destination-rsc.php:31 +msgid "Dallas (DFW)" +msgstr "" + +#: ../inc/class-destination-rsc.php:68 ../inc/pro/class-destination-rsc.php:32 +msgid "Chicago (ORD)" +msgstr "" + +#: ../inc/class-destination-rsc.php:69 ../inc/pro/class-destination-rsc.php:33 +msgid "Sydney (SYD)" +msgstr "" + +#: ../inc/class-destination-rsc.php:70 ../inc/pro/class-destination-rsc.php:34 +msgid "London (LON)" +msgstr "" + +#: ../inc/class-destination-rsc.php:71 ../inc/pro/class-destination-rsc.php:35 +msgid "Northern Virginia (IAD)" +msgstr "" + +#: ../inc/class-destination-rsc.php:72 ../inc/pro/class-destination-rsc.php:36 +msgid "Hong Kong (HKG)" +msgstr "" + +#: ../inc/class-destination-rsc.php:155 ../inc/pro/class-destination-rsc.php:105 +#, php-format +msgid "Rackspace Cloud container \"%s\" created." +msgstr "" + +#: ../inc/class-destination-rsc.php:159 ../inc/class-destination-rsc.php:267 .. +#: /inc/class-destination-rsc.php:307 ../inc/class-destination-rsc.php:352 .. +#: /inc/pro/class-destination-rsc.php:109 ../inc/pro/class-destination-rsc.php: +#: 159 ../inc/pro/class-destination-rsc.php:279 +#, php-format +msgid "Rackspace Cloud API: %s" +msgstr "" + +#: ../inc/class-destination-rsc.php:250 +#, php-format +msgid "%d. Trying to send backup file to Rackspace cloud …" +msgstr "" + +#: ../inc/class-destination-rsc.php:264 +#, php-format +msgid "Connected to Rackspace cloud files container %s" +msgstr "" + +#: ../inc/class-destination-rsc.php:276 +msgid "Upload to Rackspace cloud started …" +msgstr "" + +#: ../inc/class-destination-rsc.php:295 +msgid "Backup File transferred to RSC://" +msgstr "" + +#: ../inc/class-destination-rsc.php:301 +msgid "Cannot transfer backup to Rackspace cloud." +msgstr "" + +#: ../inc/class-destination-rsc.php:346 +#, php-format +msgid "One file deleted on Rackspace cloud container." +msgid_plural "%d files deleted on Rackspace cloud container." +msgstr[0] "" +msgstr[1] "" + +#: ../inc/class-destination-rsc.php:449 +msgid "Missing username!" +msgstr "" + +#: ../inc/class-destination-rsc.php:451 +msgid "Missing API Key!" +msgstr "" + +#: ../inc/class-destination-rsc.php:455 +msgid "A container could not be found!" +msgstr "" + +#: ../inc/class-adminbar.php:55 +msgid "running" +msgstr "" + +#: ../inc/class-adminbar.php:71 +msgid "Now Running" +msgstr "" + +#: ../inc/class-adminbar.php:77 +msgid "Abort!" +msgstr "" + +#: ../inc/class-adminbar.php:132 +msgid "Run Now" +msgstr "" + +#: ../inc/class-page-settings.php:60 +msgid "Settings reset to default" +msgstr "" + +#: ../inc/class-page-settings.php:107 +msgid "Settings saved" +msgstr "" + +#: ../inc/class-page-settings.php:118 +#, php-format +msgid "%s Settings" +msgstr "" + +#: ../inc/class-page-settings.php:120 ../inc/class-page-editjob.php:389 +msgid "General" +msgstr "" + +#: ../inc/class-page-settings.php:120 +msgid "Network" +msgstr "" + +#: ../inc/class-page-settings.php:120 +msgid "API Keys" +msgstr "" + +#: ../inc/class-page-settings.php:120 +msgid "Information" +msgstr "" + +#: ../inc/class-page-settings.php:137 +msgid "Display Settings" +msgstr "" + +#: ../inc/class-page-settings.php:138 +msgid "Do you want to see BackWPup in the WordPress admin bar?" +msgstr "" + +#: ../inc/class-page-settings.php:141 +msgid "Admin bar" +msgstr "" + +#: ../inc/class-page-settings.php:144 +msgid "Admin Bar" +msgstr "" + +#: ../inc/class-page-settings.php:149 +msgid "Show BackWPup links in admin bar." +msgstr "" + +#: ../inc/class-page-settings.php:154 ../inc/class-page-settings.php:157 +msgid "Folder sizes" +msgstr "" + +#: ../inc/class-page-settings.php:162 +msgid "" +"Display folder sizes in the files tab when editing a job. (Might increase " +"loading time of files tab.)" +msgstr "" + +#: ../inc/class-page-settings.php:167 +msgid "Security" +msgstr "" + +#: ../inc/class-page-settings.php:168 +msgid "Security option for BackWPup" +msgstr "" + +#: ../inc/class-page-settings.php:171 ../inc/class-page-settings.php:174 +msgid "Protect folders" +msgstr "" + +#: ../inc/class-page-settings.php:179 +msgid "" +"Protect BackWPup folders ( Temp, Log and Backups ) with ." +"htaccess and index.php" +msgstr "" + +#: ../inc/class-page-settings.php:192 +msgid "" +"Every time BackWPup runs a backup job, a log file is being generated. Choose " +"where to store your log files and how many of them." +msgstr "" + +#: ../inc/class-page-settings.php:195 +msgid "Log file folder" +msgstr "" + +#: ../inc/class-page-settings.php:197 +msgid "" +"You can use absolute or relative path! Relative path is relative to " +"WP_CONTENT_DIR." +msgstr "" + +#: ../inc/class-page-settings.php:203 +msgid "Maximum number of log files in folder" +msgstr "" + +#: ../inc/class-page-settings.php:206 +msgid "Oldest files will be deleted first." +msgstr "" + +#: ../inc/class-page-settings.php:211 ../inc/class-page-settings.php:214 +msgid "Compression" +msgstr "" + +#: ../inc/class-page-settings.php:219 +msgid "Compress log files with GZip." +msgstr "" + +#: ../inc/class-page-settings.php:224 ../inc/class-page-settings.php:227 +msgid "Logging Level" +msgstr "" + +#: ../inc/class-page-settings.php:230 +msgid "" +"Debug lag has much more informations than normal logs. It is for support and " +"should be handled carefully. For support is the best to use a not translated " +"log file. Usage of not translated logs can reduce the PHP memory usage." +msgstr "" + +#: ../inc/class-page-settings.php:231 +msgid "Normal (translated)" +msgstr "" + +#: ../inc/class-page-settings.php:232 +msgid "Normal (not translated)" +msgstr "" + +#: ../inc/class-page-settings.php:233 +msgid "Debug (translated)" +msgstr "" + +#: ../inc/class-page-settings.php:234 +msgid "Debug (not translated)" +msgstr "" + +#: ../inc/class-page-settings.php:245 +msgid "There are a couple of general options for backup jobs. Set them here." +msgstr "" + +#: ../inc/class-page-settings.php:249 +msgid "Maximum number of retries for job steps" +msgstr "" + +#: ../inc/class-page-settings.php:257 +msgid "Maximum script execution time" +msgstr "" + +#: ../inc/class-page-settings.php:260 +msgid "Maximum PHP Script execution time" +msgstr "" + +#: ../inc/class-page-settings.php:263 +msgid "" +"Job will restart before hitting maximum execution time. It will not work " +"with CLI and not on every step during execution. If " +"ALTERNATE_WP_CRON has been defined, WordPress Cron will be used." +msgstr "" + +#: ../inc/class-page-settings.php:265 +msgid "seconds. 0 = disabled." +msgstr "" + +#: ../inc/class-page-settings.php:271 ../inc/class-page-settings.php:274 +msgid "Method for creating ZIP-file archives" +msgstr "" + +#: ../inc/class-page-settings.php:277 +msgid "" +"Auto = Uses PHP class ZipArchive if available; otherwise uses PclZip.
ZipArchive = Uses less memory, but many open files at a time.
PclZip " +"= Uses more memory, but only 2 open files at a time." +msgstr "" + +#: ../inc/class-page-settings.php:278 +msgid "Auto" +msgstr "" + +#: ../inc/class-page-settings.php:279 +msgid "ZipArchive" +msgstr "" + +#: ../inc/class-page-settings.php:280 +msgid "PclZip" +msgstr "" + +#: ../inc/class-page-settings.php:288 +msgid "Key to start jobs externally with an URL" +msgstr "" + +#: ../inc/class-page-settings.php:291 +msgid "" +"empty = deactivated. Will be used to protect job starts from unauthorized " +"person." +msgstr "" + +#: ../inc/class-page-settings.php:296 ../inc/class-page-settings.php:299 +msgid "Reduce server load" +msgstr "" + +#: ../inc/class-page-settings.php:302 +msgid "" +"This adds short pauses to the process. Can be used to reduce the CPU load." +"
Disabled = off
minimum = shortest sleep
medium = middle " +"between minimum and maximum
maximum = longest sleep
" +msgstr "" + +#: ../inc/class-page-settings.php:303 +msgid "disabled" +msgstr "" + +#: ../inc/class-page-settings.php:304 +msgid "minimum" +msgstr "" + +#: ../inc/class-page-settings.php:305 +msgid "medium" +msgstr "" + +#: ../inc/class-page-settings.php:306 +msgid "maximum" +msgstr "" + +#: ../inc/class-page-settings.php:313 +msgid "Empty output on working" +msgstr "" + +#: ../inc/class-page-settings.php:316 ../inc/class-page-settings.php:321 +msgid "Enable an empty Output on backup working." +msgstr "" + +#: ../inc/class-page-settings.php:319 +msgid "" +"This do an empty output on job working. This can help in some situations or " +"can brake the working. You must test it." +msgstr "" + +#: ../inc/class-page-settings.php:332 +#, php-format +msgid "Authentication for %s" +msgstr "" + +#: ../inc/class-page-settings.php:333 +msgid "" +"Is your blog protected with HTTP basic authentication (.htaccess)? Or did " +"you use a Plugin to secure wp-cron.php than use the authentication methods " +"below" +msgstr "" + +#: ../inc/class-page-settings.php:339 ../inc/class-page-settings.php:342 +msgid "Authentication method" +msgstr "" + +#: ../inc/class-page-settings.php:346 +msgid "Basic auth" +msgstr "" + +#: ../inc/class-page-settings.php:347 +msgid "WordPress User" +msgstr "" + +#: ../inc/class-page-settings.php:348 +msgid "Query argument" +msgstr "" + +#: ../inc/class-page-settings.php:355 +msgid "Basic Auth Username:" +msgstr "" + +#: ../inc/class-page-settings.php:363 +msgid "Basic Auth Password:" +msgstr "" + +#: ../inc/class-page-settings.php:370 ../inc/class-page-settings.php:373 +msgid "Select WordPress User" +msgstr "" + +#: ../inc/class-page-settings.php:389 +msgid "Query arg key=value:" +msgstr "" + +#: ../inc/class-page-settings.php:409 ../inc/class-page-settings.php:410 +msgid "Setting" +msgstr "" + +#: ../inc/class-page-settings.php:409 ../inc/class-page-settings.php:410 +msgid "Value" +msgstr "" + +#: ../inc/class-page-settings.php:411 +msgid "WordPress version" +msgstr "" + +#: ../inc/class-page-settings.php:413 +msgid "BackWPup version" +msgstr "" + +#: ../inc/class-page-settings.php:413 +msgid "Get pro." +msgstr "" + +#: ../inc/class-page-settings.php:415 +msgid "BackWPup Pro version" +msgstr "" + +#: ../inc/class-page-settings.php:416 +msgid "PHP version" +msgstr "" + +#: ../inc/class-page-settings.php:417 +msgid "MySQL version" +msgstr "" + +#: ../inc/class-page-settings.php:420 ../inc/class-page-settings.php:424 +msgid "cURL version" +msgstr "" + +#: ../inc/class-page-settings.php:421 +msgid "cURL SSL version" +msgstr "" + +#: ../inc/class-page-settings.php:424 +msgid "unavailable" +msgstr "" + +#: ../inc/class-page-settings.php:426 +msgid "WP-Cron url:" +msgstr "" + +#: ../inc/class-page-settings.php:428 +msgid "Server self connect:" +msgstr "" + +#: ../inc/class-page-settings.php:437 ../inc/pro/class-wizard-systemtest.php:183 +#, php-format +msgid "The BackWPup HTTP response header returns a false value: \"%s\"" +msgstr "" + +#: ../inc/class-page-settings.php:440 +msgid "Response Test O.K." +msgstr "" + +#: ../inc/class-page-settings.php:445 +msgid "Temp folder:" +msgstr "" + +#: ../inc/class-page-settings.php:447 +#, php-format +msgid "Temp folder %s doesn't exist." +msgstr "" + +#: ../inc/class-page-settings.php:449 +#, php-format +msgid "Temporary folder %s is not writable." +msgstr "" + +#: ../inc/class-page-settings.php:455 +msgid "Log folder:" +msgstr "" + +#: ../inc/class-page-settings.php:457 +#, php-format +msgid "Logs folder %s not exist." +msgstr "" + +#: ../inc/class-page-settings.php:459 +#, php-format +msgid "Log folder %s is not writable." +msgstr "" + +#: ../inc/class-page-settings.php:464 +msgid "Server" +msgstr "" + +#: ../inc/class-page-settings.php:465 +msgid "Operating System" +msgstr "" + +#: ../inc/class-page-settings.php:466 +msgid "PHP SAPI" +msgstr "" + +#: ../inc/class-page-settings.php:467 +msgid "Current PHP user" +msgstr "" + +#: ../inc/class-page-settings.php:468 ../inc/class-page-settings.php:472 .. +#: /inc/class-page-settings.php:476 +msgid "On" +msgstr "" + +#: ../inc/class-page-settings.php:468 ../inc/class-page-settings.php:474 .. +#: /inc/class-page-settings.php:478 +msgid "Off" +msgstr "" + +#: ../inc/class-page-settings.php:469 +msgid "Safe Mode" +msgstr "" + +#: ../inc/class-page-settings.php:470 +msgid "Maximum execution time" +msgstr "" + +#: ../inc/class-page-settings.php:472 ../inc/class-page-settings.php:474 +msgid "Alternative WP Cron" +msgstr "" + +#: ../inc/class-page-settings.php:476 ../inc/class-page-settings.php:478 +msgid "Disabled WP Cron" +msgstr "" + +#: ../inc/class-page-settings.php:480 ../inc/class-page-settings.php:482 +msgid "CHMOD Dir" +msgstr "" + +#: ../inc/class-page-settings.php:484 +msgid "Server Time" +msgstr "" + +#: ../inc/class-page-settings.php:485 +msgid "Blog Time" +msgstr "" + +#: ../inc/class-page-settings.php:486 +msgid "Blog Timezone" +msgstr "" + +#: ../inc/class-page-settings.php:487 +msgid "Blog Time offset" +msgstr "" + +#: ../inc/class-page-settings.php:487 +#, php-format +msgid "%s hours" +msgstr "" + +#: ../inc/class-page-settings.php:488 +msgid "Blog language" +msgstr "" + +#: ../inc/class-page-settings.php:489 +msgid "MySQL Client encoding" +msgstr "" + +#: ../inc/class-page-settings.php:492 +msgid "Blog charset" +msgstr "" + +#: ../inc/class-page-settings.php:493 +msgid "PHP Memory limit" +msgstr "" + +#: ../inc/class-page-settings.php:494 +msgid "WP memory limit" +msgstr "" + +#: ../inc/class-page-settings.php:495 +msgid "WP maximum memory limit" +msgstr "" + +#: ../inc/class-page-settings.php:496 +msgid "Memory in use" +msgstr "" + +#: ../inc/class-page-settings.php:501 +msgid "Disabled PHP Functions:" +msgstr "" + +#: ../inc/class-page-settings.php:506 +msgid "Loaded PHP Extensions:" +msgstr "" + +#: ../inc/class-page-settings.php:518 +msgid "Save Changes" +msgstr "" + +#: ../inc/class-page-settings.php:520 +msgid "Reset all settings to default" +msgstr "" + +#: ../inc/class-page-backups.php:177 +msgid "No files could be found. (List will be generated during next backup.)" +msgstr "" + +#: ../inc/class-page-backups.php:223 +msgid "Change destination" +msgstr "" + +#: ../inc/class-page-backups.php:263 +msgid "File" +msgstr "" + +#: ../inc/class-page-backups.php:308 +msgid "" +"You are about to delete this backup archive. \n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" + +#: ../inc/class-page-backups.php:339 +msgid "?" +msgstr "" + +#: ../inc/class-page-backups.php:418 +msgid "Backup Files" +msgstr "" + +#: ../inc/class-page-backups.php:466 +#, php-format +msgid "%s Manage Backup Archives" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:13 +msgid "DB Check" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:14 +msgid "Check database tables" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:35 ../inc/pro/class-jobtype-dbcheck.php:16 +msgid "Settings for database check" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:39 +msgid "WordPress tables only" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:44 +msgid "Check WordPress database tables only" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:49 +msgid "Repair" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:54 ../inc/pro/class-jobtype-dbcheck.php:25 +msgid "Try to repair defect table" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:79 +#, php-format +msgid "%d. Trying to check database …" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:111 +#, php-format +msgid "Table %1$s is a view. Not checked." +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:116 +#, php-format +msgid "Table %1$s is not a MyISAM/InnoDB table. Not checked." +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:124 ../inc/class-jobtype-dbcheck.php:127 .. +#: /inc/class-jobtype-dbcheck.php:129 +#, php-format +msgid "Result of table check for %1$s is: %2$s" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:135 ../inc/class-jobtype-dbcheck.php:137 .. +#: /inc/class-jobtype-dbcheck.php:139 +#, php-format +msgid "Result of table repair for %1$s is: %2$s" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:145 +msgid "Database check done!" +msgstr "" + +#: ../inc/class-jobtype-dbcheck.php:148 +msgid "No tables to check." +msgstr "" + +#: ../inc/class-mysqldump.php:60 +msgid "No MySQLi extension found. Please install it." +msgstr "" + +#: ../inc/class-mysqldump.php:98 +msgid "Cannot init MySQLi database connection" +msgstr "" + +#: ../inc/class-mysqldump.php:103 +msgid "Setting of MySQLi connection timeout failed" +msgstr "" + +#: ../inc/class-mysqldump.php:108 ../inc/pro/class-jobtype-dbdump.php:778 +#, php-format +msgid "Cannot connect to MySQL database %1$d: %2$s" +msgstr "" + +#: ../inc/class-mysqldump.php:115 +#, php-format +msgctxt "Database Charset" +msgid "Cannot set DB charset to %s" +msgstr "" + +#: ../inc/class-mysqldump.php:143 +msgid "Cannot open SQL backup file" +msgstr "" + +#: ../inc/class-mysqldump.php:150 ../inc/class-mysqldump.php:161 ../inc/class- +#: mysqldump.php:254 ../inc/class-mysqldump.php:267 ../inc/class-mysqldump.php: +#: 282 ../inc/class-mysqldump.php:295 ../inc/class-mysqldump.php:341 ../inc/class- +#: mysqldump.php:365 ../inc/class-mysqldump.php:403 ../inc/class-mysqldump.php: +#: 460 ../inc/pro/class-jobtype-dbdump.php:790 ../inc/pro/class-jobtype-dbdump. +#: php:804 ../inc/pro/class-jobtype-dbdump.php:852 ../inc/pro/class-jobtype- +#: dbdump.php:871 ../inc/pro/class-jobtype-dbdump.php:914 +#, php-format +msgid "Database error %1$s for query %2$s" +msgstr "" + +#: ../inc/class-mysqldump.php:439 +#, php-format +msgid "Start for table backup is not correctly set: %1$s " +msgstr "" + +#: ../inc/class-mysqldump.php:443 +#, php-format +msgid "Length for table backup is not correctly set: %1$s " +msgstr "" + +#: ../inc/class-mysqldump.php:518 +msgid "Error while writing file!" +msgstr "" + +#: ../inc/class-job.php:176 +msgid "Starting job" +msgstr "" + +#: ../inc/class-job.php:193 +msgid "Job Start" +msgstr "" + +#: ../inc/class-job.php:213 +msgid "Creates manifest file" +msgstr "" + +#: ../inc/class-job.php:235 +msgid "Creates archive" +msgstr "" + +#: ../inc/class-job.php:274 +msgid "End of Job" +msgstr "" + +#: ../inc/class-job.php:291 +#, php-format +msgid "BackWPup log for %1$s from %2$s at %3$s" +msgstr "" + +#: ../inc/class-job.php:310 +#, php-format +msgctxt "Plugin name; Plugin Version; plugin url" +msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH" +msgstr "" + +#: ../inc/class-job.php:312 +#, php-format +msgctxt "WordPress Version; Blog url" +msgid "[INFO] WordPress %1$s on %2$s" +msgstr "" + +#: ../inc/class-job.php:318 +#, php-format +msgid "[INFO] BackWPup job: %1$s" +msgstr "" + +#: ../inc/class-job.php:321 +#, php-format +msgid "[INFO] Runs with user: %1$s (%2$d) " +msgstr "" + +#: ../inc/class-job.php:339 ../inc/class-job.php:351 +#, php-format +msgid "[INFO] Cron: %s; Next: %s " +msgstr "" + +#: ../inc/class-job.php:343 +msgid "[INFO] BackWPup job start with link is active" +msgstr "" + +#: ../inc/class-job.php:346 +msgid "[INFO] BackWPup job start with EasyCron.com" +msgstr "" + +#: ../inc/class-job.php:355 +msgid "[INFO] BackWPup no automatic job start configured" +msgstr "" + +#: ../inc/class-job.php:359 +msgid "[INFO] BackWPup job started from wp-cron" +msgstr "" + +#: ../inc/class-job.php:361 +msgid "[INFO] BackWPup job started manually" +msgstr "" + +#: ../inc/class-job.php:363 +msgid "[INFO] BackWPup job started from external url" +msgstr "" + +#: ../inc/class-job.php:365 +msgid "[INFO] BackWPup job started form commandline interface" +msgstr "" + +#: ../inc/class-job.php:374 +msgid "[INFO] PHP ver.:" +msgstr "" + +#: ../inc/class-job.php:375 +#, php-format +msgid "[INFO] Maximum PHP script execution time is %1$d seconds" +msgstr "" + +#: ../inc/class-job.php:379 +#, php-format +msgid "[INFO] Script restart time is configured to %1$d seconds" +msgstr "" + +#: ../inc/class-job.php:382 +#, php-format +msgid "[INFO] MySQL ver.: %s" +msgstr "" + +#: ../inc/class-job.php:384 +#, php-format +msgid "[INFO] Web Server: %s" +msgstr "" + +#: ../inc/class-job.php:387 +#, php-format +msgid "[INFO] curl ver.: %1$s; %2$s" +msgstr "" + +#: ../inc/class-job.php:389 +#, php-format +msgid "[INFO] Temp folder is: %s" +msgstr "" + +#: ../inc/class-job.php:396 +#, php-format +msgid "[INFO] Logfile is: %s" +msgstr "" + +#: ../inc/class-job.php:403 +#, php-format +msgid "[INFO] Backup file is: %s" +msgstr "" + +#: ../inc/class-job.php:405 +#, php-format +msgid "[INFO] Backup type is: %s" +msgstr "" + +#: ../inc/class-job.php:413 +msgid "Could not write log file" +msgstr "" + +#: ../inc/class-job.php:425 +msgid "No destination correctly defined for backup! Please correct job settings." +msgstr "" + +#: ../inc/class-job.php:647 +msgid "Wrong BackWPup JobID" +msgstr "" + +#: ../inc/class-job.php:660 +msgid "A BackWPup job is already running" +msgstr "" + +#: ../inc/class-job.php:752 +msgid "Job restarts due to inactivity for more than 5 minutes." +msgstr "" + +#: ../inc/class-job.php:877 +msgid "Step aborted: too many attempts!" +msgstr "" + +#: ../inc/class-job.php:968 +#, php-format +msgid "Restart after %1$d seconds." +msgstr "" + +#: ../inc/class-job.php:1168 +#, php-format +msgid "Signal \"%s\" is sent to script!" +msgstr "" + +#: ../inc/class-job.php:1183 ../inc/class-job.php:1196 +#, php-format +msgid "System: %s" +msgstr "" + +#: ../inc/class-job.php:1211 +#, php-format +msgid "Exception caught in %1$s: %2$s" +msgstr "" + +#: ../inc/class-job.php:1277 +msgid "DEPRECATED:" +msgstr "" + +#: ../inc/class-job.php:1280 +msgid "STRICT NOTICE:" +msgstr "" + +#: ../inc/class-job.php:1285 +msgid "RECOVERABLE ERROR:" +msgstr "" + +#: ../inc/class-job.php:1435 +msgid "Cannot write progress to working file. Job will be aborted." +msgstr "" + +#: ../inc/class-job.php:1453 +msgid "Aborted by user!" +msgstr "" + +#: ../inc/class-job.php:1480 +#, php-format +msgid "One old log deleted" +msgid_plural "%d old logs deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../inc/class-job.php:1488 +#, php-format +msgid "" +"Job finished with warnings in %s seconds. Please resolve them for correct " +"execution." +msgstr "" + +#: ../inc/class-job.php:1535 +msgid "SUCCESSFUL" +msgstr "" + +#: ../inc/class-job.php:1538 +msgid "WARNING" +msgstr "" + +#: ../inc/class-job.php:1542 +msgid "ERROR" +msgstr "" + +#: ../inc/class-job.php:1546 +#, php-format +msgid "[%3$s] BackWPup log %1$s: %2$s" +msgstr "" + +#: ../inc/class-job.php:1920 +#, php-format +msgctxt "Folder name" +msgid "Folder %s not exists" +msgstr "" + +#: ../inc/class-job.php:1925 +#, php-format +msgctxt "Folder name" +msgid "Folder %s not readable" +msgstr "" + +#: ../inc/class-job.php:1944 +#, php-format +msgid "Link \"%s\" not following." +msgstr "" + +#: ../inc/class-job.php:1946 +#, php-format +msgid "File \"%s\" is not readable!" +msgstr "" + +#: ../inc/class-job.php:1950 +#, php-format +msgid "" +"File size of “%s” cannot be retrieved. File might be too large and will not " +"be added to queue." +msgstr "" + +#: ../inc/class-job.php:1970 +#, php-format +msgid "%d. Trying to generate a manifest file …" +msgstr "" + +#: ../inc/class-job.php:2020 +msgid "You may have noticed the manifest.json file in this archive." +msgstr "" + +#: ../inc/class-job.php:2021 +msgid "manifest.json might be needed for later restoring a backup from this archive." +msgstr "" + +#: ../inc/class-job.php:2022 +msgid "" +"Please leave manifest.json untouched and in place. Otherwise it is safe to " +"be ignored." +msgstr "" + +#: ../inc/class-job.php:2032 +#, php-format +msgid "Added manifest.json file with %1$s to backup file list." +msgstr "" + +#: ../inc/class-job.php:2062 +#, php-format +msgid "%d. Trying to create backup archive …" +msgstr "" + +#: ../inc/class-job.php:2069 +#, php-format +msgctxt "Archive compression method" +msgid "Compressing files as %s. Please be patient, this may take a moment." +msgstr "" + +#: ../inc/class-job.php:2076 +msgid "Adding Extra files to Archive" +msgstr "" + +#: ../inc/class-job.php:2087 ../inc/class-job.php:2145 +msgid "Cannot create backup archive correctly. Aborting creation." +msgstr "" + +#: ../inc/class-job.php:2102 +#, php-format +msgid "Archiving Folder: %s" +msgstr "" + +#: ../inc/class-job.php:2154 +msgid "Backup archive created." +msgstr "" + +#: ../inc/class-job.php:2167 +msgid "" +"The Backup archive will be too large for for file operations with this PHP " +"Version. You might want to consider splitting the backup job in multiple " +"jobs with less files each." +msgstr "" + +#: ../inc/class-job.php:2171 +#, php-format +msgid "Archive size is %s." +msgstr "" + +#: ../inc/class-job.php:2174 +#, php-format +msgid "%1$d Files with %2$s in Archive." +msgstr "" + +#: ../inc/class-install.php:83 +msgid "BackWPup Admin" +msgstr "" + +#: ../inc/class-install.php:97 +msgid "BackWPup jobs checker" +msgstr "" + +#: ../inc/class-install.php:111 +msgid "BackWPup jobs helper" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:13 +msgid "XML export" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:46 +msgid "Items to export" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:49 ../inc/pro/class-jobtype-wpexp.php:20 +msgid "All content" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:50 ../inc/pro/class-jobtype-wpexp.php:21 +msgid "Posts" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:51 ../inc/pro/class-jobtype-wpexp.php:22 +msgid "Pages" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:61 +msgid "XML Export file name" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:69 ../inc/class-jobtype-wpplugin.php:53 +msgid "File compression" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:79 ../inc/class-jobtype-wpexp.php:81 .. +#: /inc/class-jobtype-wpplugin.php:63 ../inc/class-jobtype-wpplugin.php:65 +msgid "BZip2" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:111 +#, php-format +msgid "%d. Trying to create a WordPress export to XML file …" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:126 +#, php-format +msgid "WP Export: Post type “%s” does not allow export." +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:171 ../inc/class-jobtype-wpexp.php:185 .. +#: /inc/class-jobtype-wpexp.php:214 ../inc/class-jobtype-wpexp.php:235 .. +#: /inc/class-jobtype-wpexp.php:268 ../inc/class-jobtype-wpexp.php:288 .. +#: /inc/class-jobtype-wpexp.php:378 ../inc/class-jobtype-wpexp.php:387 +msgid "WP Export file could not written." +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:402 +msgid "Check WP Export file …" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:422 +#, php-format +msgid "XML WARNING (%s): %s" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:425 +#, php-format +msgid "XML RECOVERABLE (%s): %s" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:428 +#, php-format +msgid "XML ERROR (%s): %s" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:438 +msgid "There was an error when reading this WXR file" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:444 ../inc/class-jobtype-wpexp.php:451 +msgid "This does not appear to be a WXR file, missing/invalid WXR version number" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:460 +msgid "WP Export file is a valid WXR file." +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:462 +msgid "" +"WP Export file can not checked, because no XML extension loaded with the " +"file can checked." +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:474 ../inc/pro/class-jobtype-dbdump.php:714 +msgid "Compressing file …" +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:481 ../inc/pro/class-jobtype-dbdump.php:721 +msgid "Compressing done." +msgstr "" + +#: ../inc/class-jobtype-wpexp.php:500 +#, php-format +msgid "Added XML export \"%1$s\" with %2$s to backup file list." +msgstr "" + +#: ../inc/class-jobtype-wpplugin.php:13 +msgid "Plugins" +msgstr "" + +#: ../inc/class-jobtype-wpplugin.php:14 +msgid "Installed plugins list" +msgstr "" + +#: ../inc/class-jobtype-wpplugin.php:45 +msgid "Plugin list file name" +msgstr "" + +#: ../inc/class-jobtype-wpplugin.php:93 +#, php-format +msgid "%d. Trying to generate a file with installed plugin names …" +msgstr "" + +#: ../inc/class-jobtype-wpplugin.php:121 +msgid "All plugin information:" +msgstr "" + +#: ../inc/class-jobtype-wpplugin.php:123 +#, php-format +msgid "from %s" +msgstr "" + +#: ../inc/class-jobtype-wpplugin.php:125 +msgid "Active plugins:" +msgstr "" + +#: ../inc/class-jobtype-wpplugin.php:131 +msgid "Inactive plugins:" +msgstr "" + +#: ../inc/class-jobtype-wpplugin.php:138 ../inc/pro/class-jobtype-dbdump.php:771 +msgid "Can not open target file for writing." +msgstr "" + +#: ../inc/class-jobtype-wpplugin.php:145 +#, php-format +msgid "Added plugin list file \"%1$s\" with %2$s to backup file list." +msgstr "" + +#: ../inc/class-page-editjob.php:87 ../inc/class-page-editjob.php:444 .. +#: /inc/class-option.php:107 +msgid "New Job" +msgstr "" + +#: ../inc/class-page-editjob.php:88 +#, php-format +msgid "Job with ID %d" +msgstr "" + +#: ../inc/class-page-editjob.php:194 +#, php-format +msgid "Changes for job %s saved." +msgstr "" + +#: ../inc/class-page-editjob.php:195 +msgid "Jobs overview" +msgstr "" + +#: ../inc/class-page-editjob.php:332 +msgid "Working as Cron schedule:" +msgstr "" + +#: ../inc/class-page-editjob.php:341 +#, php-format +msgid "ATTENTION: Job runs every %d minutes!" +msgstr "" + +#: ../inc/class-page-editjob.php:347 +#, php-format +msgid "ATTENTION: Job runs every %d hours!" +msgstr "" + +#: ../inc/class-page-editjob.php:351 +msgid "ATTENTION: Can't calculate cron!" +msgstr "" + +#: ../inc/class-page-editjob.php:354 +msgid "Next runtime:" +msgstr "" + +#: ../inc/class-page-editjob.php:386 +#, php-format +msgid "%1$s Job: %2$s" +msgstr "" + +#: ../inc/class-page-editjob.php:389 +msgid "Schedule" +msgstr "" + +#: ../inc/class-page-editjob.php:404 +#, php-format +msgid "To: %s" +msgstr "" + +#: ../inc/class-page-editjob.php:442 +msgid "Please name this job." +msgstr "" + +#: ../inc/class-page-editjob.php:450 +msgid "Job Tasks" +msgstr "" + +#: ../inc/class-page-editjob.php:454 ../inc/pro/class-wizard-job.php:235 +msgid "This job is a …" +msgstr "" + +#: ../inc/class-page-editjob.php:457 ../inc/pro/class-wizard-job.php:238 +msgid "Job tasks" +msgstr "" + +#: ../inc/class-page-editjob.php:475 +msgid "Backup File Creation" +msgstr "" + +#: ../inc/class-page-editjob.php:480 ../inc/class-page-editjob.php:483 .. +#: /inc/pro/class-wizard-job.php:380 ../inc/pro/class-wizard-job.php:383 +msgid "Backup type" +msgstr "" + +#: ../inc/class-page-editjob.php:487 +msgid "Synchronize file by file to destination" +msgstr "" + +#: ../inc/class-page-editjob.php:491 ../inc/pro/class-wizard-job.php:391 +msgid "Create a backup archive" +msgstr "" + +#: ../inc/class-page-editjob.php:497 +msgid "Archive name" +msgstr "" + +#: ../inc/class-page-editjob.php:502 +msgid "Replacement patterns:" +msgstr "" + +#: ../inc/class-page-editjob.php:503 +#, php-format +msgid "%d = Two digit day of the month, with leading zeros" +msgstr "" + +#: ../inc/class-page-editjob.php:504 +msgid "%j = Day of the month, without leading zeros" +msgstr "" + +#: ../inc/class-page-editjob.php:505 +msgid "%m = Day of the month, with leading zeros" +msgstr "" + +#: ../inc/class-page-editjob.php:506 +#, php-format +msgid "%n = Representation of the month (without leading zeros)" +msgstr "" + +#: ../inc/class-page-editjob.php:507 +msgid "%Y = Four digit representation for the year" +msgstr "" + +#: ../inc/class-page-editjob.php:508 +msgid "%y = Two digit representation of the year" +msgstr "" + +#: ../inc/class-page-editjob.php:509 +#, php-format +msgid "%a = Lowercase ante meridiem (am) and post meridiem (pm)" +msgstr "" + +#: ../inc/class-page-editjob.php:510 +#, php-format +msgid "%A = Uppercase ante meridiem (AM) and post meridiem (PM)" +msgstr "" + +#: ../inc/class-page-editjob.php:511 +#, php-format +msgid "%B = Swatch Internet Time" +msgstr "" + +#: ../inc/class-page-editjob.php:512 +#, php-format +msgid "%g = Hour in 12-hour format, without leading zeros" +msgstr "" + +#: ../inc/class-page-editjob.php:513 +#, php-format +msgid "%G = Hour in 24-hour format, without leading zeros" +msgstr "" + +#: ../inc/class-page-editjob.php:514 +msgid "%h = Hour in 12-hour format, with leading zeros" +msgstr "" + +#: ../inc/class-page-editjob.php:515 +msgid "%H = Hour in 24-hour format, with leading zeros" +msgstr "" + +#: ../inc/class-page-editjob.php:516 +#, php-format +msgid "%i = Two digit representation of the minute" +msgstr "" + +#: ../inc/class-page-editjob.php:517 +#, php-format +msgid "%s = Two digit representation of the second" +msgstr "" + +#: ../inc/class-page-editjob.php:529 ../inc/class-page-editjob.php:532 +msgid "Archive Format" +msgstr "" + +#: ../inc/class-page-editjob.php:535 +msgid "" +"PHP Zip functions will be used if available (needs less memory). Otherwise " +"the PCLZip class will be used." +msgstr "" + +#: ../inc/class-page-editjob.php:535 ../inc/class-page-editjob.php:537 .. +#: /inc/pro/class-wizard-job.php:404 ../inc/pro/class-wizard-job.php:406 +msgid "Zip" +msgstr "" + +#: ../inc/class-page-editjob.php:537 ../inc/class-page-editjob.php:542 .. +#: /inc/class-page-editjob.php:546 +msgid "Disabled due to missing PHP function." +msgstr "" + +#: ../inc/class-page-editjob.php:538 +msgid "A tarballed, not compressed archive (fast and less memory)" +msgstr "" + +#: ../inc/class-page-editjob.php:538 ../inc/pro/class-wizard-job.php:407 +msgid "Tar" +msgstr "" + +#: ../inc/class-page-editjob.php:540 +msgid "A tarballed, GZipped archive (fast and less memory)" +msgstr "" + +#: ../inc/class-page-editjob.php:540 ../inc/class-page-editjob.php:542 .. +#: /inc/pro/class-wizard-job.php:409 ../inc/pro/class-wizard-job.php:411 +msgid "Tar GZip" +msgstr "" + +#: ../inc/class-page-editjob.php:544 +msgid "A tarballed, BZipped archive (fast and less memory)" +msgstr "" + +#: ../inc/class-page-editjob.php:544 ../inc/class-page-editjob.php:546 .. +#: /inc/pro/class-wizard-job.php:413 ../inc/pro/class-wizard-job.php:415 +msgid "Tar BZip2" +msgstr "" + +#: ../inc/class-page-editjob.php:552 +msgid "Job Destination" +msgstr "" + +#: ../inc/class-page-editjob.php:556 ../inc/class-page-editjob.php:559 +msgid "Where should your backup file be stored?" +msgstr "" + +#: ../inc/class-page-editjob.php:580 +msgid "Log Files" +msgstr "" + +#: ../inc/class-page-editjob.php:584 +msgid "Send log to email address" +msgstr "" + +#: ../inc/class-page-editjob.php:588 +msgid "" +"Leave empty to not have log sent. Or separate with , for more than one " +"receiver." +msgstr "" + +#: ../inc/class-page-editjob.php:592 +msgid "Email FROM field" +msgstr "" + +#: ../inc/class-page-editjob.php:596 +msgid "Email \"From\" field (Name < you@your-email-address.tld >)" +msgstr "" + +#: ../inc/class-page-editjob.php:600 +msgid "Errors only" +msgstr "" + +#: ../inc/class-page-editjob.php:605 +msgid "Send email with log only when errors occur during job execution." +msgstr "" + +#: ../inc/class-page-editjob.php:616 +msgid "Job Schedule" +msgstr "" + +#: ../inc/class-page-editjob.php:620 ../inc/class-page-editjob.php:623 +msgid "Start job" +msgstr "" + +#: ../inc/class-page-editjob.php:627 +msgid "manually only" +msgstr "" + +#: ../inc/class-page-editjob.php:631 +msgid "with WordPress cron" +msgstr "" + +#: ../inc/class-page-editjob.php:642 +msgid "Use EasyCron.com Cron jobs." +msgstr "" + +#: ../inc/class-page-editjob.php:642 +msgid "" +"with EasyCron.com" +msgstr "" + +#: ../inc/class-page-editjob.php:645 +#, php-format +msgid "" +"Setup Account / API Key first." +msgstr "" + +#: ../inc/class-page-editjob.php:655 +msgid "" +"Copy the link for an external start. This option has to be activated to make " +"the link work." +msgstr "" + +#: ../inc/class-page-editjob.php:655 +msgid "with a link" +msgstr "" + +#: ../inc/class-page-editjob.php:661 +msgid "Start job with CLI" +msgstr "" + +#: ../inc/class-page-editjob.php:662 +msgid "" +"Use WP-CLI commands to let the job start with the server’s cron on command " +"line interface." +msgstr "" + +#: ../inc/class-page-editjob.php:664 +msgid "" +"Use WP-CLI to run jobs from commandline." +"." +msgstr "" + +#: ../inc/class-page-editjob.php:669 +msgid "Schedule execution time" +msgstr "" + +#: ../inc/class-page-editjob.php:673 ../inc/class-page-editjob.php:676 +msgid "Scheduler type" +msgstr "" + +#: ../inc/class-page-editjob.php:680 +msgid "basic" +msgstr "" + +#: ../inc/class-page-editjob.php:684 +msgid "advanced" +msgstr "" + +#: ../inc/class-page-editjob.php:713 ../inc/class-page-editjob.php:781 .. +#: /inc/pro/class-wizard-job.php:298 +msgid "Scheduler" +msgstr "" + +#: ../inc/class-page-editjob.php:723 ../inc/pro/class-wizard-job.php:308 +msgid "Hour" +msgstr "" + +#: ../inc/class-page-editjob.php:726 ../inc/pro/class-wizard-job.php:311 +msgid "Minute" +msgstr "" + +#: ../inc/class-page-editjob.php:730 ../inc/pro/class-wizard-job.php:315 +msgid "monthly" +msgstr "" + +#: ../inc/class-page-editjob.php:732 ../inc/pro/class-wizard-job.php:317 +msgid "on" +msgstr "" + +#: ../inc/class-page-editjob.php:742 ../inc/pro/class-wizard-job.php:327 +msgid "weekly" +msgstr "" + +#: ../inc/class-page-editjob.php:744 ../inc/class-page-editjob.php:851 .. +#: /inc/pro/class-wizard-job.php:329 +msgid "Sunday" +msgstr "" + +#: ../inc/class-page-editjob.php:745 ../inc/class-page-editjob.php:852 .. +#: /inc/pro/class-wizard-job.php:330 +msgid "Monday" +msgstr "" + +#: ../inc/class-page-editjob.php:746 ../inc/class-page-editjob.php:853 .. +#: /inc/pro/class-wizard-job.php:331 +msgid "Tuesday" +msgstr "" + +#: ../inc/class-page-editjob.php:747 ../inc/class-page-editjob.php:854 .. +#: /inc/pro/class-wizard-job.php:332 +msgid "Wednesday" +msgstr "" + +#: ../inc/class-page-editjob.php:748 ../inc/class-page-editjob.php:855 .. +#: /inc/pro/class-wizard-job.php:333 +msgid "Thursday" +msgstr "" + +#: ../inc/class-page-editjob.php:749 ../inc/class-page-editjob.php:856 .. +#: /inc/pro/class-wizard-job.php:334 +msgid "Friday" +msgstr "" + +#: ../inc/class-page-editjob.php:750 ../inc/class-page-editjob.php:857 .. +#: /inc/pro/class-wizard-job.php:335 +msgid "Saturday" +msgstr "" + +#: ../inc/class-page-editjob.php:760 ../inc/pro/class-wizard-job.php:345 +msgid "daily" +msgstr "" + +#: ../inc/class-page-editjob.php:770 ../inc/pro/class-wizard-job.php:355 +msgid "hourly" +msgstr "" + +#: ../inc/class-page-editjob.php:784 +msgid "Minutes:" +msgstr "" + +#: ../inc/class-page-editjob.php:786 ../inc/class-page-editjob.php:799 .. +#: /inc/class-page-editjob.php:811 ../inc/class-page-editjob.php:825 ../inc/class- +#: page-editjob.php:847 +msgid "Any (*)" +msgstr "" + +#: ../inc/class-page-editjob.php:796 +msgid "Hours:" +msgstr "" + +#: ../inc/class-page-editjob.php:809 +msgid "Day of Month:" +msgstr "" + +#: ../inc/class-page-editjob.php:823 +msgid "Month:" +msgstr "" + +#: ../inc/class-page-editjob.php:829 +msgid "January" +msgstr "" + +#: ../inc/class-page-editjob.php:830 +msgid "February" +msgstr "" + +#: ../inc/class-page-editjob.php:831 +msgid "March" +msgstr "" + +#: ../inc/class-page-editjob.php:832 +msgid "April" +msgstr "" + +#: ../inc/class-page-editjob.php:833 +msgid "May" +msgstr "" + +#: ../inc/class-page-editjob.php:834 +msgid "June" +msgstr "" + +#: ../inc/class-page-editjob.php:835 +msgid "July" +msgstr "" + +#: ../inc/class-page-editjob.php:836 +msgid "August" +msgstr "" + +#: ../inc/class-page-editjob.php:837 +msgid "September" +msgstr "" + +#: ../inc/class-page-editjob.php:838 +msgid "October" +msgstr "" + +#: ../inc/class-page-editjob.php:839 +msgid "November" +msgstr "" + +#: ../inc/class-page-editjob.php:840 +msgid "December" +msgstr "" + +#: ../inc/class-page-editjob.php:845 +msgid "Day of Week:" +msgstr "" + +#: ../inc/class-page-editjob.php:881 +msgid "Save changes" +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:17 +msgid "Account Name:" +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:19 ../inc/pro/class-destination-s3-v1. +#: php:36 ../inc/pro/class-destination-s3.php:38 ../inc/pro/class-destination- +#: glacier.php:165 +msgid "Access Key:" +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:21 ../inc/pro/class-destination-rsc. +#: php:38 +msgid "Container:" +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:28 ../inc/pro/class-destination-rsc. +#: php:47 +msgid "Create container:" +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:30 ../inc/pro/class-destination-rsc. +#: php:49 +msgid "Folder in container:" +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:101 +#, php-format +msgid "%d. Trying to sync files with Microsoft Azure (Blob) …" +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:136 +msgid "Retrieving file list from MS Azure." +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:152 +msgid "Upload changed files to MS Azure." +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:164 +#, php-format +msgid "File %s uploaded to MS Azure." +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:190 +#, php-format +msgid "Extra file %s uploaded to MS Azure." +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:203 +msgid "Delete nonexistent files on MS Azure." +msgstr "" + +#: ../inc/pro/class-destination-msazure.php:206 +#, php-format +msgid "File %s deleted from MS Azure." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:14 +msgid "System Test" +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:15 +msgid "Wizard to test if BackWPup can work properly" +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:32 +msgid "Run tests" +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:45 +msgid "Environment" +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:45 +msgid "System Environment" +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:59 +msgid "Test if BackWPup can work without problems." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:99 +#, php-format +msgid "" +"You must run WordPress version 3.4 or higher to use this plugin. You are " +"using version %s now." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:104 +#, php-format +msgid "" +"You must run PHP version 5.2.6 or higher to use this plugin. You are using " +"version %s now." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:108 +#, php-format +msgid "" +"We recommend to run a PHP version above 5.3.2 to get the full plugin " +"functionality. You are using version %s now." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:113 +#, php-format +msgid "" +"You must have the MySQLi extension installed and a MySQL server version of 5." +"0.7 or higher to use this plugin. You are using version %s now." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:118 +msgid "PHP cURL extension must be installed to use the full plugin functionality." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:122 +#, php-format +msgctxt "%1 = extension name, %2 = file suffix" +msgid "We recommend to install the %1$s extension to generate %2$s archives." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:146 +#, php-format +msgctxt "Link to PHP manual" +msgid "Please disable the deprecated PHP safe mode." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:154 +msgid "" +"We recommend to install the PHP FTP extension to use the FTP backup " +"destination." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:174 +#, php-format +msgid "The HTTP response test result is an error: \"%s\"." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:178 +#, php-format +msgid "" +"The HTTP response test result is a wrong HTTP status: %s. It should be " +"status 200." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:196 +msgid "WP-Cron seems to be broken. But it is needed to run scheduled jobs." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:201 +msgid "All tests passed without errors." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:204 +msgid "" +"There is no error, but some warnings. BackWPup will work, but with " +"limitations." +msgstr "" + +#: ../inc/pro/class-wizard-systemtest.php:207 +msgid "There are errors. Please correct them, or BackWPup cannot work." +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:89 +msgid "Backup only WordPress Database tables" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:109 +msgid "Database connection" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:113 +msgid "Use WordPress database connection." +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:117 +msgid "Host:" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:120 +msgid "User:" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:127 +msgid "Charset:" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:138 +msgid "Database:" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:166 +msgid "Database Backup type" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:170 +msgid "SQL File (with mysqli)" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:171 +msgid "SQL File (with mysqldump)" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:172 +msgid "XML File (phpMyAdmin schema)" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:178 +msgid "Path to mysqldump file" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:180 +msgid "" +"Path to mysqldump file, so a backup can be made with it. If it is correct " +"and shell_exec is active, the backup will be generated with a " +"system command. If shell_exec ist not active, this is disabled" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:556 +#, php-format +msgid "Added database backup \"%1$s\" with %2$s to backup file list" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:577 +#, php-format +msgid "%d. Try to backup MySQL system …" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:584 +msgid "Executing of system commands not allowed. Please use backup with mysqli." +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:589 +#, php-format +msgid "%s file not in open basedir of PHP." +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:594 +#, php-format +msgid "%s file not found. Please correct the path for the mysqldump file." +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:674 +#, php-format +msgctxt "Executed exec() command" +msgid "CLI Exec: %s" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:685 +msgid "Usage error." +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:686 +msgid "" +"MySQL Server Error. This could be an issue with permissions. Try using " +"database backup with mysqli." +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:687 +msgid "Error during consistency checks." +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:688 +msgid "Not enough memory." +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:689 +msgid "Error during writing of SQL backup file." +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:690 +msgid "Illegal table" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:695 +#, php-format +msgid "mysqldump returned: (%d) %s" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:708 +msgid "Can not create mysql backup with mysqldump command" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:754 +#, php-format +msgid "%d. Try to backup database as XML …" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:811 +msgid "No tables for XML backup" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:847 +#, php-format +msgid "Dump database create view \"%s\"" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:865 +#, php-format +msgid "Backup database structure \"%s\" to XML" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:907 +#, php-format +msgid "Backup table \"%s\" data to XML" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:975 +#, php-format +msgid "Added database XML dump \"%1$s\" with %2$s to backup file list" +msgstr "" + +#: ../inc/pro/class-jobtype-dbdump.php:978 +msgid "Database XML backup done!" +msgstr "" + +#: ../inc/pro/class-export-jobs.php:12 ../inc/pro/class-export-jobs.php:23 +msgid "Export" +msgstr "" + +#: ../inc/pro/class-jobtype-file.php:19 +msgid "Backup WordPress main files" +msgstr "" + +#: ../inc/pro/class-jobtype-file.php:23 +msgid "Backup blog content folder" +msgstr "" + +#: ../inc/pro/class-jobtype-file.php:27 +msgid "Backup blog plugins" +msgstr "" + +#: ../inc/pro/class-jobtype-file.php:31 +msgid "Backup blog themes" +msgstr "" + +#: ../inc/pro/class-jobtype-file.php:35 +msgid "Backup blog uploads folder" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:42 +msgid "Hash key" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:43 +msgid "" +"Hash Key for BackWPup. It will be used to have hashes in folder and file " +"names. It must at least 6 chars long." +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:46 +msgid "Hash key:" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:59 +msgid "Dropbox API Keys" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:60 +msgid "" +"If you want to set your own Dropbox API Keys, you can do it here. Leave " +"empty for default." +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:63 +msgid "Full Dropbox App key:" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:71 +msgid "Full Dropbox App secret:" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:79 +msgid "Sandbox App key:" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:87 +msgid "Sandbox App secret:" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:100 +msgid "SugarSync API Keys" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:101 +msgid "" +"If you want to set your own SugarSync API keys you can do that here. Leave " +"empty for default." +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:104 +msgid "Access Key ID:" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:112 +msgid "Private Access Key:" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:119 +msgid "App ID:" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:132 +msgid "Google API Keys" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:136 +msgid "Client ID:" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:144 +msgid "Client secret:" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:151 +msgid "Redirect URIs:" +msgstr "" + +#: ../inc/pro/class-settings-apikeys.php:155 +msgid "Add this URI in a new line to the field." +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:14 +msgid "XML job import" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:15 +msgid "Wizard for importing BackWPup jobs from an XML file" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:32 ../inc/pro/class-wizard-jobimport.php: +#: 98 +msgid "Import" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:45 +msgid "Import File" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:45 +msgid "Upload XML job file for import" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:46 +msgid "Select items to import" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:46 +msgid "Select which job should be imported or overwritten." +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:67 +msgid "" +"Please upload your BackWPup job XML export file and we’ll import the " +"jobs into BackWPup." +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:69 +msgid "Choose a file from your computer:" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:69 +#, php-format +msgid "Maximum size: %s" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:91 +msgid "Import Jobs" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:94 +msgid "Import Type" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:94 +msgid "No Import" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:96 +msgid "Overwrite" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:96 +msgid "Append" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:110 +msgid "Import Config" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:113 +msgid "Import BackWPup configuration" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:138 +msgid "" +"File is empty. Please upload something more substantial. This error could " +"also caused by uploads being disabled in your php.ini or by post_max_size " +"being defined as smaller than upload_max_filesize in php.ini." +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:153 +#, php-format +msgid "" +"The export file could not be found at %s. This is likely due to " +"an issue with permissions." +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:160 +msgid "Sorry, there has been a phrase error." +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:167 +#, php-format +msgid "" +"This Export file (version %s) may not be supported by this version of the " +"importer." +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:173 +msgid "This is not a BackWPup XML file" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:236 +#, php-format +msgid "Job %1$s with id %2$d imported" +msgstr "" + +#: ../inc/pro/class-wizard-jobimport.php:244 +msgid "BackWPup config imported" +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:17 ../inc/pro/class-destination-s3.php:17 +msgid "Select a S3 service:" +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:29 +msgid "Hosteurope Cloud Storage" +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:33 ../inc/pro/class-destination-s3.php:35 +msgid "or set an S3 Server URL:" +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:39 ../inc/pro/class-destination-s3.php: +#: 41 ../inc/pro/class-destination-glacier.php:167 +msgid "Secret Key:" +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:42 ../inc/pro/class-destination-s3.php:44 +msgid "Bucket:" +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:52 ../inc/pro/class-destination-s3.php:54 +msgid "New Bucket:" +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:54 ../inc/pro/class-destination-s3.php:56 +msgid "Folder in bucket:" +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:134 ../inc/pro/class-destination-s3.php: +#: 135 +#, php-format +msgid "Bucket %1$s created in %2$s." +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:157 ../inc/pro/class-destination-s3.php: +#: 159 +#, php-format +msgid "%d. Trying to sync files to S3 Service …" +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:196 ../inc/pro/class-destination-s3.php: +#: 193 +msgid "Retrieving file list from S3." +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:252 ../inc/pro/class-destination-s3.php: +#: 251 +msgid "Upload changed files to S3." +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:264 ../inc/pro/class-destination-s3.php: +#: 266 +#, php-format +msgid "File %s uploaded to S3." +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:289 ../inc/pro/class-destination-s3.php: +#: 294 +#, php-format +msgid "Extra file %s uploaded to S3." +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:302 ../inc/pro/class-destination-s3.php: +#: 307 +msgid "Delete nonexistent files on S3" +msgstr "" + +#: ../inc/pro/class-destination-s3-v1.php:305 ../inc/pro/class-destination-s3.php: +#: 314 +#, php-format +msgid "File %s deleted from S3." +msgstr "" + +#: ../inc/pro/class-destination-sugarsync.php:25 ../inc/pro/class-destination- +#: sugarsync.php:85 +msgid "Sugarsync authenticate!" +msgstr "" + +#: ../inc/pro/class-destination-sugarsync.php:31 ../inc/pro/class-destination- +#: dropbox.php:34 ../inc/pro/class-destination-gdrive.php:269 ../inc/pro/class- +#: destination-gdrive.php:275 +msgid "Login:" +msgstr "" + +#: ../inc/pro/class-destination-sugarsync.php:36 +msgid "Root:" +msgstr "" + +#: ../inc/pro/class-destination-sugarsync.php:58 ../inc/pro/class-destination- +#: dropbox.php:38 ../inc/pro/class-destination-gdrive.php:280 +msgid "Folder:" +msgstr "" + +#: ../inc/pro/class-destination-sugarsync.php:61 ../inc/pro/class-destination-ftp. +#: php:39 +msgid "Maximum number of backup files to keep in folder:" +msgstr "" + +#: ../inc/pro/class-destination-sugarsync.php:63 ../inc/pro/class-destination-ftp. +#: php:42 +msgid "(Oldest files will be deleted first.)" +msgstr "" + +#: ../inc/pro/class-destination-folder.php:18 +msgid "Absolute path to folder for backup files:" +msgstr "" + +#: ../inc/pro/class-destination-folder.php:69 +#, php-format +msgid "%d. Try to sync files to folder …" +msgstr "" + +#: ../inc/pro/class-destination-folder.php:73 +msgid "Retrieving file list from folder" +msgstr "" + +#: ../inc/pro/class-destination-folder.php:79 +msgid "Copy changed files to folder" +msgstr "" + +#: ../inc/pro/class-destination-folder.php:92 +#, php-format +msgid "File %s copied" +msgstr "" + +#: ../inc/pro/class-destination-folder.php:105 +msgid "Delete not existing files from folder" +msgstr "" + +#: ../inc/pro/class-destination-folder.php:113 +#, php-format +msgid "Extra file %s copied" +msgstr "" + +#: ../inc/pro/class-destination-folder.php:129 +#, php-format +msgid "File %s deleted from folder" +msgstr "" + +#: ../inc/pro/class-destination-folder.php:186 +#, php-format +msgid "Empty folder %s deleted" +msgstr "" + +#: ../inc/pro/class-destination-dropbox.php:24 +msgid "Auth Code:" +msgstr "" + +#: ../inc/pro/class-destination-dropbox.php:27 +msgid "Get auth code" +msgstr "" + +#: ../inc/pro/class-destination-dropbox.php:105 +#, php-format +msgid "%d. Try to sync files to Dropbox …" +msgstr "" + +#: ../inc/pro/class-destination-dropbox.php:145 +msgid "Retrieving file list from Dropbox" +msgstr "" + +#: ../inc/pro/class-destination-dropbox.php:159 +msgid "Upload changed files to Dropbox" +msgstr "" + +#: ../inc/pro/class-destination-dropbox.php:181 +#, php-format +msgid "File %s uploaded to Dropbox" +msgstr "" + +#: ../inc/pro/class-destination-dropbox.php:208 +#, php-format +msgid "Extra file %s uploaded to Dropbox" +msgstr "" + +#: ../inc/pro/class-destination-dropbox.php:217 +msgid "Delete not existing files from Dropbox" +msgstr "" + +#: ../inc/pro/class-destination-dropbox.php:224 +#, php-format +msgid "Folder %s deleted from Dropbox" +msgstr "" + +#: ../inc/pro/class-destination-dropbox.php:242 +#, php-format +msgid "File %s deleted from Dropbox" +msgstr "" + +#: ../inc/pro/class-page-wizard.php:122 +msgid "No BackWPup Wizard Session found!" +msgstr "" + +#: ../inc/pro/class-page-wizard.php:134 ../inc/pro/class-page-wizard.php:442 +msgid "Cancel" +msgstr "" + +#: ../inc/pro/class-page-wizard.php:169 ../inc/pro/class-page-wizard.php:437 .. +#: /inc/pro/class-page-wizard.php:470 +msgid "Next ›" +msgstr "" + +#: ../inc/pro/class-page-wizard.php:186 ../inc/pro/class-page-wizard.php:433 +msgid "‹ Previous" +msgstr "" + +#: ../inc/pro/class-page-wizard.php:335 +#, php-format +msgctxt "Plugin Name" +msgid "%s Wizards" +msgstr "" + +#: ../inc/pro/class-page-wizard.php:373 +#, php-format +msgctxt "Plugin Name" +msgid "%s Wizard:" +msgstr "" + +#: ../inc/pro/class-page-wizard.php:445 +msgid "Back to overview" +msgstr "" + +#: ../inc/pro/class-destination-ftp.php:17 +msgid "Hostname:" +msgstr "" + +#: ../inc/pro/class-destination-ftp.php:25 ../inc/pro/class-destination-rsc.php:23 +msgid "Username:" +msgstr "" + +#: ../inc/pro/class-destination-ftp.php:33 +msgid "Folder on server:" +msgstr "" + +#: ../inc/pro/class-destination-rsc.php:26 +msgid "API Key:" +msgstr "" + +#: ../inc/pro/class-destination-rsc.php:29 +msgid "Select region:" +msgstr "" + +#: ../inc/pro/class-destination-rsc.php:136 +#, php-format +msgid "%d. Trying to sync files to Rackspace cloud …" +msgstr "" + +#: ../inc/pro/class-destination-rsc.php:156 +#, php-format +msgid "Connected to Rackspace cloud files container %s." +msgstr "" + +#: ../inc/pro/class-destination-rsc.php:170 +msgid "Retrieving files list from Rackspace Cloud." +msgstr "" + +#: ../inc/pro/class-destination-rsc.php:201 +msgid "Upload changed files to Rackspace Cloud." +msgstr "" + +#: ../inc/pro/class-destination-rsc.php:219 +#, php-format +msgid "File %s uploaded to Rackspace Cloud." +msgstr "" + +#: ../inc/pro/class-destination-rsc.php:252 +#, php-format +msgid "Extra file %s uploaded to Rackspace Cloud." +msgstr "" + +#: ../inc/pro/class-destination-rsc.php:265 +msgid "Delete nonexistent files on Rackspace Cloud." +msgstr "" + +#: ../inc/pro/class-destination-rsc.php:269 +#, php-format +msgid "File %s deleted from Rackspace Cloud." +msgstr "" + +#: ../inc/pro/class-marketpress-documentation.php:175 +msgid "Loading Menu ..." +msgstr "" + +#: ../inc/pro/class-marketpress-documentation.php:218 ../inc/pro/class- +#: marketpress-documentation.php:334 +#, php-format +msgctxt "%s = Remote Code" +msgid "Could not connect to remote host, code %d. Please try again later." +msgstr "" + +#: ../inc/pro/class-marketpress-documentation.php:230 ../inc/pro/class- +#: marketpress-documentation.php:346 +msgid "Could not find content for this page. Please try again later." +msgstr "" + +#: ../inc/pro/class-marketpress-documentation.php:236 ../inc/pro/class- +#: marketpress-documentation.php:351 +msgid "Could not connect to remote host. Please try again later." +msgstr "" + +#: ../inc/pro/class-marketpress-documentation.php:282 ../inc/pro/class- +#: marketpress-documentation.php:290 +msgid "Loading Content ..." +msgstr "" + +#: ../inc/pro/class-jobtype-dbcheck.php:21 +msgid "Check only WordPress Database tables" +msgstr "" + +#: ../inc/pro/class-jobtype-wpexp.php:17 +msgid "Items to export:" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:37 ../inc/pro/class-destination-gdrive. +#: php:256 +#, php-format +msgid "" +"Looks like you haven’t set up any API keys yet. Head over to Settings | API-Keys and get Google Drive all set up, then come " +"back here." +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:51 ../inc/pro/class-destination-gdrive. +#: php:271 +msgid "Authenticate" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:57 ../inc/pro/class-destination-gdrive. +#: php:277 +msgid "Reauthenticate" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:67 +msgid "Folder in Google Drive" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:87 +msgid "" +"Consider using trash to delete files. If trash is not enabled, files will be " +"deleted permanently." +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:141 ../inc/pro/class-destination- +#: gdrive.php:168 +msgid "GDrive: Authenticated." +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:145 ../inc/pro/class-destination- +#: gdrive.php:172 +msgid "GDrive: No refresh token received. Try to Authenticate again!" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:152 ../inc/pro/class-destination- +#: gdrive.php:177 ../inc/pro/class-destination-gdrive.php:201 ../inc/pro/class- +#: destination-gdrive.php:223 +#, php-format +msgid "GDrive API: %s" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:382 +#, php-format +msgid "%d. Try to send backup file to Google Drive …" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:407 +msgid "Uploading to Google Drive …" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:467 +msgid "Google Drive API: could not create resumable file" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:513 +msgid "Can not resume transfer backup to Google Drive!" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:582 +#, php-format +msgid "Error transfering file chunks to %s." +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:583 ../inc/pro/class-destination- +#: gdrive.php:609 +msgid "Google Drive" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:653 +#, php-format +msgid "One file deleted from Google Drive" +msgid_plural "%d files deleted on Google Drive" +msgstr[0] "" +msgstr[1] "" + +#: ../inc/pro/class-destination-gdrive.php:659 ../inc/pro/class-destination- +#: gdrive.php:877 +#, php-format +msgid "Google Drive API: %s" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:705 +#, php-format +msgid "%d. Try to sync files to Google Drive …" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:727 +msgid "Syncing changed files to Google Drive" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:756 +#, php-format +msgid "File %s updated on Google Drive" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:776 +#, php-format +msgid "File %s uploaded to Google Drive" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:797 +#, php-format +msgid "File %s moved to trash in Google Drive" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:800 +#, php-format +msgid "File %s deleted permanently in Google Drive" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:845 +#, php-format +msgid "Extra file %s updated on Google Drive" +msgstr "" + +#: ../inc/pro/class-destination-gdrive.php:866 +#, php-format +msgid "Extra file %s uploaded to Google Drive" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:26 +msgid "Amazon Glacier" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:30 +msgid "Select a region:" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:32 ../inc/pro/class-destination- +#: glacier.php:154 +msgid "Amazon Glacier Region" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:33 ../inc/pro/class-destination- +#: glacier.php:155 +msgid "US Standard" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:34 ../inc/pro/class-destination- +#: glacier.php:156 +msgid "US West (Northern California)" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:35 ../inc/pro/class-destination- +#: glacier.php:157 +msgid "US West (Oregon)" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:36 ../inc/pro/class-destination- +#: glacier.php:158 +msgid "EU (Ireland)" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:37 ../inc/pro/class-destination- +#: glacier.php:159 +msgid "EU (Germany)" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:38 ../inc/pro/class-destination- +#: glacier.php:160 +msgid "Asia Pacific (Tokyo)" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:39 ../inc/pro/class-destination- +#: glacier.php:161 +msgid "Asia Pacific (Singapore)" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:40 ../inc/pro/class-destination- +#: glacier.php:162 +msgid "Asia Pacific (Sydney)" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:41 ../inc/pro/class-destination- +#: glacier.php:163 +msgid "South America (Sao Paulo)" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:42 +msgid "China (Beijing)" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:48 +msgid "Amazon Access Keys" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:67 +msgid "Vault" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:71 +msgid "Vault selection" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:83 +msgid "Create a new vault" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:90 +msgid "Glacier Backup settings" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:97 ../inc/pro/class-destination- +#: glacier.php:181 +msgid "" +"Number of files to keep in folder. (Archives deleted before 3 months after " +"they have been stored may cause extra costs when deleted.)" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:130 ../inc/pro/class-destination- +#: glacier.php:216 +#, php-format +msgid "Vault %1$s created." +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:132 ../inc/pro/class-destination- +#: glacier.php:218 +#, php-format +msgid "Vault %s could not be created." +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:153 +msgid "Select an Amazon Glacier region:" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:169 +msgid "Vault:" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:178 +msgid "New Vault:" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:259 ../inc/pro/class-destination- +#: glacier.php:375 ../inc/pro/class-destination-glacier.php:394 ../inc/pro/class- +#: destination-glacier.php:434 +#, php-format +msgid "AWS API: %s" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:283 +#, php-format +msgid "%d. Trying to send backup file to Amazon Glacier …" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:296 +#, php-format +msgid "Connected to Glacier vault \"%1$s\" with %2$d archives and size of %3$d" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:298 +#, php-format +msgid "Glacier vault \"%s\" does not exist!" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:304 +msgid "Starting upload to Amazon Glacier …" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:357 +#, php-format +msgid "Archive ID: %s" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:368 ../inc/pro/class-pro.php:102 +msgid "Glacier" +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:424 +#, php-format +msgid "Cannot delete archive from %s." +msgstr "" + +#: ../inc/pro/class-destination-glacier.php:428 +#, php-format +msgid "One file deleted on vault." +msgid_plural "%d files deleted on vault" +msgstr[0] "" +msgstr[1] "" + +#: ../inc/pro/class-destination-glacier.php:542 +msgid "No vault found!" +msgstr "" + +#: ../inc/pro/class-jobtype-wpplugin.php:13 +msgid "Nothing to configure" +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:344 +#, php-format +msgctxt "%s = plugin name" +msgid "" +"Your license for the plugin %s is not valid. The auto-update has been " +"deactivated. Please insert a valid key on MarketPress Dashboard. Or if you " +"want to add an other valid code use the form below." +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:356 +msgid "" +"You are currently using a valid key for this plugin. You are able to renew " +"the key in MarketPress Dashboard. Or if you want to add another valid code " +"use the form below." +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:366 +#, php-format +msgctxt "%s = plugin name" +msgid "" +"Your license for the plugin %s is not valid. The auto-update has been " +"deactivated." +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:379 +#, php-format +msgid "" +"You are currently using a valid key for this plugin. You are able to renew " +"the key below or you can delete the key by clicking here." +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:386 +msgid "License Key" +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:389 +msgid "Activate" +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:558 +msgid "The License has been deleted." +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:565 +msgid "Plugin successfully activated." +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:572 +msgid "The entered license key is wrong." +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:579 +msgid "" +"You have reached the limit of urls. Please update your license at marketpress.com." +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:586 +msgid "" +"Something went wrong. Please try again later or contact the MarketPress Team." +msgstr "" + +#: ../inc/pro/class-marketpress-autoupdate.php:593 +msgid "" +"Due to a wrong license you are not allowed to activate this plugin. Please " +"update your license at marketpress.com." +msgstr "" + +#: ../inc/pro/class-wizard-job.php:15 +msgid "Create a job" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:16 +msgid "Choose a job" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:41 +msgid "Job Types" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:41 +msgid "Select a task for your job." +msgstr "" + +#: ../inc/pro/class-wizard-job.php:55 +msgid "Archive Settings" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:55 +msgid "Settings for the Backup Archive" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:57 +msgid "Where would you like to store the backup file?" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:67 ../inc/pro/class-wizard-job.php:292 +msgid "Scheduling" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:67 +msgid "When would you like to start the job?" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:236 +msgid "Select one or more tasks for your backup job." +msgstr "" + +#: ../inc/pro/class-wizard-job.php:293 +msgid "Activate scheduling" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:387 +msgid "Sync file by file to destination" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:398 +msgid "Select a compression type for the backup archive" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:401 +msgid "Archive compression type" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:404 +msgid "" +"PHP Zip functions will be used if available (memory lees). Else PCLZip Class " +"will used." +msgstr "" + +#: ../inc/pro/class-wizard-job.php:406 ../inc/pro/class-wizard-job.php:411 .. +#: /inc/pro/class-wizard-job.php:415 +msgid "Disabled because missing PHP function." +msgstr "" + +#: ../inc/pro/class-wizard-job.php:407 +msgid "Tar (fast and memory less) uncompressed" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:409 +msgid "A tared and GZipped archive (fast and memory less)" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:413 +msgid "A tared and BZipped archive (fast and memory less)" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:435 +msgid "Where to store the files" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:619 +#, php-format +msgid "Wizard: %1$s" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:638 +#, php-format +msgid "New job %s generated." +msgstr "" + +#: ../inc/pro/class-wizard-job.php:650 +msgid "Create Job" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:675 ../inc/pro/class-wizard-job.php:676 +msgid "Database Backup and XML Export (Daily)" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:693 ../inc/pro/class-wizard-job.php:694 +msgid "Database Check (Weekly)" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:718 ../inc/pro/class-wizard-job.php:719 +msgid "Backup all files" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:733 +msgid "Essential files + list of plugins" +msgstr "" + +#: ../inc/pro/class-wizard-job.php:734 +msgid "Backup essential files and folders, plus a list of installed plugins." +msgstr "" + +#: ../inc/pro/class-wizard-job.php:749 ../inc/pro/class-wizard-job.php:750 +msgid "Custom configuration" +msgstr "" + +#: ../inc/pro/class-pro.php:121 +msgid "GDrive" +msgstr "" + +#: ../inc/pro/class-pro.php:174 ../inc/pro/class-pro.php:174 ../inc/pro/class-pro. +#: php:210 +msgid "Wizards" +msgstr ""